I've customized a theme and am having some problems with search results using multiple-word queries. Site is live at www.abetterworldbydesign.com

Searching for a single word works as expected.

Searching for multiple words that should have returned results shows blank results.

Code for searchform.php below.

<form id="searchform" name="searchform" method="get" action="<?php echo home_url(); ?>">
    <div>
        <input type="text" id="s" name="s" />
        <input type="submit" id="searchsubmit" value="<?php esc_attr_e( 'Search', 'richwp' ); ?>" />
    </div>
</form>

My code in search.php for initializing WP_Query follows exactly the code listed in the codex. Full code for search.php on pastebin.

link|improve this question

Also asked on Wordpress Answers: wordpress.stackexchange.com/questions/24102/… – Mike Eng Jul 27 '11 at 13:52
why not to give the search to the powerman - google. Example query "Zero Energy Usage site:www.abetterworldbydesign.com": google.com/… – Igor Jul 27 '11 at 18:18
@Igor - replacing the WordPress search with a Google custom search would be a workaround I'd rather avoid. The main drawback is the requirement to use the Google branding on the site. google.com/cse/docs/tos.html – Mike Eng Jul 27 '11 at 18:21
Nowadays it sounds like: "ok, we rely search on google which guarantees the most reliable results". How about this, the search phrase is from PDF: google.com/… – Igor Jul 27 '11 at 18:35
1  
The fact that search "works" when you replace space (+) with ampersand (&) is not odd at all. When URL is ?s=press+releases, there is one argument s with value press releases. When URL is ?s=press&releases, there are two arguments in URL - one is named s with value press, another is named releases and has empty value. – binaryLV Jul 28 '11 at 14:42
feedback

2 Answers

up vote 3 down vote accepted
+50

I would guess you need to decode the search term you are extracting from the query string, like so: $search_query[$query_split[0]] = urldecode($query_split[1]). Although, you could probably just use Wordpress's get_query_var function instead of all that code.

link|improve this answer
That was it. Nicely done. Strange that the WordPress documentation doesn't indicate this - wonder if it is a requirement that changed in a recent version of WP and not updated in the documentation. I'd award you the bounty now, but Stack Overflow says I have to wait 3 hours. – Mike Eng Jul 28 '11 at 14:53
1  
The Wordpress Codex documentation is a wiki so anyone can add to it, and it's best to be a bit sceptical of the content. The code you used was posted by another user over a year ago (you can review the page history if you log in), and I'm not really sure what problem it's supposed to be solving. – Richard M Jul 28 '11 at 15:19
1  
All right. I updated the WordPress Codex with this fix. codex.wordpress.org/… – Mike Eng Jul 28 '11 at 18:39
feedback

Line 16 of your search PHP

$query_args = explode("&", $query_string);

Try changing to this

$query_args = explode(" ", $query_string)
link|improve this answer
Tried that. No change. I also tried changing line 16 of search.php to $query_args = explode("+", $query_string); but that didn't change anything either – Mike Eng Jul 27 '11 at 19:05
Weird. I was pretty sure that would work. I'll see if I can see anything else. – abney317 Jul 27 '11 at 19:20
1  
Probably wouldn't do much, but check line 42 of that search.php -- you're comment is commenting out the end of a php tag – abney317 Jul 27 '11 at 19:28
Good catch. I've fixed line 42, but you were right - it didn't do anything. – Mike Eng Jul 27 '11 at 21:23
As for line 16, I am using code taken directly from the WordPress documentation: codex.wordpress.org/… – Mike Eng Jul 27 '11 at 21:24
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.