Advertisement
salmancreation

How to Display Recent Posts From A Specific Category In Word

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