WP 購読者権限ではパスワードの変更をできなくする
タイトルどおりです
プロフィール画面は表示できても、「購読者」権限では、パスワードの変更画面を隠してパスワードを変更できなくします(上位の権限を持つ人にはパスワードの変更が可能)
方法は、使用しているテーマ内のfunction.phpに↓を加えるだけ♪
function update_password_fields( $show_password_fields ) {
global $current_user;
get_currentuserinfo();
$level = absint($current_user->user_level);
if( current_user_can(‘level_10’)){
return $show_password_fields;
}
}