Advertisement
JudyBad

One Column, no sidebar

Jul 27th, 2011
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. <?php
  2. /*
  3. Template Name: One column, no sidebar
  4. Description: A template with no sidebar
  5. */
  6. ?>
  7.  
  8. <?php get_header(); ?>
  9.  
  10. <div class="maincol onlycol">
  11.  
  12. <?php the_post(); ?>
  13. <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  14. <h1 class="entry-title"><?php the_title(); ?></h1>
  15. <div class="entry-content">
  16. <?php the_content(); ?>
  17. <?php wp_link_pages( 'before=<div class="page-link">' . __( 'Pages:', 'twentyten' ) . '&after=</div>' ); ?>
  18. <?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="edit-link">', '</span>' ); ?>
  19. </div><!-- .entry-content -->
  20. </div><!-- #post-<?php the_ID(); ?> -->
  21.  
  22. <?php comments_template( '', true ); ?>
  23.  
  24. </div> <!-- END .maincol .onlycol-->
  25.  
  26. </div> <!-- END #bd -->
  27. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement