Addons
4 years ago
License
4 years ago
Pro
4 years ago
VariationOptions
4 years ago
CategoriesService.php
4 years ago
ScheduledExport.php
4 years ago
SnippetParser.php
4 years ago
WooCommerceVersion.php
4 years ago
WooCommerceVersion.php
17 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Wpae\App\Service; |
| 4 | |
| 5 | |
| 6 | class WooCommerceVersion |
| 7 | { |
| 8 | public static function isWooCommerceNewerThan( $version = '3.0' ) { |
| 9 | if ( class_exists( 'WooCommerce' ) ) { |
| 10 | global $woocommerce; |
| 11 | if ( version_compare( $woocommerce->version, $version, ">=" ) ) { |
| 12 | return true; |
| 13 | } |
| 14 | } |
| 15 | return false; |
| 16 | } |
| 17 | } |