wordpress / latest / hooks / split_the_query.html

apply_filters( 'split_the_query', bool $split_the_query, WP_Query $query )

Filters whether to split the query.

Description

Splitting the query will cause it to fetch just the IDs of the found posts (and then individually fetch each post by ID), rather than fetching every complete row at once. One massive result vs. many small results.

Parameters

$split_the_query bool
Whether or not to split the query.
$query WP_Query
The WP_Query instance.

Source

File: wp-includes/class-wp-query.php. View all references

$split_the_query = apply_filters( 'split_the_query', $split_the_query, $this );

Used By

Used By Description

Changelog

Version Description
3.4.0 Introduced.

© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/hooks/split_the_query