Skip to content

Instantly share code, notes, and snippets.

@pije76
Forked from buchin/functions.php
Last active August 29, 2015 14:06
Show Gist options
  • Save pije76/131abdcc54be7d411e1c to your computer and use it in GitHub Desktop.
Save pije76/131abdcc54be7d411e1c 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