diff --git a/wp-includes/taxonomy.php b/wp-includes/taxonomy.php index 08acb411af..3455fb8369 100644 --- a/wp-includes/taxonomy.php +++ b/wp-includes/taxonomy.php @@ -813,8 +813,9 @@ function get_tax_sql( $tax_query, $primary_table, $primary_id_column ) { * @param string $taxonomy Optional. Taxonomy name that $term is part of. * @param string $output Constant OBJECT, ARRAY_A, or ARRAY_N * @param string $filter Optional, default is raw or no WordPress defined filter will applied. - * @return mixed Type corresponding to `$output` on success or null on failure. When `$output` is `OBJECT`, - * a WP_Term instance is returned. If taxonomy does not exist then WP_Error will be returned. + * @return array|WP_Term|WP_Error|null Object of the type specified by `$output` on success. When `$output` is 'OBJECT', + * a WP_Term instance is returned. If taxonomy does not exist, a WP_Error is + * returned. Returns null for miscellaneous failure. */ function get_term( $term, $taxonomy = '', $output = OBJECT, $filter = 'raw' ) { if ( empty( $term ) ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index 04275afd13..c24d3cb5b1 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-alpha-36633'; +$wp_version = '4.5-alpha-36634'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.