Advertisement
Guest User

Untitled

a guest
Apr 16th, 2012
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. <?php
  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.  
  17. <div class="entry">
  18. <?php the_content(); ?>
  19. </div>
  20.  
  21. <footer class="postmetadata">
  22. <?php the_tags('Tags: ', ', ', '<br />'); ?>
  23. Posted In: <?php the_category(', ') ?> |
  24. <?php comments_popup_link('No Comments &#187;', '1 Comment &#187;', '% Comments &#187;'); ?>
  25. </footer>
  26.  
  27. </article>
  28. </div>
  29.  
  30. <?php endwhile; ?>
  31.  
  32. <?php include (TEMPLATEPATH . '/_/inc/nav.php' ); ?>
  33.  
  34. <?php else : ?>
  35.  
  36. <h2>No Posts Found</h2>
  37.  
  38. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement