Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. <?php
  2.  
  3. // The Loop
  4. while ( have_posts() ) : the_post(); ?>
  5. <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
  6. <small><?php the_time('F jS, Y') ?> by <?php the_author_posts_link() ?></small>
  7.  
  8. <div class="entry">
  9. <?php the_content(); ?>
  10.  
  11. <p class="postmetadata"><?php
  12. comments_popup_link( 'No comments yet', '1 comment', '% comments', 'comments-link', 'Comments closed');
  13. ?></p>
  14. </div>
  15.  
  16. <?php endwhile;
  17.  
  18. else: ?>
  19. <p>Sorry, no posts matched your criteria.</p>
  20.  
  21.  
  22. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement