Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: rest_query_var-{$key}

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
989                /**
990                 * Filters the query_vars used in get_items() for the constructed query.
991                 *
992                 * The dynamic portion of the hook name, `$key`, refers to the query_var key.
993                 *
994                 * @since 4.7.0
995                 *
996                 * @param string $value The query_var value.
997                 */
998                $query_args[ $key ] = apply_filters( "rest_query_var-{$key}", $value ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
999           }
1000
1001           if ( 'post' !== $this->post_type || ! isset( $query_args['ignore_sticky_posts'] ) ) {
1002                $query_args['ignore_sticky_posts'] = true;
1003           }
1004
1005           // Map to proper WP_Query orderby param.
1006           if ( isset( $query_args['orderby'] ) && isset( $request['orderby'] ) ) {
1007                $orderby_mappings = array(