Skip to content

Instantly share code, notes, and snippets.

@trueqap
Last active January 16, 2018 12:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save trueqap/7287e46ef293c0b23bc87f5c2d2e10c2 to your computer and use it in GitHub Desktop.
Save trueqap/7287e46ef293c0b23bc87f5c2d2e10c2 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