How do I add testimonial excerpt to single view
In your theme’s functions.php
file, add similar code as follows.
function my_testimonials_widget_defaults_single( $array )
$array['hide_excerpt'] = 'false';
return $array;
}
add_filter( 'testimonials_widget_defaults_single', 'my_testimonials_widget_defaults_single' );