Can ‘numberposts’ be passed in the URL query string?
Well, numberposts is not actually a query variable. It’s just turned into posts_per_page in get_posts() before the query is run. posts_per_page is a private query var, which means you can’t run it in the query string. A possible solution would be to register a custom query variable (let’s say ‘latest_mealplan’ and add that variable to … Read more