PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.7
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.7
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 / faq-schema / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.7, at blocks/faq-schema/block.json

165 lines 4.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "$schema": "https://schemas.wp.org/trunk/block.json",
4 "name": "blockenberg/faq-schema",
5 "title": "FAQ Schema",
6 "description": "FAQ block with automatic FAQPage JSON-LD structured data for SEO rich snippets.",
7 "category": "bkbg-business",
8 "icon": "editor-help",
9 "keywords": [
10 "faq",
11 "questions",
12 "answers",
13 "schema",
14 "seo",
15 "structured data"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-faq-schema-editor",
19 "editorStyle": "bkbg-faq-schema-style",
20 "style": "bkbg-faq-schema-style",
21 "viewScript": "bkbg-faq-schema-frontend",
22 "supports": {
23 "html": false,
24 "anchor": true,
25 "className": true,
26 "align": [
27 "wide",
28 "full"
29 ]
30 },
31 "attributes": {
32 "items": {
33 "type": "array",
34 "default": [
35 {
36 "question": "What is blockenberg?",
37 "answer": "Blockenberg is a powerful WordPress plugin that lets you build beautiful pages using a library of custom Gutenberg blocks with rich styling controls."
38 },
39 {
40 "question": "Do I need coding skills to use it?",
41 "answer": "No! Blockenberg is designed for everyone. All settings are available directly in the Gutenberg editor sidebar — no code required."
42 },
43 {
44 "question": "Is it compatible with my theme?",
45 "answer": "Yes. Blockenberg blocks work with any WordPress theme that supports the block editor (Gutenberg)."
46 }
47 ]
48 },
49 "activeItems": {
50 "type": "array",
51 "default": [
52 0
53 ]
54 },
55 "expandFirst": {
56 "type": "boolean",
57 "default": true
58 },
59 "allowMultiple": {
60 "type": "boolean",
61 "default": false
62 },
63 "iconType": {
64 "type": "string",
65 "default": "chevron"
66 },
67 "iconPosition": {
68 "type": "string",
69 "default": "right"
70 },
71 "layout": {
72 "type": "string",
73 "default": "default"
74 },
75 "spacing": {
76 "type": "number",
77 "default": 10
78 },
79 "borderRadius": {
80 "type": "number",
81 "default": 8
82 },
83 "questionPadding": {
84 "type": "number",
85 "default": 18
86 },
87 "answerPadding": {
88 "type": "number",
89 "default": 16
90 },
91 "questionSize": {
92 "type": "number",
93 "default": 16
94 },
95 "questionWeight": {
96 "type": "number",
97 "default": 600
98 },
99 "answerSize": {
100 "type": "number",
101 "default": 15
102 },
103 "answerLineHeight": {
104 "type": "number",
105 "default": 1.7
106 },
107 "typoQuestion": {
108 "type": "object",
109 "default": {}
110 },
111 "typoAnswer": {
112 "type": "object",
113 "default": {}
114 },
115 "animationSpeed": {
116 "type": "number",
117 "default": 300
118 },
119 "questionColor": {
120 "type": "string",
121 "default": "#111827"
122 },
123 "questionBg": {
124 "type": "string",
125 "default": "#ffffff"
126 },
127 "questionHoverBg": {
128 "type": "string",
129 "default": "#f9fafb"
130 },
131 "activeQuestionBg": {
132 "type": "string",
133 "default": "#eff6ff"
134 },
135 "activeQuestionColor": {
136 "type": "string",
137 "default": "#1d4ed8"
138 },
139 "answerColor": {
140 "type": "string",
141 "default": "#374151"
142 },
143 "answerBg": {
144 "type": "string",
145 "default": "#ffffff"
146 },
147 "iconColor": {
148 "type": "string",
149 "default": "#6b7280"
150 },
151 "iconActiveColor": {
152 "type": "string",
153 "default": "#2563eb"
154 },
155 "borderColor": {
156 "type": "string",
157 "default": "#e5e7eb"
158 },
159 "dividerColor": {
160 "type": "string",
161 "default": "#f3f4f6"
162 }
163 }
164 }
165