wordpress_remove_capability
Remove specific capabilities from WordPress user roles to manage site permissions and enhance security by limiting user access.
Instructions
Remove capability from a user role
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| role | Yes | ||
| capability | Yes |
Input Schema (JSON Schema)
{
"properties": {
"capability": {
"type": "string"
},
"role": {
"type": "string"
}
},
"required": [
"role",
"capability"
],
"type": "object"
}