| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 2, |
| 4 |
"name": "wpforo/recent-posts", |
| 5 |
"version": "1.0.0", |
| 6 |
"title": "wpForo Recent Posts", |
| 7 |
"category": "widgets", |
| 8 |
"description": "Your forum's recent posts.", |
| 9 |
"attributes": { |
| 10 |
"boardid": { |
| 11 |
"type": "number", |
| 12 |
"default": 0 |
| 13 |
}, |
| 14 |
"title": { |
| 15 |
"type": "string", |
| 16 |
"default": "Recent Posts" |
| 17 |
}, |
| 18 |
"forumids": { |
| 19 |
"type": "array", |
| 20 |
"default": [] |
| 21 |
}, |
| 22 |
"orderby": { |
| 23 |
"type": "string", |
| 24 |
"default": "created" |
| 25 |
}, |
| 26 |
"order": { |
| 27 |
"type": "string", |
| 28 |
"default": "DESC" |
| 29 |
}, |
| 30 |
"count": { |
| 31 |
"type": "number", |
| 32 |
"default": 9 |
| 33 |
}, |
| 34 |
"limit_per_topic": { |
| 35 |
"type": "number", |
| 36 |
"default": 0 |
| 37 |
}, |
| 38 |
"display_avatar": { |
| 39 |
"type": "boolean", |
| 40 |
"default": true |
| 41 |
}, |
| 42 |
"forumids_filter": { |
| 43 |
"type": "boolean", |
| 44 |
"default": false |
| 45 |
}, |
| 46 |
"current_forumid_filter": { |
| 47 |
"type": "boolean", |
| 48 |
"default": false |
| 49 |
}, |
| 50 |
"exclude_firstposts": { |
| 51 |
"type": "boolean", |
| 52 |
"default": false |
| 53 |
}, |
| 54 |
"display_only_unread": { |
| 55 |
"type": "boolean", |
| 56 |
"default": false |
| 57 |
}, |
| 58 |
"display_new_indicator": { |
| 59 |
"type": "boolean", |
| 60 |
"default": false |
| 61 |
}, |
| 62 |
"refresh_interval": { |
| 63 |
"type": "number", |
| 64 |
"default": 0 |
| 65 |
}, |
| 66 |
"excerpt_length": { |
| 67 |
"type": "number", |
| 68 |
"default": 55 |
| 69 |
} |
| 70 |
}, |
| 71 |
"supports": { |
| 72 |
"html": false |
| 73 |
}, |
| 74 |
"textdomain": "wpforo", |
| 75 |
"editorScript": "wpforo-recent-posts-editor-script", |
| 76 |
"editorStyle": "wpforo-recent-posts-editor-style", |
| 77 |
"render": "file:./render.php" |
| 78 |
} |
| 79 |
|