Skip to content

Instantly share code, notes, and snippets.

@arianimartins
Last active January 7, 2016 20:28
Show Gist options
  • Save arianimartins/28330693c700779e88e6 to your computer and use it in GitHub Desktop.
Save arianimartins/28330693c700779e88e6 to your computer and use it in GitHub Desktop.
Redirect if user isn't logged in (Wordpress) in functions.php
<?php
add_action('init','redirect_visitors');
function redirect_visitors(){
$current = $_SERVER['REQUEST_URI'];
$wanted = '/wiki/login/';
if(!is_user_logged_in()){
if( $current != $wanted ){
wp_redirect($wanted);
}
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment