Advertisement
Guest User

Page.php

a guest
Oct 4th, 2012
22
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.57 KB | None | 0 0
  1. <?php
  2. /**
  3.  * The template for displaying all pages.
  4.  *
  5.  * This is the template that displays all pages by default.
  6.  * Please note that this is the WordPress construct of pages
  7.  * and that other 'pages' on your WordPress site will use a
  8.  * different template.
  9.  */
  10.  
  11. get_header(); ?>
  12.  
  13.         <div id="main">
  14.             <div id="content" role="main">
  15.  
  16.             <?php while ( have_posts() ) : the_post(); ?>
  17.                 <?php get_template_part( 'content', 'page' ); ?>
  18.                 <?php comments_template( '', false ); ?>
  19.             <?php endwhile; // end of the loop. ?>
  20.            
  21.             </div><!-- #content -->
  22.  
  23. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement