Created
March 17, 2012 16:40
-
-
Save leonardorb/2062014 to your computer and use it in GitHub Desktop.
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
| <?php $recent = new WP_Query("cat=4&showposts=3"); $count=1; while($recent->have_posts()) : $recent->the_post();?> | |
| <?php if($count==1): the_post_thumbnail('thumbnail'); endif; ?> | |
| <b><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></b> | |
| <?php $count++; endwhile; ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment