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?