Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: rest_{$this->taxonomy}_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
242            *
243            * @since 4.7.0
244            *
245            * @link https://developer.wordpress.org/reference/functions/get_terms/
246            *
247            * @param array           $prepared_args Array of arguments to be
248            *                                       passed to get_terms().
249            * @param WP_REST_Request $request       The current request.
250            */
251           $prepared_args = apply_filters( "rest_{$this->taxonomy}_query", $prepared_args, $request );
252
253           if ( ! empty( $prepared_args['post'] ) ) {
254                $query_result = wp_get_object_terms( $prepared_args['post'], $this->taxonomy, $prepared_args );
255
256                // Used when calling wp_count_terms() below.
257                $prepared_args['object_ids'] = $prepared_args['post'];
258           } else {
259                $query_result = get_terms( $prepared_args );
260           }