get_taxonomies( array $args = array(), string $output = 'names', string $operator = 'and' )
Retrieves a list of registered taxonomy names or objects.
Parameters
- $args
-
(Optional) An array of
key => value
arguments to match against the taxonomy objects.Default value: array()
- $output
-
(Optional) The type of output to return in the array. Accepts either taxonomy 'names' or 'objects'. Default 'names'.
Default value: 'names'
- $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'.
Default value: 'and'
Return
(array) A list of taxonomy names or objects.
Source
File: wp-includes/taxonomy.php
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);
}
Changelog
Version | Description |
---|---|
WP-3.0.0 | Introduced. |