如何删除WordPress站点健康状态面板及菜单项?

最近有用户咨询如何删除WordPress站点健康状态面板及菜单项?接下来简单分享一下。

如何删除WordPress站点健康状态面板及菜单项? (https://www.wpzt.net/) WordPress入门 第1张

将下面代码添加到当前主题函数模板functions.php中:

删除站点健康状态面板:

add_action( ‘admin_menu’, ‘remove_site_health_menu’ );

function remove_site_health_menu(){

remove_submenu_page( ‘tools.php’,’site-health.php’ );

}

删除站点健康菜单项:

add_action( ‘admin_menu’, ‘remove_site_health_menu’ );

function remove_site_health_menu(){

remove_submenu_page( ‘tools.php’,’site-health.php’ );

}

禁用站点健康电子邮件通知:

add_filter( ‘wp_fatal_error_handler_enabled’, ‘__return_false’ );

或者将下面的代码添加到配置文件wp-config.php中:

define( ‘WP_DISABLE_FATAL_ERROR_HANDLING’, true );

© 版权声明
THE END
喜欢就支持一下吧
点赞11 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容