wordpress_delete_user
Remove a WordPress user account and transfer their content to another user to maintain site integrity while managing user access.
Instructions
Delete a user (reassign their content to another user)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| userId | Yes | ||
| reassign | Yes |
Input Schema (JSON Schema)
{
"properties": {
"reassign": {
"type": "number"
},
"userId": {
"type": "number"
}
},
"required": [
"userId",
"reassign"
],
"type": "object"
}