function prefix_redirect_function() {
if ( is_page(42) && !is_user_logged_in() ) { // 42 это ID
// редирект на главную:
wp_redirect( home_url() );
// или так на url:
// wp_redirect( 'http://www.example.com', 301 );
exit;
}
}
add_action( 'template_redirect', 'prefix_redirect_function', 9 );
function redirectUnlogged() {
$id = 1;
if (is_page($id) && !is_user_logged_in()) {
wp_redirect('yourl_link.ru', 302);
exit;
}
}
add_action( 'init', 'redirectUnlogged' );