wpseek.com
WordPress开发者和主题制作者的搜索引擎



get_taxonomies › WordPress Function

Since3.0.0
已弃用n/a
get_taxonomies ( $args = array(), $output = 'names', $operator = 'and' )
参数: (3)
  • (array) $args Optional. An array of `key => value` arguments to match against the taxonomy objects. Default empty array.
    Required: No
    默认: array()
  • (string) $output Optional. The type of output to return in the array. Either 'names' or 'objects'. Default 'names'.
    Required: No
    默认: 'names'
  • (string) $operator Optional. The logical operation to perform. Accepts 'and' or 'or'. 'or' means only one element from the array needs to match; 'and' means all elements must match. Default 'and'.
    Required: No
    默认: 'and'
返回:
  • (string[]|WP_Taxonomy[]) An array of taxonomy names or objects.
定义在:
文档:

Retrieves a list of registered taxonomy names or objects.



源码

function get_taxonomies( $args = array(), $output = 'names', $operator = 'and' ) {
	global $wp_taxonomies;

	$field = ( 'names' === $output ) ? 'name' : false;

	return wp_filter_object_list( $wp_taxonomies, $args, $operator, $field );
}