WP_Query::is_embed()publicWP 4.4.0

Determines whether the query is for an embedded post.

Method of the class: WP_Query{}

No Hooks.

Return

true|false. Whether the query is for an embedded post.

Usage

global $wp_query;
$wp_query->is_embed();

Changelog

Since 4.4.0 Introduced.

WP_Query::is_embed() code WP 6.4.3

public function is_embed() {
	return (bool) $this->is_embed;
}