Advertisement
AddLove1

Updated page.php

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