Reputation: 3893
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
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