Forums › Forums › Search & Filter Pro › Pagination Broken
Tagged: pagination
- This topic has 13 replies, 2 voices, and was last updated 4 years, 8 months ago by Trevor.
-
Trevor(Private) March 6, 2020 at 11:36 am #235725
I would try editing the template. First, make sure you are using a child theme, edit the file inside the child theme folder, not the parent theme.
Find the pagination part and start by replacing it with the really basic, standard WordPress Codex pagination code:
<div class="pagination"> <div class="nav-previous"><?php next_posts_link( 'Older posts', $query->max_num_pages ); ?></div> <div class="nav-next"><?php previous_posts_link( 'Newer posts' ); ?></div> </div>
Then, if that works, start to improve that code.
Anonymous(Private) March 9, 2020 at 9:39 pm #236030More information I have learned and can share. So I am using a Custom Post Type “Nominees” and a Custom Post Type Taxonomy “Nominee Categories”.
It works on the Taxonomy but not the Post Type and the pages are Identical using Archive.php
Works: https://nshof.org/nomination_categories/technical/
Doesn’t work: https://nshof.org/nomineesSo is this the issue and do you have any ideas?
-
AuthorPosts