WP HOOKS
filtrreferencjaod 4.6.0

posts_pre_query

Args 1Plik wp-includes/class-wp-query.phpDokumentacja WP ↗

Opis — z kodu źródłowego

Filters the posts array before the query takes place.

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, 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.

Parametry

ParametrTypOpis
$posts\WP_Post[] | int[] | nullReturn an array of post data to short-circuit WP's query, or null to allow WP to run its normal queries.
$query\WP_QueryThe WP_Query instance (passed by reference).

Wywołanie

Rejestracja callbackaphp
// rejestracja funkcji zwrotnej
add_filter( 'posts_pre_query', 'twoja_funkcja' );

function twoja_funkcja($param_1) {
	// Twój kod
}

Popularne w tej kategorii