/
How do I enable shortcodes in testimonial content

How do I enable shortcodes in testimonial content

In your theme's `function.php` file put the following.

add_filter( 'testimonials_widget_content',  'my_testimonials_widget_content', 10, 4 );
function my_testimonials_widget_content( $content, $widget_number, $testimonial, $atts ) {
	return do_shortcode( $content );
}

Related content

My theme already has a [testimonials] shortcode
My theme already has a [testimonials] shortcode
More like this
Where are the examples of using Testimonial shortcodes
Where are the examples of using Testimonial shortcodes
More like this
How do I use the theme functions `testimonials()` and `testimonials_slider()`
How do I use the theme functions `testimonials()` and `testimonials_slider()`
More like this
How can I add the testimonials plugin to any where on the site? ie. somewhere other than the side bar like the contact page etc?
How can I add the testimonials plugin to any where on the site? ie. somewhere other than the side bar like the contact page etc?
More like this
How can I style the shortcode testimonials
How can I style the shortcode testimonials
More like this