Guest User

Untitled

a guest
Feb 18th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. <?php query_posts($query_string . '&cat=-3,-8'); ?>
  2. <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
  3.  
  4. <div class="post">
  5.  
  6. <!-- Display the Title as a link to the Post's permalink. -->
  7. <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
  8.  
  9. <!-- Display the date (November 16th, 2009 format) and a link to other posts by this posts author. -->
  10. <small><?php the_time('F jS, Y') ?> by <?php the_author_posts_link() ?></small>
  11.  
  12. <div class="entry">
  13. <?php the_content(); ?>
  14. </div>
  15.  
  16. <p class="postmetadata">Posted in <?php the_category(', '); ?></p>
  17. </div> <!-- closes the first div box -->
  18.  
  19. <?php endwhile; else: ?>
  20. <p>Sorry, no posts matched your criteria.</p>
  21. <?php endif; ?>
Add Comment
Please, Sign In to add comment