カスタム投稿の個別記事が404エラーになる
-
fanction.phpに下記の内容を書き、カスタム投稿を作成しました。
add_action( ‘init’, ‘create_post_type’ );
function create_post_type() {
register_post_type(‘test’,
array(
‘label’ => ‘エリア別’,
‘description’ => ”,
‘public’ => true,
‘show_ui’ => true,
‘show_in_menu’ => true,
‘capability_type’ => ‘post’,
‘hierarchical’ => false,
‘rewrite’ => true,
‘query_var’ => false,
‘has_archive’ => true,
‘exclude_from_search’ => false,
‘menu_position’ => 20,
‘supports’ => array(‘title’,’editor’,’thumbnail’),
‘taxonomies’ => array(‘test_cat’),
‘labels’ => array (
‘name’ => ‘投稿一覧’,
‘singular_name’ => ‘投稿登録’,
‘add_new_test’ => ‘新しい投稿を追加する’,
‘add_new’ => ‘新しい投稿を追加する’,
‘edit_test’ => ‘投稿内容を編集’
)
)
);register_taxonomy(
‘test_cat’,
‘test’,
array(
‘hierarchical’ => true,
‘label’ => ‘カテゴリー’,
‘show_ui’ => true,
‘query_var’ => true,
‘rewrite’ => array(‘slug’ => ‘test’),
‘singular_label’ => ‘カテゴリー’
)
);カスタム投稿のパーマリンクには「Custom Post Type Permalinks」を使用して
ドメイン/test/%test_cat%/%post_id%/ としています。
taxonomy.phpは問題なく表示しますが、個別記事(single-test.php)は404エラーになってしまいます。wordpressのバージョン 4.5.3
Custom Post Type Permalinksのバージョン 2.1.1
カスタムフィールドテンプレートのバージョン 2.3.6どなたかご教授いただけないでしょうか。
- トピック「カスタム投稿の個別記事が404エラーになる」には新たに返信することはできません。