rest_comment_query
Filters WP_Comment_Query arguments when querying comments via the REST API.
Usage
add_filter( 'rest_comment_query', 'wp_kama_rest_comment_query_filter', 10, 2 );
/**
* Function for `rest_comment_query` filter-hook.
*
* @param array $prepared_args Array of arguments for WP_Comment_Query.
* @param WP_REST_Request $request The REST API request.
*
* @return array
*/
function wp_kama_rest_comment_query_filter( $prepared_args, $request ){
// filter...
return $prepared_args;
}
- $prepared_args(array)
- Array of arguments for WP_Comment_Query.
- $request(WP_REST_Request)
- The REST API request.
Changelog
| Since 4.7.0 | Introduced. |
Where the hook is called
rest_comment_query
wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php 325
$prepared_args = apply_filters( 'rest_comment_query', $prepared_args, $request );