Home › Forums › General Issues › WP archive with two or more filter › Reply To: WP archive with two or more filter
All you would need to do us add more meta query value sets. For example adding the following code after the first meta query section should do the trick.
$bathrooms = explode(',', $_GET['bathrooms']);
//Add our meta query to the original meta queries
$meta_query[] = array(
'key' => 'bathrooms',
'value' => $bathrooms,
'compare' => 'IN',
);
Then you can add a bathrooms get param to the URL. Eg http://mysite.com?bedrooms=1&bathrooms=2
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.