Modify main WordPress loop with a parse_query filter
Ultimately all meta queries get run through _get_meta_sql. wp-includes/meta.php Line 402 – 403 in the _get_meta_sql function The following coditional statement runs for any meta queries. if ( empty( $meta_key ) && empty( $meta_value ) ) continue; There’s a ticket here for this which outlines what we should be able to do. http://core.trac.wordpress.org/ticket/16735 What you … Read more