Skip to content

Instantly share code, notes, and snippets.

@benpearson
Created January 9, 2025 10:50
Show Gist options
  • Save benpearson/22a996087c280040fadfb90e1721ff48 to your computer and use it in GitHub Desktop.
Save benpearson/22a996087c280040fadfb90e1721ff48 to your computer and use it in GitHub Desktop.
WordPress: Exclude posts based on ACF true/false field
$query_args = [
'post_type' => ['dt_project'],
'posts_per_page' => -1,
'orderby' => 'menu_order',
'order' => 'ASC',
'meta_query' => [
'relation' => 'OR',
[
'key' => 'exclude_project',
'compare' => 'NOT EXISTS',
],
[
'key' => 'exclude_project',
'value' => '1',
'compare' => '!=',
],
],
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment