Advertisement
Guest User

Untitled

a guest
Aug 16th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <?php
  2. $recentposts = get_posts('nopaging=1');
  3. $thumbs = array();
  4. if( count( $recentposts ) ) {
  5. foreach( $recentposts as $p ) {
  6. $thumbs[] = '<a href="' . get_permalink( $p->ID ) . '">' . get_the_post_thumbnail( $p->ID ) . '</a>';
  7. }
  8. }
  9. echo '<ul class="gallery">';
  10. foreach( $thumbs as $thumb ) {
  11. echo '<li><span>';
  12. echo $thumb;
  13. echo '</span></li>';
  14. }
  15. echo '</ul>';
  16. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement