Advertisement
pusatdata

WP-Trik: Display Recent Posts From A Specific Category In Wp

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