Advertisement
lberelson

custom3 - single-1col

Jan 24th, 2014
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.79 KB | None | 0 0
  1. <?php
  2. /*
  3. * theme name: custom3
  4. */
  5. get_header(); ?>
  6. <div id="navcontainer">
  7.  
  8. <?php get_template_part( 'menu', 'primary' ); // Loads the menu-primary.php template.  ?>
  9.  
  10. </div><!-- navcontainer -->
  11. </div><!-- navbar -->
  12.  
  13. <div class="wrapper">
  14.  
  15. <div class="container container_11">
  16.  
  17. <div class="grid_11"  style="margin:8px 12px 12px 20px;"  >
  18.  
  19.  
  20. <h1 class="section" style="font-weight:bold"> <?php echo get_the_title( $post->post_parent ); ?></h1>
  21.  
  22.  
  23.     <?php if (have_posts()) : while (have_posts()) : the_post() ; ?>
  24.     <h2 class="section" style="font-weight:bold"><?php the_title(); ?></h2>  
  25.     <?php the_content(); ?>
  26.     <?php endwhile; endif; ?>
  27.  
  28. </div><!-- grid 11 -->
  29.  
  30. <div class='clear'>&nbsp;</div>
  31.  
  32. </div><!-- container -->
  33. </div><!-- wrapper -->
  34.  
  35.  
  36. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement