filter

minileven_show_featured_images

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

How to use this hook

See “How to use actions and filters to customize Jetpack”.

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' );