Guest User

Untitled

a guest
Dec 11th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. <div class="clear"></div>
  2. </div>
  3. </div>
  4. <div class='bottomcover'>
  5. <div class='bottom'>
  6.  
  7. <div class='botbox rounded'>
  8.  
  9. <h3 class="sidetitl rounded"> Popular Trailers </h3>
  10. <ul>
  11. <?php
  12. $myposts = get_posts('post_type=videos&numberposts=6&orderby=comment_count');
  13. foreach($myposts as $post) :
  14. ?>
  15. <li>
  16. <?php $poster = get_post_meta($post->ID, 'poster_value', $single = true) ?>
  17. <a href="<?php the_permalink(); ?>">
  18. <img class="trapic" src="<?php bloginfo('stylesheet_directory'); ?>/timthumb.php?src=<?php echo $poster; ?>&h=60&w=80&zc=1" alt=""/> </a>
  19. <h3><?php the_title();?></h3>
  20. <span class="pmeta"><?php echo get_the_term_list($post->ID, 'genre', 'Posted under : ', ', ', ''); ?></span>
  21. <span class="pmeta"> <?php comments_popup_link('Add Comments', '1 Comment', '% Comments'); ?></span>
  22. </li>
  23. <?php endforeach; ?>
  24. </ul>
  25. <div class="clear"></div>
  26. </div>
  27.  
  28.  
  29. <div class='botbox blogbox rounded'>
  30. <h3 class="sidetitl rounded"> From the Blog </h3>
  31. <ul>
  32. <?php get_archives('postbypost', 6); ?>
  33. </ul>
  34. </div>
  35.  
  36. <div class='botbox boxlast rounded'>
  37.  
  38. <?php include (TEMPLATEPATH . '/sponsors.php'); ?>
  39. </div>
  40.  
  41. <div class='clear'></div>
  42. </div>
  43. </div>
Add Comment
Please, Sign In to add comment