ST80
ST80

Reputation: 3893

Woocommerce how to display products from specific category on archive page

On my archive-product page I want to display some products from a specific category.

I tried to do this:

echo '<div>';
echo wc_get_product_category_list( 'special_items', $category ));
echo '</div>';

inside the product loop, but it doesn't work.

How can I achieve that?

Upvotes: 1

Views: 979

Answers (1)

RSPR
RSPR

Reputation: 142

In woocommerce some shortcode available. You may call echo do_shortcode in your template files

https://docs.woocommerce.com/document/woocommerce-shortcodes/#scenario-5-specific-categories

Upvotes: 1

Related Questions