Created
March 3, 2022 08:59
-
-
Save freelancedaddytv/9442ab94f6ceedb6fccfd04b09fcddc8 to your computer and use it in GitHub Desktop.
Get Product SKU in Woocommerce Wordpress Functions.PHP
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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