Skip to content

Instantly share code, notes, and snippets.

@wbcomdev
Created May 18, 2021 06:15
Show Gist options
  • Select an option

  • Save wbcomdev/4e065df82a70623833fc7ca85ed9e30f to your computer and use it in GitHub Desktop.

Select an option

Save wbcomdev/4e065df82a70623833fc7ca85ed9e30f to your computer and use it in GitHub Desktop.
if ( ! function_exists( 'is_woocommerce_activated' ) ) {
/**
* Check if WooCommerce is activated.
*/
function is_woocommerce_activated() {
if ( class_exists( 'woocommerce' ) ) {
return true;
} else {
return false; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment