我正在尝试获取与自定义分类相关的帖子。
我有一个名为article
的新CPT。
我有两个与CPT
相关的自定义分类:tags
和cats
我可以在名为archive-article.php
的自定义归档页面中看到cpt项目。
问题是,我创建了两个新文件:taxonomy-cats.php
和' taxonomy-tags.php'这些文件的内容是archive-article.php
的exacley。文件。
我得到的按摩没有找到任何东西。我检查过,我知道有与此分类值相关的自定义帖子。
这是我收到空档案的网址: ' http://localhost/broker/cats/sales/'
可能是什么问题?
谢谢!
这是分类代码:
function create_cats_taxonomy() {
$labels = array(
'name' => _x( 'cats', 'taxonomy general name' ),
'singular_name' => _x( 'cat', 'taxonomy singular name' ),
'search_items' => __( 'search items' ),
'all_items' => __( 'all items' ),
'parent_item' => __( 'parent item' ),
'parent_item_colon' => __( 'parent item colon:' ),
'edit_item' => __( 'edit item' ),
'update_item' => __( 'update item' ),
'add_new_item' => __( 'add new item' ),
'new_item_name' => __( 'new cat' ),
'menu_name' => __( 'cat'),
);
// Now register the taxonomy
register_taxonomy('cats',array('article'), array(
'hierarchical' => true,
'labels' => $labels,
'show_ui' => true,
'show_admin_column' => true,
'query_var' => true,
'rewrite' => array( 'slug' => 'cats' ),
));
}
add_action( 'init', 'create_cats_taxonomy' );