Skip to content

Instantly share code, notes, and snippets.

@Pebblo
Created February 7, 2018 12:13
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/d663a5e91f4f061f669ab9cf8e2d0dd7 to your computer and use it in GitHub Desktop.
Save Pebblo/d663a5e91f4f061f669ab9cf8e2d0dd7 to your computer and use it in GitHub Desktop.
Example of how to use the FHEE__EES_Espresso_Event_Attendees__process_shortcode__order_by filter to change how the attendees are ordered.
<?php //Please do not include the opening PHP tag if you already have one
function tw_ee_custom_Event_Attendees__process_shortcode__order_by( $order_by_array ){
return array('ATT_fname' => 'ACS');
}
add_filter('FHEE__EES_Espresso_Event_Attendees__process_shortcode__order_by','tw_ee_custom_Event_Attendees__process_shortcode__order_by');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment