核心升级后如何防止重定向到“关于”?
在其中wp-admin/includes/update-core.php找到以下行: add_action( '_core_updated_successfully', '_redirect_to_about_wordpress' ); 我要删除此操作,因此创建了一个具有以下内容的mu插件: <?php # -*- coding: utf-8 -*- add_action( '_core_updated_successfully', 't5_no_redirect_after_update', 0 ); function t5_no_redirect_after_update() { remove_action( '_core_updated_successfully', '_redirect_to_about_wordpress' ); } 它没有任何作用。我仍然被重定向。经过单站点和多站点安装测试。 我想我像往常一样想念一些明显的东西。:) 如何做得更好? 更新资料 根据布雷迪的回答,我构建了一个非常简单的版本: <?php # -*- coding: utf-8 -*- /* Plugin Name: T5 No redirect after core upgrade. */ add_action( '_core_updated_successfully', 't5_no_redirect_after_update', 0 …