WooCommerce::is_wc_admin_active()publicWC 1.0

Is the WooCommerce Admin actively included in the WooCommerce core? Based on presence of a basic WC Admin function.

Method of the class: WooCommerce{}

No Hooks.

Return

true|false.

Usage

$WooCommerce = new WooCommerce();
$WooCommerce->is_wc_admin_active();

WooCommerce::is_wc_admin_active() code WC 8.7.0

public function is_wc_admin_active() {
	return function_exists( 'wc_admin_url' );
}