Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wearerequired/members-unfiltered-html
WordPress mu-plugin which allows to add the `unfiltered_html` capability to a role in a multisite install via Members
https://github.com/wearerequired/members-unfiltered-html
mu-plugins wordpress-plugin
Last synced: 1 day ago
JSON representation
WordPress mu-plugin which allows to add the `unfiltered_html` capability to a role in a multisite install via Members
- Host: GitHub
- URL: https://github.com/wearerequired/members-unfiltered-html
- Owner: wearerequired
- License: gpl-2.0
- Created: 2017-02-27T22:27:25.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-06-30T07:42:26.000Z (over 1 year ago)
- Last Synced: 2024-10-25T19:59:32.669Z (20 days ago)
- Topics: mu-plugins, wordpress-plugin
- Language: PHP
- Size: 12.7 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Members: Unfiltered HTML capability
WordPress mu-plugin which allows to add the `unfiltered_html` capability to a role in a multisite install via [Members](https://wordpress.org/plugins/members/).
## Installation
```
composer require wearerequired/members-unfiltered-html
```Example of a `composer.json` for a site:
```json
{
"name": "wearerequired/something",
"description": "required.com",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "required gmbh",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6",
"koodimonni/composer-dropin-installer": "dev-master",
"johnpbloch/wordpress": "~4.9",
"wpackagist-plugin/members": "^2.0",
"wearerequired/members-unfiltered-html": "^1.0"
},
"extra": {
"wordpress-install-dir": "wordpress/wp",
"installer-paths": {
"wordpress/content/plugins/{$name}/": [
"type:wordpress-plugin"
],
"vendor/{$vendor}/{$name}/": [
"type:wordpress-muplugin"
],
"wordpress/content/themes/{$name}/": [
"type:wordpress-theme"
]
},
"dropin-paths": {
"wordpress/content/mu-plugins/": [
"type:wordpress-muplugin"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}
```