Skip to content

Instantly share code, notes, and snippets.

@mikejolley
Created February 15, 2016 11:56
Show Gist options
  • Save mikejolley/57034501e74ff552dce9 to your computer and use it in GitHub Desktop.
Save mikejolley/57034501e74ff552dce9 to your computer and use it in GitHub Desktop.
Show category name in shop loops
// code added to theme functions.php file
add_action( 'woocommerce_after_shop_loop_item', 'show_product_category_name' );
function show_product_category_name() {
global $post;
echo get_the_term_list( $post->ID, 'product_cat' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment