wordpress_delete_widget
Remove widgets from WordPress sidebars by specifying the widget ID, allowing for precise management of your site's layout and content organization.
Instructions
Delete a widget from a sidebar
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| widgetId | Yes | ||
| force | Yes |
Input Schema (JSON Schema)
{
"properties": {
"force": {
"type": "boolean"
},
"widgetId": {
"type": "string"
}
},
"required": [
"widgetId",
"force"
],
"type": "object"
}