Skip to content

Instantly share code, notes, and snippets.

@pablo-sg-pacheco
Forked from hlashbrooke/function.php
Last active April 19, 2017 17:40
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 pablo-sg-pacheco/002bea2495b0be29a275539a36948452 to your computer and use it in GitHub Desktop.
Save pablo-sg-pacheco/002bea2495b0be29a275539a36948452 to your computer and use it in GitHub Desktop.
WooCommerce - Check if you are running a specified WooCommerce version (or higher)
<?php
function woocommerce_version_check( $version = '3.0' ) {
if ( class_exists( 'WooCommerce' ) ) {
global $woocommerce;
if( version_compare( $woocommerce->version, $version, ">=" ) ) {
return true;
}
}
return false;
}
?>
<?php
if( woocommerce_version_check() ) {
// Use new, updated functions
} else {
// Use older, deprecated functions
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment