Guest User

Untitled

a guest
Dec 11th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <div id="content">
  4.  
  5. <?php if (have_posts()) : ?>
  6. <h2 class='pagetitle'>
  7. <?php echo ('Videos from '. $term . ' genre') ?>
  8. </h2>
  9. <?php while (have_posts()) : the_post(); ?>
  10. <div class="box rounded <?php if (++$counter % 4 == 0) { echo "lastbox"; }?>" id="post-<?php the_ID(); ?>">
  11.  
  12. <div class="postcover">
  13.  
  14. <?php $trailer = get_post_meta($post->ID, 'trailer_value', $single = true) ?>
  15. <?php $poster = get_post_meta($post->ID, 'poster_value', $single = true) ?>
  16.  
  17. <a href="<?php echo $trailer; ?>" rel="prettyPhoto" ><img class="poster" src="<?php bloginfo('stylesheet_directory'); ?>/timthumb.php?src=<?php echo $poster; ?>&h=270&w=200&zc=1" alt=""/></a>
  18.  
  19. </div>
  20.  
  21. <div class="boxtitle">
  22. <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
  23. </div>
  24.  
  25. </div>
  26.  
  27. <?php endwhile; ?>
  28.  
  29. <div class="clear"></div>
  30.  
  31. <div id="navigation">
  32. <?php
  33. if(function_exists('wp_pagenavi')) { wp_pagenavi(); }
  34. ?>
  35.  
  36. </div>
  37. <?php wp_reset_query();?>
  38.  
  39. <?php else : ?>
  40.  
  41. <div class="title"><h2>Oops.. Nothing Found !</h2></div>
  42. <div class="cover"> <p>I think what you are looking for is not here or it has been moved. Please try a different search..</p> </div>
  43.  
  44.  
  45. <?php endif; ?>
  46.  
  47. </div>
  48.  
  49.  
  50. <?php get_footer(); ?>
Add Comment
Please, Sign In to add comment