Guest User

Untitled

a guest
Jan 22nd, 2014
87
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('get_footer', 'please_help');
  2.  
  3. function please_help () {
  4.     global $wp_query;
  5.  
  6.     $post_count = count($wp_query->posts);
  7.     $is_404 = (is_404() == TRUE ? 'true' : 'false');
  8.  
  9.     echo "<pre>
  10.     Post count: $post_count
  11.     is_404(): $is_404
  12.     </pre>";
  13. }
Advertisement
Add Comment
Please, Sign In to add comment