Filter where featured images are displayed in the Mobile Theme.By setting $enabled to true or false using functions like is_home() or is_archive(), you can control where featured images are be displayed.
Parameters
- $enabled
bool True if featured images should be displayed, false if not.
Changelog
- Introduced in Jetpack 3.2.0
How to use this hook
Notes
One could use this filter to always hide the Featured Images from the Mobile Theme, regardless of the options picked in the dashboard:add_filter( 'minileven_show_featured_images', '__return_false' );