Skip to content

Instantly share code, notes, and snippets.

@smileBeda
Created December 9, 2020 12:42
Show Gist options
  • Save smileBeda/d80cfe2e5dbc28d483f316b742050df2 to your computer and use it in GitHub Desktop.
Save smileBeda/d80cfe2e5dbc28d483f316b742050df2 to your computer and use it in GitHub Desktop.
add_action( 'template_redirect', 'change_wp_search_url' );
function change_wp_search_url() {
if ( !empty( $_GET['s'] ) ) {
wp_redirect( home_url( "/your_page/?your_param=" ) . urlencode( get_query_var( 's' ) ) );
exit();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment