Skip to content

Instantly share code, notes, and snippets.

@assoscoupa
Last active October 26, 2020 17:17
Show Gist options
  • Save assoscoupa/6e96785d3a6a829191530752b7dd3734 to your computer and use it in GitHub Desktop.
Save assoscoupa/6e96785d3a6a829191530752b7dd3734 to your computer and use it in GitHub Desktop.
Adding SKU to Woo shop page
/* Adding SKU to shop page */
function qwerty_gr_custom_shop_item() {
global $post, $product;
/* product sku */
echo '<p>SKU: '.$product->get_sku().'</p>';
}
add_action( 'woocommerce_after_shop_loop_item', 'qwerty_gr_custom_shop_item', 5);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment