Created
January 28, 2013 20:40
-
-
Save trufa/4658794 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
global $query_string; | |
query_posts($query_string . "posts_per_page=10"); | |
if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> | |
<h2><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2> | |
<?php the_excerpt(); ?> | |
<?php endwhile; | |
endif; ?> | |
<div class="navigation"> | |
<div class="alignleft"><?php next_posts_link('Previous entries') ?></div> | |
<div class="alignright"><?php previous_posts_link('Next entries') ?></div> | |
</div> | |
<?php wp_reset_query(); ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment