L
L
LastGeneral2021-07-11 16:21:27
WordPress
LastGeneral, 2021-07-11 16:21:27

How to display the product category name?

Can you tell me how to display the category name? This is how it would be:
60eaf011a1be1983506666.png

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Anton Litvinenko, 2021-07-11
@LastGeneral

Take away the excess

add_action( 'woocommerce_after_shop_loop_item_title', 'custom_show_product_cat', 7 );

function custom_show_product_cat() {
  global $product;
    echo wc_get_product_category_list( $product->get_id(), ', ', '<div class="product-cat">' . _n( 'Category:', 'Categories:', count( $product->get_category_ids() ), 'woocommerce' ) . ' ', '</div>' ); 
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question