вы должны попробовать это:
<?php
$args = array(
'post_type' => 'client_testimonial',
'post_status' => 'publish',
'posts_per_page'=> 6,
'order' => 'DESC',
'orderby' => 'date'
);
$query = new WP_Query($args);
?>
<?php while ( $query->have_posts() ) : $query->the_post(); ?>
// вы можете получить изображение, как это:
<?php $img = get_the_post_thumbnail_url(get_the_ID()); ?>
// получить название, как это:
echo get_the_title(get_the_ID());