fahidjavid
6/1/2017 - 5:19 AM

Check whether WooCommerce plugin is activated or not

Check whether WooCommerce plugin is activated or not

<?php

if ( ! function_exists( 'is_woocommerce_activated' ) ) {
	/**
	 * Check whether WooCommerce plugin is activated or not
	 * @return bool
	 */
	function is_woocommerce_activated() {
		if ( class_exists( 'WooCommerce' ) ) {
			return true;
		} else {
			return false;
		}
	}
}