WordPress Hooks Explorer

Listing all hooks extracted WordPress Core


Details about split_the_query

Back to home

Files

Filename Hook Type Line Number PHP Doc
wp-includes/class-wp-query.php apply_filters 3238 /**
* Filters whether to split the query.
*
* 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.
*
* @since 3.4.0
*
* @param bool $split_the_query Whether or not to split the query.
* @param WP_Query $query The WP_Query instance.
*/

Hook Parameters

Parameter Type Name Description
bool $split_the_query Whether or not to split the query.
WP_Query $query The WP_Query instance.