Created
October 21, 2014 02:58
-
-
Save ckpicker/a754cbffa3c37b4a8c30 to your computer and use it in GitHub Desktop.
The Events Calendar // Add thumbnails to Upcoming Events list widget
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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