wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



rest_get_route_for_post › WordPress Function

Da5.5.0
Deprecaton/a
rest_get_route_for_post ( $post )
Parametri:
  • (int|WP_Post) $post Post ID or post object.
    Richiesto:
Ritorna:
  • (string) The route path with a leading slash for the given post, or an empty string if there is not a route.
Definito a:
Codex:

Gets the REST API route for a post.



Sorgenti

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