Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have archive and search pages that need to have buttons that essentially change the "post_per_page" parameter. I was able to get something similar for changing the results order (name or date) like so:

<span class="left">Sort by: <a href="' . get_bloginfo('url') . '?s=' . get_search_query() . '&orderby=title&order=asc">Name<a>;

I tried using "&posts_per_page=20" to the link, however that does not seem to work.

Any suggestions?

share|improve this question
Review: stackoverflow.com/questions/7539289/… – alditis Dec 5 '12 at 3:27
Pagination works fine. I have 10 posts that load by default. I have buttons for 20, 40, 60. Clicking on the 20 button should now load 20 posts on that page. – Anthony Dec 5 '12 at 4:29

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.