From 5e5f5dd4e98d17496104943c5e9dd138569c463b Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Wed, 1 Jun 2016 22:46:28 +0000 Subject: [PATCH] Docs: Improve return descriptions for `get_the_category()` and `get_the_term()` to specifically notate that an array of `WP_Term` objects is returned on success. See #32246. Built from https://develop.svn.wordpress.org/trunk@37615 git-svn-id: http://core.svn.wordpress.org/trunk@37583 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/category-template.php | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-includes/category-template.php b/wp-includes/category-template.php index 42dee7535e..8bba6b4678 100644 --- a/wp-includes/category-template.php +++ b/wp-includes/category-template.php @@ -74,7 +74,7 @@ function get_category_parents( $id, $link = false, $separator = '/', $nicename = * @since 0.71 * * @param int $id Optional, default to current post ID. The post ID. - * @return array Array of objects, one for each category assigned to the post. + * @return array Array of WP_Term objects, one for each category assigned to the post. */ function get_the_category( $id = false ) { $categories = get_the_terms( $id, 'category' ); @@ -1185,7 +1185,7 @@ function term_description( $term = 0, $taxonomy = 'post_tag' ) { * * @param int|object $post Post ID or object. * @param string $taxonomy Taxonomy name. - * @return array|false|WP_Error Array of term objects on success, false if there are no terms + * @return array|false|WP_Error Array of WP_Term objects on success, false if there are no terms * or the post does not exist, WP_Error on failure. */ function get_the_terms( $post, $taxonomy ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index 27c651cba0..9324c7eeb7 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.6-alpha-37614'; +$wp_version = '4.6-alpha-37615'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.