Last active
August 29, 2015 14:25
-
-
Save barryhughes/862203a9607edc03b081 to your computer and use it in GitHub Desktop.
Sample of customizing venue/organizer list output re https://theeventscalendar.com/knowledgebase/listing-venues-and-organizers/
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 add_featured_img( $item ) { | |
$img = get_the_post_thumbnail(); | |
return str_replace( '<li>', '<li>' . $img, $item ); | |
} | |
add_filter( 'TEC_VenueOrganizer_List.list.item', 'add_featured_img' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment