Skip to content

Instantly share code, notes, and snippets.

@CEscorcio
Created June 17, 2013 15:32
Show Gist options
  • Save CEscorcio/5797820 to your computer and use it in GitHub Desktop.
Save CEscorcio/5797820 to your computer and use it in GitHub Desktop.
get latest posts
<ul>
<?php $the_query = new WP_Query( 'showposts=5' ); ?>
<?php while ($the_query -> have_posts()) : $the_query -> the_post(); ?>
<span class="latestpostmeta"><?php the_time('M jS, Y') ?> </span></li>
<li><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></li>
<li><?php the_excerpt(__('(more…)')); ?></li>
<?php the_post_thumbnail(); ?>
<?php endwhile;?>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment