Advertisement
Guest User

Untitled

a guest
Apr 15th, 2012
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. <?php if (have_posts()) :
  2. $my_query = new WP_Query('cat=8&showposts=4'.'&paged='.$paged);
  3. while ( $my_query->have_posts() ) : $my_query->the_post();
  4. ?>
  5.  
  6. <article <?php post_class() ?> id="post-<?php the_ID(); ?>">
  7.  
  8. <div class="title-box-secondary">
  9.  
  10. <h2><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
  11.  
  12. <p class="edit-link"><?php edit_post_link(); ?></p>
  13.  
  14. </div>
  15.  
  16. <div class="entry">
  17. <?php the_content(); ?>
  18. </div>
  19.  
  20. <footer class="postmetadata">
  21. <?php the_tags('Tags: ', ', ', '<br />'); ?>
  22. Posted In: <?php the_category(', ') ?> |
  23. <?php comments_popup_link('No Comments &#187;', '1 Comment &#187;', '% Comments &#187;'); ?>
  24. </footer>
  25.  
  26. </article>
  27. </div>
  28.  
  29. <?php endwhile; ?>
  30.  
  31. <?php include (TEMPLATEPATH . '/_/inc/nav.php' ); ?>
  32.  
  33. <?php else : ?>
  34.  
  35. <h2>No Posts Found</h2>
  36.  
  37. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement