Forums

[Help me] Page 1 is the same as Page 2 (3 posts)

  1. peam
    Member
    Posted 4 months ago #

    Hi there,

    Page 1 is the same as Page 2 (Plugins WP-Pagenavi)

    I have a problem with some of my theme's code. I know it's my theme because I tried another theme out and the problem went away.

    http://snipt.org/xopnj7 - is my index.php

    Help me please...

    Thanks.

  2. vtxyzzy
    Member
    Posted 4 months ago #

    I don't see any reference to WP_PageNavi in the code you posted.

    However, AFAIK, WP_PageNavi works only with query_posts(), not with get_posts(). And, your call to query_posts must include the 'paged=nn' argument. 'nn' is usually supplied like this:

    $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
    query_posts("paged=$paged");

    Of course, there are usually other arguments in addition to paged.

  3. peam
    Member
    Posted 4 months ago #

    Thank for help.

Reply

You must log in to post.

About this Topic