get_taxonomies() – Retrieves a list of registered taxonomy names or objects.
You appear to be a bot. Output may be restricted
Description
Retrieves a list of registered taxonomy names or objects.
Usage
$string[]|WP_Taxonomy[] = get_taxonomies( $args, $output, $operator );
Parameters
- $args
- ( array ) optional – Optional. An array of
key => value
arguments to match against the taxonomy objects. Default empty array. - $output
- ( string ) optional default: names – Optional. The type of output to return in the array. Accepts either taxonomy 'names' or 'objects'. Default 'names'.
- $operator
- ( string ) optional default: and – 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'.
Returns
string[]|WP_Taxonomy[] An array of taxonomy names or objects.
Source
File name: wordpress/wp-includes/taxonomy.php
Lines:
1 to 7 of 7
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 ); }