出于某种原因,当我点击分类术语页面的链接时,wordpress会一直显示索引文件,并说找不到页面。我有一个带有“贡献者”的页面,其中使用了一个模板,该模板显示了自定义分类“贡献者”的条款,并带有指向其页面的链接,因此我单击该链接并发生错误。
这是我添加分类法的functions.php
代码:
register_taxonomy(
'contributor',
'post',
array(
'hierarchical' => true,
'labels' => array(
'name' => _x( 'Contributors', 'taxonomy general name' ),
'singular_name' => _x( 'Contributor', 'taxonomy singular name' ),
'search_items' => __( 'Search Contributors' ),
'all_items' => __( 'All Contributors' ),
'parent_item' => __( 'Parent Contributor' ),
'parent_item_colon' => __( 'Parent Contributor:' ),
'edit_item' => __( 'Edit Contributor' ),
'update_item' => __( 'Update Contributor' ),
'add_new_item' => __( 'Add New Contributor' ),
'new_item_name' => __( 'New Contributor Name' ),
'menu_name' => __( 'Contributors' ),
),
'show_tagcloud' => true
)
);
有没有人知道为什么,即使包含一个名为taxonomy-contributor.php
的文件,错误仍然会发生?
答案 0 :(得分:7)
似乎你需要刷新重写才能让它工作
add_action('init', 'custom_taxonomy_flush_rewrite');
function custom_taxonomy_flush_rewrite() {
global $wp_rewrite;
$wp_rewrite->flush_rules();
}
答案 1 :(得分:0)