Skip to content

Instantly share code, notes, and snippets.

@palicko
Last active September 2, 2015 14:05
Show Gist options
  • Save palicko/da27f9a60bf9667df261 to your computer and use it in GitHub Desktop.
Save palicko/da27f9a60bf9667df261 to your computer and use it in GitHub Desktop.
function search_url_rewrite_rule() {
if ( is_search() && !empty($_GET['s'])) {
wp_redirect(home_url("/search/") . urlencode(get_query_var('s')));
exit();
}
}
add_action('template_redirect', 'search_url_rewrite_rule');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment