admin管理员组文章数量:1332389
I'm trying to load plugins automatically by putting the plugins into mu-plugins
folder. But if the plugin is put in a folder, it isn't loaded. I tried some popular plugins such as W3 Total Cache, WordPress SEO By Yoast, but all of them are not loaded.
Does WordPress only loads plugins which are just single files in mu-plugins
?
I'm trying to load plugins automatically by putting the plugins into mu-plugins
folder. But if the plugin is put in a folder, it isn't loaded. I tried some popular plugins such as W3 Total Cache, WordPress SEO By Yoast, but all of them are not loaded.
Does WordPress only loads plugins which are just single files in mu-plugins
?
3 Answers
Reset to default 18Does WordPress only loads plugins which are just single files in mu-plugins?
No, they do not need to be single files but you cannot use plugins in their own subfolders as in the standard plugins/
folder.
The main plugin file (one with the specified plugin header info) has to be right there in mu-plugins/
. Other files can be put in a subfolder and referenced from there.
I used it with my own plugins. I've never tried moving any robust plugin in there.
Also note that not all plugins are must-use-compatible
see http://codex.wordpress/Must_Use_Plugins#Caveats
I've recently faced this very issue and in order to avoid mixing all plugins or patching files to keep organization, I've found that you can actually keep all plugins within separate sub-folders and create a symbolic link in the the mu-plugins
folder pointing to the plugin's main file within the respective sub-folder.
I hope that this information can become helpful to others in the future!
I have been working on running WordPress inside Docker containers, and am using mu-plugins to run scripts on the server. I found out there is a global constant in WordPress called WPMU_PLUGIN_DIR
that will help solve this problem.
Create your custom plugins in mu-plugin
sub-directories as needed, and then load them from a single file. Example:
wp-content/mu-plugins/foo/bar.php
wp-content/mu-plugins/another/index.php
Then create a single file in the mu-plugins and name it anything.
For example, create wp-content/mu-plugins/load.php
with the following code
<?php
require(WPMU_PLUGIN_DIR . '/foo/bar.php');
require(WPMU_PLUGIN_DIR . '/another/index.php');
You will only see the load.php
under mu-plugins in the backend, but all of your functions will load from this single script.
本文标签: Plugins in muplugins folder are not loaded
版权声明:本文标题:Plugins in mu-plugins folder are not loaded 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1742290220a2447657.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论