Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: rest_comment_query

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
266            * Filters WP_Comment_Query arguments when querying comments via the REST API.
267            *
268            * @since 4.7.0
269            *
270            * @link https://developer.wordpress.org/reference/classes/wp_comment_query/
271            *
272            * @param array           $prepared_args Array of arguments for WP_Comment_Query.
273            * @param WP_REST_Request $request       The REST API request.
274            */
275           $prepared_args = apply_filters( 'rest_comment_query', $prepared_args, $request );
276
277           $query        = new WP_Comment_Query;
278           $query_result = $query->query( $prepared_args );
279
280           $comments = array();
281
282           foreach ( $query_result as $comment ) {
283                if ( ! $this->check_read_permission( $comment, $request ) ) {
284                     continue;