WordPress 隐藏普通用户的更新通知

1
2
3
4
5
6
7
/**
    *WordPress 隐藏普通用户的更新通知
*/
function Bing_hide_update_but_admin(){
    if ( !current_user_can( 'update_core' ) ) remove_action( 'admin_notices', 'update_nag', 3 );
}
add_action( 'admin_head', 'Bing_hide_update_but_admin', 1 );
原文链接:https://xiaohost.com/10717.html,转载请注明出处。
0

评论0

请先