wordpress_set_schema_markup
Add JSON-LD schema markup to WordPress posts to improve search engine visibility and structured data presentation.
Instructions
Add JSON-LD schema markup to post
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| postId | Yes | ||
| schemaType | Yes | ||
| schemaData | Yes |
Input Schema (JSON Schema)
{
"properties": {
"postId": {
"type": "number"
},
"schemaData": {
"additionalProperties": {},
"type": "object"
},
"schemaType": {
"type": "string"
}
},
"required": [
"postId",
"schemaType",
"schemaData"
],
"type": "object"
}