可以重命名默认的“ post tags”分类法吗?


16

我打算使用默认的“帖子标签”分类法在帖子和2种自定义帖子类型之间提供一组通用的标签(以允许按标签进行收集/汇总)。

我想将“帖子标签”分类法重命名为其他名称,例如“通用标签”,以使其更加清晰,尤其是当此分类法附加到其他自定义帖子类型时。

因此,在Wordpress中是否可以执行此操作,还是可以通过SQL进行操作。另外,任何人都知道是否有这种分类法与nane“ post tags”一起存在

Answers:


23

有关分类法的信息存储在全局$wp_taxonomies数组中。如果您注册了新的分类法,则会将其添加为具有不同属性的对象,包括在UI中使用的标签。每次加载页面时,标准标签和类别也都通过create_initial_taxonomies()功能进行了注册。上触发init

由于它是对象的简单数组,因此我们可以对其进行修改并查看会发生什么。我们感兴趣的属性是labelslabel

add_action( 'init', 'wpa4182_init');
function wpa4182_init()
{
    global $wp_taxonomies;

    // The list of labels we can modify comes from
    //  http://codex.wordpress.org/Function_Reference/register_taxonomy
    //  http://core.trac.wordpress.org/browser/branches/3.0/wp-includes/taxonomy.php#L350
    $wp_taxonomies['post_tag']->labels = (object)array(
        'name' => 'WPA 4182 Tags',
        'menu_name' => 'WPA 4182 Tags',
        'singular_name' => 'WPA 4182 Tag',
        'search_items' => 'Search WPA 4182 Tags',
        'popular_items' => 'Popular WPA 4182 Tags',
        'all_items' => 'All WPA 4182 Tags',
        'parent_item' => null, // Tags aren't hierarchical
        'parent_item_colon' => null,
        'edit_item' => 'Edit WPA 4182 Tag',
        'update_item' => 'Update WPA 4182 Tag',
        'add_new_item' => 'Add new WPA 4182 Tag',
        'new_item_name' => 'New WPA 4182 Tag Name',
        'separate_items_with_commas' => 'Separata WPA 4182 tags with commas',
        'add_or_remove_items' => 'Add or remove WPA 4182 tags',
        'choose_from_most_used' => 'Choose from the most used WPA 4182 tags',
    );

    $wp_taxonomies['post_tag']->label = 'WPA 4182 Tags';
}

我没有到处检查过它,您可能必须自己更改主题,但这似乎可以满足您的要求:

使用新标签标记metabox


不错-我会试一下并报告。谢谢
阿努

正是我需要的。不知道全球分类法
helgatheviking 2011年

使用此代码时的一个小问题:如果我使用DEBUG:true运行WP 3.8.1,我会在每个标签的编辑页面上看到一个通知:“注意:/ wp-includes / admin中的stdClass :: $ view_item -bar.php行508“。的确,如果我在列表中添加“ view_item”标签(View WPA 4182),该通知将消失。
Manu 2014年

3

您可以删除类别分类法,然后简单地创建自己的分类法。

在我的示例中,我删除了“类别”分类,并将其替换为“主题”分类

add_action( 'init', 'unregister_taxonomy' );
function unregister_taxonomy() {
    global $wp_taxonomies;
    $taxonomy = 'category';
    if ( taxonomy_exists($taxonomy) ){
        unset( $wp_taxonomies[$taxonomy] );
    }
}

function article_subjects() {
    $labels = array(
        'name'                       => _x( 'Subjects', 'Taxonomy General Name', 'dc' ),
        'singular_name'              => _x( 'Subject', 'Taxonomy Singular Name', 'dc' ),
        'menu_name'                  => __( 'Subjects', 'dc' ),
        'all_items'                  => __( 'All Items', 'dc' ),
        'parent_item'                => __( 'Parent Item', 'dc' ),
        'parent_item_colon'          => __( 'Parent Item:', 'dc' ),
        'new_item_name'              => __( 'New Subject', 'dc' ),
        'add_new_item'               => __( 'Add New Item', 'dc' ),
        'edit_item'                  => __( 'Edit Item', 'dc' ),
        'update_item'                => __( 'Update Item', 'dc' ),
        'separate_items_with_commas' => __( 'Separate items with commas', 'dc' ),
        'search_items'               => __( 'Search Items', 'dc' ),
        'add_or_remove_items'        => __( 'Add or remove items', 'dc' ),
        'choose_from_most_used'      => __( 'Choose from the most used items', 'dc' ),
        'not_found'                  => __( 'Not Found', 'dc' ),
    );
    $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( 'article_subjects', array( 'post' ), $args );
}
add_action( 'init', 'article_subjects', 0 );

这正是我所需要的。谢谢!我只做了一个小小的更改:english.stackexchange.com/questions/25931/…–
tehlivi

2

重命名特定类别标签:

add_action('init', 'renameCategory');
function renameCategory() {
    global $wp_taxonomies;

    $cat = $wp_taxonomies['category'];
    $cat->label = 'My Categories';
    $cat->labels->singular_name = 'My Categorie';
    $cat->labels->name = $cat->label;
    $cat->labels->menu_name = $cat->label;
    //…
}

标签:http : //codex.wordpress.org/Function_Reference/register_taxonomy#Arguments


到目前为止,这是调整默认类别分类法名称的最简单方法,很好的答案。
serraosays

0

这里

// hook the translation filters
add_filter(  'gettext',  'change_post_to_article'  );
add_filter(  'ngettext',  'change_post_to_article'  );

function change_post_to_article( $translated ) {
     $translated = str_ireplace(  'Post',  'Article',  $translated );  // ireplace is PHP5 only
     return $translated;
}
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.