こんにちは、カスタム投稿タイプに category-(slug).php を使用したいと思います。
functions.php で、映画の投稿タイプを次のように定義しました。
add_action( 'init', 'create_post_type_movie' );
function create_post_type_movie() {
register_post_type( 'ra_movie',
array(
'labels' => array(
'name' => __( 'Movies' ),
'singular_name' => __( 'Movie' )
),
'public' => true,
'has_archive' =>true,
'rewrite' => array('slug' => 'movie'),
'supports' => array('title','editor','author','thumbnail','excerpt','comments','custom-fields','revisions'),
'taxonomies' => array('category', 'post_tag') // this is IMPORTANT
));
}
したがって、投稿タイプのスラッグはmovieです。ロードするとき
../category-movie/デザイン
404 が表示されます。wordpress 3.5.1 を使用しているので、category-(slug).php を表示できるはずです。
何か案は?ありがとうございました