Advertisement
Guest User

page.php

a guest
Mar 8th, 2013
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. <?php get_header(); ?>
  2. <div class="container_24 clearfix separator <?php echo of_get_option('blog_sidebar_pos') ?>">
  3. <div id="content" class="grid_15 <?php echo of_get_option('blog_sidebar_pos') ?>">
  4. <?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
  5. <div id="post-<?php the_ID(); ?>" <?php post_class('page'); ?>>
  6. <article class="post-holder">
  7. <h1 class="sp-title"><?php the_title(); ?></h1>
  8. <?php if(has_post_thumbnail()) {
  9. echo '<a href="'; the_permalink(); echo '">';
  10. echo '<figure class="featured-thumbnail"><span class="img-wrap">'; the_post_thumbnail(); echo '</span></figure>';
  11. echo '</a>';
  12. }
  13. ?>
  14. <div id="page-content">
  15. <?php the_content(); ?>
  16. <div class="pagination">
  17. <?php wp_link_pages('before=<div class="pagination">&after=</div>'); ?>
  18. </div><!--.pagination-->
  19. </div><!--#pageContent -->
  20. </article>
  21. </div><!--#post-# .post-->
  22.  
  23. <?php endwhile; ?>
  24. </div><!--#content-->
  25. <?php get_sidebar(); ?>
  26. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement