Skip to content

Instantly share code, notes, and snippets.

@Pebblo
Created April 27, 2021 09:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Pebblo/2916cff85d64b4b03c6f4c69626a39d6 to your computer and use it in GitHub Desktop.
Save Pebblo/2916cff85d64b4b03c6f4c69626a39d6 to your computer and use it in GitHub Desktop.
Example of how to include the ESPRESSO_EVENT_ATTENDEES output for each datetime on an event.
<?php //Please do not include the opening PHP tag if you already have one.
add_action('FHEE__espresso_list_of_event_dates__datetime_html', 'tw_ee_add_event_attendees_to_datetimes', 10, 2);
function tw_ee_add_event_attendees_to_datetimes( $html, $datetime ) {
$html .= do_shortcode('[ESPRESSO_EVENT_ATTENDEES datetime_id=' . $datetime->ID() . ']');
return $html;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment