| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 2, |
| 4 |
"name": "core/comments-query-loop", |
| 5 |
"title": "Comments Query Loop", |
| 6 |
"category": "theme", |
| 7 |
"description": "An advanced block that allows displaying post comments based on different query parameters and visual configurations.", |
| 8 |
"textdomain": "default", |
| 9 |
"attributes": { |
| 10 |
"queryId": { |
| 11 |
"type": "number" |
| 12 |
}, |
| 13 |
"queryPerPage": { |
| 14 |
"type": "number", |
| 15 |
"default": 4 |
| 16 |
}, |
| 17 |
"tagName": { |
| 18 |
"type": "string", |
| 19 |
"default": "div" |
| 20 |
} |
| 21 |
}, |
| 22 |
"providesContext": { |
| 23 |
"queryId": "queryId", |
| 24 |
"queryPerPage": "queryPerPage" |
| 25 |
}, |
| 26 |
"supports": { |
| 27 |
"align": [ "wide", "full" ], |
| 28 |
"html": false, |
| 29 |
"color": { |
| 30 |
"gradients": true, |
| 31 |
"link": true |
| 32 |
} |
| 33 |
} |
| 34 |
} |
| 35 |
|