• Here is my wordpress blog 2.9.2.
    https://www.flopsite.com/

    As mentioned in my subject, I’m having problem regarding navigating to my previous posts that I’ve written on my blog.
    It just displays the 10 recent posts and when clicked on “Previous Entries” Link on the bottom of the page, it takes me to https://www.flopsite.com/page/2/ but doesn’t displays the previous entries. Instead it displays the posts which are displayed on the homepage that is the recent 10 posts.

    Please anybody help me with this.

    I’ve checked disabling all my plugins and re-activating them one by one again.
    Tried all possible techniques but failed. ??

    Please help !!!

Viewing 3 replies - 1 through 3 (of 3 total)
  • if the front page template has a custom query, this is probably missing the ‘paged’ parameter;

    in general:

    <?php wp_reset_query();
    $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
    query_posts('category_name=news&paged=' . $paged); ?>

    instead of ‘category_name=new’ you wil probably have different parameters.

    if that does not work, you could paste the code of the front page template file into a https://wordpress.pastebin.com/ and post the link to it here.

    Thread Starter haunted2007

    (@haunted2007)

    if the front page template has a custom query, this is probably missing the ‘paged’ parameter;

    Which file do you mean exactly ?

    depends on your theme, but is usually index.php (could be home.php)

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Previous Entries navigation problem’ is closed to new replies.