Im have a loop with wp_query with the following code:
<?php
$temp = $wp_query;
$wp_query= null;
$wp_query = new WP_Query();
$wp_query->query("showposts=2&paged=$paged");
?>
<?php if ($wp_query->have_posts()) : while ($wp_query->have_posts()) : $wp_query->the_post(); ?>
<?php the_title() ?>
<?php endwhile; ?>
<?php else: ?>
<article>
<h2><?php _e( 'Sorry, nothing to display.', 'theme' ); ?></h2>
</article>
<?php endif; my_pagination(); wp_reset_query()?>
with standard pagination :
<?php
function my_pagination()
{
global $wp_query;
$big = 999999999;
echo paginate_links(array(
'base' => str_replace($big, '%#%', get_pagenum_link($big)),
'format' => '?paged=%#%',
'current' => max(1, get_query_var('paged')),
'prev_text' => __('<i class="fa fa-chevron-left"></i>'),
'next_text' => __('<i class="fa fa-chevron-right"></i>'),
'total' => $wp_query->max_num_pages,
));
}
?>
The pagination is showing correctly on the page, but whenever I click on the pagination link it takes me to the error page.
Tried everything now and have no idea what can be the reason for it.
Amy help much apprecieated
$wp_query->query("showposts=2&paged=$paged");
and change$wp_query = new WP_Query();
to$wp_query = new WP_Query( 'posts_per_page=2' );
does that return some results? With that in place, your pagination should work – henrywright