Wordpress Block Some Pages.
Copy Below Code
View As A Text File
Show Text Only
Show API
Edit Code
function is_this_maintenance_page(){
return in_array(get_the_ID(),[3968,2908,9,10]);
}
function check_underconstruction(){
$user_meta=get_userdata(get_current_user_id());
$user_roles=$user_meta->roles;
if(in_array('administrator',$user_roles))
{
}else
{
// country,6348==CLIENT PORTAL,
global $wp;
if(in_array(get_the_ID(),[3968,9,10]) || $wp->request=='product/739-256-noltrex'){
// echo 'OK--redirect--'.get_the_ID();exit;
wp_redirect(get_permalink(7154));
}
}
}