Advertisement
Guest User

index.php

a guest
Sep 13th, 2011
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <?php if (have_posts()) : ?>
  4. <?php while (have_posts()) : the_post(); ?>
  5.  
  6. <div <?php $first = ($wp_query->current_post%4==0)?'first':''; post_class(array('column',$first)) ?> id="post-<?php the_ID(); ?>">
  7.  
  8.  
  9. <div class="body">
  10. <?php the_content('Continue Reading'); ?>
  11. </div>
  12.  
  13. <h4><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h4>
  14. </div>
  15. <?php endwhile; ?>
  16.  
  17. <?php if(function_exists('wp_pagenavi')) : wp_pagenavi(); else : ?>
  18. <div class="paging">
  19. <div class="prev"><?php next_posts_link('Previous Posts') ?></div>
  20. <div class="next"> <?php previous_posts_link('Next Posts') ?></div>
  21. </div>
  22. <?php endif; ?>
  23.  
  24. <?php endif; ?>
  25.  
  26. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement