Skip to content

Instantly share code, notes, and snippets.

@CodeProKid
Created August 31, 2018 01:50
Show Gist options
  • Save CodeProKid/2571f29311c4394a4506c2d6284118d3 to your computer and use it in GitHub Desktop.
Save CodeProKid/2571f29311c4394a4506c2d6284118d3 to your computer and use it in GitHub Desktop.
<?php
add_action( 'wp', 'wphc_redirect_url' );
function wphc_redirect_url() {
if ( ! is_singular() ) {
return;
}
$redirect = get_post_meta( get_the_ID(), 'redirect_url', true );
if ( ! empty( $redirect ) ) {
wp_safe_redirect( $redirect, '301' );
exit();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment