diff --git a/wp-includes/category.php b/wp-includes/category.php index 5dc35cf6b5..d1c43274d7 100644 --- a/wp-includes/category.php +++ b/wp-includes/category.php @@ -85,8 +85,9 @@ function get_categories( $args = '' ) { * correspond to a WP_Term object, an associative array, or a numeric array, * respectively. Default OBJECT. * @param string $filter Optional. How to sanitize category fields. Default 'raw'. - * @return object|array|WP_Error|null Category data in type defined by $output parameter. - * WP_Error if $category is empty, null if it does not exist. + * @return WP_Term|array|WP_Error|null Category data in type defined by $output parameter. + * Returns a WP_Term object with backwards compatible property aliases filled in. + * WP_Error if $category is empty, null if it does not exist. */ function get_category( $category, $output = OBJECT, $filter = 'raw' ) { $category = get_term( $category, 'category', $output, $filter ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 2eafc2529b..eda98ef718 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.8-alpha-59703'; +$wp_version = '6.8-alpha-59704'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.