Last active
July 10, 2019 06:06
-
-
Save imran-khan1/210fd507f9954a0847173498173811cb to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<?php | |
/** | |
* product title with sku | |
*/ | |
function woo_product_title_with_sku() { | |
global $product; | |
echo '<span class="loop-title-sku">Sku: ' . $product->get_sku() . '</span><br>'; | |
} | |
add_action( 'woocommerce_shop_loop_item_title', 'woo_product_title_with_sku', 10 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment