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.
+) with ampersand (&) is not odd at all. When URL is?s=press+releases, there is one argumentswith valuepress releases. When URL is?s=press&releases, there are two arguments in URL - one is namedswith valuepress, another is namedreleasesand has empty value. – binaryLV Jul 28 '11 at 14:42