Filter whether the site should display portfolios.
Parameters
- $should_display
bool Whether portfolios 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 Portfolios:add_filter( 'classic_theme_helper_should_display_portfolios', function( $should_display ) {
return true;
});