Advertisement
Guest User

omega

a guest
Mar 10th, 2013
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.69 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <?php
  4. if(get_option('boxof_home') == "movies") { ?>
  5. <?php include (TEMPLATEPATH . '/lib/movie-home.php'); ?>
  6. <?php } else { ?>
  7.  
  8. <div id="content">
  9.  
  10. <?php if (have_posts()) : ?>
  11. <?php while (have_posts()) : the_post(); ?>
  12.  
  13. <div class="post" id="post-<?php the_ID(); ?>">
  14. <div class="title">
  15. <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
  16. </div>
  17. <div class="postmeta">
  18. <span class="author">Posted by <?php the_author(); ?> </span> <span class="clock"> <?php the_time('M - j - Y'); ?></span> <span class="comm"><?php comments_popup_link('0 Comment', '1 Comment', '% Comments'); ?></span>
  19. </div>
  20. <div class="entry">
  21.  
  22.  
  23. <?php
  24. if ( has_post_thumbnail() ) { ?>
  25. <img class="postimg" src="<?php bloginfo('stylesheet_directory'); ?>/timthumb.php?src=<?php get_image_url(); ?>&amp;h=150&amp;w=200&amp;zc=1" alt="" />
  26. <?php } else { ?>
  27. <img class="postimg" src="<?php bloginfo('stylesheet_directory'); ?>/timthumb.php?src=<?php bloginfo('template_directory'); ?>/images/dummy.jpg&amp;h=120&amp;w=200&amp;zc=1" alt="" />
  28. <?php } ?>
  29.  
  30. <?php wpe_excerpt('wpe_excerptlength_index', ''); ?>
  31.  
  32. <div class="clear"></div>
  33. </div>
  34.  
  35.  
  36. <div class="singleinfo">
  37. <span class="category">Categories: <?php the_category(', '); ?> </span>
  38. </div>
  39.  
  40. </div>
  41. <?php endwhile; ?> <div align=”center”><?php if(function_exists(‘wp_pagenavi’)) { wp_pagenavi(); } ?></div>
  42.  
  43. <?php getpagenavi(); ?>
  44.  
  45. <?php else : ?>
  46.  
  47. <h1 class="title">Not Found</h1>
  48. <p>Sorry, but you are looking for something that isn't here.</p>
  49.  
  50. <?php endif; ?>
  51.  
  52. </div>
  53. <?php } ?>
  54.  
  55. <?php get_sidebar(); ?>
  56. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement