wordpress_set_custom_meta
Set custom post metadata fields in WordPress to store additional information for custom fields and plugin functionality.
Instructions
Set custom post metadata field - useful for custom fields and plugins
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| postId | Yes | ||
| metaKey | Yes | ||
| metaValue | Yes |
Input Schema (JSON Schema)
{
"properties": {
"metaKey": {
"type": "string"
},
"metaValue": {
"type": "string"
},
"postId": {
"type": "number"
}
},
"required": [
"postId",
"metaKey",
"metaValue"
],
"type": "object"
}