Skip to content

Commit

Permalink
Docs: Adjust the term_exists_default_query_args filter docs per the…
Browse files Browse the repository at this point in the history
… documentation standards.

Follow-up to [52987].

See #55439.
Built from https://develop.svn.wordpress.org/trunk@52991


git-svn-id: http://core.svn.wordpress.org/trunk@52580 1a063a9b-81f0-0310-95a4-ce76da25c4cd
  • Loading branch information
SergeyBiryukov committed Mar 25, 2022
1 parent ff1e746 commit 05dfeab
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
10 changes: 6 additions & 4 deletions wp-includes/taxonomy.php
Original file line number Diff line number Diff line change
Expand Up @@ -1560,14 +1560,16 @@ function term_exists( $term, $taxonomy = '', $parent = null ) {
}

/**
* Filters default arguments for checking if term exists.
* Filters default query arguments for checking if a term exists.
*
* @since 6.0.0
*
* @param array $defaults An array of arguments for term_exists.
* @param array $defaults An array of arguments passed to get_terms().
* @param int|string $term The term to check. Accepts term ID, slug, or name.
* @param string $taxonomy The taxonomy name to use. An empty string indicates the search is against all taxonomies.
* @param int|null $parent ID of parent term under which to confine the exists search. Null indicates the search is unconfined.
* @param string $taxonomy The taxonomy name to use. An empty string indicates
* the search is against all taxonomies.
* @param int|null $parent ID of parent term under which to confine the exists search.
* Null indicates the search is unconfined.
*/
$defaults = apply_filters( 'term_exists_default_query_args', $defaults, $term, $taxonomy, $parent );

Expand Down
2 changes: 1 addition & 1 deletion wp-includes/version.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
$wp_version = '6.0-alpha-52990';
$wp_version = '6.0-alpha-52991';

/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
Expand Down

0 comments on commit 05dfeab

Please sign in to comment.