List Recent Posts from Specific Category – WordPress
You can list post from specific category by query_posts() function. it will take one or two parameters, one is category name and 2nd is no of post to show. like following code is showing exactly how it work. <?php query_posts(‘category_name=internet&showposts=5’); ?> and full code to show posts <?php query_posts(‘category_name=internet&showposts=5’); ?> <?php while (have_posts()) : the_post(); […]