简体   繁体   中英

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.

@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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM