How do I use fields => ids in an array with WP Query?
Why is $args null? $args is just a plain PHP array of query arguments. Arrays in PHP do not have properties (like $args->posts). The ->posts property only exists after you instantiate a WP_Query object. So at that point in your code, $args->posts will always be null or throw an error, because $args is not a … Read more