Skip to content

Instantly share code, notes, and snippets.

@ericandrewlewis
Created November 16, 2012 18:12
Show Gist options
  • Save ericandrewlewis/4089552 to your computer and use it in GitHub Desktop.
Save ericandrewlewis/4089552 to your computer and use it in GitHub Desktop.
Redirect
add_action( 'init', 'baja_check_search_box' );
function baja_check_search_box() {
if ( empty( $_POST['search_box'] ) )
return;
wp_redirect( site_url( '$_POST['region'] . '/' . $_POST['post-type'] ) );
die;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment