Advertisement
Guest User

where to add sidebar in information.php

a guest
Apr 10th, 2012
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. <?php
  2. /**
  3. * The Template for displaying all Information posts.
  4. *
  5. * @package WordPress
  6. * @subpackage Twenty_Eleven
  7. * @since Twenty Eleven 1.0
  8. */
  9.  
  10. get_header(); ?>
  11.  
  12. <div id="primary">
  13. <div id="content" role="main">
  14.  
  15. <?php while ( have_posts() ) : the_post(); ?>
  16.  
  17. <nav id="nav-single">
  18. <h3 class="assistive-text"><?php _e( 'Post navigation', 'twentyeleven' ); ?></h3>
  19. </nav><!-- #nav-single -->
  20.  
  21. <?php get_template_part( 'content', 'single' ); ?>
  22.  
  23. <?php endwhile; // end of the loop. ?>
  24.  
  25. </div><!-- #content -->
  26. </div><!-- #primary -->
  27.  
  28. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement