質問編集履歴
1
コードの追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -305,3 +305,73 @@
|
|
305
305
|
archive.phpのコードをそのままpage-news.phpにコピーしてもダメでした。
|
306
306
|
|
307
307
|
解決方法ありましたら、ご教示願います。
|
308
|
+
|
309
|
+
|
310
|
+
|
311
|
+
↓「functions.php」
|
312
|
+
|
313
|
+
```
|
314
|
+
|
315
|
+
<?php
|
316
|
+
|
317
|
+
|
318
|
+
|
319
|
+
// ウィジェットエリア
|
320
|
+
|
321
|
+
register_sidebar(
|
322
|
+
|
323
|
+
array(
|
324
|
+
|
325
|
+
'name' => '私のウィジェットエリア',
|
326
|
+
|
327
|
+
'id' => 'my-sidebar',
|
328
|
+
|
329
|
+
'before-widget' =>'<div class="widget">',
|
330
|
+
|
331
|
+
'after-widget' =>'</div>',
|
332
|
+
|
333
|
+
'before-title' =>'<h3>',
|
334
|
+
|
335
|
+
'after-title' =>'</h3>'
|
336
|
+
|
337
|
+
)
|
338
|
+
|
339
|
+
);
|
340
|
+
|
341
|
+
|
342
|
+
|
343
|
+
// カスタムメニューの登録
|
344
|
+
|
345
|
+
register_nav_menu('footer_menu','フッターメニュー');
|
346
|
+
|
347
|
+
register_nav_menu('top_menu','トップメニュー');
|
348
|
+
|
349
|
+
register_nav_menu('side_menu','サイドメニュー');
|
350
|
+
|
351
|
+
|
352
|
+
|
353
|
+
// タイトルタグの設定
|
354
|
+
|
355
|
+
function custom_theme_setup() {
|
356
|
+
|
357
|
+
add_theme_support('title-tag');
|
358
|
+
|
359
|
+
}
|
360
|
+
|
361
|
+
add_action( 'after_setup_theme', 'custom_theme_setup' );
|
362
|
+
|
363
|
+
add_theme_support('post-thumbnails');
|
364
|
+
|
365
|
+
|
366
|
+
|
367
|
+
//概要(抜粋)の文字数調整
|
368
|
+
|
369
|
+
function my_excerpt_length($length) {
|
370
|
+
|
371
|
+
return 50;
|
372
|
+
|
373
|
+
}
|
374
|
+
|
375
|
+
add_filter('excerpt_length', 'my_excerpt_length');
|
376
|
+
|
377
|
+
```
|