Next Page Link shows same posts on custom template

It looks like you’re missing the “$paged” variable. This controls the pagination, along with the “posts_per_page” option you have set. Please see the following amended PasteBin: http://pastebin.com/U4teTA0F This ensures that the correct page is set when using “/page/2”. “/page/3”, etc. Code: <div id=”blogposts”> <?php global $paged; $catquery = new WP_Query( ‘cat=1&posts_per_page=6&paged=’ . $paged ); while($catquery->have_posts()) … Read more

How to get only the URL of nextpage (without tag)

If you check out the source of _wp_link_page, you’ll see all the URL calculations are coded directly within – you can either lift this code straight out into your own function, or sprinkle a little regex around the existing function: function wpse_204737_get_post_page_url( $i ) { if ( preg_match( ‘/href=”https://wordpress.stackexchange.com/questions/204737/([^”]+)”https://wordpress.stackexchange.com/”, _wp_link_page( $i ), $match ) ) … Read more