Question

How can I build a query to find posts that DO NOT contain a certain meta key or meta value?

for example:

query_posts( array( 
    'meta_query' => array(
        array( 'key' => 'feature', 'value' => '_wp_zero_value', 'compare' => '!=' )         )
) );

No correct solution

Licensed under: CC-BY-SA with attribution
Not affiliated with wordpress.stackexchange
scroll top