";
while ( $fst_testimonials->have_posts() ) {
$fst_testimonials->the_post();
$fst_testimonial_designation = get_post_meta(get_the_ID(),'_fst_testimonial_designation',true);
$img = get_the_post_thumbnail_url();
$img = ($img=="") ? get_template_directory_uri().
"/fst-framework/fst-customizer/assets/images/default-image.jpg" : $img;
if($fst_testimonial_designation) {
$fst_testimonial_designation = '
'.$fst_testimonial_designation.'
';
}
ob_start();
get_template_part('template-parts/addons/testimonial/testimonial');
$fst_our_testimonial_contents = ob_get_clean();
$contents = wp_trim_words( get_the_content(), 20 );
$replace = array('{{image}}','{{heading}}','{{content}}','{{designation}}','{{icon}}');
$to = array(esc_url($img),get_the_title(),get_the_content(),$fst_testimonial_designation,
$args['blockquote_icon']);
$fst_slider .= str_replace($replace,$to, $fst_our_testimonial_contents);
}
wp_reset_query();
$fst_slider .= '