Docs: Improve the description of the get_object_taxonomies() function. Uncertainty has no place in documentation.

See #32246


git-svn-id: https://develop.svn.wordpress.org/trunk@36712 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
John Blackbourn 2016-02-25 21:24:10 +00:00
parent fd8e31e3b2
commit 15245415c7

View File

@ -156,13 +156,16 @@ function get_taxonomies( $args = array(), $output = 'names', $operator = 'and' )
}
/**
* Return all of the taxonomy names that are of $object_type.
* Return the names or objects of the taxonomies which are registered for the requested object or object type, such as
* a post object or post type name.
*
* It appears that this function can be used to find all of the names inside of
* $wp_taxonomies global variable.
* Example:
*
* `$taxonomies = get_object_taxonomies( 'post' )` Should
* result in `Array( 'category', 'post_tag' )`
* $taxonomies = get_object_taxonomies( 'post' );
*
* This results in:
*
* Array( 'category', 'post_tag' )
*
* @since 2.3.0
*