【发布时间】:2014-01-13 09:51:46
【问题描述】:
我正在尝试构建一个 WP_Query,它循环浏览来自某个自定义帖子类型(在本例中为当前产品)的帖子,并返回所有标记有相同分类的帖子(在本例中,相同分类作为正在显示的帖子)
这是我目前所拥有的:
<ul>
<?php query_posts('post_type=current-products');
if (have_posts()) : while (have_posts()) : the_post(); ?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endwhile; endif; ?>
<?php wp_reset_query(); ?>
</ul>
【问题讨论】:
标签: php wordpress post taxonomy