Advertisement
Guest User

Untitled

a guest
Sep 2nd, 2011
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. <div id="slideshow">
  2. <!-- mfunc -->
  3. $args = array( 'numberposts' => 1, 'orderby'=> 'rand', 'category' => 34 );
  4. $rand_posts = get_posts( $args );
  5. foreach( $rand_posts as $post ) :
  6. <!-- /mfunc -->
  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. <!-- mfunc -->
  15. endforeach;
  16. <!-- /mfunc -->
  17. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement