Skip to content

Instantly share code, notes, and snippets.

@mizner
Last active January 9, 2017 14:09
Show Gist options
  • Save mizner/0d2ebfa6ff2266051d0249f5aa78e9bf to your computer and use it in GitHub Desktop.
Save mizner/0d2ebfa6ff2266051d0249f5aa78e9bf to your computer and use it in GitHub Desktop.
Wordpress Query Custom Post Type (Testimonial)
<?php
$the_query = new WP_Query( array(
'post_type' => 'jetpack-testimonial',
'posts_per_page' => '3'
) );
while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
<div class="testimonial">
<h4><?php echo the_title(); ?></h4>
<?php echo the_content(); ?>
</div>
<?php
endwhile;
wp_reset_postdata();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment