Taxonomy: After [40903], restore documentation for `wp_dropdown_categories()` arguments that are different from the defaults in `WP_Term_Query::__construct()`.
Fixes #41058. Built from https://develop.svn.wordpress.org/trunk@41767 git-svn-id: http://core.svn.wordpress.org/trunk@41601 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
2f0f46cb84
commit
a47a253e90
|
@ -281,11 +281,15 @@ function category_description( $category = 0 ) {
|
|||
* @type string $show_option_all Text to display for showing all categories. Default empty.
|
||||
* @type string $show_option_none Text to display for showing no categories. Default empty.
|
||||
* @type string $option_none_value Value to use when no category is selected. Default empty.
|
||||
* @type string $orderby Which column to use for ordering categories. See get_terms() for a list
|
||||
* of accepted values. Default 'id' (term_id).
|
||||
* @type bool $pad_counts See get_terms() for an argument description. Default false.
|
||||
* @type bool|int $show_count Whether to include post counts. Accepts 0, 1, or their bool equivalents.
|
||||
* Default 0.
|
||||
* @type bool|int $echo Whether to echo or return the generated markup. Accepts 0, 1, or their
|
||||
* bool equivalents. Default 1.
|
||||
* @type bool|int $hierarchical Whether to traverse the taxonomy hierarchy. Accepts 0, 1, or their bool
|
||||
* equivalents. Default 0.
|
||||
* @type int $depth Maximum depth. Default 0.
|
||||
* @type int $tab_index Tab index for the select element. Default 0 (no tabindex).
|
||||
* @type string $name Value for the 'name' attribute of the select element. Default 'cat'.
|
||||
|
@ -297,6 +301,7 @@ function category_description( $category = 0 ) {
|
|||
* of the option elements. Accepts any valid term field: 'term_id', 'name',
|
||||
* 'slug', 'term_group', 'term_taxonomy_id', 'taxonomy', 'description',
|
||||
* 'parent', 'count'. Default 'term_id'.
|
||||
* @type string|array $taxonomy Name of the category or categories to retrieve. Default 'category'.
|
||||
* @type bool $hide_if_empty True to skip generating markup if no categories are found.
|
||||
* Default false (create select element even if no categories are found).
|
||||
* @type bool $required Whether the `<select>` element should have the HTML5 'required' attribute.
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.9-alpha-41766';
|
||||
$wp_version = '4.9-alpha-41767';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue