Ive been trying to add random post with thumbnail to a blog, but cant get it to work, cant find a plugin :
PHP Code:
<ul>
<?php
$args = array( 'numberposts' => 5, 'orderby' => 'rand', 'post_status' => 'publish', 'offset' => 0);
$rand_posts = get_posts( $args );
foreach( $rand_posts as $post ) : ?>
<li><h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2><p><img src="<?php echo
get_post_meta($post->ID, thumbnail, true); ?>" width="100" height="100">
</p></li>
<?php endforeach; ?>
</ul>
it spits out only the latest post and repeats it 5 times

what the hall am i doing wrong???