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