简体   繁体   中英

Display posts from a Wordpress custom post type category

I have a custom post type set up called TESTIMONIALS and two CPT categories set up which are CLIENT TESTIMONALS & CLINIC TESTIMONIALS

I am trying to display only the posts from the CLIENT TESTIMONALS CPT category.

What would I need to add to the below to achieve this?

 <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>

You can use something like this.

<?php
$type = 'testimonials';
$args=array(
  'post_type' => $type,
   'category'=>'CPT',
  'post_status' => 'publish'
);

$my_query = new WP_Query($args);
if( $my_query->have_posts() ) {
  while ($my_query->have_posts()) : $my_query->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;
}

?>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM