To exclude the latest post from the WordPress Post Loop you need to first find the loop that you are working with. Then you will need to add the following parameter: query_posts('posts_per_page=5&offset=1'); The above query will display only 5 posts which follow the most recent post (1).