I’ve found the problem. Since I’m on a single (custom) post page, WP redirects back to the root of the URL. I’ve found the solution here.
The solution (copied from the post on SO) was adding this to the functions.php:
add_filter('redirect_canonical','pif_disable_redirect_canonical');
function pif_disable_redirect_canonical($redirect_url) {
if( is_singular()) {
$redirect_url = false;
}
return $redirect_url;
}
I’ve removed && in_category('PLACE CAT ID HERE')
from the original code in the post to tailor to my situation.
Related Posts:
- Aggregate comments, with pagination
- How can I see all of a post’s comments on a single page as a reader, if pagination is enabled?
- paginate_comments_links() not working
- How to Show Next-Previous Link Only
- WordPress /page/2 404 pagination problem – what to do?
- Paged posts – how to use numbers and next/previous links?
- how to get pagination link url?
- add_rewrite_rule – working fine but broken for pagination
- Check if on last page of paginated post using wp_link_pages
- How to paginate a list of tags
- How do I sort multiples pages?
- WordPress pagination on custom script
- Broken pagination
- wordpress Static Page pagination
- pagenavigation not showing the next page just linking back to the main page [closed]
- Paginate get related post by author function
- How to use pre_get_posts?
- Keep Pagination in Tabs
- Need help understanding pagination parameters
- redirect pages with no content, instead of 404 error, using max_num_posts?
- WordPress API returns empty page when page is less than X-WP-TotalPages
- Custom query in archive.php with pagination nightmare
- Display post links under month in paginated archive
- Pagination (page/2/) displaying 404 on archive pages
- How to use “offset” to paginate get_users?
- Limited number of paging to 10 “pages: 1 … 10”
- remove_query_arg() on rewrite rule
- Hide featured post on second page
- I cannot get pagination to work on my home page code. it keeps displaying the same posts
- How to get “last year from [spec year] that has posts”?
- Fetching more posts in WordPress via AJAX
- AJAX pagination offset returns same post on adjacent pages
- 404 on pagination but with a strange twist (error 404 only when there is single post on the second page)
- How can I paginate a list of related posts?
- tag.php pagination and query_posts()
- Add additional first page, last page links to the_posts_pagination()
- How can I use var php with javascript to build custom page? [closed]
- wp_title() returns ‘page not found’ on page 2
- Homepage has Paged Pages that should not exist, like /page/2/ and on to /page/99999/
- Randomised Post Time
- WordPress paginate_links() function doesn’t generate properly links after apply filters
- Not refreshing content pagination on search result
- rewrite url with parameter or pagination beyond certain value does not work
- stop pretty pagination rewrite site.com/cat/2 => site.com/cat?page=2
- How checked checkboxes remember on all pages in wp_list_table pagination?
- Update to 4.4.1 breaks my pagination
- Issue on single.php pagination WordPress
- Pagination on home page not working
- Adding range to wp_link_pages()
- Pagination 404s on custom query
- Pagination not working with custom post type
- Displaying the author of next and previous posts in pagination?
- How to ignore pagebreaks for RSS feed?
- Pagination For Table Rows on a page?
- Custom pagination code is not working
- Pagination doesnt show numbers
- where is wordpress search pagination
- Universal CPT archive template and half working pagination
- How do I override all theme pagination throughout a site?
- Translating a pager string
- Pagination, query more pages at once
- Paginate_links only working on first page
- What is the best way to implement ajax based pagination on custom query based templates?
- WordPress pagination with wp_query_columns
- Custom post type pagination like “previous current/all next”
- what code to add to search.php
- remove rel=next on category page (if
- Setting up Pagination with twentytwelve_content_nav
- GoBlog Free Pagination Issue
- Why next_posts(); function does not work inside header.php?
- Sidebar pagination posts not shown when sidebar is in single.php
- how to Adding pagination on template page wordpress
- Pagination with Metaboxes or Custom Fields
- Custom pagination search in post type with meta key
- How to add pagination to custom page
- Pagination: Last Page Missing
- posts_per_page stop working after wordpress update from 4.2.1 to 4.6.1
- Why Am I getting an error when I add the number parameter to my WP_User_Query?
- Paginate Links function: Page 1 doesn’t work
- the_posts_navigation is not working
- Display NEXT and PREVIOUS pagination? [duplicate]
- Disable pagination on frontpage
- Pagination not working in custom post page
- Search engine not working
- How can I get my pagination to recognize that it is on the first page?
- pagination broken because wordpress is adding index.html
- the paged param is allways 0
- Get next and previous page of paginated post
- Pagination 404 Not Found child page
- How to group posts by months and add pagination?
- Reverse ordered pagination on home page
- pagination for blog landing page
- Blog Page pagination not working, loads Page 1 each time [duplicate]
- Pagination is not working correctly there is this wierd looping
- margins in between pagination links [closed]
- Page navigation not working correctly on index but only on categories
- How to split long posts in multiple pages in twentysixteen
- Duplicating pagination on second page
- Stop pagination when static homepage is set
- Is ‘pm’ used by core?