WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )apply_filters( "hook_name", "what_to_filter" ).Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
| Line | Code |
|---|---|
| 309 | * collection request. |
| 310 | * |
| 311 | * @since 4.7.0 |
| 312 | * |
| 313 | * @link https://developer.wordpress.org/reference/functions/get_terms/ |
| 314 | * |
| 315 | * @param array $prepared_args Array of arguments for get_terms(). |
| 316 | * @param WP_REST_Request $request The REST API request. |
| 317 | */ |
| 318 | $prepared_args = apply_filters( "rest_{$this->taxonomy}_query", $prepared_args, $request ); |
| 319 | |
| 320 | if ( ! empty( $prepared_args['post'] ) ) { |
| 321 | $query_result = wp_get_object_terms( $prepared_args['post'], $this->taxonomy, $prepared_args ); |
| 322 | |
| 323 | // Used when calling wp_count_terms() below. |
| 324 | $prepared_args['object_ids'] = $prepared_args['post']; |
| 325 | } else { |
| 326 | $query_result = get_terms( $prepared_args ); |
| 327 | } |