Display product categories on the shop in WooCommerce

Display product categories on the shop in WooCommerce on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_action( 'woocommerce_after_shop_loop_item', 'wc_show_product_categories', 9 );
 
function wc_show_product_categories() {
   global $product;   
   echo wc_get_product_category_list( $product->get_id(), ', ', '<p>', '</p>' );
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.