Advertisement
BakerMan

Event schedule formatting example

Nov 15th, 2013
326
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.31 KB | None | 0 0
  1. add_filter('tribe_events_event_schedule_details_formatting', 'change_schedule_formatting');
  2.  
  3. function change_schedule_formatting( array $format ) {
  4.     $format['datetime_separator'] = ' at '; // This replaces the @ symbol
  5.     $format['same_year_format'] = 'j F'; // Day then month for same year dates
  6.     return $format;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement