Advertisement
Guest User

Untitled

a guest
Oct 19th, 2012
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. <div id="blog">
  2. <?php query_posts('cat=-4'); ?>
  3. <?php if(have_posts()) : while(have_posts()) : the_post('cat=-3,4'); ?>
  4. <div class="post-title">
  5. <h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
  6. </div><!-- end post-title -->
  7. <div class="post">
  8. <?php the_content('read more...'); ?>
  9. </div><!-- end post -->
  10. <div class="post-meta">
  11. <p><?php the_date(); ?> | <?php the_tags('tags:', ', ', '<br />'); ?></p>
  12. </div><!-- end post-meta -->
  13. <?php endwhile; ?>
  14. <?php else : ?>
  15. <p>I'm not sure what you're looking for.</p>
  16. <?php endif; ?>
  17. </div><!-- end blog -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement