BakerMan

Date format string hack (@ to 'at')

Sep 27th, 2013
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. add_filter('tribe_events_event_schedule_details', 'customize_tribe_schedule_format');
  2.  
  3. function customize_tribe_schedule_format($text) {
  4.     return str_replace('@', 'at', $text);
  5. }
Add Comment
Please, Sign In to add comment