Skip to content

Instantly share code, notes, and snippets.

@aristath
Created May 25, 2013 08:57
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save aristath/5648439 to your computer and use it in GitHub Desktop.
Save aristath/5648439 to your computer and use it in GitHub Desktop.
<?php
$current_url = "http://" . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
if ( $current_url == 'http://example.com/example' ) {
// DO YOUR THING HERE, THEN REDIRECT
wp_redirect( 'http://example.com' ) );
exit;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment