Advertisement
asadsuman

How to Display Recent Posts From A Specific Category In Word

May 14th, 2014
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. How to Display Recent Posts From A Specific Category In WordPress??
  2.  
  3. <?php
  4. $catquery = new WP_Query( 'cat=3&posts_per_page=10' );
  5. while($catquery->have_posts()) : $catquery->the_post();
  6. ?>
  7. <ul>
  8. <li><h3><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3>
  9.  
  10. <ul><li><?php the_content(); ?></li>
  11. </ul>
  12. </li>
  13. </ul>
  14. <?php endwhile; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement