Skip to content

Instantly share code, notes, and snippets.

@ellegaarddk
Created October 22, 2018 17:30
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ellegaarddk/5710119b3687e73d6a0b15c8cbb21ee6 to your computer and use it in GitHub Desktop.
Save ellegaarddk/5710119b3687e73d6a0b15c8cbb21ee6 to your computer and use it in GitHub Desktop.
Tilføj SKU fra WooCommerce på kategorisider
/* WooCommerce - add SKU on cat pages */
add_action( 'woocommerce_after_shop_loop_item_title', 'shop_sku', 5 );
function shop_sku(){
global $product;
echo '<span itemprop="productID" class="sku">' . __('SKU', 'woocommerce'). ': ' . $product->sku . '</span>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment