Skip to content

Instantly share code, notes, and snippets.

@ckpicker
Created October 21, 2014 02:58
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ckpicker/a754cbffa3c37b4a8c30 to your computer and use it in GitHub Desktop.
Save ckpicker/a754cbffa3c37b4a8c30 to your computer and use it in GitHub Desktop.
The Events Calendar // Add thumbnails to 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