我自定义了一个主题,在使用多个单词查询的搜索结果中遇到了一些问题。现场位于www.abetterworldbydesign.com
Searching for a single word 按预期工作。
Searching for multiple words 应该返回的结果显示为空白结果。
奇怪的是,manually changing the "+" character in the URL to "&" 正确显示结果,但仅显示标题“Search results for:\\的第一个单词”。
搜索中的我的代码。初始化WP\\u查询的php完全遵循the code listed in the codex. 的完整代码search.php on pastebin.
searchform的代码。下面是php。
<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>