在WordPress中,可以通过以下步骤将分类法添加到主题创建的帖子类型:
function custom_taxonomy() {
$labels = array(
'name' => _x( '分类法名称', 'taxonomy general name' ),
'singular_name' => _x( '分类法名称', 'taxonomy singular name' ),
'search_items' => __( '搜索分类法名称' ),
'all_items' => __( '所有分类法名称' ),
'parent_item' => __( '父级分类法名称' ),
'parent_item_colon' => __( '父级分类法名称:' ),
'edit_item' => __( '编辑分类法名称' ),
'update_item' => __( '更新分类法名称' ),
'add_new_item' => __( '添加新的分类法名称' ),
'new_item_name' => __( '新的分类法名称' ),
'menu_name' => __( '分类法名称' ),
);
$args = array(
'hierarchical' => true, // 如果分类法是层级结构,则设置为true;如果是标签结构,则设置为false
'labels' => $labels,
'show_ui' => true,
'show_admin_column' => true,
'query_var' => true,
'rewrite' => array( 'slug' => '分类法名称' ), // 将“分类法名称”替换为实际的分类法名称
);
register_taxonomy( '分类法名称', array( 'post' ), $args ); // 将“分类法名称”替换为实际的分类法名称,将“post”替换为实际的帖子类型
}
add_action( 'init', 'custom_taxonomy' );
推荐的腾讯云相关产品:腾讯云云服务器(CVM)和腾讯云对象存储(COS)。
领取专属 10元无门槛券
手把手带您无忧上云