我使用wordpress网站上的示例添加新的帖子类型,我使用wp3.2.1,如下所示
// Add custom post type for the case studies
add_action( 'init', 'create_casestudy_post_type' );
function create_casestudy_post_type() {
register_post_type( 'case_study',
array(
'labels' => array(
'name' => __( 'Case Studies' ),
'singular_name' => __( 'Case Studies' )
),
'public' => true,
'has_archive' => true,
'rewrite' => array('slug' => 'case-studies')
)
);
}
这段代码我已经放入了我的主题目录中的functions.php文件。
问题是,当我尝试查看URL时,它会返回找不到的404页面...我使用single-case_study.php作为页面模板,但它一直只有404。
我的永久链接在自定义结构中设置为/%category%/%postname%/。
有任何帮助吗? ..这真是让我烦恼
干杯