【发布时间】:2015-01-20 12:05:13
【问题描述】:
我设置了一个名为 TESTIMONIALS 的自定义帖子类型,并设置了两个 CPT 类别,即 CLIENT TESTIMONALS 和 CLINIC TESTIMONIALS
我正在尝试仅显示来自 CLIENT TESTIMONALS CPT 类别的帖子。
我需要在下面添加什么来实现这一点?
<div role="tabpanel" class="tab-pane fade" id="profile">
<?php query_posts('post_type=testimonials'); ?>
<?php while ( have_posts() ) : the_post(); ?>
<div class="testimonial-holder wrap ">
<div class="three-quarters">
<h2>
<?php the_title(); ?>
</h2>
<div class="testi">
<?php the_content(); ?>
</div>
</div>
<div class="four-col right center">
<div class="testimonial-autor-image"> <img src="<?php the_field('author_image_or_clinic_logo'); ?>" alt="Author Image">
<div class="mt20">
<?php the_field('testimonial_author'); ?>
</div>
</div>
</div>
</div>
<?php endwhile; // end of the loop. ?>
</div>
【问题讨论】: