此代码来自存档页面,列出了具有特定标记的所有产品,是否有人可以帮助我修改此代码,使其仅列出当前类别的产品:
<?php if ( is_product_tag() ) :?>
<?php do_action(\'woocommerce_before_shop_loop\'); ?>
<ul class="products">
<?php while ( have_posts() ) : the_post(); ?>
<?php woocommerce_get_template_part( \'content\', \'product\'); ?>
<?php endwhile; // end of the loop. ?>
</ul>
<?php do_action(\'woocommerce_after_shop_loop\'); ?>
<?php endif; ?>