使用问题的答案Remove Personal Options section from Profile, 您可以从配置文件/用户编辑屏幕中删除整个“个人选项”块。通过调整顶部答案中的方法,您可以使用以下方法专门针对工具栏选项:
//Removes the \'Show Toolbar\' option.
function as_remove_personal_options( $subject ) {
$subject = preg_replace( \'#<tr class="show-admin-bar">.+?/tr>#s\', \'\', $subject, 1 );
return $subject;
}
function as_profile_subject_start() {
ob_start( \'as_remove_personal_options\' );
}
function as_profile_subject_end() {
ob_end_flush();
}
add_action( \'admin_head-profile.php\', \'as_profile_subject_start\' );
add_action( \'admin_footer-profile.php\', \'as_profile_subject_end\' );
add_action( \'admin_head-user-edit.php\', \'as_profile_subject_start\' );
add_action( \'admin_footer-user-edit.php\', \'as_profile_subject_end\' );