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

作者: 站长 上传时间: 浏览: N/A 下载: N/A 格式: N/A 评分: N/A

/**
*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 );

Leave a Comment