Show posts containing or not custom field
The WP_Query class will automatically AND any filters that are set. In your case, using $query->set( ‘meta_query’, … ) means that WordPress will be looking for posts from the current author (because this is the author template) AND that have your custom meta key. From my understanding of your problem, this intentionally will never happen, … Read more