• hi i am using the following code,

    [Code moderated as per the Forum Rules. Please use the pastebin]

    first page is showing good but when clicking on next page it show the same entries as 1st page, how to resolve it?

Viewing 1 replies (of 1 total)
  • Need to see your code to be sure, but you probably need to add the ‘paged’ argument to the query.

    <?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
    query_posts("paged=$paged&...");

    Replace … with your other query arguments.

Viewing 1 replies (of 1 total)

The topic ‘paging problem’ is closed to new replies.