|
1 | 1 | EP4 Must-Use Plugins Autoloader
|
2 | 2 | ===============================
|
3 | 3 |
|
4 |
| -__Contributors:__ DaveLavoie, EP4 |
5 |
| -__Donate link:__ |
6 |
| -__Tags:__ must-use, must-use plugins, mu-plugins, MU, plugins, loader, autoloader, directory, subdirectory, WP Captain, EP4 |
7 |
| -__Requires at least:__ 4.7 |
8 |
| -__Tested up to:__ 5.2.2 |
9 |
| -__Stable tag:__ 1.0.1 |
10 |
| -__License:__ GPLv3 or later |
11 |
| -__License URI:__ http://www.gnu.org/licenses/gpl-3.0.html |
| 4 | +__Contributors:__ DaveLavoie, EP4 |
| 5 | +__Donate link:__ |
| 6 | +__Tags:__ must-use, must-use plugins, mu-plugins, MU, plugins, loader, autoloader, directory, subdirectory, WP Captain, EP4 |
| 7 | +__Requires at least:__ 4.7 |
| 8 | +__Tested up to:__ 5.2.2 |
| 9 | +__Stable tag:__ 1.0.2 |
| 10 | +__License:__ GPLv3 or later |
| 11 | +__License URI:__ http://www.gnu.org/licenses/gpl-3.0.html |
12 | 12 |
|
13 | 13 | This must-use plugin loads all plugins inside subdirectories of the /mu-plugins directory.
|
14 | 14 |
|
@@ -69,7 +69,7 @@ So at the end of the PHP file, it should look like this:
|
69 | 69 | ```php
|
70 | 70 | if ( EP4_MU_Loader::this()->have_mu_plugins() ) {
|
71 | 71 | // Replace the values in the array with yours.
|
72 |
| - EP4_MU_Loader::this()->exclude_mu_plugins( array( 'wpengine-common', 'force-strong-passwords' ) ); |
| 72 | + EP4_MU_Loader::this()->exclude_mu_plugins( array( 'wpengine-common', 'force-strong-passwords' ) ); |
73 | 73 | while ( EP4_MU_Loader::this()->have_mu_plugins() ) {
|
74 | 74 | include_once EP4_MU_Loader::this()->the_mu_plugin();
|
75 | 75 | }
|
|
90 | 90 |
|
91 | 91 | Changelog
|
92 | 92 | ---------
|
| 93 | +### 1.0.2 - 2019-08-08 ### |
| 94 | + |
| 95 | +* Fixing an error regarding file permissions when cloning the repo from Github. |
93 | 96 |
|
94 | 97 | ### 1.0.1 - 2019-07-19 ###
|
95 | 98 |
|
|
0 commit comments