admin管理员组文章数量:1405548
I want to hide some default fields of the backend user profile page based on the role of the user whose profile is being viewed (by the admin in this case).
I used the simple CSS way to achieve that (here hiding the Bio box):
add_action('admin_head', 'my_custom_admin_css');
function my_custom_admin_css() {
echo '<style>
.user-description-wrap {
display: none;
}
</style>
}
but that obviously applies to ALL user roles.
Is there a way to apply this conditionally based on the role of the user whose profile is being viewed?
I want to hide some default fields of the backend user profile page based on the role of the user whose profile is being viewed (by the admin in this case).
I used the simple CSS way to achieve that (here hiding the Bio box):
add_action('admin_head', 'my_custom_admin_css');
function my_custom_admin_css() {
echo '<style>
.user-description-wrap {
display: none;
}
</style>
}
but that obviously applies to ALL user roles.
Is there a way to apply this conditionally based on the role of the user whose profile is being viewed?
Share Improve this question asked Dec 16, 2019 at 11:14 Chris OsiakChris Osiak 117 bronze badges 1 |1 Answer
Reset to default 1current_user_can()
checks the current user's specified capability. See Roles and Capabilities.
Also, CSS just visually hides the section, but does not remove it from page HTML. The following code checks the capability and completely removes the section.
<?php
// For example,
// any user other than an Admin of single site installation,
// but not Multisite Admin and not SuperAdmin:
if ( ! current_user_can( 'delete_users' ) ) {
add_action( 'admin_head', 'my_profile_admin_buffer_start' );
add_action( 'admin_footer', 'my_profile_admin_buffer_end' );
}
function my_remove_about_section( $buffer ) {
// get section header and everything until the next section
$about_section = '~<h2>About Yourself</h2>.+?/table>~s';
// replace it with empty string
$buffer = preg_replace( $about_section, '', $buffer, 1 );
return $buffer;
}
function my_profile_admin_buffer_start() {
ob_start( 'my_remove_about_section' );
}
function my_profile_admin_buffer_end() {
ob_end_flush();
}
The whole idea is taken from my old dead pre-WordPress-5 project and is not tested.
本文标签: How to hide user profile fields based on the role of the viewed user
版权声明:本文标题:How to hide user profile fields based on the role of the viewed user? 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744899726a2631274.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
current_user_can
– Charles Commented Dec 16, 2019 at 11:35