apply_filters_ref_array( 'posts_pre_query', array|null $posts, WP_Query $this )

Filters the posts array before the query takes place.


Description Description

Return a non-null value to bypass WordPress’s 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, passed to the filter by reference. If WP_Query does not perform a database query, it will not have enough information to generate these values itself.


Parameters Parameters

$posts

(array|null) Return an array of post data to short-circuit WP's query, or null to allow WP to run its normal queries.

$this

(WP_Query) The WP_Query instance (passed by reference).


Top ↑

Source Source

File: wp-includes/class-wp-query.php

View on Trac


Top ↑

Changelog Changelog

Changelog
Version Description
4.6.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.