Advertisement
cessanfrancsico

Untitled

Mar 6th, 2014
467
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. <?php
  2. /**
  3. * Template Name: Custom Width Page
  4. *
  5. *
  6. * @package Ridizain
  7. * @since Ridizain 1.0
  8. */
  9.  
  10. get_header(); ?>
  11.  
  12. <div id="primary" class="content-area">
  13. <div id="content" class="custom-site-content" role="main">
  14. <?php
  15. // Start the Loop.
  16. while ( have_posts() ) : the_post();
  17.  
  18. // Include the page content template.
  19. get_template_part( 'content', 'page' );
  20.  
  21. // If comments are open or we have at least one comment, load up the comment template.
  22. if ( comments_open() || get_comments_number() ) {
  23. comments_template();
  24. }
  25. endwhile;
  26. ?>
  27. </div><!-- #content -->
  28. </div><!-- #primary -->
  29. </div><!-- #main-content -->
  30.  
  31. <?php
  32. get_footer();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement