Skip to content

Instantly share code, notes, and snippets.

@deryckoe
Created September 28, 2014 16:16
Show Gist options
  • Save deryckoe/2dd626632895d2fab874 to your computer and use it in GitHub Desktop.
Save deryckoe/2dd626632895d2fab874 to your computer and use it in GitHub Desktop.
Redirect if no admin - WordPress
function under_construcction() {
if ( ! is_page('login') ) {
if ( ! is_user_logged_in() ) {
wp_redirect( '/en-construccion/', 301 ); // o puedes redireccionar a una página dentro de WordPress, utilizando get_permalink();
exit;
}
}
}
add_action( 'template_redirect', 'under_construcction' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment