Advertisement
Guest User

Anti-404 Snippet

a guest
Jul 15th, 2013
360
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.42 KB | None | 0 0
  1. //Added to work around the issue with Events Calendar Pro returning 404 titles.
  2.  if( function_exists('avoid_404_event_titles')){
  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. }
  9.  
  10.      add_action('template_include', 'avoid_404_event_titles', 1);
  11.  };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement