Skip to content

Instantly share code, notes, and snippets.

@sproutventure
Created August 22, 2009 19:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sproutventure/172954 to your computer and use it in GitHub Desktop.
Save sproutventure/172954 to your computer and use it in GitHub Desktop.
WP template for redirecting.
<?php
/*
Template name: [Redirect]
// Create a Meta Field named "Redirect" and the value would be the resulting redirect.
*/
?>
<?php wp_head(); ?>
<?php $redirect = get_post_meta($post->ID, 'Redirect', true); ?>
<META HTTP-EQUIV="refresh" CONTENT="0;URL=<?php echo $redirect; ?>">
</head>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment