WordPressで特定のページにベーシック認証を設置する

header.phpに記述する

if(!is_home()){
if(get_post_type() === 'result' || get_post_type() === 'book'){
$users = array("loginuser" => "loginpassword");
basic_auth($users);
}
}

Follow me!