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 / affiliate-disclosure / block.json

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

120 lines 3.1 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/affiliate-disclosure",
5 "title": "Affiliate Disclosure",
6 "description": "Styled FTC-compliant affiliate link disclosure notice for articles and reviews. Distinct from Affiliate Review Box — this is the small legal notice, not a full product review.",
7 "category": "bkbg-marketing",
8 "icon": "shield",
9 "keywords": [
10 "affiliate",
11 "disclosure",
12 "ftc",
13 "disclaimer",
14 "sponsored",
15 "legal",
16 "notice"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-affiliate-disclosure-editor",
20 "style": "bkbg-affiliate-disclosure-style",
21 "viewScript": "bkbg-affiliate-disclosure-frontend",
22 "supports": {
23 "html": false,
24 "align": [
25 "wide",
26 "full"
27 ]
28 },
29 "attributes": {
30 "icon": {
31 "type": "string",
32 "default": "🔗"
33 },
34 "showIcon": {
35 "type": "boolean",
36 "default": true
37 },
38 "label": {
39 "type": "string",
40 "default": "Affiliate Disclosure"
41 },
42 "showLabel": {
43 "type": "boolean",
44 "default": true
45 },
46 "text": {
47 "type": "string",
48 "default": "This article contains affiliate links. If you click through and make a purchase, we may earn a commission — at no extra cost to you. We only recommend products we genuinely believe in."
49 },
50 "linkText": {
51 "type": "string",
52 "default": "Read our full affiliate policy"
53 },
54 "linkUrl": {
55 "type": "string",
56 "default": ""
57 },
58 "showLink": {
59 "type": "boolean",
60 "default": false
61 },
62 "style": {
63 "type": "string",
64 "default": "banner"
65 },
66 "position": {
67 "type": "string",
68 "default": "top"
69 },
70 "collapsible": {
71 "type": "boolean",
72 "default": false
73 },
74 "borderRadius": {
75 "type": "number",
76 "default": 8
77 },
78 "bgColor": {
79 "type": "string",
80 "default": "#fffbeb"
81 },
82 "borderColor": {
83 "type": "string",
84 "default": "#fcd34d"
85 },
86 "accentColor": {
87 "type": "string",
88 "default": "#d97706"
89 },
90 "textColor": {
91 "type": "string",
92 "default": "#78350f"
93 },
94 "labelColor": {
95 "type": "string",
96 "default": "#92400e"
97 },
98 "iconColor": {
99 "type": "string",
100 "default": "#d97706"
101 },
102 "linkColor": {
103 "type": "string",
104 "default": "#d97706"
105 },
106 "textFontSize": {
107 "type": "number",
108 "default": 13
109 },
110 "iconFontSize": {
111 "type": "number",
112 "default": 18
113 },
114 "textTypo": {
115 "type": "object",
116 "default": {}
117 }
118 }
119 }
120