Skip to content

Instantly share code, notes, and snippets.

@kachi
Created April 12, 2012 12:22
Show Gist options
  • Select an option

  • Save kachi/2366876 to your computer and use it in GitHub Desktop.

Select an option

Save kachi/2366876 to your computer and use it in GitHub Desktop.
<?php $posts = get_posts('numberposts=10&order=desc&orderby=rand'); ?>
<ul>
<?php foreach($posts as $post): ?>
<li><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php echo get_the_post_thumbnail($post->ID, 'thumbnail'); ?></a></li>
<?php endforeach; ?>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment