View Single Post
Old 01-17-2012, 03:42 PM  
AdultKing
Raise Your Weapon
 
AdultKing's Avatar
 
Industry Role:
Join Date: Jun 2003
Location: Outback Australia
Posts: 15,601
Use the Headway theme and some code like below.

PHP Code:
<?php query_posts('showposts=999&random=true');?>
<?php 
if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
    <div>
        <h1><?php the_title(); ?></h1>
        <p><?php postimage('thumbnail'); ?></p>
    </div>
<?php endwhile; else: ?><p>Oops, no posts!</p><?php endif; ?>
You'd have to tweak the code to get exactly what you want. The code above grabs a random post and displays the title and post thumbnail.
AdultKing is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote