Advertisement
Guest User

wp-clear index.php

a guest
May 21st, 2012
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.90 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <?php if ( is_home() && $paged < 2 && get_option('solostream_featpage_on') == 'Yes') { ?>
  4. <?php include (TEMPLATEPATH . '/featured-pages.php'); ?>
  5. <?php } ?>
  6.  
  7. <?php if ( is_home() && $paged < 2 && get_option('solostream_features_on') == 'Full Width Featured Content Slider') { ?>
  8. <?php include (TEMPLATEPATH . '/featured-wide.php'); ?>
  9. <?php } ?>
  10.  
  11. <div id="page" class="clearfix">
  12.  
  13. <div id="contentleft" class="maincontent">
  14.  
  15. <?php if ( is_home() && $paged < 2 && get_option('solostream_features_on') == 'Narrow Width Featured Content Slider') { ?>
  16. <?php include (TEMPLATEPATH . '/featured-narrow.php'); ?>
  17. <?php } ?>
  18.  
  19. <?php if ( is_home() && $paged < 2 && get_option('solostream_galleries_on') == 'Yes' ) { ?>
  20. <?php include (TEMPLATEPATH . '/featured-galleries.php'); ?>
  21. <?php } ?>
  22.  
  23. <?php if ( is_home() && $paged < 2 && get_option('solostream_videos_on') == 'Yes' ) { ?>
  24. <?php include (TEMPLATEPATH . '/featured-vids.php'); ?>
  25. <?php } ?>
  26.  
  27. <div id="content" class="clearfix">
  28.  
  29. <?php include (TEMPLATEPATH . '/banner468.php'); ?>
  30.  
  31. <?php if ( get_option('solostream_home_layout') == 'Option 1 - Standard Blog Layout') { ?>
  32. <?php include (TEMPLATEPATH . '/index1.php'); ?>
  33. <?php } elseif ( get_option('solostream_home_layout') == 'Option 2 - 2 Posts Aligned Side-by-Side') { ?>
  34. <?php include (TEMPLATEPATH . '/index2.php'); ?>
  35. <?php } elseif ( get_option('solostream_home_layout') == 'Option 3 - Posts Arranged by Category Side-by-Side') { ?>
  36. <?php include (TEMPLATEPATH . '/index3.php'); ?>
  37. <?php } elseif ( get_option('solostream_home_layout') == 'Option 4 - Posts Arranged by Category Stacked') { ?>
  38. <?php include (TEMPLATEPATH . '/index4.php'); ?>
  39. <?php } ?>
  40.  
  41. </div>
  42.  
  43. <?php include (TEMPLATEPATH . '/sidebar-narrow.php'); ?>
  44.  
  45. </div>
  46.  
  47. <?php get_sidebar(); ?>
  48.  
  49. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement