Advertisement
BakerMan

Quick + dirty schedule format change

Sep 24th, 2013
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. add_filter('tribe_events_event_schedule_details', 'customize_tribe_schedule_format');
  2.  
  3. function customize_tribe_schedule_format($text) {
  4. $text = str_replace(' - ', '—', $text);
  5. $text = str_replace('@', 'von', $text);
  6. return $text . ' Uhr';
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement