gpt4 book ai didi

找不到 Wordpress 自定义分类术语页面

转载 作者:行者123 更新时间:2023-12-05 01:20:02 25 4
gpt4 key购买 nike

由于某种原因,当我单击分类术语页面的链接时,wordpress 一直显示索引文件并说找不到页面。我有一个带有 slug“贡献者”的页面,使用的模板显示自定义分类法“贡献者”的条款以及指向其页面的链接,所以我单击该链接并发生错误。


这是我用于添加分类的 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 的文件,错误仍然会出现?

最佳答案

看来你需要刷新重写才能让它工作

add_action('init', 'custom_taxonomy_flush_rewrite');
function custom_taxonomy_flush_rewrite() {
global $wp_rewrite;
$wp_rewrite->flush_rules();
}

关于找不到 Wordpress 自定义分类术语页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11932750/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com