Advertisement
wolverinept

page

Feb 18th, 2012
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.01 KB | None | 0 0
  1. <?php
  2. global $options;
  3. foreach ($options as $value) {
  4. if (get_settings( $value['id'] ) === FALSE) { $$value['id'] = $value['std']; } else { $$value['id'] = get_settings( $value['id'] ); }
  5. }
  6. ?>
  7.  
  8. <?php get_header(); ?>
  9.  
  10. <div class="wrapper">
  11.  
  12. <div id="frame">
  13. <div id="logo"><a href="http://www.comicbooktherapy.com/"><img class="alignleft" src="http://www.comicbooktherapy.com/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'); } ?>
  14. <div id="content" class="page">
  15.  
  16. <div id="main">
  17.  
  18. <?php wp_reset_query(); if (have_posts()) : while (have_posts()) : the_post(); ?>
  19.  
  20. <div class="box boxSingle">
  21. <div class="title blue"><?php echo '<h2>'; wpzoom_breadcrumbs(); echo'</h2>'; ?></div><!-- end .title -->
  22.  
  23. <h1><?php the_title(); ?></h1>
  24. <p class="postmetadata"><?php edit_post_link( __('EDIT', 'wpzoom'), ' ', ''); ?></p>
  25.  
  26. <div class="sep">&nbsp;</div>
  27.  
  28. <div class="single singleFull">
  29.  
  30. <?php the_content(); ?>
  31. <?php wp_link_pages(array('before' => '<p class="pages"><strong>'.__('Pages', 'wpzoom').':</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
  32.  
  33. <div class="cleaner">&nbsp;</div>
  34. </div><!-- end .single -->
  35.  
  36. <div class="cleaner">&nbsp;</div>
  37.  
  38. <?php comments_template(); ?>
  39.  
  40. <div class="cleaner">&nbsp;</div>
  41. </div><!-- end .box -->
  42. <?php endwhile; else: ?>
  43. <p><?php _e('Sorry, no posts matched your criteria', 'wpzoom');?>.</p>
  44. <?php endif; ?>
  45.  
  46. <div class="cleaner">&nbsp;</div>
  47.  
  48. </div><!-- end #main -->
  49.  
  50. <div id="sidebar">
  51.  
  52. <?php get_sidebar(); ?>
  53.  
  54. </div><!-- end #sidebar -->
  55.  
  56. <div class="cleaner">&nbsp;</div>
  57. </div><!-- end #content -->
  58. <?php if (function_exists('dfrads')) { echo dfrads('1967514'); } ?>
  59. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement