Is there any multiple filter/criteria plugin for wordpress? [closed]

Just so no one else looses the amount of time I did on this, the code like this:

isset($_POST['cat']

needs to be changed to:

isset($_GET['cat']

because the form is using the ‘get’ method.

Also, ‘category_and’ should be ‘category_in’ if you want to check multiple categories.

Leave a Comment