Taxonomy: Remove count argument from `WP_Term_Query` docs.
The DocBlock of `WP_Term_Query::__construct` mentions the count argument, however, this argument is not supported in `WP_Term_Query::get_terms()`. Props sergeybiryukov, swissspidy, snehapatil02, tyrannous. Fixes #61094. Built from https://develop.svn.wordpress.org/trunk@59261 git-svn-id: http://core.svn.wordpress.org/trunk@58653 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
5cdf55fda7
commit
b571e7c6f1
|
@ -148,8 +148,6 @@ class WP_Term_Query {
|
|||
* - 'id=>slug' Returns an associative array of term slugs,
|
||||
* keyed by term ID (`string[]`).
|
||||
* Default 'all'.
|
||||
* @type bool $count Whether to return a term count. If true, will take precedence
|
||||
* over `$fields`. Default false.
|
||||
* @type string|string[] $name Name or array of names to return term(s) for.
|
||||
* Default empty.
|
||||
* @type string|string[] $slug Slug or array of slugs to return term(s) for.
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.7-beta3-59260';
|
||||
$wp_version = '6.7-beta3-59261';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue