Created
December 9, 2020 12:42
-
-
Save smileBeda/d80cfe2e5dbc28d483f316b742050df2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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