wpseek.com
A WordPress-centric search engine for devs and theme authors
rest_get_route_for_term › WordPress Function
Since5.5.0
Deprecatedn/a
› rest_get_route_for_term ( $term )
Parameters: |
|
Returns: |
|
Defined at: |
|
Codex: |
Gets the REST API route for a term.
Source
function rest_get_route_for_term( $term ) { $term = get_term( $term ); if ( ! $term instanceof WP_Term ) { return ''; } $taxonomy_route = rest_get_route_for_taxonomy_items( $term->taxonomy ); if ( ! $taxonomy_route ) { return ''; } $route = sprintf( '%s/%d', $taxonomy_route, $term->term_id ); /** * Filters the REST API route for a term. * * @since 5.5.0 * * @param string $route The route path. * @param WP_Term $term The term object. */ return apply_filters( 'rest_route_for_term', $route, $term ); }