woogists
3/11/2018 - 4:40 PM

[WooCommerce Core] Query Whether WooCommerce Is Activated

[WooCommerce Core] Query Whether WooCommerce Is Activated

if ( ! function_exists( 'is_woocommerce_activated' ) ) {
	function is_woocommerce_activated() {
		if ( class_exists( 'woocommerce' ) ) { return true; } else { return false; }
	}
}