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
227            *
228            * @since 4.7.0
229            *
230            * @link https://developer.wordpress.org/reference/functions/get_terms/
231            *
232            * @param array           $prepared_args Array of arguments to be
233            *                                       passed to get_terms().
234            * @param WP_REST_Request $request       The current request.
235            */
236           $prepared_args = apply_filters( "rest_{$this->taxonomy}_query", $prepared_args, $request );
237
238           if ( ! empty( $prepared_args['post'] )  ) {
239                $query_result = wp_get_object_terms( $prepared_args['post'], $this->taxonomy, $prepared_args );
240
241                // Used when calling wp_count_terms() below.
242                $prepared_args['object_ids'] = $prepared_args['post'];
243           } else {
244                $query_result = get_terms( $this->taxonomy, $prepared_args );
245           }