get_taxonomy

函数
get_taxonomy ( $taxonomy )
参数
  • (string) $taxonomy Name of taxonomy object to return.
    Required:
返回值
  • (WP_Taxonomy|false) The taxonomy object or false if $taxonomy doesn't exist.
定义位置
相关方法
get_taxonomiesis_taxonomyget_taxonomy_labelsregister_taxonomyget_the_taxonomies
引入
2.3.0
弃用
-

get_taxonomy: 这个函数检索一个特定的注册分类法对象。它接受一个参数:要检索的分类法名称。它返回该分类法对象。

检索$taxonomy的分类学对象。

get_taxonomy函数将首先检查给定的参数字符串是否是一个分类学对象,如果是,它将返回。

function get_taxonomy( $taxonomy ) {
	global $wp_taxonomies;

	if ( ! taxonomy_exists( $taxonomy ) ) {
		return false;
	}

	return $wp_taxonomies[ $taxonomy ];
}

常见问题

FAQs
查看更多 >