diff --git a/src/wp-includes/taxonomy.php b/src/wp-includes/taxonomy.php
index 39b5b00..001d791 100644
|
a
|
b
|
function get_taxonomies( $args = array(), $output = 'names', $operator = 'and' ) |
| 161 | 161 | * It appears that this function can be used to find all of the names inside of |
| 162 | 162 | * $wp_taxonomies global variable. |
| 163 | 163 | * |
| 164 | | * `<?php $taxonomies = get_object_taxonomies('post'); ?>` Should |
| | 164 | * `$taxonomies = get_object_taxonomies('post')` Should |
| 165 | 165 | * result in `Array( 'category', 'post_tag' )` |
| 166 | 166 | * |
| 167 | 167 | * @since 2.3.0 |