You want to use the newer meta_query
methodology…
You establish a meta_query
and then use arrays for the different conditions you want met, preface them with the relationship relation => 'AND'
or relation => 'OR'
$loop3 = new WP_Query( array(
'posts_per_page' => 10000,
'post_type' => 'volunteers',
'meta_query' => array(
'relation' = 'AND',
array(
'key' => 'state',
'value' => $stateselect,
'compare' => '=',
),
array(
'key' => 'volunteer_type',
'value' => 'painter',
'compare' => '=',
),
),
) );
Codex has a write-up here:
https://developer.wordpress.org/reference/classes/wp_query/#custom-field-post-meta-parameters
Note
That’s a lot, like A LOT, of posts_per_page
.
Related Posts:
- Query multiple custom post types in single loop
- Build a content and excerpt grid loop with paging and options for # of posts
- Using Cookie Data For WP_Query Loop
- wp_delete_post deletes all posts instead of just expired ones
- Alter secondary loop to exclude posts from current page category
- Trim first 2 words of the exceprt
- Count number of published posts by type
- Display Post co-authored in Author Page
- Can’t increase posts_per_page by variable
- Sorting Posts | Alphabetical Order
- Looking for most performant way to execute several similar WP queries within shortcodes
- Get the last month with posts using a recursive function…
- How to query for pages/post depending on slug?
- WordPress custom slug (endpoint) and compare all links
- get current custom post ID by WP_Query method
- wp_query with cat not working
- How to use an associative array in post__in with WP_Query?
- Recent Posts slider, using WP_Query(), loads duplicate sliders
- Compare post-IDs within WP_Query? (Less than / Greater than)
- How to use $query->set with post__in?
- Why do WP_Query results change after updating unrelated Advanced Custom Fields (ACF)?
- Display a specific category of products in shop page and disable code for specific actions
- WordPress, AJAX and pre_get_posts using conditional tags
- get_posts() and WP_query limits ‘AND’ conditions to a maximum of 6 for meta value queries in WordPress
- Exclude posts based on meta value
- Custom query, checking values of multiple meta keys
- Remove echo from shortcode
- How Can I use WP_Query to Only Display 1 Post from Custom Post Type if Query Returns Posts with Matching ID in Custom Field
- Fatal error: Call to a member function query() on a non-object
- Is it possible to retrieve all posts with a certain value for metadata?
- unable to use ‘new WP_Query’ in AJAX call
- Trouble inputting variable into WP query
- WP_Query | IF within $args array | Help me only add specific arguments if the argument is not blank
- Array to string conversion on array_map
- Target post_date_gmt if it’s empty or not set
- Get all posts as an array ID => Name
- How to hide posts of a specific custom category in WordPress?
- Passing an array into WP_Query as a variable
- Custom query vars filters problem with pagination
- WordPress meta_query >= &
- WordPress WP_Query without query GET parameters
- Do not duplicate posts with multiple categories in multiple loops
- Dividing the loop to style post differently
- Displaying Event within two given time frames
- Remove Post if Advanced Custom Field is checked to fix paging
- displaying a fall back query if there’s nothing in the post-type category
- Search AJAX Filters – Multiple Query Loops Into One Loop (Optimization)
- WP_Query: How to get results from both meta_key options?
- How to WP_Query posts order by parent title?
- search.php to search only the post title
- Output product category link from WP_Query
- Isn’t Returning Value While Using SELECT COUNT(*) FROM {$wpdb->prefix}
- Passing in MySQL prepare statement parameter separately throwing error
- get different meta-data of a complicated query at the same time
- wp_Query with mutuplea values returns all posts
- Load more posts using AJAX based on posts inside WP_Query
- WordPress sorting posts by date and title using a dropdown
- Custom search query on WordPress page not working
- How to get specific multiple pages excerpts at homepage?
- How to select post ID for given parent name with nested prepared queries?
- posts_per_page displays only 2 posts instead of 4 posts
- Use WPQuery to match to specific repeater row in post
- WP_QUERY post_in problem
- how to get data from two different table from wordpress database
- Assign meta_query value to php variable
- Need to show 7 posts from actual date
- Add code to the header of posts by particular author
- Paged WP_Query is quitting on page 3
- Get Child of Child Pages in custom Menu
- WordPress search query, how to modify the sql
- Modify post image in full size
- Wp-query output correct, but the loop shows one less item (only sometimes)
- Meta query not showing result properly
- Help on Wp_query to print an term
- Making list of posts with chosen description
- Ordering / grouping posts by datepicker ACF
- Include search tags and users in my search results system
- Add custom taxonomy to custom search for posts
- making a search.php query
- My query keeps looping infinitely ! how to stop it?
- Efficient way of querying for a “fallback” post?
- How to add thumbnails from recent posts to owl-carousel in wordpress automatically?
- Only Get A Certain Number of Posts From WP_Query
- Create a hierarchical loop at predefined markup requirements
- Querying posts based off a jquery datepicker
- Use custom get results query to show posts WordPress
- Query seems to be duplicated
- WP Query conflict on tag.php and category.php template
- Does wp_query and query_posts affect website performance? [duplicate]
- Keeping the previous get value and add another value when submitted
- Pagination in category.php not functioning
- WP query with variables gives no result for specific user
- Display all categories (with link) of custom post type – WordPress
- How do I run the following script from my articles page?
- Execute multiple PHP Snippets causes error?
- How to initialise WP_Query on the basis of a specific meta_value and continue iterating rest?
- Three different queries on same page
- How to sort custom sortable column by custom table value
- How to sort search result by post_title, then by post_content
- How to get posts by a certain author in inner loop using outer loop variable or post title WordPress