Docs: Fix typo in `*_pre_query` filter DocBlocks.

See #50768.
Built from https://develop.svn.wordpress.org/trunk@48985


git-svn-id: http://core.svn.wordpress.org/trunk@48747 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2020-09-17 10:45:03 +00:00
parent 06e53b90a1
commit b66ff2f68d
7 changed files with 8 additions and 7 deletions

View File

@ -384,7 +384,7 @@ class WP_Comment_Query {
/**
* Filters the comments data before the query takes place.
*
* Return a non-null value to bypass WordPress's default comment queries.
* Return a non-null value to bypass WordPress' default comment queries.
*
* The expected return type from this filter depends on the value passed in the request query_vars.
* When `$this->query_vars['count']` is set, the filter should return the comment count as an int.

View File

@ -202,7 +202,7 @@ class WP_Network_Query {
/**
* Filters the network data before the query takes place.
*
* Return a non-null value to bypass WordPress's default network queries.
* Return a non-null value to bypass WordPress' default network queries.
*
* The expected return type from this filter depends on the value passed in the request query_vars.
* When `$this->query_vars['count']` is set, the filter should return the network count as an int.

View File

@ -2935,7 +2935,7 @@ class WP_Query {
/**
* Filters the posts array before the query takes place.
*
* Return a non-null value to bypass WordPress's default post queries.
* Return a non-null value to bypass WordPress' default post queries.
*
* Filtering functions that require pagination information are encouraged to set
* the `found_posts` and `max_num_pages` properties of the WP_Query object,

View File

@ -293,7 +293,7 @@ class WP_Site_Query {
/**
* Filters the site data before the get_sites query takes place.
*
* Return a non-null value to bypass WordPress's default site queries.
* Return a non-null value to bypass WordPress' default site queries.
*
* The expected return type from this filter depends on the value passed in the request query_vars:
* When `$this->query_vars['count']` is set, the filter should return the site count as an int.

View File

@ -690,7 +690,7 @@ class WP_Term_Query {
/**
* Filters the terms array before the query takes place.
*
* Return a non-null value to bypass WordPress's default term queries.
* Return a non-null value to bypass WordPress' default term queries.
*
* @since 5.3.0
*

View File

@ -597,7 +597,8 @@ class WP_User_Query {
/**
* Filters the users array before the query takes place.
*
* Return a non-null value to bypass WordPress's default user queries.
* Return a non-null value to bypass WordPress' default user queries.
*
* Filtering functions that require pagination information are encouraged to set
* the `total_users` property of the WP_User_Query object, passed to the filter
* by reference. If WP_User_Query does not perform a database query, it will not

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.6-alpha-48984';
$wp_version = '5.6-alpha-48985';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.