首页 WordPress函数大全 get_taxonomy_labels()

get_taxonomy_labels()

2020-05-01 / 3123阅 / 悠然

如何你看完本文还不知道如何使用该函数,可以联系我定制视频教程,50元/个函数,学不会全额退款

get_taxonomy_labels( WP_Taxonomy $tax )

Builds an object with all taxonomy labels out of a taxonomy object.

描述

参数

$tax

(WP_Taxonomy)
(Required)
Taxonomy object.

返回

(object) Taxonomy labels object. The first default value is for non-hierarchical taxonomies (like tags) and the second>

  • 'name'
    (string) General name for the taxonomy, usually plural. The same as and overridden by $tax->label. Default 'Tags'/'Categories'.
  • 'singular_name'
    (string) Name for one object of this taxonomy. Default 'Tag'/'Category'.
  • 'search_items'
    (string) Default 'Search Tags'/'Search Categories'.
  • 'popular_items'
    (string) This label is only used for non-hierarchical taxonomies. Default 'Popular Tags'.
  • 'all_items'
    (string) Default 'All Tags'/'All Categories'.
  • 'parent_item'
    (string) This label is only used for hierarchical taxonomies. Default 'Parent Category'.
  • 'parent_item_colon'
    (string) The same as parent_item, but with colon : in the end.
  • 'edit_item'
    (string) Default 'Edit Tag'/'Edit Category'.
  • 'view_item'
    (string) Default 'View Tag'/'View Category'.
  • 'update_item'
    (string) Default 'Update Tag'/'Update Category'.
  • 'add_new_item'
    (string) Default 'Add New Tag'/'Add New Category'.
  • 'new_item_name'
    (string) Default 'New Tag Name'/'New Category Name'.
  • 'separate_items_with_commas'
    (string) This label is only used for non-hierarchical taxonomies. Default 'Separate tags with commas', used in the meta box.
  • 'add_or_remove_items'
    (string) This label is only used for non-hierarchical taxonomies. Default 'Add or remove tags', used in the meta box when JavaScript is disabled.
  • 'choose_from_most_used'
    (string) This label is only used on non-hierarchical taxonomies. Default 'Choose from the most used tags', used in the meta box.
  • 'not_found'
    (string) Default 'No tags found'/'No categories found', used in the meta box and taxonomy list table.
  • 'no_terms'
    (string) Default 'No tags'/'No categories', used in the posts and media list tables.
  • 'items_list_navigation'
    (string) Label for the table pagination hidden heading.
  • 'items_list'
    (string) Label for the table hidden heading.
  • 'most_used'
    (string) Title for the Most Used tab. Default 'Most Used'.
  • 'back_to_items'
    (string) Label displayed after a term has been updated.
  • 大家谈论
      我的见解