• Hi can someone help me with this…

    Each paginated page shows the same posts..

    here’s the code

    <?php query_posts(‘category_name=Homepage Models&posts_per_page=4’);

Viewing 2 replies - 1 through 2 (of 2 total)
  • Try this:

    <?php
    $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
    query_posts('category_name=Homepage Models&posts_per_page=4&paged=' . $paged);
    Thread Starter mojohn

    (@mojohn)

    It’ works! thanks a lot dude ^^

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘pagination problem!’ is closed to new replies.