Docs: Correct the possible return types and corresponding descriptions for `wp_get_post_terms()`.

Props adamkheckler for the initial patch.
Fixes #32950.


git-svn-id: https://develop.svn.wordpress.org/trunk@33393 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Drew Jaynes 2015-07-23 07:44:49 +00:00
parent 3ceb11bea4
commit eb7070c7f8
1 changed files with 2 additions and 1 deletions

View File

@ -3013,7 +3013,8 @@ function wp_get_post_tags( $post_id = 0, $args = array() ) {
* global $post. Default 0.
* @param string $taxonomy Optional. The taxonomy for which to retrieve terms. Default 'post_tag'.
* @param array $args Optional. {@link wp_get_object_terms()} arguments. Default empty array.
* @return array List of post tags.
* @return array|WP_Error List of post terms or empty array if no terms were found. WP_Error object
* if `$taxonomy` doesn't exist.
*/
function wp_get_post_terms( $post_id = 0, $taxonomy = 'post_tag', $args = array() ) {
$post_id = (int) $post_id;