Advertisement
AddLove1

Original page.php

Oct 2nd, 2012
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. Original:
  2.  
  3.  
  4. <?php
  5. /**
  6. * The template for displaying all pages.
  7. *
  8. * This is the template that displays all pages by default.
  9. * Please note that this is the wordpress construct of pages
  10. * and that other 'pages' on your wordpress site will use a
  11. * different template.
  12. *
  13. * @package WordPress
  14. */
  15. ?>
  16. <?php get_header(); ?>
  17. <!--Start Content Wrapper-->
  18. <div class="grid_24 content_wrapper">
  19. <div class="grid_16 alpha">
  20. <!--Start Content-->
  21. <?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
  22. <div class="content">
  23. <h1><?php the_title(); ?></h1>
  24. <?php if (function_exists('inkthemes_breadcrumbs')) inkthemes_breadcrumbs(); ?>
  25. <?php the_content(); ?>
  26. <div class="clear"></div>
  27. <!--Start Comment box-->
  28. <h3>Comments &amp; Responses</h3>
  29. <?php comments_template(); ?>
  30. <!--End comment Section-->
  31. </div>
  32. <!--End Content-->
  33. <?php endwhile;?>
  34. </div>
  35. <!--Start Sidebar-->
  36. <?php get_sidebar(); ?>
  37. <!--End Sidebar-->
  38. </div>
  39. <!--End Content Wrapper-->
  40. <div class="clear"></div>
  41. </div>
  42. <!--End Container-->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement