| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 2, |
| 4 |
"name": "elasticpress/related-posts", |
| 5 |
"title": "Related Posts", |
| 6 |
"category": "elasticpress", |
| 7 |
"description": "Display a continuously updated list of related posts.", |
| 8 |
"textdomain": "elasticpress", |
| 9 |
"attributes": { |
| 10 |
"alignment": { |
| 11 |
"type": "string", |
| 12 |
"default": "none" |
| 13 |
}, |
| 14 |
"number": { |
| 15 |
"type": "number", |
| 16 |
"default": 5 |
| 17 |
} |
| 18 |
}, |
| 19 |
"usesContext": ["postId"], |
| 20 |
"supports": { |
| 21 |
"align": true, |
| 22 |
"color": { |
| 23 |
"background": true, |
| 24 |
"link": true, |
| 25 |
"text": false |
| 26 |
}, |
| 27 |
"html": false, |
| 28 |
"position": { |
| 29 |
"sticky": true |
| 30 |
}, |
| 31 |
"spacing": { |
| 32 |
"margin": true, |
| 33 |
"padding": true |
| 34 |
}, |
| 35 |
"typography": { |
| 36 |
"fontSize": true, |
| 37 |
"lineHeight": true |
| 38 |
} |
| 39 |
}, |
| 40 |
"editorScript": "ep-related-posts-block-script", |
| 41 |
"style": "file:/../../../../dist/css/related-posts-block-styles.css" |
| 42 |
} |
| 43 |
|