前提・実現したいこと
WordPressでよくある質問というカスタム投稿タイプを作りました
そのカスタムタクソノミーのアーカイブページが質問カテゴリー
だけ404ページに飛ばされてしましいます
該当ソースコードは下記です
該当のソースコード
add_action( 'init', 'my_custom_post_type04', 0 ); function my_custom_post_type04() { // よくあるご質問一覧 $labels = array( 'all_items' => 'よくあるご質問一覧', 'add_new' => _x('新規投稿', 'question'), ); $args = array( 'labels' => $labels, 'label' => 'よくあるご質問', 'public' => true, 'menu_position' => 7, 'menu_icon' => 'dashicons-editor-help', 'supports' => array( 'title', 'editor', 'custom-fields' ), 'taxonomies' => array( 'question_cat', 'question_tag' ), 'has_archive' => true, ); register_post_type( 'question', $args ); // よくあるご質問カテゴリー $args = array( 'label' => '質問のカテゴリー', 'public' => true, 'hierarchical' => true, 'rewrite' => array('slug' => 'question', 'with_front' => false), 'singular_label' => '質問のカテゴリー' ); register_taxonomy( 'question_cat', array('question'), $args ); // よくあるご質問タグ $args = array( 'label' => '関連するタグ', 'public' => true, 'hierarchical' => false, 'rewrite' => array('slug' => 'question', 'with_front' => false), 'singular_label' => '関連するタグ' ); register_taxonomy( 'question_tag', array('question'), $args ); }
Custom Post Type Permalinks
というプラグインを使っており
https://〇〇.com/question/%post_id%/
としております。
'has_archive' => true,
としているのに、なぜ質問のカテゴリーだけアーカイブページが表示されないのか教えていただきたいです
補足情報(FW/ツールのバージョンなど)
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。