PluginProbe ʕ •ᴥ•ʔ
Author Website Templates – Create Writer, Author & Publisher Websites Easily / 1.1.5
Author Website Templates – Create Writer, Author & Publisher Websites Easily v1.1.5
trunk 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.1.8 1.1.9
author-website-templates / build / blocks / author-pro / events / block.json
author-website-templates / build / blocks / author-pro / events Last commit date
block.json 4 months ago index.asset.php 4 months ago index.js 4 months ago render.php 4 months ago
block.json
97 lines
1 {
2 "apiVersion": 2,
3 "name": "awt/author-pro-events",
4 "version": "1.0.0",
5 "title": "Events [Author Pro]",
6 "category": "awt-blocks",
7 "description": "Display a list of upcoming tour dates, events, or workshops.",
8 "supports": {
9 "html": false,
10 "anchor": true,
11 "align": [
12 "full"
13 ]
14 },
15 "attributes": {
16 "blockId": {
17 "type": "string"
18 },
19 "anchor": {
20 "type": "string",
21 "default": ""
22 },
23 "align": {
24 "type": "string",
25 "default": "full"
26 },
27 "sectionBadge": {
28 "type": "string",
29 "default": "Tour Dates"
30 },
31 "sectionTitle": {
32 "type": "string",
33 "default": "Upcoming Events & Talks"
34 },
35 "sectionDesc": {
36 "type": "string",
37 "default": "Join me in person for book signings, workshops, and keynote sessions."
38 },
39 "events": {
40 "type": "array",
41 "default": [
42 {
43 "id": 1,
44 "day": "12",
45 "monthYear": "Oct, 2025",
46 "category": "Book Signing",
47 "title": "Atomic Habits: The Masterclass",
48 "location": "New York Public Library",
49 "time": "10:00 AM - 2:00 PM",
50 "btnText": "Get Ticket",
51 "btnUrl": "#"
52 },
53 {
54 "id": 2,
55 "day": "25",
56 "monthYear": "Nov, 2025",
57 "category": "Keynote Speech",
58 "title": "Global Leadership Summit",
59 "location": "London, UK",
60 "time": "09:00 AM - 5:00 PM",
61 "btnText": "Sold Out",
62 "btnUrl": ""
63 },
64 {
65 "id": 3,
66 "day": "05",
67 "monthYear": "Dec, 2025",
68 "category": "Workshop",
69 "title": "Writing Your First Best-Seller",
70 "location": "Online (Zoom)",
71 "time": "6:00 PM EST",
72 "btnText": "Register Free",
73 "btnUrl": "#"
74 }
75 ]
76 },
77 "bgColor": {
78 "type": "string",
79 "default": ""
80 },
81 "accentColor": {
82 "type": "string",
83 "default": ""
84 },
85 "paddingTop": {
86 "type": "number",
87 "default": 96
88 },
89 "paddingBottom": {
90 "type": "number",
91 "default": 96
92 }
93 },
94 "textdomain": "author-website-templates",
95 "editorScript": "file:./index.js",
96 "render": "file:./render.php"
97 }