Created
April 6, 2021 04:24
-
-
Save larodiel/ec07d31b504fd09693d99d25fd8c281a to your computer and use it in GitHub Desktop.
ACF meta query to exclude posts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// WP_Query arguments | |
$args = array( | |
'post_type' => 'post', | |
'post_status' => array( 'publish' ), | |
'posts_per_page' => -1, | |
'ignore_sticky_posts' => true, | |
'meta_query' => array( | |
'relation' => 'OR', | |
array( | |
'key' => 'exclude_post_from_home', | |
'value' => '1', | |
'compare' => 'NOT EXISTS' | |
), | |
array( | |
'key' => 'exclude_post_from_home', | |
'value' => '1', | |
'compare' => '!=' | |
) | |
) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment