Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save freelancedaddytv/9442ab94f6ceedb6fccfd04b09fcddc8 to your computer and use it in GitHub Desktop.
Save freelancedaddytv/9442ab94f6ceedb6fccfd04b09fcddc8 to your computer and use it in GitHub Desktop.
Get Product SKU in Woocommerce Wordpress Functions.PHP
$type = $product->product_type;
$sku = $type == 'simple' ? $product->get_sku() : '';
echo $sku;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment