tonyparra |
11-05-2011 03:52 AM |
Wordpress pros inside pls: Random Post w/ thumbnails
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 :helpme what the hall am i doing wrong???
|