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:
parent
06e53b90a1
commit
b66ff2f68d
|
@ -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.
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
*
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue