【发布时间】:2015-02-12 21:36:13
【问题描述】:
我为标签创建了自定义分类法
function create_topics_nonhierarchical_taxonomy() {
// Labels part for the GUI
$labels = array(
'name' => _x( 'Topics', 'taxonomy general name' ),
'singular_name' => _x( 'Topic', 'taxonomy singular name' ),
'search_items' => __( 'Search Topics' ),
'popular_items' => __( 'Popular Topics' ),
'all_items' => __( 'All Topics' ),
'parent_item' => null,
'parent_item_colon' => null,
'edit_item' => __( 'Edit Topic' ),
'update_item' => __( 'Update Topic' ),
'add_new_item' => __( 'Add New Topic' ),
'new_item_name' => __( 'New Topic Name' ),
'separate_items_with_commas' => __( 'Separate topics with commas' ),
'add_or_remove_items' => __( 'Add or remove topics' ),
'choose_from_most_used' => __( 'Choose from the most used topics' ),
'menu_name' => __( 'Topics' )
);
// Now register the non-hierarchical taxonomy like tag
register_taxonomy('topics','post',array(
'hierarchical' => false,
'labels' => $labels,
'show_ui' => true,
'show_admin_column' => true,
'update_count_callback' => '_update_post_term_count',
'query_var' => true,
'show_in_nav_menus' => true,
'rewrite' => array( 'slug' => 'topic' ),
));
}
并将其连接到我的自定义帖子类型
register_post_type( 'video', array(
...
'taxonomies' => array( 'topics' ),
...
) );
自定义帖子类型使用archive-video.php 作为存档模板。是否可以为自定义分类法使用相同的存档模板?无需复制文件并重命名它。
【问题讨论】:
-
谢谢。该功能将不起作用,因为我没有使用archives.php。我正在使用一个名为 archive-video.php 的自定义存档(也在子目录中)
标签: php wordpress custom-post-type taxonomy