| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 3, |
| 4 |
"name": "bbp-core/single-forum", |
| 5 |
"version": "0.1.0", |
| 6 |
"title": "Forumax Single Forum", |
| 7 |
"category": "bbp-core", |
| 8 |
"icon": "admin-post", |
| 9 |
"description": "Displays a single forum with two style variations.", |
| 10 |
"attributes": { |
| 11 |
"forum_id": { |
| 12 |
"type": "string", |
| 13 |
"default": "" |
| 14 |
}, |
| 15 |
"style": { |
| 16 |
"type": "string", |
| 17 |
"default": "1" |
| 18 |
}, |
| 19 |
"cover_image": { |
| 20 |
"type": "object" |
| 21 |
}, |
| 22 |
"ppp": { |
| 23 |
"type": "number", |
| 24 |
"default": 3 |
| 25 |
}, |
| 26 |
"order": { |
| 27 |
"type": "string", |
| 28 |
"default": "ASC" |
| 29 |
}, |
| 30 |
"word_length": { |
| 31 |
"type": "number", |
| 32 |
"default": 12 |
| 33 |
}, |
| 34 |
"read_more": { |
| 35 |
"type": "string", |
| 36 |
"default": "View All" |
| 37 |
}, |
| 38 |
"title_color": { |
| 39 |
"type": "string" |
| 40 |
}, |
| 41 |
"excerpt_color": { |
| 42 |
"type": "string" |
| 43 |
} |
| 44 |
}, |
| 45 |
"supports": { |
| 46 |
"html": false, |
| 47 |
"typography": { |
| 48 |
"fontSize": true |
| 49 |
} |
| 50 |
}, |
| 51 |
"textdomain": "bbp-core", |
| 52 |
"editorScript": "file:./index.js", |
| 53 |
"editorStyle": "file:./index.css", |
| 54 |
"style": "file:./style-index.css" |
| 55 |
} |
| 56 |
|