Created
June 4, 2019 01:31
-
-
Save topher1kenobe/9e86b0b112739d0b397ede76e2284ea4 to your computer and use it in GitHub Desktop.
array_intersect meta_query
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
$meta_query = [ | |
'meta_key' => 'pmp_required_levels', | |
'meta_value' => get_pmpro_subscription_ids( get_current_user_id() ), | |
'meta_compare' => 'IN', | |
'post_type' => 'li_resources', | |
]; | |
// value holds an array like this | |
Array | |
( | |
[0] => 6 | |
[1] => 7 | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment