Filter whether the site should display testimonials.
Parameters
- $should_display
bool Whether testimonials should be displayed.
Changelog
- Introduced in Jetpack 0.11.0
How to use this hook
Notes
You can use this filter to toggle on/off the ability to display the Testimonials:
add_filter( 'classic_theme_helper_should_display_testimonials', function( $should_display ) {
return true;
});