Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jswebschmiede/bad9b2fd3367023e4645276b0d062150 to your computer and use it in GitHub Desktop.
Save jswebschmiede/bad9b2fd3367023e4645276b0d062150 to your computer and use it in GitHub Desktop.
[Theming Snippets] Query whether WooCommerce is activated
/**
* Check if WooCommerce is activated
*/
if ( ! function_exists( 'is_woocommerce_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