new WP_Query issues
The issue with your query is that new WP_Query($query_string,$args); is not correct syntax, however, creating a new WP_Query is not the way to do what you want. See the codex page for pre_get_posts for the correct way to modify the main query. I assume by setting posts per page to 999, you want to show … Read more