Advertisement
BakerMan

Empty month view 404 temp fix (TEC 3.0)

Jul 9th, 2013
1,241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. add_action('template_include', 'avoid_404_event_titles', 1);
  2.  
  3. function avoid_404_event_titles() {
  4.     global $wp_query;
  5.  
  6.     if (property_exists($wp_query, 'tribe_is_event') && $wp_query->tribe_is_event && $wp_query->is_404)
  7.         $wp_query->is_404 = false;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement