wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



rest_get_route_for_post › WordPress Function

Od5.5.0
Przestarzałyn/a
rest_get_route_for_post ( $post )
Parametry:
  • (int|WP_Post) $post Post ID or post object.
    Wymagane: Tak
Powrót:
  • (string) The route path with a leading slash for the given post, or an empty string if there is not a route.
Zdefiniowane na:
Codex:

Gets the REST API route for a post.



Źródło

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 );
}