PluginProbe
wpForo Forum / 3.1.0
wpForo Forum v3.1.0
3.1.5 3.1.4 3.1.2 3.1.1 3.1.0 3.0.9 3.0.8 3.0.7 trunk 1.0.0 1.0.1 1.0.2 1.1.0 1.1.1 1.1.2 1.2.0 1.3.0 1.3.1 1.4.0 1.4.1 1.4.10 1.4.11 1.4.12 1.4.13 1.4.2 All 137 releases
wpforo / blocks / recent-posts / block.json

block.json in wpForo Forum 3.1.0, at blocks/recent-posts/block.json

79 lines 1.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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