Advertisement
BakerMan

Show all events (in community/my events)

Mar 26th, 2014
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.16 KB | None | 0 0
  1. add_filter( 'tribe_ce_my_events_query', 'show_all_my_events' );
  2.  
  3. function show_all_my_events( $query ) {
  4.     $query['eventDisplay'] = 'custom';
  5.     return $query;
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement