Docs: Clarify the `int` return value in `comments_pre_query` filter DocBlock.
See #45800. Built from https://develop.svn.wordpress.org/trunk@46087 git-svn-id: http://core.svn.wordpress.org/trunk@45899 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
b3e64f0947
commit
c9071ca2e6
|
@ -386,14 +386,15 @@ class WP_Comment_Query {
|
|||
*
|
||||
* Return a non-null value to bypass WordPress's 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.
|
||||
* 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.
|
||||
* When `'ids' == $this->query_vars['fields']`, the filter should return an array of comment ids.
|
||||
* Otherwise the filter should return an array of WP_Comment objects.
|
||||
*
|
||||
* @since 5.3.0
|
||||
*
|
||||
* @param array|int|null $comment_data Return an array of comment data to short-circuit WP's comment query,
|
||||
* the comment count as an integer if `$this->query_vars['count']` is set,
|
||||
* or null to allow WP to run its normal queries.
|
||||
* @param WP_Comment_Query $this The WP_Comment_Query instance, passed by reference.
|
||||
*/
|
||||
|
|
|
@ -204,7 +204,6 @@ class WP_Network_Query {
|
|||
*
|
||||
* Return a non-null value to bypass WordPress's default site queries.
|
||||
*
|
||||
*
|
||||
* @since 5.2.0
|
||||
*
|
||||
* @param array|null $site_ids Return an array of site data to short-circuit WP's site query,
|
||||
|
|
|
@ -295,7 +295,6 @@ class WP_Site_Query {
|
|||
*
|
||||
* Return a non-null value to bypass WordPress's default site queries.
|
||||
*
|
||||
*
|
||||
* @since 5.2.0
|
||||
*
|
||||
* @param array|null $site_ids Return an array of site data to short-circuit WP's site query,
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.3-alpha-46086';
|
||||
$wp_version = '5.3-alpha-46087';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue