Advertisement
BakerMan

Hide iCal link when no events

Aug 12th, 2013
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.15 KB | None | 0 0
  1. add_filter('tribe_events_list_show_ical_link', 'avoid_ical_404s');
  2.  
  3. function avoid_ical_404s() {
  4.     return ( $GLOBALS['wp_query']->post_count > 0 );
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement