woogists
3/12/2018 - 1:56 PM

[Theming Snippets] Query whether WooCommerce is activated

[Theming Snippets] Query whether WooCommerce is activated

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