After [33764], fix docblock formatting for wp_list_categories().

See #33460.
Built from https://develop.svn.wordpress.org/trunk@33765


git-svn-id: http://core.svn.wordpress.org/trunk@33733 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Boone Gorges 2015-08-26 19:43:24 +00:00
parent ccb9c641f4
commit 0db421e69b
2 changed files with 30 additions and 29 deletions

View File

@ -467,7 +467,8 @@ function wp_dropdown_categories( $args = '' ) {
* Array of optional arguments. * Array of optional arguments.
* *
* @type string $show_option_all Text to display for showing all categories. Default empty string. * @type string $show_option_all Text to display for showing all categories. Default empty string.
* @type string $show_option_none Text to display for the 'no categories' option. Default 'No categories'. * @type string $show_option_none Text to display for the 'no categories' option.
* Default 'No categories'.
* @type string $orderby The column to use for ordering categories. Default 'ID'. * @type string $orderby The column to use for ordering categories. Default 'ID'.
* @type string $order Which direction to order categories. Accepts 'ASC' or 'DESC'. * @type string $order Which direction to order categories. Accepts 'ASC' or 'DESC'.
* Default 'ASC'. * Default 'ASC'.
@ -484,8 +485,8 @@ function wp_dropdown_categories( $args = '' ) {
* @type int $child_of Term ID to retrieve child terms of. See {@link get_terms()}. Default 0. * @type int $child_of Term ID to retrieve child terms of. See {@link get_terms()}. Default 0.
* @type array|string $exclude Array or comma/space-separated string of term IDs to exclude. * @type array|string $exclude Array or comma/space-separated string of term IDs to exclude.
* See {@link get_terms()}. Default empty string. * See {@link get_terms()}. Default empty string.
* @type array|string $exclude_tree Array or comma/space-separated string of term IDs to exclude, along with * @type array|string $exclude_tree Array or comma/space-separated string of term IDs to exclude, along
* their descendants. See {@link get_terms()}. Default empty string. * with their descendants. See {@link get_terms()}. Default empty string.
* @type bool|int $echo True to echo markup, false to return it. Default 1. * @type bool|int $echo True to echo markup, false to return it. Default 1.
* @type int $current_category Category that should get the 'current-cat' class. Default 0. * @type int $current_category Category that should get the 'current-cat' class. Default 0.
* @type bool $hierarchical Whether to include terms that have non-empty descendants. * @type bool $hierarchical Whether to include terms that have non-empty descendants.

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '4.4-alpha-33764'; $wp_version = '4.4-alpha-33765';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.