Advertisement
Guest User

Untitled

a guest
Jan 9th, 2014
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 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. * @package WordPress
  11. */
  12. ?>
  13. <?php get_header(); ?>
  14. <!--Start Content Wrapper-->
  15. <div class="grid_24 content_wrapper">
  16. <div class="grid_16 alpha">
  17. <!--Start Content-->
  18. <?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
  19. <?php wp_pagenavi( array( 'type' => 'multipart' ) ); ?>
  20. <div class="content">
  21. <h1><?php the_title(); ?></h1>
  22. <?php if (function_exists('inkthemes_breadcrumbs')) inkthemes_breadcrumbs(); ?>
  23. <?php the_content(); ?>
  24. <div class="clear">
  25. </div>
  26. <?php wp_pagenavi( array( 'type' => 'multipart' ) ); ?>
  27.  
  28. <!--Start Comment box-->
  29. </div>
  30. <!--End Content-->
  31. <?php endwhile;?>
  32. </div>
  33. <!--Start Sidebar-->
  34. <?php get_sidebar(); ?>
  35. <!--End Sidebar-->
  36. </div>
  37. <!--End Content Wrapper-->
  38. <div class="clear"></div>
  39. </div>
  40. <!--End Container-->
  41. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement