Advertisement
brook-tribe

Diagnose Theme 404

Jan 28th, 2014
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.47 KB | None | 0 0
  1. // Add this code to your theme if you have already run through these basic steps:
  2. // http://www.wpbeginner.com/wp-tutorials/how-to-fix-wordpress-posts-returning-404-error/
  3.  
  4. add_action('get_footer', 'please_help');
  5.  
  6. function please_help () {
  7.         global $wp_query;
  8.  
  9.         $post_count = count($wp_query->posts);
  10.         $is_404 = (is_404() == TRUE ? 'true' : 'false');
  11.  
  12.         echo "<!--
  13.        Post count: $post_count
  14.        is_404(): $is_404
  15.        -->";
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement