Advertisement
BakerMan

Flip the year/month separators

Oct 3rd, 2013
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. add_filter('tribe_events_list_the_date_headers', 'flip_tribe_year_month_separators');
  2.  
  3. function flip_tribe_year_month_separators($html) {
  4.     $year = strpos($html, "<span class='tribe-events-list-separator-year'>");
  5.     if (false === $year || 0 === $year) return $html;
  6.     else return substr($html, $year) . substr($html, 0, $year);
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement