質問編集履歴
2
文章の修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -10,7 +10,9 @@
|
|
10
10
|
|
11
11
|
|
12
12
|
|
13
|
-
|
13
|
+
header.php
|
14
|
+
|
15
|
+
```PHP
|
14
16
|
|
15
17
|
<!DOCTYPE html>
|
16
18
|
|
@@ -174,11 +176,11 @@
|
|
174
176
|
|
175
177
|
|
176
178
|
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
179
|
+
functions.php
|
180
|
+
|
181
|
+
|
182
|
+
|
183
|
+
```PHP
|
182
184
|
|
183
185
|
<?php
|
184
186
|
|
@@ -552,9 +554,9 @@
|
|
552
554
|
|
553
555
|
```
|
554
556
|
|
555
|
-
|
556
|
-
|
557
|
-
|
557
|
+
page.php
|
558
|
+
|
559
|
+
```PHP
|
558
560
|
|
559
561
|
<?php get_header(); ?>
|
560
562
|
|
1
内容の修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -3,3 +3,601 @@
|
|
3
3
|
ワードプレスで作った、ホームのトップ画像が表示されない場合の直し方を教えていただけないでしょうか?
|
4
4
|
|
5
5
|
どのPHPのどこを直せばいいのか分かりません。
|
6
|
+
|
7
|
+
|
8
|
+
|
9
|
+
CSSとHTMLは元のデータから変化させていません
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
```PHP header.php
|
14
|
+
|
15
|
+
<!DOCTYPE html>
|
16
|
+
|
17
|
+
<html lang="ja">
|
18
|
+
|
19
|
+
<head>
|
20
|
+
|
21
|
+
<meta charset="utf-8" />
|
22
|
+
|
23
|
+
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
24
|
+
|
25
|
+
<meta name="keywords" content="共通キーワード" />
|
26
|
+
|
27
|
+
<meta name="description" content="<?php bloginfo( 'description' ); ?>" />
|
28
|
+
|
29
|
+
<title><?php bloginfo( ‘name’ ); ?></title>
|
30
|
+
|
31
|
+
<link rel="shortcut icon" href="<?php echo get_template_directory_uri(); ?>/assets/images/common/favicon.ico" />
|
32
|
+
|
33
|
+
<link href="https://fonts.googleapis.com/earlyaccess/notosansjapanese.css" rel="stylesheet" />
|
34
|
+
|
35
|
+
<link href="https://fonts.googleapis.com/css?family=Vollkorn:400i" rel="stylesheet" />
|
36
|
+
|
37
|
+
<?php wp_head(); ?>
|
38
|
+
|
39
|
+
</head>
|
40
|
+
|
41
|
+
<body <?php body_class(); ?>>
|
42
|
+
|
43
|
+
<div class="container">
|
44
|
+
|
45
|
+
<header id="header">
|
46
|
+
|
47
|
+
<div class="header-inner">
|
48
|
+
|
49
|
+
<div class="logo">
|
50
|
+
|
51
|
+
<a class="logo-header" href="/">
|
52
|
+
|
53
|
+
<img src="<?php echo get_template_directory_uri(); ?>/assets/images/common/logo-main.svg" class="main-logo" alt="PACIFIC MALL DEVELOPMENT" />
|
54
|
+
|
55
|
+
<img src="<?php echo get_template_directory_uri(); ?>/assets/images/common/logo-fixed.svg" class="fixed-logo" alt="PACIFIC MALL DEVELOPMENT" />
|
56
|
+
|
57
|
+
</a>
|
58
|
+
|
59
|
+
</div>
|
60
|
+
|
61
|
+
<button class="toggle-menu js-toggoleNav">
|
62
|
+
|
63
|
+
<span class="toggle-line">メニュー</span>
|
64
|
+
|
65
|
+
</button>
|
66
|
+
|
67
|
+
<div class="header-nav">
|
68
|
+
|
69
|
+
<nav class="global-nav">
|
70
|
+
|
71
|
+
<?php
|
72
|
+
|
73
|
+
wp_nav_menu(
|
74
|
+
|
75
|
+
array (
|
76
|
+
|
77
|
+
'theme_location' => 'place_global',
|
78
|
+
|
79
|
+
'container' => false,
|
80
|
+
|
81
|
+
)
|
82
|
+
|
83
|
+
);
|
84
|
+
|
85
|
+
?>
|
86
|
+
|
87
|
+
</nav>
|
88
|
+
|
89
|
+
<form class="search-form" role="search" method="get" action="<?php echo esc_url( home_url() ); ?>">
|
90
|
+
|
91
|
+
<div class="search-box">
|
92
|
+
|
93
|
+
<input type="text" class="search-input" name="s" placeholder="キーワードを入力してください" />
|
94
|
+
|
95
|
+
<button type="submit" class="button-submit"></button>
|
96
|
+
|
97
|
+
</div>
|
98
|
+
|
99
|
+
<div class="search-buttons">
|
100
|
+
|
101
|
+
<button type="button" class="close-icon js-searchIcon"></button>
|
102
|
+
|
103
|
+
<button type="button" class="search-icon js-searchIcon"></button>
|
104
|
+
|
105
|
+
</div>
|
106
|
+
|
107
|
+
</form>
|
108
|
+
|
109
|
+
</div>
|
110
|
+
|
111
|
+
</div>
|
112
|
+
|
113
|
+
</header>
|
114
|
+
|
115
|
+
<?php if( is_front_page() ): ?>
|
116
|
+
|
117
|
+
<section class="section-contents" id="keyvisual">
|
118
|
+
|
119
|
+
<?php echo get_main_image(); ?>
|
120
|
+
|
121
|
+
<div class="wrapper">
|
122
|
+
|
123
|
+
<h1 class="site-title">Connecting the future.</h1>
|
124
|
+
|
125
|
+
<p class="site-caption"><?php echo get_the_excerpt(); ?></p>
|
126
|
+
|
127
|
+
</div>
|
128
|
+
|
129
|
+
</section>
|
130
|
+
|
131
|
+
<?php else: ?>
|
132
|
+
|
133
|
+
<div class="wrap">
|
134
|
+
|
135
|
+
<div id="primary" class="content-area">
|
136
|
+
|
137
|
+
<main>
|
138
|
+
|
139
|
+
<div class="page-contents">
|
140
|
+
|
141
|
+
<div class="page-head">
|
142
|
+
|
143
|
+
<?php echo get_main_image(); ?>
|
144
|
+
|
145
|
+
<div class="wrapper">
|
146
|
+
|
147
|
+
<span class="page-title-en"><?php echo get_main_en_title(); ?></span>
|
148
|
+
|
149
|
+
<h2 class="page-title"><?php echo get_main_title(); ?></h2>
|
150
|
+
|
151
|
+
</div>
|
152
|
+
|
153
|
+
</div>
|
154
|
+
|
155
|
+
<div class="page-container">
|
156
|
+
|
157
|
+
<?php
|
158
|
+
|
159
|
+
if ( function_exists('bread_crumb') ){
|
160
|
+
|
161
|
+
bread_crumb();
|
162
|
+
|
163
|
+
}
|
164
|
+
|
165
|
+
?>
|
166
|
+
|
167
|
+
<?php endif; ?>
|
168
|
+
|
169
|
+
```
|
170
|
+
|
171
|
+
|
172
|
+
|
173
|
+
|
174
|
+
|
175
|
+
|
176
|
+
|
177
|
+
|
178
|
+
|
179
|
+
|
180
|
+
|
181
|
+
```PHP functions.php
|
182
|
+
|
183
|
+
<?php
|
184
|
+
|
185
|
+
function my_enqueue_scripts() {
|
186
|
+
|
187
|
+
wp_enqueue_script( 'jquery' );
|
188
|
+
|
189
|
+
wp_enqueue_script( 'bundle_js', get_template_directory_uri(). '/assets/js/bundle.js', array() );
|
190
|
+
|
191
|
+
wp_enqueue_style( 'my_styles', get_template_directory_uri(). '/assets/css/styles.css', array() );
|
192
|
+
|
193
|
+
}
|
194
|
+
|
195
|
+
add_action( 'wp_enqueue_scripts', 'my_enqueue_scripts' );
|
196
|
+
|
197
|
+
|
198
|
+
|
199
|
+
// ヘッダー、フッターのカスタムメニュー化
|
200
|
+
|
201
|
+
register_nav_menus(
|
202
|
+
|
203
|
+
array(
|
204
|
+
|
205
|
+
'place_global' => ' グローバル',
|
206
|
+
|
207
|
+
'place_footer' => ' フッターナビ',
|
208
|
+
|
209
|
+
)
|
210
|
+
|
211
|
+
);
|
212
|
+
|
213
|
+
|
214
|
+
|
215
|
+
// メイン画像上にテンプレートごとの文字列を表示
|
216
|
+
|
217
|
+
function get_main_title() {
|
218
|
+
|
219
|
+
if ( is_singular( 'post' ) ):
|
220
|
+
|
221
|
+
$category_obj = get_the_category();
|
222
|
+
|
223
|
+
return $category_obj[0]->name;
|
224
|
+
|
225
|
+
elseif ( is_page() ):
|
226
|
+
|
227
|
+
return get_the_title();
|
228
|
+
|
229
|
+
elseif ( is_category() || is_tax() ):
|
230
|
+
|
231
|
+
return single_cat_title();
|
232
|
+
|
233
|
+
elseif ( is_search() ):
|
234
|
+
|
235
|
+
return ' サイト内検索結果';
|
236
|
+
|
237
|
+
elseif ( is_404() ):
|
238
|
+
|
239
|
+
return ' ページが見つかりません';
|
240
|
+
|
241
|
+
elseif ( is_singular( 'daily_contribution' ) ):
|
242
|
+
|
243
|
+
global $post;
|
244
|
+
|
245
|
+
$term_obj = get_the_terms( $post->ID, 'event' );
|
246
|
+
|
247
|
+
return $term_obj[0]->name;
|
248
|
+
|
249
|
+
endif;
|
250
|
+
|
251
|
+
}
|
252
|
+
|
253
|
+
|
254
|
+
|
255
|
+
// 子ページを取得する関数
|
256
|
+
|
257
|
+
function get_child_pages( $number = -1, $specified_id = null ) {
|
258
|
+
|
259
|
+
if ( isset( $specified_id ) ):
|
260
|
+
|
261
|
+
$parent_id = $specified_id;
|
262
|
+
|
263
|
+
else:
|
264
|
+
|
265
|
+
$parent_id = get_the_ID();
|
266
|
+
|
267
|
+
endif;
|
268
|
+
|
269
|
+
$args = array(
|
270
|
+
|
271
|
+
'posts_per_page' => $number,
|
272
|
+
|
273
|
+
'post_type' => 'page',
|
274
|
+
|
275
|
+
'orderby' => 'menu_order',
|
276
|
+
|
277
|
+
'order' => 'ASC',
|
278
|
+
|
279
|
+
'post_parent' => $parent_id,
|
280
|
+
|
281
|
+
);
|
282
|
+
|
283
|
+
$child_pages = new WP_Query( $args );
|
284
|
+
|
285
|
+
return $child_pages;
|
286
|
+
|
287
|
+
}
|
288
|
+
|
289
|
+
|
290
|
+
|
291
|
+
// アイキャッチ画像を利用できるようにする
|
292
|
+
|
293
|
+
add_theme_support( 'post-thumbnails' );
|
294
|
+
|
295
|
+
|
296
|
+
|
297
|
+
// トップページのメイン画像用のサイズ設定
|
298
|
+
|
299
|
+
add_image_size( 'top', 1077, 622, true );
|
300
|
+
|
301
|
+
|
302
|
+
|
303
|
+
// 地域貢献活動一覧画像用のサイズ設定
|
304
|
+
|
305
|
+
add_image_size( 'contribution', 557, 280, true );
|
306
|
+
|
307
|
+
|
308
|
+
|
309
|
+
// トップページの地域貢献活動にて使用している画像用のサイズ設定
|
310
|
+
|
311
|
+
add_image_size( 'front-contribution', 255, 189, true );
|
312
|
+
|
313
|
+
|
314
|
+
|
315
|
+
// 企業情報・店舗情報一覧画像用のサイズ設定
|
316
|
+
|
317
|
+
add_image_size( 'common', 465, 252, true );
|
318
|
+
|
319
|
+
|
320
|
+
|
321
|
+
// 各ページのメイン画像用のサイズ設定
|
322
|
+
|
323
|
+
add_image_size( 'detail', 1100, 330, true );
|
324
|
+
|
325
|
+
|
326
|
+
|
327
|
+
// 検索一覧画像用のサイズ設定
|
328
|
+
|
329
|
+
add_image_size( 'search', 168, 168, true );
|
330
|
+
|
331
|
+
|
332
|
+
|
333
|
+
// 各テンプレートごとのメイン画像を表示
|
334
|
+
|
335
|
+
function get_main_image() {
|
336
|
+
|
337
|
+
if ( is_page() || is_singular( 'daily_contribution' ) ):
|
338
|
+
|
339
|
+
$attachment_id = get_field( 'main_image' );
|
340
|
+
|
341
|
+
if ( is_front_page() ):
|
342
|
+
|
343
|
+
return wp_get_attachment_image( $attachment_id, 'top' );
|
344
|
+
|
345
|
+
else:
|
346
|
+
|
347
|
+
return wp_get_attachment_image( $attachment_id, 'detail' );
|
348
|
+
|
349
|
+
endif;
|
350
|
+
|
351
|
+
elseif ( is_category( 'news' ) || is_singular( 'post' ) ):
|
352
|
+
|
353
|
+
return '<img src="'. get_template_directory_uri(). '/assets/images/bg-page-news.jpg" />';
|
354
|
+
|
355
|
+
elseif ( is_search() || is_404() ):
|
356
|
+
|
357
|
+
return '<img src="'. get_template_directory_uri() .'/assets/images/bg-page-search.jpg">';
|
358
|
+
|
359
|
+
elseif ( is_tax( 'event' ) ):
|
360
|
+
|
361
|
+
$term_obj = get_queried_object();
|
362
|
+
|
363
|
+
$image_id = get_field( 'event_image', $term_obj->taxonomy. '_'. $term_obj->term_id );
|
364
|
+
|
365
|
+
return wp_get_attachment_image( $image_id, 'detail' );
|
366
|
+
|
367
|
+
else:
|
368
|
+
|
369
|
+
return '<img src="'. get_template_directory_uri(). '/assets/images/bg-page-dummy.png" />';
|
370
|
+
|
371
|
+
endif;
|
372
|
+
|
373
|
+
}
|
374
|
+
|
375
|
+
|
376
|
+
|
377
|
+
// 特定の記事を抽出する関数
|
378
|
+
|
379
|
+
function get_specific_posts( $post_type, $taxonomy = null, $term = null, $number = -1 ) {
|
380
|
+
|
381
|
+
if ( ! $term ):
|
382
|
+
|
383
|
+
$terms_obj = get_terms( 'event' );
|
384
|
+
|
385
|
+
$term = wp_list_pluck( $terms_obj, 'slug' );
|
386
|
+
|
387
|
+
endif;
|
388
|
+
|
389
|
+
|
390
|
+
|
391
|
+
$args = array(
|
392
|
+
|
393
|
+
'post_type' => $post_type,
|
394
|
+
|
395
|
+
'tax_query' => array(
|
396
|
+
|
397
|
+
array(
|
398
|
+
|
399
|
+
'taxonomy' => $taxonomy,
|
400
|
+
|
401
|
+
'field' => 'slug',
|
402
|
+
|
403
|
+
'terms' => $term,
|
404
|
+
|
405
|
+
),
|
406
|
+
|
407
|
+
),
|
408
|
+
|
409
|
+
'posts_per_page' => $number,
|
410
|
+
|
411
|
+
);
|
412
|
+
|
413
|
+
$specific_posts = new WP_Query( $args );
|
414
|
+
|
415
|
+
return $specific_posts;
|
416
|
+
|
417
|
+
}
|
418
|
+
|
419
|
+
|
420
|
+
|
421
|
+
function cms_excerpt_more() {
|
422
|
+
|
423
|
+
return '...';
|
424
|
+
|
425
|
+
}
|
426
|
+
|
427
|
+
add_filter( 'excerpt_more', 'cms_excerpt_more' );
|
428
|
+
|
429
|
+
|
430
|
+
|
431
|
+
function cms_excerpt_length() {
|
432
|
+
|
433
|
+
return 80;
|
434
|
+
|
435
|
+
}
|
436
|
+
|
437
|
+
add_filter( 'excerpt_mblength', 'cms_excerpt_length' );
|
438
|
+
|
439
|
+
|
440
|
+
|
441
|
+
// 抜粋機能を固定ページに使えるよう設定
|
442
|
+
|
443
|
+
add_post_type_support( 'page', 'excerpt' );
|
444
|
+
|
445
|
+
|
446
|
+
|
447
|
+
function get_flexible_excerpt( $number ) {
|
448
|
+
|
449
|
+
$value = get_the_excerpt();
|
450
|
+
|
451
|
+
$value = wp_trim_words( $value, $number, '...' );
|
452
|
+
|
453
|
+
return $value;
|
454
|
+
|
455
|
+
}
|
456
|
+
|
457
|
+
|
458
|
+
|
459
|
+
//get_the_excerpt() で取得する文字列に改行タグを挿入
|
460
|
+
|
461
|
+
function apply_excerpt_br( $value ) {
|
462
|
+
|
463
|
+
return nl2br( $value );
|
464
|
+
|
465
|
+
}
|
466
|
+
|
467
|
+
add_filter( 'get_the_excerpt', 'apply_excerpt_br' );
|
468
|
+
|
469
|
+
|
470
|
+
|
471
|
+
// ウィジェット機能を有効化
|
472
|
+
|
473
|
+
function theme_widgets_init() {
|
474
|
+
|
475
|
+
register_sidebar( array(
|
476
|
+
|
477
|
+
'name' => ' サイドバーウィジェットエリア',
|
478
|
+
|
479
|
+
'id' => 'primary-widget-area',
|
480
|
+
|
481
|
+
'description' => ' 固定ページのサイドバー',
|
482
|
+
|
483
|
+
'before_widget' => '<aside class="side-inner">',
|
484
|
+
|
485
|
+
'after_widget' => '</aside>',
|
486
|
+
|
487
|
+
'before_title' => '<h4 class="title">',
|
488
|
+
|
489
|
+
'after_title' => '</h4>',
|
490
|
+
|
491
|
+
) );
|
492
|
+
|
493
|
+
}
|
494
|
+
|
495
|
+
add_action( 'widgets_init', 'theme_widgets_init' );
|
496
|
+
|
497
|
+
|
498
|
+
|
499
|
+
// メイン画像上にテンプレートごとの英語タイトルを表示
|
500
|
+
|
501
|
+
function get_main_en_title() {
|
502
|
+
|
503
|
+
if ( is_category() ):
|
504
|
+
|
505
|
+
$term_obj = get_queried_object();
|
506
|
+
|
507
|
+
$english_title = get_field( 'english_title', $term_obj->taxonomy. '_'. $term_obj->term_id );
|
508
|
+
|
509
|
+
return $english_title;
|
510
|
+
|
511
|
+
elseif ( is_singular( 'post' ) ):
|
512
|
+
|
513
|
+
$term_obj = get_the_category();
|
514
|
+
|
515
|
+
$english_title = get_field( 'english_title', $term_obj[0]->taxonomy. '_'. $term_obj[0]->term_id );
|
516
|
+
|
517
|
+
return $english_title;
|
518
|
+
|
519
|
+
elseif ( is_page() || is_singular( 'daily_contribution' ) ):
|
520
|
+
|
521
|
+
return get_field( 'english_title' );
|
522
|
+
|
523
|
+
elseif ( is_search() ):
|
524
|
+
|
525
|
+
return 'Search Result';
|
526
|
+
|
527
|
+
elseif ( is_404() ):
|
528
|
+
|
529
|
+
return '404 Not Found';
|
530
|
+
|
531
|
+
elseif ( is_tax() ):
|
532
|
+
|
533
|
+
$term_obj = get_queried_object();
|
534
|
+
|
535
|
+
$english_title = get_field( 'english_title', $term_obj->taxonomy. '_'. $term_obj->term_id );
|
536
|
+
|
537
|
+
return $english_title;
|
538
|
+
|
539
|
+
endif;
|
540
|
+
|
541
|
+
}
|
542
|
+
|
543
|
+
|
544
|
+
|
545
|
+
function set_revision_store_number($num){
|
546
|
+
|
547
|
+
return 3;
|
548
|
+
|
549
|
+
}
|
550
|
+
|
551
|
+
add_filter( 'wp_revisions_to_keep', 'set_revision_store_number');
|
552
|
+
|
553
|
+
```
|
554
|
+
|
555
|
+
|
556
|
+
|
557
|
+
```PHP page.php
|
558
|
+
|
559
|
+
<?php get_header(); ?>
|
560
|
+
|
561
|
+
<div class="page-main">
|
562
|
+
|
563
|
+
<div class="lead-inner">
|
564
|
+
|
565
|
+
<?php
|
566
|
+
|
567
|
+
if(have_posts()):
|
568
|
+
|
569
|
+
while(have_posts() ):the_post();
|
570
|
+
|
571
|
+
the_content();
|
572
|
+
|
573
|
+
endwhile;
|
574
|
+
|
575
|
+
endif;
|
576
|
+
|
577
|
+
?>
|
578
|
+
|
579
|
+
</div>
|
580
|
+
|
581
|
+
</div>
|
582
|
+
|
583
|
+
<?php get_footer(); ?>
|
584
|
+
|
585
|
+
```
|
586
|
+
|
587
|
+
デベロッパーツールは
|
588
|
+
|
589
|
+
navigator.userAgent、navigator.appVersion、およびnavigator.platformの用法を監査しなさい
|
590
|
+
|
591
|
+
|
592
|
+
|
593
|
+
ページまたはスクリプトは、navigator.userAgent、navigator.appVersion、およびnavigator.platformのうちの最低1つにアクセスしている。クロム101を始めることによって、ユーザーエージェントストリングで入手可能な情報の量が減らされる。
|
594
|
+
|
595
|
+
この問題を定着させるためには、navigator.userAgent、navigator.appVersion、およびnavigator.platformの用法を機能検出、進歩的な向上と取り替えるか、またはnavigator.userAgentDataに移住しなさい。
|
596
|
+
|
597
|
+
性能理由のためにプロパティのうちの1つへの最初のアクセスだけが示されることに注意しなさい。
|
598
|
+
|
599
|
+
|
600
|
+
|
601
|
+
|
602
|
+
|
603
|
+
と出てきます。
|