Pagination of RSS2 feed

How to have pagination of RSS2 feed ?

My current RSS link is similar to :

Read More
http://www.example.com/?feed=rss2

I tried:

http://www.example.com/?feed=rss2&page=2

But WordPress still returns me with same set of result, given that I set 10 posts per page in

Dashboard > Settings > Reading > Syndication feeds show the most recent

(of course I have more than 10 posts)

Related posts

2 comments

  1. You want to use paged not page in the request and it should work.

    You can find more information about WordPress pagination paged parameter here.

  2. You have to set the page load from WP-Admin > Settings > Reading:

    In Syndication feeds show the most recent choose how many items will be in each page of the feed.

    And now your feed is pagination-ready. Browse it with:
    http://www.example.com/?feed=rss2&paged=1

    Default Permalink:
    Syntax: http://domain/?feed=rss2&paged=#

    For any other permalink, other than Default, a question of mine is still waiting unanswered. There you will find more syntax about RSS feed.

Comments are closed.