Advertisement
Guest User

rotatin

a guest
Oct 31st, 2011
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.07 KB | None | 0 0
  1.  
  2. <?php $option = get_option('trt_options'); ?>
  3. <div class="lay1">
  4. <h3 class="completefilms">Completed Films</h3>
  5.  
  6. <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
  7.  
  8. <div <?php post_class(); ?> id="post-<?php the_ID(); ?>">
  9.  
  10. <div class="post_image">
  11. <!--CALL TO POST IMAGE-->
  12. <?php if ( has_post_thumbnail() ) : ?>
  13. <div class="imgwrap">
  14. <?php if($option["trt_diss_date"] == "1"){ ?><?php } else { ?>
  15. <div class="date_meta" id="linkpost"><a href="<?php the_permalink();?>"><?php the_title(); ?></a></div>
  16. <div class="block_comm"><?php if (!empty($post->post_password)) { ?>
  17. <?php } else { ?><div class="comments">
  18. <?php the_tags('Films>', ', ', ''); ?>
  19.  
  20. </div><?php } ?><a href="<?php echo get_tag_link($tag_id); ?>"></a></div>
  21. <?php } ?>
  22.  
  23. <a href="<?php the_permalink();?>"><?php the_post_thumbnail('medium'); ?></a></div>
  24.  
  25. <?php elseif($photo = trt_get_images('numberposts=1', true)): ?>
  26.  
  27. <div class="imgwrap">
  28. <?php if($option["trt_diss_date"] == "1"){ ?><?php } else { ?>
  29. <div class="date_meta"><?php the_title(); ?></div>
  30. <div class="block_comm"><?php if (!empty($post->post_password)) { ?>
  31. <?php } else { ?><div class="comments">
  32. <?php the_tags('Films>', ', ', ''); ?>
  33.  
  34. </div><?php } ?></a></div>
  35. <?php } ?>
  36.  
  37. <a href="<?php the_permalink();?>"><?php echo wp_get_attachment_image($photo[0]->ID ,'medium'); ?></a></div>
  38.  
  39. <?php else : ?>
  40.  
  41. <div class="imgwrap">
  42. <?php if($option["trt_diss_date"] == "1"){ ?><?php } else { ?>
  43. <div class="date_meta"><?php the_title(); ?></div>
  44. <div class="block_comm"><?php if (!empty($post->post_password)) { ?>
  45. <?php } else { ?><div class="comments">
  46.  
  47.  
  48. <?php the_tags('Films>', ', ', ''); ?>
  49. </div><?php } ?></a></div>
  50. <?php } ?>
  51.  
  52. <a href="<?php the_permalink();?>"><img src="<?php echo get_template_directory_uri(); ?>/images/blank_img.png" alt="<?php the_title_attribute(); ?>" class="trt_thumbnail"/></a></div>
  53.  
  54. <?php endif; ?>
  55.  
  56. </div>
  57. <div class="post_content">
  58.  
  59. </div>
  60. </div>
  61. <?php endwhile; else: ?>
  62. <p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
  63. <?php endif; ?>
  64. </div>
  65. <div class="lay1_page"><?php if (function_exists("trt_paginate")) {
  66. trt_paginate();
  67. }
  68.  
  69. ?> </div><div class="hidden_nav"><?php paginate_links(); ?></div>
  70.  
  71.  
  72. <br style="clear:both" />
  73.  
  74.  
  75.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement