Guest User

Untitled

a guest
Jun 19th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <?php
  2. // Tests to see if page/post is a blog post and displays blog-sidebar.php
  3. if (is_single() && in_category('40')) {
  4. include(TEMPLATEPATH . '/blog-sidebar.php');
  5. } elseif (is_page()) {
  6. echo 'testing';
  7. }
  8. } else {
  9. // catch-all for everything else (archives, searches, 404s, etc)
  10. get_sidebar();
  11. } // That's all, folks!
  12. ?>
Add Comment
Please, Sign In to add comment