前提・実現したいこと
https://mamenari.com/1571/#i-2
WordPressの初心者です。
こちらのサイトを元にfunctions.phpに記述してカスタム投稿タイプで制作実績ページを作ったのですがarchive-works.phpテンプレートが読み込まれないです。
試行錯誤したのですが原因が分かりません。
ダッシュボードの制作実績の制作実績一覧にはworks01を作りました。
functions.phpソースコード
functions.php
1add_action( 'init', 'add_post_type' ); 2function add_post_type() { 3 4 //カスタム投稿タイプ「制作実績」 5 register_post_type( 'works',//「works」はお好みで変えてください(カスタムタクソノミーを設定する時にも使います) 6 array( 7 'labels' => array( 8 'name' => __('制作実績'),//「制作実績」「制作一覧」はお好みで変えてください 9 'singular_name' => __('制作実績'), 10 'all_items' => __('制作実績一覧'), 11 ), 12 'public' => true, 13 'menu_position' =>5, 14 'menu_icon' => 'dashicons-admin-customizer',//アイコン画像 15 'supports' => array('title','editor','thumbnail','custom-fields','excerpt','trackbacks','comments','revisions','page-attributes'), 16 'has_archive' => true, 17 'show_in_rest' => true, 18 ) 19 ); 20 21} 22 23function add_taxonomies() { 24 //制作実績カテゴリー 25 register_taxonomy( 'works_cat', //「works_cat」はお好みで変更してください 26 array( 'works' ), //「works」は作成したカスタム投稿タイプの名前にしてください 27 array( 28 'label' => '制作実績カテゴリー', //表示名 29 'public' => true, 30 'show_in_menu' => true, 31 'show_ui' => true, 32 'show_admin_column' => true, 33 'show_in_nav_menus' => true, 34 'hierarchical' => true, //trueはカテゴリー・falseはタグ 35 'rewrite' => array( 'slug' => 'works_cat', 'with_front' => true, ),//パーマリンクの設定 36 'show_in_rest' => true, 37 'rest_base' => "", 38 ) 39 ); 40 //制作実績タグ 41 register_taxonomy( 'works_tag', //「works_tag」はお好みで変更してください 42 array( 'works' ), //「works」は作成したカスタム投稿タイプの名前にしてください 43 array( 44 'label' => '制作実績タグ', //表示名 45 'public' => true, 46 'show_in_menu' => true, 47 'show_ui' => true, 48 'show_admin_column' => true, 49 'show_in_nav_menus' => true, 50 'hierarchical' => false,//trueはカテゴリー・falseはタグ 51 'rewrite' => array( 'slug' => 'works_tag', 'with_front' => true, ),//パーマリンクの設定 52 'show_in_rest' => true, 53 'rest_base' => "", 54 ) 55 ); 56} 57add_action( 'init', 'add_taxonomies', 0 );
archive
1/* 2template 3archive-works.php 4*/ 5<?php get_header(); ?> 6 <main id="" class="works_list-container"> 7 <div class="works_list-contents"> 8 <section id="works" class="sec"> 9 <div class="h-title"> 10 <h2 class="title">WORKS</h2> 11 <span class="txt">実績一覧</span> 12 </div> 13 </section> 14 <section id="works-wrap" class="sec"> 15 <div class="works-inner"> 16 <div class="works-box"> 17 <a href="http://localhost:81/wordpress/works/works/"> 18 <figure class="w-img"> 19 <img src="<?php echo get_template_directory_uri(); ?>/images/works_list/works_list01.jpg" alt=""> 20 </figure> 21 <div class="text-area"> 22 <h3 class="title">golf school</h3> 23 <p class="text">entrance Logo/green wall 24 </p> 25 </div> 26 </a> 27 </div> 28 <div class="works-box"> 29 <a href="http://yumeko-bo.jp/wp-content/themes/yumekobo/works02.html"> 30 <figure class="w-img"> 31 <img src="<?php echo get_template_directory_uri(); ?>/images/works_list/works_list02.jpg" alt=""> 32 </figure> 33 <div class="text-area"> 34 <h3 class="title">photo stadium</h3> 35 <p class="text">entrance green wall 36 </p> 37 </div> 38 </a> 39 </div> 40 <div class="works-box"> 41 <a href="http://yumeko-bo.jp/wp-content/themes/yumekobo/works03.html"> 42 <figure class="w-img"> 43 <img src="<?php echo get_template_directory_uri(); ?>/images/works_list/works_list03.jpg" alt=""> 44 </figure> 45 <div class="text-area"> 46 <h3 class="title">flower wall</h3> 47 <p class="text">photostudio 48 </p> 49 </div> 50 </a> 51 </div> 52 </div> 53 </section> 54 <section class="works-more"> 55 <div class="works-more-inner"> 56 <div class="more-link"> 57 <a href="" class="link">MORE<i class="fas fa-plus"></i></a> 58 </div> 59 </div> 60 </section> 61 </div> 62 </main> 63<?php get_footer(); ?>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/02/17 02:07
2020/02/17 02:14
2020/02/17 02:32
2020/02/17 02:32
2020/02/17 02:40
2020/02/17 02:46
2020/02/17 02:54
2020/02/17 02:57
2020/02/18 22:36 編集