Answers for "woocommerce product id variable"

PHP
0

woocommerce check if product is variable

global $product;

// $product->is_type( $type ) checks the product type, string/array $type ( 'simple', 'grouped', 'variable', 'external' ), returns boolean

if ( $product->is_type( 'variable' ) ) {}
Posted by: Guest on January-21-2021
6

woocommerce get product id

global $product;
$product->get_id();
Posted by: Guest on July-03-2020

Code answers related to "woocommerce product id variable"

Browse Popular Code Answers by Language