Created
February 24, 2015 17:49
-
-
Save arkadiusjonczek/1bdcd6db2a09e1c8d780 to your computer and use it in GitHub Desktop.
WordPress: get and show latest 3 posts using WP_Query
This file contains 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
$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