Skip to content

Instantly share code, notes, and snippets.

@arkadiusjonczek
Created February 24, 2015 17:49
Show Gist options
  • Save arkadiusjonczek/1bdcd6db2a09e1c8d780 to your computer and use it in GitHub Desktop.
Save arkadiusjonczek/1bdcd6db2a09e1c8d780 to your computer and use it in GitHub Desktop.
WordPress: get and show latest 3 posts using WP_Query
$wp_query = new WP_Query( 'posts_per_page=3' );
$first = ' first';
if ( $wp_query->have_posts() ) :
while ( $wp_query->have_posts() ) :
$wp_query->the_post();
printf( "<article class=\"one-third{$first}\">%s</article>", get_the_title() );
if ($first != '') $first = '';
endwhile; //* end of one post
endif; //* end loop
wp_reset_query();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment