Can I browse a blog's comments feed further than the first page (usually 10 comments)
I know there's a comments feed:
/comments/feed
and comments feed for a specific post:
/feed?p=23
and posts feed which can be paginated:
/feed?paged=2
and the ability to pageinate comments on a post using comment-page-2
or cpage=2
on a post (not in feed).
But how do I go to page #2 on a comments feed? Or on a specific post's comments feed?
I tried all sorts of combinations, with no help:
/comments/feed/comment-page-2
,
/comments/comment-page-2/feed
,
/comments/feed?paged=2
,
/comments/feed?cpage=2
,
/feed?p=23&cpage=2
(that redirects to -->)
/post-slug/feed/comment-page-2
(returns 404),
/post-slug/feed?cpage=2
,
/post-slug/comment-page-2/feed/
(returns 404)
Is it even possible?
Thanks.