Created
January 24, 2016 00:43
-
-
Save jmsmrgn/8a9be36608f48a2e66c3 to your computer and use it in GitHub Desktop.
WP - Pretty urls for search results
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Pretty urls for search results | |
*/ | |
function nice_search_redirect() { | |
global $wp_rewrite; | |
if (!isset($wp_rewrite) || !is_object( $wp_rewrite ) || !$wp_rewrite->using_permalinks()) | |
return; | |
$search_base = $wp_rewrite->search_base; | |
if (is_search() && !is_admin() && strpos($_SERVER['REQUEST_URI'], "/{$search_base}/") === false) { | |
wp_redirect( home_url("/{$search_base}/" . urlencode(get_query_var('s')))); | |
exit(); | |
} | |
} | |
add_action('template_redirect', 'nice_search_redirect'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment