WordPress Multiple Category Search

From few months I am digging into wordpress for multiple category search options, and finally came up with this.

I just found that wordpress allows multiple tags, which means that if in your URL you type this

http://yourblog.com/tag/tag1+tag2

then it will return all your posts with having tags, tag1 AND tag2

but if you type

http://yourblog.com/tag/tag1,tag2

then it will return all the posts having tag1 OR tag2

Same thing now works for categories also

http://yourblog.com/category/cat1+cat2 and http://yourblog.com/category/cat1,cat2

But this only works for category and tags, I am trying it for search option.

Till now I coded where this URL is working(which means it will search HTML only in the category id 114),

http://yourblog.com/?s=html&cat=114

In this URL, the comma separator works very well, but not the +

I mean to say

http://yourblog.com/?s=html&cat=114,115

works very well but

http://yourblog.com/?s=html&cat=114+115

doesn’t works.

Can anyone help me in this? I really want this to work

Still awaiting

Answers:

Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.

Method 1

The problem is that in a url the ‘+’ sign is equivalent to a space so that’s how PHP sees it.

If you use an action on parse_request you can make this work like so:

add_action( 'parse_request', 'category_search_logic', 11 );
function category_search_logic( $query ) {

    if ( ! isset( $query->query_vars[ 'cat' ] ) )
        return $query;

    // split cat query on a space to get IDs separated by '+' in URL
    $cats = explode( ' ', $query->query_vars[ 'cat' ] );

    if ( count( $cats ) > 1 ) {
        unset( $query->query_vars[ 'cat' ] );
        $query->query_vars[ 'category__and' ] = $cats;
    }

    return $query;
}

The above will get category ids passed in with ‘+’ in between them by splitting them on a space which is what PHP sees in the $_GET parameter.

If we have more than one item in the array it must be an ‘and’ style search so we can pass the array from splitting on the space into the 'category__and' query var which returns posts in all the specified categories.

Method 2

Try this: http://yourblog.com/?s=html&cat[]=114&cat[]=115

BTW, why don’t you use a hook link pre_get_posts to filter your search? It would be much easier than tweaking the search URL.

Method 3

The solution suggested by @sanchothefat is OK, but leads to problems when pagination is used.
For example, you have url like domain.com/?s=&cat=1+2. When you click on page 2, the URL become domain.com/?s=&cat=1+2 but redirect_canonical() defined in wp-includes/canonical.php tries to modify url to domain.com/?s&cat=12 which is not the same…
I found easier to me to rewrite category_search_logic() rather investigate redirect_canonical() logic and apply additional filters to it.

This is my way to buypass the canonical logic:

function category_search_logic( $query ) {
    if ( ! isset( $_GET['categories'] ) )
        return $query;

    // split cat query on a space to get IDs separated by ',' in URL
    $cats = explode(',', $_GET['categories'] );

    if ( count( $cats ) > 1 ) {
        unset($_GET['categories']);
        $query->query_vars[ 'category__and' ] = $cats;
    }

    return $query;
}


All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0

0 0 votes
Article Rating
Subscribe
Notify of
guest

0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x