Automattic\WooCommerce\Admin

Loader::is_embed_pagepublic staticWC 1.0

Deprecated since 6.3.0. It is no longer supported and may be removed in future releases. It is recommended to replace this function with the same one.

Returns true if we are on a "classic" (non JS app) powered admin page.

Method of the class: Loader{}

No Hooks.

Returns

null. Nothing (null).

Usage

$result = Loader::is_embed_page();

Changelog

Deprecated since 6.3.0

Loader::is_embed_page() code WC 10.7.0

public static function is_embed_page() {
	wc_deprecated_function( 'is_embed_page', '6.3', '\Automattic\WooCommerce\Admin\PageController::is_embed_page()' );
	return PageController::is_embed_page();
}