I was wondering if anyone new how to show the 3 most recent posts in WordPress? Any help would be much appreciated.
How about just the post’s thumbnail outputting 3 times?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use query_posts
For example, on the homepage, you would normally see the latest 10 posts. If you want to show only 3 posts (and don’t care about pagination), you can use query_posts() like so:
query_posts( ‘posts_per_page=3’ );
Hope this help!