Skip to content

Instantly share code, notes, and snippets.

@barryhughes
Last active August 29, 2015 14:25
Show Gist options
  • Save barryhughes/862203a9607edc03b081 to your computer and use it in GitHub Desktop.
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/
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