Advertisement
Guest User

Untitled

a guest
Sep 1st, 2011
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. <div id="slideshow">
  2. <!-- mclude -->
  3. <?php
  4. $args = array( 'numberposts' => 1, 'orderby'=> 'rand', 'category' => 34 );
  5. $rand_posts = get_posts( $args );
  6. foreach( $rand_posts as $post ) : ?>
  7. <div style="float:right;" >
  8. <a href="<?php the_permalink(); ?>"><?php the_post_thumbnail( array( 120,70 ) ); ?>
  9. </div>
  10. <div style="float:left; width:120px;">
  11. <h5 style="font-size:1em;" id="post-<?php the_ID(); ?>">
  12. <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h5>
  13. </div>
  14. <?php endforeach; ?>
  15. <!-- /mclude -->
  16. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement