I have a custom post type "news" and a "subject" taxonomy that has its terms, to do the pagination I am using the following code (page-news.php):
$custom_query_args['paged'] = get_query_var( 'paged' ) ? get_query_var( 'paged' ) : 1;
$args = array( 'post_type' => 'noticias', 'paged' => $custom_query_args['paged'], 'posts_per_page' => 5);
$loop = new WP_Query( $args );
$temp_query = $wp_query;
$wp_query = NULL;
$wp_query = $loop;
while ( $loop->have_posts() ) : $loop->the_post();
<!-- Conteúdo aqui -->
endwhile;
wp_reset_postdata();
if (function_exists("pagination")) {
pagination($wp_query->max_num_pages);
}
$wp_query = $temp_query;
And the function:
function pagination($pages = '', $range = 4) {
$showitems = ($range * 2)+1;
global $paged;
if(empty($paged)) $paged = 1;
if($pages == '') {
global $wp_query;
$pages = $wp_query->max_num_pages;
if(!$pages) {
$pages = 1;
}
}
if(1 != $pages) {
echo "<div class=\"pagination\"><span>Página ".$paged." de ".$pages."</span>";
if($paged > 2 && $paged > $range+1 && $showitems < $pages) echo "<a href='".get_pagenum_link(1)."'>« Primeira</a>";
if($paged > 1 && $showitems < $pages) echo "<a href='".get_pagenum_link($paged - 1)."'>‹ Anterior</a>";
for ($i=1; $i <= $pages; $i++) {
if (1 != $pages &&( !($i >= $paged+$range+1 || $i <= $paged-$range-1) || $pages <= $showitems )) {
echo ($paged == $i)? "<span class=\"current\">".$i."</span>":"<a href='".get_pagenum_link($i)."' class=\"inactive\">".$i."</a>";
}
}
if ($paged < $pages && $showitems < $pages) echo "<a href=\"".get_pagenum_link($paged + 1)."\">Próxima ›</a>";
if ($paged < $pages-1 && $paged+$range-1 < $pages && $showitems < $pages) echo "<a href='".get_pagenum_link($pages)."'>Última »</a>";
echo "</div>\n";
}
}
Everything works normally on the page of the blog (page-blog.php), but when I enter a category (taxonomy-subject.php), pagination appears, but the result is a 404.
The URL that works is: www.example.com/blog/page/2 (which would be the custom post type) It does not work: www.example.com/subject/page/2 (which would be of the taxonomy)
I tried different solutions and nothing worked, does anyone have any ideas?