我可以为wordpress创建第二个自定义标签系统吗?

时间:2019-08-02 08:55:50

标签: wordpress wordpress-theming

我需要在Wordpress中拥有主要和次要标记系统,但是发现很难创建第二个自定义标记系统,而且关于此教程的内容似乎并不多。

有人知道实现这一目标的方法吗?

感谢您的时间和建议!

我需要与自定义分类法不同的东西,我需要将其作为标签。

2 个答案:

答案 0 :(得分:1)

如果我对您的理解正确,则可以根据需要创建任意数量的自定义标签。这是创建两个自定义标签的示例:

// Register Custom Taxonomy
function custom_tags1() {

$labels = array(
    'name'                       => _x( 'Custom Tags 1', 'Taxonomy General Name', 'text_domain' ),
    'singular_name'              => _x( 'Custom Tags 1', 'Taxonomy Singular Name', 'text_domain' ),
    'menu_name'                  => __( 'Custom Tags 1', 'text_domain' ),
    'all_items'                  => __( 'All Custom Tags 1', 'text_domain' ),
    'parent_item'                => __( 'Parent Tag', 'text_domain' ),
    'parent_item_colon'          => __( 'Parent Tag:', 'text_domain' ),
    'new_item_name'              => __( 'New Tag Name', 'text_domain' ),
    'add_new_item'               => __( 'Add New Tag', 'text_domain' ),
    'edit_item'                  => __( 'Edit Tag', 'text_domain' ),
    'update_item'                => __( 'Update Tag', 'text_domain' ),
    'view_item'                  => __( 'View Tag', 'text_domain' ),
    'separate_items_with_commas' => __( 'Separate Tags with commas', 'text_domain' ),
    'add_or_remove_items'        => __( 'Add or remove Tags', 'text_domain' ),
    'choose_from_most_used'      => __( 'Choose from the most used', 'text_domain' ),
    'popular_items'              => __( 'Popular Tags', 'text_domain' ),
    'search_items'               => __( 'Search Tags', 'text_domain' ),
    'not_found'                  => __( 'Not Found', 'text_domain' ),
    'no_terms'                   => __( 'No Tags', 'text_domain' ),
    'items_list'                 => __( 'Tags list', 'text_domain' ),
    'items_list_navigation'      => __( 'Tags list navigation', 'text_domain' ),
);
$args = array(
    'labels'                     => $labels,
    'hierarchical'               => false,
    'public'                     => true,
    'show_ui'                    => true,
    'show_admin_column'          => true,
    'show_in_nav_menus'          => true,
    'show_tagcloud'              => true,
);
register_taxonomy( 'custom_tags_1', array( 'post' ), $args );

}
add_action( 'init', 'custom_tags1', 0 );

// Register Custom Taxonomy
function custom_tags2() {

$labels = array(
    'name'                       => _x( 'Custom Tags 2', 'Taxonomy General Name', 'text_domain' ),
    'singular_name'              => _x( 'Custom Tags 2', 'Taxonomy Singular Name', 'text_domain' ),
    'menu_name'                  => __( 'Custom Tags 2', 'text_domain' ),
    'all_items'                  => __( 'All Custom Tags 2', 'text_domain' ),
    'parent_item'                => __( 'Parent Tag', 'text_domain' ),
    'parent_item_colon'          => __( 'Parent Tag:', 'text_domain' ),
    'new_item_name'              => __( 'New Tag Name', 'text_domain' ),
    'add_new_item'               => __( 'Add New Tag', 'text_domain' ),
    'edit_item'                  => __( 'Edit Tag', 'text_domain' ),
    'update_item'                => __( 'Update Tag', 'text_domain' ),
    'view_item'                  => __( 'View Tag', 'text_domain' ),
    'separate_items_with_commas' => __( 'Separate Tags with commas', 'text_domain' ),
    'add_or_remove_items'        => __( 'Add or remove Tags', 'text_domain' ),
    'choose_from_most_used'      => __( 'Choose from the most used', 'text_domain' ),
    'popular_items'              => __( 'Popular Tags', 'text_domain' ),
    'search_items'               => __( 'Search Tags', 'text_domain' ),
    'not_found'                  => __( 'Not Found', 'text_domain' ),
    'no_terms'                   => __( 'No Tags', 'text_domain' ),
    'items_list'                 => __( 'Tags list', 'text_domain' ),
    'items_list_navigation'      => __( 'Tags list navigation', 'text_domain' ),
);
$args = array(
    'labels'                     => $labels,
    'hierarchical'               => false,
    'public'                     => true,
    'show_ui'                    => true,
    'show_admin_column'          => true,
    'show_in_nav_menus'          => true,
    'show_tagcloud'              => true,
);
register_taxonomy( 'custom_tags_2', array( 'post' ), $args );

}
add_action( 'init', 'custom_tags2', 0 );

答案 1 :(得分:0)

容易,只需创建一个非分层的自定义分类法:)