Created
August 19, 2013 23:12
-
-
Save jonathan-bird/6275299 to your computer and use it in GitHub Desktop.
Wordpress: Blog Page - Simple Title & Description
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 | |
/* | |
Template Name: Blog | |
*/ | |
?> | |
<?php get_header(); ?> | |
<div class="container"> | |
<article id="content"> | |
<?php | |
$temp = $wp_query; $wp_query= null; | |
$wp_query = new WP_Query(); $wp_query->query('showposts=5' . '&paged='.$paged); | |
while ($wp_query->have_posts()) : $wp_query->the_post(); ?> | |
<h2><a href="<?php the_permalink(); ?>" title="Read more"><?php the_title(); ?></a></h2> | |
<?php the_excerpt(); ?> | |
<?php endwhile; ?> | |
<?php if ($paged > 1) { ?> | |
<nav id="nav-posts"> | |
<div class="prev"><?php next_posts_link('« Previous Posts'); ?></div> | |
<div class="next"><?php previous_posts_link('Newer Posts »'); ?></div> | |
</nav> | |
<?php } else { ?> | |
<nav id="nav-posts"> | |
<div class="prev"><?php next_posts_link('« Previous Posts'); ?></div> | |
</nav> | |
<?php } ?> | |
<?php wp_reset_postdata(); ?> | |
</article> | |
<?php get_sidebar(); ?> | |
</div> | |
<?php get_footer(); ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment