Guest User

Untitled

a guest
Jul 16th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3.  
  4. <div id="copy">
  5.  
  6. <?php if (have_posts()) : ?>
  7.  
  8. <?php while (have_posts()) : the_post(); ?>
  9. <div class="post">
  10. <h2><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
  11. <div class="post-date"><?php the_time('F jS, Y') ?></div>
  12. <?php the_content(); ?>
  13. <div class="categories">Posted in:
  14. <?php the_category(', ') ?>
  15. </div>
  16. <div class="tags">Tags:
  17. <?php the_tags(); ?>
  18. </div>
  19. <div class="comments">
  20. <?php comments_popup_link('No Comments &#187;', '1 Comment &#187;', '% Comments &#187;'); ?>
  21. </div>
  22. </div>
  23.  
  24. <?php endwhile; ?>
  25.  
  26. <div class="navigation">
  27. <div class"alignleft">
  28. <?php next_post_link('&laquo; Older Entries') ?>
  29. </div>
  30. <div class="alignright">
  31. <?php previous_posts_link('Newer Entries &raquo;') ?>
  32. </div>
  33. </div>
  34.  
  35. <?php else : ?>
  36. <h2 class="center">Not Found</h2>
  37. <p class="center">Sorry, but you are looking for something that isn't here.</p>
  38. <?php get_search_form(); ?>
  39. <?php endif; ?>
  40. </div> <!-- /copy -->
  41.  
  42.  
  43. <?php get_sidebar(); ?>
  44.  
  45. <?php get_footer(); ?>
Add Comment
Please, Sign In to add comment