Forums

Past and next links don't't work on blog page (2 posts)

  1. elianab
    Member
    Posted 1 year ago #

    I am using a custom template to show my blog, so I am not using the index.php, archive, single or category. I have a query to show all my posts. In my settings I have set it to show 5 posts.
    When I view the page I can see the links to go forward and back, but if I click the link, it always takes me to the same 5 posts.
    The page I'm working on is:
    http://www.sidewalkcafedesign.com/blog-3

  2. alchymyth
    The Sweeper
    Posted 1 year ago #

    use this code to get the $paged variable,

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

    and then integrate it into your custom query:

    for instance:
    query_posts('cat=0&posts_per_page=5&paged=' . $paged);

    http://codex.wordpress.org/Function_Reference/query_posts#Pagination_Parameters

Topic Closed

This topic has been closed to new replies.

About this Topic

Tags

No tags yet.