Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- How to Display Recent Posts From A Specific Category In WordPress
- <?php
- $catquery = new WP_Query( 'cat=3&posts_per_page=10' );
- while($catquery->have_posts()) : $catquery->the_post();
- ?>
- <ul>
- <li><h3><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3>
- <ul><li><?php the_content(); ?></li>
- </ul>
- </li>
- </ul>
- <?php endwhile; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement