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