Advertisement
Guest User

Untitled

a guest
Jun 24th, 2010
567
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 KB | None | 0 0
  1. <?php
  2. /*
  3. Template Name: Blog
  4. */
  5. ?>
  6. <?php
  7. get_header(); ?>
  8.  
  9. <div id="container">
  10. <div id="content" role="main">
  11.  
  12. <?php wp_reset_query(); $args = array( 'cat=-0&paged'=> $paged ); query_posts($args); ?>
  13. <?php if (have_posts()) : $count = 0; ?>
  14. <?php while (have_posts()) : the_post(); $count++; ?>
  15.  
  16. <!-- Post Starts -->
  17. <div <?php post_class(); ?>>
  18.  
  19. <h2 class="title"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
  20.  
  21. <div class="entry">
  22. <?php global $more; $more = 0; ?>
  23. <?php the_excerpt(); ?>
  24. </div>
  25.  
  26. </div><!-- /.post -->
  27.  
  28. <?php endwhile; else: ?>
  29. <div class="post">
  30. <p><?php _e('Sorry, no posts matched your criteria.', 'woothemes') ?></p>
  31. </div><!-- /.post -->
  32. <?php endif; ?>
  33.  
  34.  
  35. <div id="nav-below" class="navigation">
  36. <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">&larr;</span> Older posts', 'twentyten' ) ); ?></div>
  37. <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?></div>
  38. </div><!-- #nav-below -->
  39.  
  40. </div><!-- #content -->
  41. </div><!-- #container -->
  42.  
  43. <?php get_sidebar(); ?>
  44. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement