Use get_query_var to get the search terms.

git-svn-id: https://develop.svn.wordpress.org/trunk@1714 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2004-09-27 00:46:42 +00:00
parent 606c252dce
commit c6ee28749c
2 changed files with 8 additions and 5 deletions

View File

@ -10,7 +10,9 @@ Author URI: http://rboren.nu
/* Highlighting code c/o Ryan Boren */ /* Highlighting code c/o Ryan Boren */
function get_search_query_terms($engine = 'google') { function get_search_query_terms($engine = 'google') {
global $s, $s_array; $search = get_query_var('s');
$search_terms = get_query_var('search_terms');
$referer = urldecode($_SERVER['HTTP_REFERER']); $referer = urldecode($_SERVER['HTTP_REFERER']);
$query_array = array(); $query_array = array();
switch ($engine) { switch ($engine) {
@ -38,10 +40,10 @@ function get_search_query_terms($engine = 'google') {
// Check the search form vars if the search terms // Check the search form vars if the search terms
// aren't in the referer. // aren't in the referer.
if ( ! preg_match('/^.*s=/i', $referer)) { if ( ! preg_match('/^.*s=/i', $referer)) {
if (isset($s_array)) { if (!empty($search_terms)) {
$query_array = $s_array; $query_array = $search_terms;
} else if (isset($s)) { } else if (isset($search)) {
$query_array = array($s); $query_array = array($search);
} }
break; break;

View File

@ -297,6 +297,7 @@ class WP_Query {
} }
if (!$q['sentence']) { if (!$q['sentence']) {
$s_array = explode(' ',$q['s']); $s_array = explode(' ',$q['s']);
$q['search_terms'] = $s_array;
$search .= '((post_title LIKE \''.$n.$s_array[0].$n.'\') OR (post_content LIKE \''.$n.$s_array[0].$n.'\'))'; $search .= '((post_title LIKE \''.$n.$s_array[0].$n.'\') OR (post_content LIKE \''.$n.$s_array[0].$n.'\'))';
for ( $i = 1; $i < count($s_array); $i = $i + 1) { for ( $i = 1; $i < count($s_array); $i = $i + 1) {
$search .= ' AND ((post_title LIKE \''.$n.$s_array[$i].$n.'\') OR (post_content LIKE \''.$n.$s_array[$i].$n.'\'))'; $search .= ' AND ((post_title LIKE \''.$n.$s_array[$i].$n.'\') OR (post_content LIKE \''.$n.$s_array[$i].$n.'\'))';