Well, I got it working by making my own own parse php as follows:
parse.php
<?php
$tags = $_POST['tag'];
$search = $_POST['s'];
$count = count($tags);
$i = 0;
if(!empty($search))
$uri = "https://example.com/?s=$search&";
else
$uri = "https://example.com/?tag=";
foreach($tags as $name=>$value) {
++$i;
if($i !== $count)
$uri .= $value."+";
else
$uri .= $value;
}
header("Location: $uri");
exit;
?>
And of course, changing the original form action to point to parse.php and the method to POST.
Probably not the best way of doing this, but for now it works. If someone can give me a better or cleaner answer, please do.
Related Posts:
- Include tags in WP_Query
- getting posts by tags
- Search with WP_Query, but ignore href URLs in anchor tags?
- Can I force WP_Query to return no results?
- Post_count only shows the number of results per page
- WP Query where title begins with a specific letter
- Order Search Results Page by meta_value If no Value Return Remaining Results
- Given a WP_Query, how can I get a list of tags?
- Executing Queries in tag.php
- Tracing the life of a query
- post_type is ignored by WP_Query when ‘tag’ argument is included
- Order posts by tags count?
- Pagination broken when merging search results with additional WP_Query
- Custom search form with empty parameters
- Multiple keyword search
- Multiple search queries on one page
- How to exclude products by tag from woocommerce shop page?
- Pagination problem after WP_Query with tag filtering
- WP Query search for attachments and their exact title
- Including only current user’s posts in search
- Custom category search box for WordPress
- Refine search results using WP_Query
- How to find exact match for search term in WP_Query? What is the additional string added in LIKE query in WP_Query?
- Search Posts with Custom Fields as query
- Creating a custom search for a specific post type
- Custom Search Result Page displaying only 1 result.
- Assigning a meta_query value based on regexp to wp_query fails
- Is there any advantage of using default WordPress Search instead of creating a custom one?
- Search pages that are a child of the current page
- Custom Search Not Consistent with Results
- Editing the default wordpress search
- Cluster WooCommerce products in each Category Archive by Tags assigned to products
- How to use wp_query to post count by search term > group post count by date > convert to json. (ex. result 12-21-2020 – 343)
- Extend product search with meta in WooCommerce
- Display tags with random thumbnail from selection of posts with that tag
- Display filtered results into custom page
- Query posts intersecting tags and categories
- Cutom wp_query for geolocation search, pagination not working
- Query with search and subscribers only output
- how can I override The Events Calendar query modifications?
- Search for “2nd” also returns “22nd” in wp_query
- How do I get my custom query to work with search results after the first page?
- Modify Search Query if original Query gave no results
- Include post content of linked posts in search
- Prevent author bio page from showing in search results
- How do I amend wp_query before it is run/executed?
- wp_query search not taking keywords with together for multiple words
- WordPress Custom Search Form Displaying Unexpected Results
- How to properly use AND / OR in custom search
- exclude product with available tag
- How to avoid bypass of search bar rules?
- Hide products in uncategorized category from search results
- How do you determine if a result in a search query is a post or a page?
- Slow Query On Search
- How To Keep Search Title the same on paged Results
- wp_query show all values
- WP_Query by keyword OR post tag
- How to restrict search on a certain page to only return results against custom taxonomies?
- Creating attachments archive in tags and categories
- Filter out a meta key in the Search results page with two CPT
- Query by key or author
- Ignore image urls in wp_query search
- Can I make a search query which includes a space?
- WordPress search WP_Query to cover multiple post types and their custom fields?
- Filter products on category AND tag
- My combination of ‘post_type’ and ‘tax_query’ not working?
- How to prevent WP_Query from filtering on ‘s’ but keep ‘s’ for other purposes?
- Add dynamic search to paginated WP_Query
- WP_Query no result if keyword contains number
- Multiple WP_Query args combinations according to post type
- Get posts that match defined arrays of tags
- Order posts by tags count?
- Display the search results like the original pages
- How to use jQuery validation to set the search bar to accept only a specific input?
- Custom Post Type WP_Query with filters and search
- WordPress search page pagination displaying but not functional
- Search has query that will return no results
- WP Query – Search in title or author_name
- Limit default Search query to post_title
- Get posts by similar names and categories
- Show posts from categories instead of tags
- Order & Orderby clause not working with custom query
- Exclude all tagged posts from WP_Query loop
- How can I modify standard search query to include also ACF custom fields values?
- How to create page that lists tags by initial letter?
- Random posts in WP_Query when searching by tag
- WordPress WP_Query offset parameter not working with search parameter
- $wp_query when new WP_Query
- Need help setting up a search form for wordpress [duplicate]
- Custom search: Search posts but display parent page in results
- Limit Tags display and ad Drop Down Menu
- Search (Custom Form, Custom Search Result)
- Help with showing text when something is entered in my search bar
- Filtering product search results using tags
- Using ‘meta_query’ with the ‘pre_get_posts()’ hook disables searching for post titles
- Search query alteration not working for meta values
- Advanced Search – Is this possible?
- How to include custom fields in wordpress search
- Extend search query to search meta keys values based on search string
- AJAX multiple search boxes not merging with array merge