From 8b613d0854b0da87b7bd7e90049266a7f37a2159 Mon Sep 17 00:00:00 2001 From: Peter Westwood Date: Fri, 27 Feb 2009 17:46:13 +0000 Subject: [PATCH] Put search string into of search results page. Fixes #9103 props DD32. git-svn-id: https://develop.svn.wordpress.org/trunk@10660 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/general-template.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/wp-includes/general-template.php b/wp-includes/general-template.php index 6081ead91e..6d46dce460 100644 --- a/wp-includes/general-template.php +++ b/wp-includes/general-template.php @@ -385,6 +385,7 @@ function wp_title($sep = '»', $display = true, $seplocation = '') { $year = get_query_var('year'); $monthnum = get_query_var('monthnum'); $day = get_query_var('day'); + $search = get_query_var('s'); $title = ''; $t_sep = '%WP_TITILE_SEP%'; // Temporary separator, for accurate flipping, if necessary @@ -456,6 +457,11 @@ function wp_title($sep = '»', $display = true, $seplocation = '') { $term = $term->name; $title = "$tax$t_sep$term"; } + + //If it's a search + if ( is_search() ) { + $title = sprintf(__('Search Results %s %s'), $t_sep, strip_tags($search)); + } if ( is_404() ) { $title = __('Page not found');