I found a way to filter the query by adding :
'meta_query' => array(
'relation' => 'OR',
array(
'key' => 'passster_activate_protection',
'compare' => 'NOT EXISTS',
),
array(
'key' => 'passster_activate_protection',
'value' => '1',
'compare' => '!=',
),
)
-
This reply was modified 1 year, 4 months ago by qtpweb.