Skip to content

Snippet: Disable the Tribe Events Calendar Plugin Post Image

// Disable the Tribe Events Calendar Plugin single event featured image.
add_filter( 'tribe_event_featured_image', '__return_false' ); 
All PHP snippets should be added via child theme's functions.php file or via a plugin. We recommend Code Snippets (100% Free) or WPCode (sponsored)
Back To Top