Created
February 8, 2013 06:16
-
-
Save j0lvera/4737012 to your computer and use it in GitHub Desktop.
Last Posts on WP
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
<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