get_post_embed_url( int|WP_Post $post = null ): string|false

In this article

Retrieves the URL to embed a specific post in an iframe.

Parameters

$postint|WP_Postoptional
Post ID or object. Defaults to the current post.

Default:null

Return

string|false The post embed URL on success, false if the post doesn’t exist.

Source

function get_post_embed_url( $post = null ) {	$post = get_post( $post );	if ( ! $post ) {	return false;	}	$embed_url = trailingslashit( get_permalink( $post ) ) . user_trailingslashit( 'embed' );	$path_conflict = get_page_by_path( str_replace( home_url(), '', $embed_url ), OBJECT, get_post_types( array( 'public' => true ) ) );	if ( ! get_option( 'permalink_structure' ) || $path_conflict ) {	$embed_url = add_query_arg( array( 'embed' => 'true' ), get_permalink( $post ) );	}	/** * Filters the URL to embed a specific post. * * @since 4.4.0 * * @param string $embed_url The post embed URL. * @param WP_Post $post The corresponding post object. */	return sanitize_url( apply_filters( 'post_embed_url', $embed_url, $post ) ); } 

Hooks

apply_filters( ‘post_embed_url’, string $embed_url, WP_Post $post )

Filters the URL to embed a specific post.

Changelog

VersionDescription
4.4.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.