WP_Query with multiple meta fields filter?
You can not query for multiple meta fields using meta_key and meta_value parameters, you have to use meta_query parameter. Using multiple meta_key and meta_value parameters will use only the first found pair, that is why in your code the condition about “offer_type NOT LIKE deal” is ignored. So, the correct query should be: $args = … Read more