PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.11
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.11
2.0.13 2.0.12 2.0.11 2.0.10 2.0.9 trunk 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8
blockenberg / blocks / category-grid / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.11, at blocks/category-grid/block.json

212 lines 5.0 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": 3,
4 "name": "blockenberg/category-grid",
5 "title": "Category Grid",
6 "category": "bkbg-blog",
7 "icon": "category",
8 "description": "Display WordPress post categories in a responsive grid with post counts, icons, descriptions, and rich styling options.",
9 "keywords": [
10 "category",
11 "categories",
12 "grid",
13 "taxonomy",
14 "posts",
15 "archive",
16 "navigation"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-category-grid-editor",
20 "style": "bkbg-category-grid-style",
21 "viewScript": "bkbg-category-grid-frontend",
22 "attributes": {
23 "columns": {
24 "type": "number",
25 "default": 3
26 },
27 "maxCategories": {
28 "type": "number",
29 "default": 9
30 },
31 "excludeIds": {
32 "type": "string",
33 "default": ""
34 },
35 "includeIds": {
36 "type": "string",
37 "default": ""
38 },
39 "orderBy": {
40 "type": "string",
41 "default": "count"
42 },
43 "order": {
44 "type": "string",
45 "default": "desc"
46 },
47 "hideEmpty": {
48 "type": "boolean",
49 "default": true
50 },
51 "showCount": {
52 "type": "boolean",
53 "default": true
54 },
55 "showDescription": {
56 "type": "boolean",
57 "default": false
58 },
59 "maxDescriptionLength": {
60 "type": "number",
61 "default": 80
62 },
63 "cardStyle": {
64 "type": "string",
65 "default": "card"
66 },
67 "iconStyle": {
68 "type": "string",
69 "default": "emoji"
70 },
71 "defaultIcon": {
72 "type": "string",
73 "default": "📁"
74 },
75 "iconType": {
76 "type": "string",
77 "default": "custom-char"
78 },
79 "iconDashicon": {
80 "type": "string",
81 "default": "portfolio"
82 },
83 "iconImageUrl": {
84 "type": "string",
85 "default": ""
86 },
87 "showIcon": {
88 "type": "boolean",
89 "default": true
90 },
91 "iconSize": {
92 "type": "number",
93 "default": 36
94 },
95 "iconPosition": {
96 "type": "string",
97 "default": "top"
98 },
99 "cardBg": {
100 "type": "string",
101 "default": "#ffffff"
102 },
103 "cardBgHover": {
104 "type": "string",
105 "default": "#f5f3ff"
106 },
107 "cardRadius": {
108 "type": "number",
109 "default": 12
110 },
111 "cardPadding": {
112 "type": "number",
113 "default": 24
114 },
115 "cardShadow": {
116 "type": "boolean",
117 "default": true
118 },
119 "cardBorder": {
120 "type": "boolean",
121 "default": false
122 },
123 "borderColor": {
124 "type": "string",
125 "default": "#e5e7eb"
126 },
127 "accentColor": {
128 "type": "string",
129 "default": "#6c3fb5"
130 },
131 "nameColor": {
132 "type": "string",
133 "default": "#1e1e1e"
134 },
135 "nameSize": {
136 "type": "number",
137 "default": 16
138 },
139 "countColor": {
140 "type": "string",
141 "default": "#6c3fb5"
142 },
143 "countBg": {
144 "type": "string",
145 "default": "#ede9fe"
146 },
147 "descColor": {
148 "type": "string",
149 "default": "#6b7280"
150 },
151 "descSize": {
152 "type": "number",
153 "default": 13
154 },
155 "gap": {
156 "type": "number",
157 "default": 16
158 },
159 "textAlign": {
160 "type": "string",
161 "default": "center"
162 },
163 "showArrow": {
164 "type": "boolean",
165 "default": true
166 },
167 "countLabel": {
168 "type": "string",
169 "default": "posts"
170 },
171 "linkTarget": {
172 "type": "string",
173 "default": "_self"
174 },
175 "colorMode": {
176 "type": "string",
177 "default": "single"
178 },
179 "multiColors": {
180 "type": "string",
181 "default": "#6c3fb5,#3b82f6,#10b981,#f59e0b,#ef4444,#ec4899"
182 },
183 "animateOnHover": {
184 "type": "boolean",
185 "default": true
186 },
187 "gradientOverlay": {
188 "type": "boolean",
189 "default": false
190 },
191 "imageMode": {
192 "type": "boolean",
193 "default": false
194 },
195 "typoName": {
196 "type": "object",
197 "default": {}
198 },
199 "typoDesc": {
200 "type": "object",
201 "default": {}
202 }
203 },
204 "supports": {
205 "html": false,
206 "align": [
207 "wide",
208 "full"
209 ]
210 }
211 }
212