Warning: This method has been deprecated. Use rest_get_route_for_post() instead.
WP_REST_Post_Search_Handler::detect_rest_item_route( WP_Post $post ): string
Attempts to detect the route to access a single item.
Description
See also
Parameters
-
$post
WP_Post Required -
Post object.
Return
string REST route relative to the REST base URI, or empty string if unknown.
Source
File: wp-includes/rest-api/search/class-wp-rest-post-search-handler.php
.
View all references
protected function detect_rest_item_route( $post ) {
_deprecated_function( __METHOD__, '5.5.0', 'rest_get_route_for_post()' );
return rest_get_route_for_post( $post );
}
Changelog
Version | Description |
---|---|
5.5.0 | Use rest_get_route_for_post() |
5.0.0 | Introduced. |