Skip to content

Instantly share code, notes, and snippets.

@davidchc
Created August 16, 2018 14:22
Show Gist options
  • Save davidchc/0bdf9339f164be7fb2f5dab5c339b579 to your computer and use it in GitHub Desktop.
Save davidchc/0bdf9339f164be7fb2f5dab5c339b579 to your computer and use it in GitHub Desktop.
redirecionar para uma página definida pelo custom field
<?php
add_action('template_redirect', 'redirect_custom_field');
function redirect_custom_field() {
global $post;
if($url = get_meta_post($post->ID, 'url_redirect', true)) {
wp_redirect($url);
exit;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment