rest_get_route_for_post()WP 5.5.0

Gets the REST API route for a post.

Хуки из функции

Возвращает

Строку. The route path with a leading slash for the given post, or an empty string if there is not a route.

Использование

rest_get_route_for_post( $post );
$post(int|WP_Post) (обязательный)
Post ID or post object.

Список изменений

С версии 5.5.0 Введена.

Код rest_get_route_for_post() WP 6.4.3

function rest_get_route_for_post( $post ) {
	$post = get_post( $post );

	if ( ! $post instanceof WP_Post ) {
		return '';
	}

	$post_type_route = rest_get_route_for_post_type_items( $post->post_type );
	if ( ! $post_type_route ) {
		return '';
	}

	$route = sprintf( '%s/%d', $post_type_route, $post->ID );

	/**
	 * Filters the REST API route for a post.
	 *
	 * @since 5.5.0
	 *
	 * @param string  $route The route path.
	 * @param WP_Post $post  The post object.
	 */
	return apply_filters( 'rest_route_for_post', $route, $post );
}