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:
Peter Wilson 2024-10-21 01:22:17 +00:00
parent 5cdf55fda7
commit b571e7c6f1
2 changed files with 1 additions and 3 deletions

View File

@ -148,8 +148,6 @@ class WP_Term_Query {
* - 'id=>slug' Returns an associative array of term slugs, * - 'id=>slug' Returns an associative array of term slugs,
* keyed by term ID (`string[]`). * keyed by term ID (`string[]`).
* Default 'all'. * 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. * @type string|string[] $name Name or array of names to return term(s) for.
* Default empty. * Default empty.
* @type string|string[] $slug Slug or array of slugs to return term(s) for. * @type string|string[] $slug Slug or array of slugs to return term(s) for.

View File

@ -16,7 +16,7 @@
* *
* @global string $wp_version * @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. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.