当前浏览:首页 / WordPress函数 / get_taxonomy_labels()

get_taxonomy_labels( WP_Taxonomy $tax )

使用分类法对象中的所有分类法标签(label)生成对象

labels

taxmore...

taxonomy 分类法more...


参数

$tax

(WP_Taxonomy)(必填) 分类法对象。


返回

(object) 分类法(taxonomy)标签(label)对象。第一个默认值适用于非层次分类法(如标签Tag),第二个默认值用于层次分类法(如类别Category)。

  • 'name'
    (string) 分类法的名称,通常为复数。与$tax->label相同,并被$tax->label覆盖。默认值为'Tags'/'Categories'。
  • 'singular_name'
    (string) 此分类法的单个对象的名称。默认值为'Tag'/'Category'。
  • 'search_items'
    (string) 默认 'Search Tags'/'Search Categories'。
  • 'popular_items'
    (string) 仅用于非层次分类法。默认为'Popular Tags'。
  • 'all_items'
    (string) 默认为'All Tags'/'All Categories'。
  • 'parent_item'
    (string) 仅用于层次分类法。默认为'Parent Category'。
  • 'parent_item_colon'
    (string)parent_item相同,但结尾带有冒号:
  • 'name_field_description'
    (string) 编辑标签(tag)界面上名称字段的描述。默认值为:名称是它在您网站上的显示方式。
  • 'slug_field_description'
    (string) 编辑标签(tag)界面上的slug字段描述。默认值:“slug”是名称的 URL 友好版本。它通常都是小写的,并且只包含字母、数字和连字符。
  • 'parent_field_description'
    (string) 编辑标签(tag)界面上父字段的描述。默认值'Assign a parent term to create a hierarchy. The term Jazz, for example, would be the parent of Bebop and Big Band'(指定一个父级分类项来创建一个层次结构。例如,"爵士乐"一词将是 "贝博普"和 "大乐队"的母体)。
  • 'desc_field_description'
    (string) 编辑标签(tag)界面上描述字段的描述。默认值:默认情况下,描述不突出;但是,某些主题可能会显示它。
  • 'edit_item'
    (string) 默认为'Edit Tag'/'Edit Category'。
  • 'view_item'
    (string) 默认为'View Tag'/'View Category'。
  • 'update_item'
    (string) 默认为'Update Tag'/'Update Category'。
  • 'add_new_item'
    (string) 默认为'Add New Tag'/'Add New Category'。
  • 'new_item_name'
    (string) 默认为'New Tag Name'/'New Category Name'。
  • 'separate_items_with_commas'
    (string) 仅用于非层次分类法。在meta box中使用,默认为'Separate tags with commas'。
  • 'add_or_remove_items'
    (string) 仅用于非层次分类法。禁用JavaScript时在meta box中使用,默认为'Add or remove tags'。
  • 'choose_from_most_used'
    (string) 仅用于非层次分类法。默认'Choose from the most used tags',用于meta box。
  • 'not_found'
    (string) 在meta box和分类列表表中使用,默认 'No tags found'/'No categories found'。
  • 'no_terms'
    (string) 在文章和媒体列表表中使用,默认 'No tags'/'No categories'。
  • 'filter_by_item'
    (string) 仅用于层次分类法。在文章列表表中使用,默认 'Filter by category'。
  • 'items_list_navigation'
    (string) 表分页隐藏标题的label。
  • 'items_list'
    (string) 表隐藏标题的label。
  • 'most_used'
    (string) 最常用选项卡的标题。默认为'Most Used'。
  • 'back_to_items'
    (string) 分类项(term)更新后显示的label。
  • 'item_link'
    (string) 在区块编辑器中使用。导航链接区块变体的标题。默认 'Tag Link'/'Category Link'。
  • 'item_link_description'
    (string) 在区块编辑器中使用。导航链接区块变体的描述。默认值为'A link to a tag'/'A link to a category'。


源码

查看源码 官方文档


更新日志

版本描述
5.9.0添加了name_field_descriptionslug_field_descriptionparent_field_descriptiondesc_field_description标签。
5.8.0添加了item_linkitem_link_description标签。
5.7.0添加了filter_by_item标签。
4.9.0添加了most_usedback_to_items标签。
4.4.0添加了items_list_navigationitems_list标签。
4.3.0添加了no_terms标签。
3.0.0开始引入

使用示例

  • 示例1

    返回对象还包括一个`menu_name`属性(默认为“name”属性),用于管理菜单中的选项卡。