spotlight2000
Member
help, plugin WP random posts display image ?
I search new plugin, but i do not use in my WP.
I search new plugin, but i do not use in my WP.
<div class="randomposts">
<h2>Random posts</h2>
<?php $recent = new WP_Query("cat=-YOUR_CAT_ID>&showposts=12&orderby=rand"); while($recent->have_posts()) : $recent->the_post();?>
<div class="posts">
<div class="postimage">
<a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>"><?php if ( function_exists( 'get_the_image' ) ) get_the_image( array( 'meta_key' => 'timethumb', 'size' => 'medium', 'width' => '120', 'height' => '72', 'image_class' => 'feature' ) ); ?></a>
</div>
</div>
<?php endwhile; ?>
</div>
<div class="randomposts">