回答編集履歴
1
追記
test
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
``"<?php echo get_template_directory_uri(); ?>/news/archive-news.php``
|
1
|
+
``href="<?php echo get_template_directory_uri(); ?>/news/archive-news.php"``
|
2
2
|
|
3
3
|
これが間違いです
|
4
4
|
|
@@ -27,3 +27,11 @@
|
|
27
27
|
ページの種類の決定やデータベースの検索もされておらず
|
28
28
|
|
29
29
|
テンプレートは何も表示することができません
|
30
|
+
|
31
|
+
|
32
|
+
|
33
|
+
投稿タイプnewsのアーカイブのURLを得たいのであれば
|
34
|
+
|
35
|
+
[get_post_type_archive_link](https://wpdocs.osdn.jp/関数リファレンス/get_post_type_archive_link)を使って
|
36
|
+
|
37
|
+
``href="<?= get_post_type_archive_link('news')?>"``などとしましょう
|