wc_get_product_id_by_sku( string $sku )

Get product ID by SKU.


Description Description


Parameters Parameters

$sku

(Required) Product SKU.


Top ↑

Return Return

(int)


Top ↑

Source Source

File: includes/wc-product-functions.php

function wc_get_product_id_by_sku( $sku ) {
	$data_store = WC_Data_Store::load( 'product' );
	return $data_store->get_product_id_by_sku( $sku );
}

Top ↑

Changelog Changelog

Changelog
Version Description
2.3.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.