Links to page 2/3/… do not work
-
Hi
Thanks for this plugin. I added the following to my “category” page, but the links to page 2/3/… do not work. (https://capeinfo.com/blogs/beezus/category/eastern-cape/) How can I fix this?
<?php
// You need protect against arbitrary paged values
$paged = ( get_query_var( ‘paged’ ) ) ? absint( get_query_var( ‘paged’ ) ) : 1;$args = array(
‘post_type’ => ‘post’,
‘posts_per_page’ => 10,
‘paged’ => $paged,
);$my_query = new WP_Query( $args );
?>
<?php echo easy_wp_pagenavigation(); ?>Thanks, Carl
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Links to page 2/3/… do not work’ is closed to new replies.