Advertisement
Guest User

Untitled

a guest
Aug 14th, 2011
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. <div class="site_width">
  2. <ul>
  3. <?php
  4. $args = array( 'tag' => 'featured', 'posts_per_page' => '3' );
  5. $recent_posts = wp_get_recent_posts( $args );
  6. ?>
  7. <li>
  8. <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>" rel="nofollow">
  9. <?php the_post_thumbnail('featured', array( 'title' => '' )); ?>
  10. </a>
  11. <label>
  12. <a href="<?php the_permalink(); ?>" rel="bookmark">
  13. <?php the_title(); ?>
  14. </a>
  15. </label>
  16. </li>
  17. <?php wp_reset_query(); ?>
  18. </ul>
  19. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement