Advertisement
Guest User

recent

a guest
Mar 17th, 2012
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.44 KB | None | 0 0
  1. <div class="recentWrapper">
  2. <div class="top_heading">
  3. <h3><span>Trending Story</span></h3>
  4. </div>
  5. <div class="clr-both100">
  6. <?php $recent = new WP_Query("cat=all&showposts=3"); while($recent->have_posts()) : $recent->the_post();?>
  7. <div class="box-rccontain">
  8. <span class="imgBlock"><a href="<?php the_permalink() ?>"><?php echo catch_that_image (get_the_id(), '', '', '' .get_bloginfo('template_url') .'/scripts/timthumb.php?zc=1&amp;w=125&amp;h=78&amp;src='); ?></a></span>
  9. <span class="txtBlock"><a href="<?php the_permalink() ?>"><strong><?php the_title(); ?></strong></a>
  10.  
  11. <?php if(get_option('themesdesk_wordpress_comments')!="" && get_option('themesdesk_wordpress_comments')!="no"){ ?>
  12. <span class="comImg"><?php comments_popup_link('0', '1', '%');?> </span> <?php } else { ?><span class="dtTxt"><?php the_time('j F, Y') ?> </span> <?php } ?></span>
  13. </div>
  14. <?php endwhile; ?>
  15. </div>
  16. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement