Actually, what I’m really having trouble with now that I’ve fiddled with it some more, is the custom field queries not really working as expected. Maybe you can help shed some light.
//only returns posts with boolean_field checked
$query['boolean_field'] = '1';
//returns ALL POSTS regardless of what’s checked
$query['boolean_field'] = '0';
or
$query['boolean_field'] = '';
I can’t seem to just do a simple exclusion of a post from the query based on a checkbox. Is this working as intended?