カスタム分類毎の記事一覧ページを作りたいです。試行錯誤しましたができません。焦っており、どうかお力を貸してください。
カスタムポスト → shoplist
タクソノミー → hokkaido,tohoku,kanto,chubu,...など
https://sample.com/shoplist/ → archive-shoplist.phpで表示できます。これはOKです。
https://sample.com/shoplist/kanto → index.phpに飛びます。
taxonomy.phpも読み込まれず、404に飛んでしまいます。
固定ページで作成し、パーマリンクをhttps://sample.com/shoplist/kantoに設定しましたが、それでもindex.phpに飛んでしまいます。どうしたら良いでしょうか?
functions.php
function create_post_type_shoplist_func() { register_post_type ( 'shoplist', array( 'label' => '店舗', 'description' => 'shoplist', 'public' => true, 'publicly_queryable' => true, 'show_ui' => true, 'hierarchical' => false, 'query_var' => false, 'menu_position' => 5, 'has_archive' => true, 'yarpp_support' => true, //'rewrite' => array('with_front' => false), 'rewrite_withfront'=> true, 'rewrite' => true, 'supports' => array( 'title','editor','thumbnail' ), 'has_archive' => true, )); register_taxonomy( 'hokkaido', 'shoplist', array( 'label' => '北海道', 'public' => true, 'hierarchical' => true, 'rewrite' => true, 'show_ui' => true, 'query_var' => true, )); register_taxonomy( 'tohoku', 'shoplist', array( 'label' => '東北', 'public' => true, 'hierarchical' => true, 'rewrite' => true, 'show_ui' => true, 'query_var' => true, )); ・ ・ ・ 省略
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/08/06 02:10