Advertisement
Laki

index.php

Jan 30th, 2012
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.02 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <div id="content">
  4.  
  5. <?php
  6. $postct = get_option('dion_postnum');
  7. $args=array('post_type' => 'videos','post_status'=> 'publish','posts_per_page' => $postct,'caller_get_posts' =>1,'paged' =>$paged,);
  8. query_posts($args);
  9. if (have_posts()) : while (have_posts()) : the_post();
  10. ?>
  11.  
  12. <div class="box rounded <?php if (++$counter % 4 == 0) { echo "lastbox"; }?>" id="post-<?php the_ID(); ?>">
  13.  
  14. <div class="postcover">
  15.  
  16. <?php $trailer = get_post_meta($post->ID, 'trailer_value', $single = true) ?>
  17. <?php $poster = get_post_meta($post->ID, 'poster_value', $single = true) ?>
  18. <?php $imdb = get_post_meta($post->ID, 'imdb_value', $single = true) ?>
  19.  
  20. <center>
  21. <a href="<?php echo $trailer; ?>" rel="prettyPhoto" ><img src="http://serija.gledajiti.com/wp-content/uploads/2011/11/youtube.png" alt="" heigh="20" ></a>
  22.  
  23. <a href="<?php echo $imdb; ?>" target="_blank"><img src="http://serija.gledajiti.com/wp-content/uploads/2011/11/imdb.png" alt="Линк до IMBD" /></a>
  24.  
  25. <?php echo fblike_get_iframe(get_permalink($post->ID)) ?>
  26.  
  27.  
  28. </center>
  29.  
  30. <a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>" ><img class="poster" src="<?php bloginfo('stylesheet_directory'); ?>/timthumb.php?src=<?php echo $poster; ?>&amp;h=270&amp;w=200&amp;zc=1" alt=""/></a>
  31.  
  32. </div>
  33. <div class="boxtitle">
  34. <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Линк до <?php the_title(); ?>"><?php the_title(); ?></a></h2>
  35. <center><h6><?php echo get_the_term_list($post->ID, 'genre', 'Жанр:', ', ', ''); ?></h6></center>
  36. </div>
  37.  
  38. </div>
  39.  
  40. <?php endwhile; ?>
  41.  
  42. <div class="clear"></div>
  43.  
  44. <center><div id="navigation">
  45. <?php
  46. if(function_exists('wp_pagenavi')) { wp_pagenavi(); }
  47. ?>
  48. <?php wp_reset_query();?>
  49.  
  50.  
  51.  
  52.  
  53. <?php else : ?>
  54.  
  55. <div class="title"><h2>Oops.. Nothing Found !</h2></div>
  56. <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>
  57.  
  58.  
  59. <?php endif; ?>
  60.  
  61. </div>
  62.  
  63.  
  64. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement