【发布时间】:2013-12-14 09:59:41
【问题描述】:
我需要显示分配给分类术语的帖子。我可以毫无问题地手动执行此操作,但我希望有一个循环来自动显示每个分类术语中的帖子,因此当用户添加新术语时,该术语中的帖子会显示在网站上。 您可以在以下网址上看到实时示例;
176.9.5.243/~divesdes/shop
我正在使用 Woocommerce 建立一个在线商店。这是我用来手动显示帖子的代码。
<?php query_posts('post_type=product&product_cat=striped-mats'); ?>
<?php single_cat_title( ); ?>
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php the_content();?>
<?php endwhile;
wp_reset_query();?>
<?php endif; ?>
感谢所有愿意帮助我的人...
【问题讨论】:
标签: wordpress post taxonomy taxonomy-terms