Skip to content

Instantly share code, notes, and snippets.

@imran-khan1
Last active July 10, 2019 06:06
Show Gist options
  • Save imran-khan1/210fd507f9954a0847173498173811cb to your computer and use it in GitHub Desktop.
Save imran-khan1/210fd507f9954a0847173498173811cb to your computer and use it in GitHub Desktop.
<?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