| 1 |
{ |
| 2 |
"apiVersion": 3, |
| 3 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 4 |
"name": "blockenberg/related-posts", |
| 5 |
"title": "Related Posts", |
| 6 |
"category": "bkbg-blog", |
| 7 |
"icon": "networking", |
| 8 |
"description": "Shows posts sharing the category or tag with the current post via AJAX on the frontend.", |
| 9 |
"keywords": [ |
| 10 |
"related", |
| 11 |
"posts", |
| 12 |
"similar", |
| 13 |
"recommended", |
| 14 |
"articles" |
| 15 |
], |
| 16 |
"textdomain": "blockenberg", |
| 17 |
"editorScript": "bkbg-related-posts-editor", |
| 18 |
"editorStyle": "bkbg-related-posts-style", |
| 19 |
"style": "bkbg-related-posts-style", |
| 20 |
"viewScript": "bkbg-related-posts-frontend", |
| 21 |
"supports": { |
| 22 |
"html": false, |
| 23 |
"anchor": true, |
| 24 |
"className": true, |
| 25 |
"align": [ |
| 26 |
"wide", |
| 27 |
"full" |
| 28 |
] |
| 29 |
}, |
| 30 |
"attributes": { |
| 31 |
"relation": { |
| 32 |
"type": "string", |
| 33 |
"default": "category" |
| 34 |
}, |
| 35 |
"count": { |
| 36 |
"type": "number", |
| 37 |
"default": 3 |
| 38 |
}, |
| 39 |
"layout": { |
| 40 |
"type": "string", |
| 41 |
"default": "grid" |
| 42 |
}, |
| 43 |
"columns": { |
| 44 |
"type": "number", |
| 45 |
"default": 3 |
| 46 |
}, |
| 47 |
"showImage": { |
| 48 |
"type": "boolean", |
| 49 |
"default": true |
| 50 |
}, |
| 51 |
"showExcerpt": { |
| 52 |
"type": "boolean", |
| 53 |
"default": false |
| 54 |
}, |
| 55 |
"showDate": { |
| 56 |
"type": "boolean", |
| 57 |
"default": true |
| 58 |
}, |
| 59 |
"imageRatio": { |
| 60 |
"type": "string", |
| 61 |
"default": "16/9" |
| 62 |
}, |
| 63 |
"heading": { |
| 64 |
"type": "string", |
| 65 |
"default": "Related Posts" |
| 66 |
}, |
| 67 |
"headingTag": { |
| 68 |
"type": "string", |
| 69 |
"default": "h3" |
| 70 |
}, |
| 71 |
"cardBg": { |
| 72 |
"type": "string", |
| 73 |
"default": "#ffffff" |
| 74 |
}, |
| 75 |
"cardBorder": { |
| 76 |
"type": "string", |
| 77 |
"default": "#e5e7eb" |
| 78 |
}, |
| 79 |
"cardRadius": { |
| 80 |
"type": "number", |
| 81 |
"default": 10 |
| 82 |
}, |
| 83 |
"cardShadow": { |
| 84 |
"type": "boolean", |
| 85 |
"default": true |
| 86 |
}, |
| 87 |
"gap": { |
| 88 |
"type": "number", |
| 89 |
"default": 20 |
| 90 |
}, |
| 91 |
"placeholderColor": { |
| 92 |
"type": "string", |
| 93 |
"default": "#e5e7eb" |
| 94 |
}, |
| 95 |
"headingFontSize": { |
| 96 |
"type": "number", |
| 97 |
"default": 20 |
| 98 |
}, |
| 99 |
"headingFontWeight": { |
| 100 |
"type": "number", |
| 101 |
"default": 700 |
| 102 |
}, |
| 103 |
"headingLineHeight": { |
| 104 |
"type": "number", |
| 105 |
"default": 1.3 |
| 106 |
}, |
| 107 |
"headingTypo": { |
| 108 |
"type": "object", |
| 109 |
"default": {} |
| 110 |
} |
| 111 |
} |
| 112 |
} |
| 113 |
|