WP HOOKS
filtrod 4.7.0

rest_comment_query

Args 2Plik wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.phpDokumentacja WP ↗

Opis — z kodu źródłowego

Filters WP_Comment_Query arguments when querying comments via the REST API.

Parametry

ParametrTypOpis
$prepared_argsarrayArray of arguments for WP_Comment_Query.
$request\WP_REST_RequestThe REST API request.

Wywołanie

Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'rest_comment_query', 'twoja_funkcja', 10, 2 );

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

Popularne w tej kategorii