W3cubDocs

/WordPress

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

$postWP_Postrequired
Post object.

Return

string REST route relative to the REST base URI, or empty string if unknown.

Source

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.

© 2003–2024 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_rest_post_search_handler/detect_rest_item_route