您好我想使用 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
));
}
所以帖子类型的 slug 是电影。当我加载
../类别电影/设计
它显示 404。我使用的是 wordpress 3.5.1,所以它应该能够显示 category-(slug).php
有任何想法吗?谢谢