bartulans
11/24/2017 - 9:37 AM

get custom post

get custom post

<?php // WP_Query arguments
$args = array (
  'post_type'       => 'testimonial',
'post_status'     => 'published',
);

// The Query
$query = new WP_Query( $args );

// The Loop
if ( $query->have_posts() ) {
while ( $query->have_posts() ) {
   $query->the_post(); ?>
   <blockquote><?php the_title(); ?></blockquote>
   <p><?php get_post_meta( get_the_id(), 'testimonial_author', true); ?></p>
   <?php }
} else {
   echo 'Sorry - there areno testimonials to display right now';
}

// Restore original Post Data
wp_reset_postdata(); ?>