Guest User

Untitled

a guest
Jul 7th, 2011
101
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.  
  3. $pages_or_posts = get_option('CT_pages_or_posts');
  4.  
  5. if ($pages_or_posts == "pages") {
  6. include (TEMPLATEPATH.'/slideshow_pages.php');
  7. }
  8. else if ($pages_or_posts == "posts") {
  9. include (TEMPLATEPATH.'/slideshow_posts.php');
  10. }
  11. else {
  12. include (TEMPLATEPATH.'/slideshow_posts.php');
  13. }
  14.  
  15. ?>
Advertisement
Add Comment
Please, Sign In to add comment