diff --git a/wp-includes/taxonomy.php b/wp-includes/taxonomy.php index 22d74cd23e..7f037cb0e8 100644 --- a/wp-includes/taxonomy.php +++ b/wp-includes/taxonomy.php @@ -1573,8 +1573,10 @@ function get_term_to_edit( $id, $taxonomy ) { * @param array|string $args { * Optional. Array or string of arguments to get terms. * - * @type string $orderby Field(s) to order terms by. Accepts term fields, though - * empty defaults to 'term_id'. Default 'name'. + * @type string $orderby Field(s) to order terms by. Accepts term fields ('name', 'slug', + * 'term_group', 'term_id', 'id'), 'count' for term taxonomy count, + * 'include' to match the 'order' of the $include param, or 'none' + * to skip ORDER BY. Defaults to 'name'. * @type string $order Whether to order terms in ascending or descending order. * Accepts 'ASC' (ascending) or 'DESC' (descending). * Default 'ASC'. diff --git a/wp-includes/version.php b/wp-includes/version.php index 55c5f0089d..185bc8651d 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.1-alpha-30076'; +$wp_version = '4.1-alpha-30077'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.