wpseek.com
Uma área de pesquisa sobre o WordPress para devs e autores do tema



get_taxonomies › WordPress Function

Desde3.0.0
Obsoleton/a
get_taxonomies ( $args = array(), $output = 'names', $operator = 'and' )
Parâmetros: (3)
  • (array) $args Optional. An array of `key => value` arguments to match against the taxonomy objects. Default empty array.
    Required: No
    Padrão: array()
  • (string) $output Optional. The type of output to return in the array. Either 'names' or 'objects'. Default 'names'.
    Required: No
    Padrão: '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
    Padrão: 'and'
Retorna:
  • (string[]|WP_Taxonomy[]) An array of taxonomy names or objects.
Definido em:
Codex:

Retrieves a list of registered taxonomy names or objects.



Fonte

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 );
}