Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save theeventscalendar/4d0bc91f510adcfa54da to your computer and use it in GitHub Desktop.
Save theeventscalendar/4d0bc91f510adcfa54da to your computer and use it in GitHub Desktop.
Add thumbnail images to the Upcoming Events List Widget
function custom_widget_featured_image() {
global $post;
echo tribe_event_featured_image( $post->ID, 'thumbnail' );
}
add_action( 'tribe_events_list_widget_before_the_event_title', 'custom_widget_featured_image' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment