Dave Rottino
Dave Rottino

Reputation: 1047

Wordpress pagination not working past page 1

Working on this site and it's blog posts here:

http://itsuptous.org/team-pages/

The pagination does not work past page 1. Using this as my query:

    $posts = query_posts($query_string.'&orderby=title&order=asc&posts_per_page=4&paged='.$paged);

And this plugin for my pagination: http://wordpress.org/extend/plugins/wp-paginate/faq/

    <?php if(function_exists('wp_paginate')) {
        wp_paginate();
    } ?>

Anyone have any thoughts? Thanks in advance.

Upvotes: 0

Views: 354

Answers (1)

Dave Rottino
Dave Rottino

Reputation: 1047

@Daniel - That solved it! Setting the Reading settings both to 4. Thanks a bunch. Wonder why that disparity caused issues. I thought I could independently set how many posts per page per blog layout. I guess not.

Upvotes: 1

Related Questions