Questions tagged «mu-plugins»

2
未加载mu-plugins文件夹中的插件
我正在尝试通过将插件放入mu-plugins文件夹来自动加载插件。但是,如果将插件放在文件夹中,则不会加载该插件。我尝试了一些流行的插件,例如W3 Total Cache,WordPress SEO Yoast,但它们均未加载。 WordPress是否仅加载仅单个文件的插件mu-plugins?

1
核心升级后如何防止重定向到“关于”?
在其中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 …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.