| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 2, |
| 4 |
"name": "core/comments-pagination", |
| 5 |
"title": "Comments Pagination", |
| 6 |
"category": "theme", |
| 7 |
"parent": [ "core/comments-query-loop" ], |
| 8 |
"description": "Displays a paginated navigation to next/previous set of comments, when applicable.", |
| 9 |
"textdomain": "default", |
| 10 |
"attributes": { |
| 11 |
"paginationArrow": { |
| 12 |
"type": "string", |
| 13 |
"default": "none" |
| 14 |
} |
| 15 |
}, |
| 16 |
"providesContext": { |
| 17 |
"comments/paginationArrow": "paginationArrow" |
| 18 |
}, |
| 19 |
"supports": { |
| 20 |
"align": true, |
| 21 |
"reusable": false, |
| 22 |
"html": false, |
| 23 |
"color": { |
| 24 |
"gradients": true, |
| 25 |
"link": true |
| 26 |
}, |
| 27 |
"__experimentalLayout": { |
| 28 |
"allowSwitching": false, |
| 29 |
"allowInheriting": false, |
| 30 |
"default": { |
| 31 |
"type": "flex" |
| 32 |
} |
| 33 |
} |
| 34 |
}, |
| 35 |
"editorStyle": "wp-block-comments-pagination-editor", |
| 36 |
"style": "wp-block-comments-pagination" |
| 37 |
} |
| 38 |
|