WooCommerce::is_wc_admin_active()
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() WooCommerce::is wc admin active code WC 9.2.3
public function is_wc_admin_active() { return function_exists( 'wc_admin_url' ); }