设置非管理员禁止显示WordPress更新通知方法
如果不想会员或者客户在后台看到你的WordPress更新通知,我们可以直接禁用他们,今天就分享一下设置非管理员…
如果不想会员或者客户在后台看到你的WordPress更新通知,我们可以直接禁用他们,今天就分享一下设置非管理员禁止显示WordPress更新通知方法。
当然wordpress管理员是可以看见的,其他用户是不能看见wordpress更新的通知。
把下面的代码到你当前的WordPress主题functions.php文件:
if ( !current_user_can( ‘manage_options’ ) ) {
//Disable Theme Updates
remove_action( ‘load-update-core.php’, ‘wp_update_themes’ );
add_filter( ‘pre_site_transient_update_themes’, create_function( ‘$a’, “return null;” ) );
wp_clear_scheduled_hook( ‘wp_update_themes’ );
//Disable Plugin Updates
remove_action( ‘load-update-core.php’, ‘wp_update_plugins’ );
add_filter( ‘pre_site_transient_update_plugins’, create_function( ‘$a’, “return null;” ) );
wp_clear_scheduled_hook( ‘wp_update_plugins’ );
//Diasable Core Updates
add_filter( ‘pre_site_transient_update_core’, create_function( ‘$a’, “return null;” ) );
wp_clear_scheduled_hook( ‘wp_version_check’ );
}
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
评论功能已经关闭!