Skip to content

Instantly share code, notes, and snippets.

@buchin
Created June 6, 2014 11:09
Show Gist options
  • Save buchin/b632e88894539a40bd9c to your computer and use it in GitHub Desktop.
Save buchin/b632e88894539a40bd9c to your computer and use it in GitHub Desktop.
function fb_change_search_url_rewrite() {
if ( is_search() && ! empty( $_GET['s'] ) ) {
$keywords = get_query_var( 's' );
list($first_word) = explode(' ', trim($keywords));
wp_redirect( home_url( $first_word ) . urlencode( $keywords ) );
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