filtrod 4.7.0
rest_comment_collection_params
Opis — z kodu źródłowego
Filters REST API collection parameters for the comments controller.
This filter registers the collection parameter, but does not map the collection parameter to an internal WP_Comment_Query parameter. Use the rest_comment_query filter to set WP_Comment_Query parameters.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$query_params | array | JSON Schema-formatted collection parameters. |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej
add_filter( 'rest_comment_collection_params', 'twoja_funkcja' );
function twoja_funkcja($param_1) {
// Twój kod
}
// rejestracja funkcji zwrotnej
add_filter( 'rest_comment_collection_params', 'twoja_funkcja' );
function twoja_funkcja($param_1) {
// Twój kod
}Popularne w tej kategorii