Skip to content

Instantly share code, notes, and snippets.

@ovizii
Created April 10, 2014 15:19
Show Gist options
  • Save ovizii/10393173 to your computer and use it in GitHub Desktop.
Save ovizii/10393173 to your computer and use it in GitHub Desktop.
Update WP Search Permalink URL
function fb_change_search_url_rewrite() {
if ( is_search() && ! empty( $_GET['s'] ) ) {
wp_redirect( home_url( "/search/" ) . urlencode( get_query_var( 's' ) ) );
exit();
}
}
add_action( 'template_redirect', 'fb_change_search_url_rewrite' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment