Advertisement
wolverinept

index

Feb 18th, 2012
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.06 KB | None | 0 0
  1. <?php
  2.  
  3. global $options;
  4.  
  5. foreach ($options as $value) {
  6.  
  7. if (get_settings( $value['id'] ) === FALSE) { $$value['id'] = $value['std']; } else { $$value['id'] = get_settings( $value['id'] ); }
  8.  
  9. }
  10.  
  11. ?>
  12.  
  13. <?php get_header(); ?>
  14.  
  15.  
  16.  
  17. <div class="wrapper">
  18.  
  19. <div id="frame">
  20.  
  21. <div id="logo"><a href="../"><img class="alignleft" src="../wp-content/uploads/2011/12/cbtlogotransptelegraph1.png" alt="Comic Book Therapy" width="630" height="250" /></a></div> <?php if (function_exists('dfrads')) { echo dfrads('8124757'); } ?>
  22.  
  23. <?php if ($wpzoom_featured_posts_show == 'Yes' && is_home() && $paged < 2) { include(TEMPLATEPATH . '/wpzoom_featured_posts.php'); } ?>
  24.  
  25. <?php if ($wpzoom_promoted_cat_show == 'Yes' && is_home() && $paged < 2) { include(TEMPLATEPATH . '/wpzoom_promoted_category.php'); } ?>
  26.  
  27. <?php if (function_exists('dfrads')) { echo dfrads('9154593'); } ?>
  28.  
  29. <div class="cleaner">&nbsp;</div>
  30.  
  31.  
  32.  
  33. <?php if ($wpzoom_featured_cat_show == 'Yes' && is_home() && $paged < 2) { include(TEMPLATEPATH . '/wpzoom_quick_posts.php'); } ?>
  34.  
  35.  
  36.  
  37. <div class="cleaner">&nbsp;</div>
  38.  
  39.  
  40.  
  41. <div id="content">
  42.  
  43.  
  44.  
  45. <div id="main">
  46.  
  47.  
  48.  
  49. <?php if ($wpzoom_featured_big_cats_show == 'Yes' && is_home() && $paged < 2) { include(TEMPLATEPATH . '/wpzoom_featured_categories.php'); } ?>
  50.  
  51. <?php if (function_exists('dfrads')) { echo dfrads('3860432'); } ?>
  52.  
  53. <?php if ($wpzoom_twitter_show == 'Yes') { include(TEMPLATEPATH . '/wpzoom_twitter.php'); } ?>
  54.  
  55.  
  56.  
  57.  
  58.  
  59. <?php if ($wpzoom_recent_posts_show == 'Yes') { include(TEMPLATEPATH . '/wpzoom_recent_posts.php'); } ?>
  60.  
  61.  
  62.  
  63. </div><!-- end #main -->
  64.  
  65.  
  66.  
  67. <div id="sidebar">
  68.  
  69.  
  70.  
  71. <?php get_sidebar(); ?>
  72.  
  73.  
  74.  
  75. </div><!-- end #sidebar -->
  76.  
  77. <?php if (function_exists('dfrads')) { echo dfrads('9154593'); } ?>
  78.  
  79. <div class="cleaner">&nbsp;</div>
  80.  
  81. </div><!-- end #content -->
  82.  
  83. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement