Answers for "how to get product id by sku in woocommerce"

PHP
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 "how to get product id by sku in woocommerce"

Browse Popular Code Answers by Language