Automattic\WooCommerce\Admin

Loader::is_admin_page()public staticWC 1.0

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

Returns true if we are on a JS powered admin page.

Method of the class: Loader{}

No Hooks.

Return

null. Nothing (null).

Usage

$result = Loader::is_admin_page();

Changelog

Deprecated since 6.3.0

Loader::is_admin_page() code WC 8.6.1

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