Hi,
I need some help creating a tags filter input checkbox form. The form is located at top of the page.
The index.php contains following code:
[Code moderated as per the Forum Rules. Please use the pastebin]
After checking the two checkboxes "tag1" and "tag2" and hitting the submit button, the following url is loaded:
http://www.myhome.de/?tags0=tag1&tags1=tag2
This url doesn't work, it doesn't filter any tags.
The $url variable contains this:
"http://www.myhome.com/tag/tag1,tag2"
The problem is the wp_redirect doesn't work. The page just stops loading at exit; without redirecting to "http://www.myhome.com/tag/tag1,tag2".
Maybe someone has a hint, maybe there is a better technique for solving this kind of problem in WordPress?