block.json
79 lines
| 1 | { |
| 2 | "$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 | "apiVersion": 3, |
| 4 | "name": "jetpack/related-posts", |
| 5 | "title": "Related Posts", |
| 6 | "description": "Display a list of related posts.", |
| 7 | "keywords": [ "similar content", "linked", "connected" ], |
| 8 | "version": "12.5.0", |
| 9 | "textdomain": "jetpack", |
| 10 | "category": "embed", |
| 11 | "icon": "<svg viewBox='0 0 24 24' width='24' height='24' xmlns='http://www.w3.org/2000/svg'><g stroke='currentColor' strokeWidth='2' strokeLinecap='square'><path d='M4,4 L4,19 M4,4 L19,4 M4,9 L19,9 M4,14 L19,14 M4,19 L19,19 M9,4 L9,19 M19,4 L19,19' /></g></svg>", |
| 12 | "supports": { |
| 13 | "html": false, |
| 14 | "multiple": false, |
| 15 | "reusable": false, |
| 16 | "color": { |
| 17 | "gradients": true, |
| 18 | "link": true |
| 19 | }, |
| 20 | "spacing": { |
| 21 | "margin": true, |
| 22 | "padding": true |
| 23 | }, |
| 24 | "typography": { |
| 25 | "__experimentalFontFamily": true, |
| 26 | "fontSize": true, |
| 27 | "lineHeight": true |
| 28 | }, |
| 29 | "align": [ "wide", "full" ] |
| 30 | }, |
| 31 | "attributes": { |
| 32 | "postLayout": { |
| 33 | "type": "string", |
| 34 | "default": "grid" |
| 35 | }, |
| 36 | "displayAuthor": { |
| 37 | "type": "boolean", |
| 38 | "default": false |
| 39 | }, |
| 40 | "displayDate": { |
| 41 | "type": "boolean", |
| 42 | "default": true |
| 43 | }, |
| 44 | "displayHeadline": { |
| 45 | "type": "boolean", |
| 46 | "default": false |
| 47 | }, |
| 48 | "displayThumbnails": { |
| 49 | "type": "boolean", |
| 50 | "default": false |
| 51 | }, |
| 52 | "displayContext": { |
| 53 | "type": "boolean", |
| 54 | "default": false |
| 55 | }, |
| 56 | "headline": { |
| 57 | "type": "string", |
| 58 | "default": "" |
| 59 | }, |
| 60 | "postsToShow": { |
| 61 | "type": "number", |
| 62 | "default": 3 |
| 63 | } |
| 64 | }, |
| 65 | "example": { |
| 66 | "attributes": { |
| 67 | "postLayout": "grid", |
| 68 | "displayAuthor": false, |
| 69 | "displayDate": true, |
| 70 | "displayHeadline": false, |
| 71 | "displayThumbnails": true, |
| 72 | "displayContext": false, |
| 73 | "headline": "", |
| 74 | "postsToShow": 2 |
| 75 | } |
| 76 | }, |
| 77 | "editorScript": "file:../editor.js" |
| 78 | } |
| 79 |