Support » Fixing WordPress » Allow User to customize posts per page via links on page

  • Resolved Will

    (@wlanni)


    Hello,

    I’m trying to build a list of links at the bottom of an archive page to allow a user to expand the number of posts_per_page.

    By default, I’ve modified my WP_Query to show 15 posts per page.

    I’d like to allow viewers of the site to click a link at the bottom to expand to view 20, 30, 40, 50 posts per page.

    How would I modify my WP_Query to read a passed in variable like that? I tried using a link with a GET command:
    <a href="www.blogurl.com/category/?numposts=20">show 20 posts per page</a>

    then set my WP_Query with a variable like this:

    if (!$numposts) $numposts = 15;
    $args = array ('posts_per_page' => $numposts);
    $my_query = new WP_Query($args);

    But that didn’t work.

    Anyone ever set something like this up?

Viewing 4 replies - 1 through 4 (of 4 total)
  • I think your approach should work if you use GET to set $numposts before the query:

    $numposts = (intval($_GET['numposts'])) ? intval($_GET['numposts']) : 15;
    $args = array ('posts_per_page' => $numposts);
    $my_query = new WP_Query($args);
    Thread Starter Will

    (@wlanni)

    Hmm. That works, but pagination then doesn’t work, as it appends the /page/2/ after the /?numposts

    Perhaps, then this becomes a permalink question. If I didn’t have pagination this would be resolved. Thanks vtxyzzy

    What are you using for pagination? Can you post a few lines of code?

    Thread Starter Will

    (@wlanni)

    hey vtxyzzy — I posted a new topic that I believe is more accurate to the problem I’m now experiencing, including code and a link to a mock dev site that simulates the problem:

    http://wordpress.org/support/topic/add_query_var-breaks-pagination?replies=2

    Your solution to make numposts wound up working, in combination with me adding an add_query_arg() call. To finish this topic out for anyone else looking for answers, here’s what my final code was (without the pagination issue, as that feels like a different topic to me, see link above):

    <?php
    $numposts = (intval($_GET['numposts'])) ? intval($_GET['numposts']) : 15;
    $args = array ('posts_per_page' => $numposts);
    $my_query = new WP_Query($args);
    ?>
    <a href="<?php echo add_query_arg('numposts', '20', get_permalink() );?>">show 20 posts per page</a>

    Thank you again for your assistance on that. The add_query_arg was the function I had missed in the codex, and somehow your info led me right to it.

    If you have input on the pagination breaking, I’d love to hear it on that other topic.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Allow User to customize posts per page via links on page’ is closed to new replies.