rest_term_search_query

rest_term_search_query

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.5.2

apply_filters('rest_term_search_query') is found 1 times:

  • /wp-includes/rest-api/search/class-wp-rest-term-search-handler.php line 91
    		 *
    		 * @param array           $query_args Key value array of query var to query value.
    		 * @param WP_REST_Request $request    The request used.
    		 */
    		$query_args = apply_filters( 'rest_term_search_query', $query_args, $request );
    
    		$query       = new WP_Term_Query();
    		$found_terms = $query->query( $query_args );
    		$found_ids   = wp_list_pluck( $found_terms, 'term_id' );
    
    		unset( $query_args['offset'], $query_args['number'] );