Advertisement
Guest User

single-com-thumbnail

a guest
Oct 21st, 2013
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.19 KB | None | 0 0
  1. <?php get_header(); ?>
  2. <div id="content" >
  3.  
  4. <?php if (have_posts()) : ?>
  5. <?php while (have_posts()) : the_post(); ?>
  6.  
  7. <div class="post" id="post-<?php the_ID(); ?>">
  8.  
  9. <div class="thumb"><?php the_post_thumbnail(); ?></div>
  10.  
  11. <div class="title">
  12. <h2>" rel="bookmark" title=" "<?php the_title(); ?>"><?php the_title(); ?></h2>
  13. </div>
  14.  
  15. <div class="postmeta">
  16. <span class="author">Posted by <?php the_author(); ?> </span>
  17. <span class="clock"> Posted on <?php the_time('M - j - Y'); ?></span>
  18. <span class="comm"><?php comments_popup_link('0 Comment', '1 Comment', '% Comments'); ?></span>
  19. </div>
  20.  
  21. <div class="entry">
  22. <?php the_content('Read the rest of this entry ยป'); ?>
  23.  
  24. <div class="clear"></div>
  25. <?php wp_link_pages(array('before' => '<p>Pages: ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
  26. </div>
  27.  
  28. <div class="singleinfo">
  29. <span class="category">Categories: <?php the_category(', '); ?> </span>
  30. </div>
  31.  
  32. </div>
  33.  
  34. <?php comments_template(); ?>
  35. <?php endwhile; else: ?>
  36.  
  37. <h1 class="title">Not Found</h1>
  38. <p>I'm Sorry, you are looking for something that is not here. Try a different search.</p>
  39.  
  40. <?php endif; ?>
  41.  
  42. </div>
  43.  
  44. <?php get_sidebar(); ?>
  45. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement