Advertisement
mahdiar

page

Jul 12th, 2012
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.43 KB | None | 0 0
  1. <?php get_header(); ?>
  2. <div id="main" class="main-with-sidebar clearfix">
  3.     <div id="post-content">
  4.         <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  5.         <h1 id="page-title"><?php the_title(); ?></h1>     
  6.  
  7.         <?php the_content(); ?>
  8.         <?php endwhile; ?>
  9.         <?php endif; ?>
  10.         <?php comments_template(); ?>  
  11.     </div>
  12.     <!-- END post-content -->
  13. <?php get_sidebar(page); ?>
  14. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement