Trying to display posts by authors in with specific user meta
$args is a variable and as such should not be wrapped in quotes in the arguments array of query_posts(). Now that should be what’s causing the whole thing to fail. That being said, there are a few more flaws I see in your code: I’d recommend using the WP_Query class instead of query_posts() (why is … Read more