Skip to content

Instantly share code, notes, and snippets.

@j0lvera
Created February 8, 2013 06:16
Show Gist options
  • Save j0lvera/4737012 to your computer and use it in GitHub Desktop.
Save j0lvera/4737012 to your computer and use it in GitHub Desktop.
Last Posts on WP
<ul class="last-posts">
<?php
$args = array( 'numberposts' => 3 );
$lastposts = get_posts( $args );
foreach($lastposts as $post) : setup_postdata($post); ?>
<li class='last-posts__post'>
<?php
if ( has_post_thumbnail() ) {
the_post_thumbnail('thumbnail', array('class' => 'last-posts__post-img'));
}
?>
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2></li>
<?php endforeach; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment