$testimonials_cat_id, 'posts_per_page' => -1 ); $home_testimonials_query = new WP_Query( $home_testimonials_args ); if( $home_testimonials_query->have_posts() ) { echo '
    '; while( $home_testimonials_query->have_posts() ) { $home_testimonials_query->the_post(); $image_id = get_post_thumbnail_id(); $image_path = wp_get_attachment_image_src( $image_id, 'thumbnail', true ); $author_position = get_post( $image_id )->post_excerpt; ?>
  • '; } wp_reset_postdata(); } ?>