• My template does not support next and previous page so i have added code manually <?php posts_nav_link(); ?> by going to blog.php

    The problem is next and previous link does not work please help me my website is kuwaitsblog.com

Viewing 3 replies - 1 through 3 (of 3 total)
  • There is a great plugin for fancy next post nav.its called WP navi or similar

    Thread Starter green_king

    (@green_king)

    @root thanks but that plugin is for comments

    You probably need to include the ‘paged’ argument to the query. It might be something like this, depending on your template:

    <?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
    global $wp_query;
    query_posts(
       array_merge(
          $wp_query->query,
          array('paged' => $paged),
       )
    );
    ?>
Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘please your help is needed’ is closed to new replies.