I’d like to customize the feed URL of a certain WordPress-based blog that I don’t own in order to show all posts ever published. This is because I like that blog and I want to read everything the author has written, without missing a single post. Is this possible? Or should I surf this blog manually? Thank you.
4 Answers
By default it gives 10 posts per feed, you can add paged
parameter to get old posts
website.com/feed -> get last 10 posts
website.com/feed/?paged=2 -> get next 10 posts
and so on…