https://github.com/26b/wp-must-use
A collections of mu-plugins for all 26B websites.
https://github.com/26b/wp-must-use
Last synced: 6 months ago
JSON representation
A collections of mu-plugins for all 26B websites.
- Host: GitHub
- URL: https://github.com/26b/wp-must-use
- Owner: 26B
- License: agpl-3.0
- Created: 2025-07-30T16:44:07.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2025-07-30T17:43:09.000Z (12 months ago)
- Last Synced: 2025-07-30T19:38:39.811Z (12 months ago)
- Language: PHP
- Size: 1.21 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Must Use WordPress Plugins
This is a plugin that requires a set of other plugins that are (almost) always used in 26B projects.
## The plugins
The plugins are provided in this bundle, but they may also be used standalone, by downloading any of the files in the `plugins/` folder.
## Installing
Use composer to install, as it is required to extract the existing plugins into the base of the `mu-plugins` folder.
First configure the `extra` setting in `composer.json` so as to include the `wordpress-muplugin` composer package type as a target for the `mu-plugins/` folder.
```json
{
"extra": {
"installer-paths": {
"mu-plugins/{$name}/": [
"type:wordpress-muplugin"
]
}
},
}
```
Then require the dependency.
```bash
composer required 26b/wp-must-use
```