wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



get_taxonomies › WordPress Function

Seit3.0.0
Veraltetn/v
get_taxonomies ( $args = array(), $output = 'names', $operator = 'and' )
Parameter: (3)
  • (array) $args Optional. An array of `key => value` arguments to match against the taxonomy objects. Default empty array.
    Erforderlich: Nein
    Standard: array()
  • (string) $output Optional. The type of output to return in the array. Either 'names' or 'objects'. Default 'names'.
    Erforderlich: Nein
    Standard: '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'.
    Erforderlich: Nein
    Standard: 'and'
Gibt zurück:
  • (string[]|WP_Taxonomy[]) An array of taxonomy names or objects.
Definiert in:
Codex:

Retrieves a list of registered taxonomy names or objects.



Quellcode

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