| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 3, |
| 4 |
"name": "bbp-core/forums", |
| 5 |
"version": "0.1.0", |
| 6 |
"title": "Forumax Forums Grid", |
| 7 |
"category": "bbp-core", |
| 8 |
"icon": "networking", |
| 9 |
"description": "Displays a list of bbPress forums with a 'load more' option.", |
| 10 |
"attributes": { |
| 11 |
"ppp": { |
| 12 |
"type": "number", |
| 13 |
"default": 5 |
| 14 |
}, |
| 15 |
"ppp2": { |
| 16 |
"type": "number", |
| 17 |
"default": 10 |
| 18 |
}, |
| 19 |
"order": { |
| 20 |
"type": "string", |
| 21 |
"default": "ASC" |
| 22 |
}, |
| 23 |
"more_txt": { |
| 24 |
"type": "string", |
| 25 |
"default": "More Communities" |
| 26 |
}, |
| 27 |
"more_text_color": { |
| 28 |
"type": "string" |
| 29 |
}, |
| 30 |
"title_color": { |
| 31 |
"type": "string" |
| 32 |
}, |
| 33 |
"content_color": { |
| 34 |
"type": "string" |
| 35 |
} |
| 36 |
}, |
| 37 |
"supports": { |
| 38 |
"html": false, |
| 39 |
"typography": { |
| 40 |
"fontSize": true |
| 41 |
} |
| 42 |
}, |
| 43 |
"textdomain": "bbp-core", |
| 44 |
"editorScript": "file:./index.js", |
| 45 |
"editorStyle": [ |
| 46 |
"file:./index.css" |
| 47 |
], |
| 48 |
"style": [ |
| 49 |
"file:./style-index.css" |
| 50 |
] |
| 51 |
} |
| 52 |
|