Skip to content

Instantly share code, notes, and snippets.

View rotisoft's full-sized avatar

Tamas "RotiSoft" Rottenbacher rotisoft

View GitHub Profile
@rotisoft
rotisoft / woo_simple_or_variable.php
Last active January 16, 2018 13:22 — forked from trueqap/woo_simple_or_variable.php
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' ) ){