Skip to content

Instantly share code, notes, and snippets.

@rotisoft
Forked from trueqap/woo_simple_or_variable.php
Last active January 16, 2018 13:22
Show Gist options
  • Save rotisoft/14b898afa5b23c3e2689e74d67852c19 to your computer and use it in GitHub Desktop.
Save rotisoft/14b898afa5b23c3e2689e74d67852c19 to your computer and use it in GitHub Desktop.
WooCommerce simple or variable product
<?php
$product = new WC_Product( get_the_ID() ); // in function.php maybe...
if( $product->is_type( 'simple' ) ){
// a simple product
} elseif( $product->is_type( 'variable' ) ){
// a variable product
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment