Answers for "get sku by product id in woocommerce"

PHP
6

woocommerce get product id

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

how to get product id by sku in woocommerce

$product_id = $wpdb->get_var(
    $wpdb->prepare("SELECT post_id FROM $wpdb->postmeta WHERE meta_key='_sku' AND meta_value='%s'", $sku_name)
  );
//this code working in wordpress(woocommerce)
Posted by: Guest on April-28-2022

Code answers related to "get sku by product id in woocommerce"

Browse Popular Code Answers by Language