Answers for "product ->get_id()"

0

get variation id from by product id

$product = wc_get_product($product_id);
$variations = $product->get_available_variations();
$variations_id = wp_list_pluck( $variations, 'variation_id' );
Posted by: Guest on December-17-2020

Code answers related to "product ->get_id()"

Browse Popular Code Answers by Language