rest_route_for_term
Filters the REST API route for a term.
Usage
add_filter( 'rest_route_for_term', 'wp_kama_rest_route_for_term_filter', 10, 2 );
/**
* Function for `rest_route_for_term` filter-hook.
*
* @param string $route The route path.
* @param WP_Term $term The term object.
*
* @return string
*/
function wp_kama_rest_route_for_term_filter( $route, $term ){
// filter...
return $route;
}
- $route(string)
- The route path.
- $term(WP_Term)
- The term object.
Changelog
| Since 5.5.0 | Introduced. |
Where the hook is called
rest_route_for_term
wp-includes/rest-api.php 3273
return apply_filters( 'rest_route_for_term', $route, $term );