Home › Forums › Back End › No. of Posts to Show (WordPress) › Re: No. of Posts to Show (WordPress)
October 20, 2012 at 1:33 am
#112304
Member
Hi, If you want to show only 5 posts (and don’t care about pagination), you can use query_posts() like so: query_posts( ‘posts_per_page=5’ );
If you must use query_posts(), make sure you call wp_reset_query() after you’re done.
Let me know does it work or not………