-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatabase.sql
409 lines (358 loc) · 829 KB
/
database.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
-- MySQL dump 10.13 Distrib 8.0.16, for macos10.14 (x86_64)
--
-- Host: localhost Database: local
-- ------------------------------------------------------
-- Server version 8.0.16
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
SET NAMES utf8mb4 ;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `wp_commentmeta`
--
DROP TABLE IF EXISTS `wp_commentmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
SET character_set_client = utf8mb4 ;
CREATE TABLE `wp_commentmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci,
PRIMARY KEY (`meta_id`),
KEY `comment_id` (`comment_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_commentmeta`
--
LOCK TABLES `wp_commentmeta` WRITE;
/*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_comments`
--
DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
SET character_set_client = utf8mb4 ;
CREATE TABLE `wp_comments` (
`comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
`comment_author` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
`comment_author_email` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_author_url` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT '0',
`comment_approved` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1',
`comment_agent` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'comment',
`comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`comment_ID`),
KEY `comment_post_ID` (`comment_post_ID`),
KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
KEY `comment_date_gmt` (`comment_date_gmt`),
KEY `comment_parent` (`comment_parent`),
KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_comments`
--
LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_links`
--
DROP TABLE IF EXISTS `wp_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
SET character_set_client = utf8mb4 ;
CREATE TABLE `wp_links` (
`link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`link_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_target` varchar(25) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_visible` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'Y',
`link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
`link_rating` int(11) NOT NULL DEFAULT '0',
`link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`link_rel` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_notes` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
`link_rss` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
PRIMARY KEY (`link_id`),
KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_links`
--
LOCK TABLES `wp_links` WRITE;
/*!40000 ALTER TABLE `wp_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_links` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_options`
--
DROP TABLE IF EXISTS `wp_options`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
SET character_set_client = utf8mb4 ;
CREATE TABLE `wp_options` (
`option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`option_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`option_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
`autoload` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes',
PRIMARY KEY (`option_id`),
UNIQUE KEY `option_name` (`option_name`),
KEY `autoload` (`autoload`)
) ENGINE=InnoDB AUTO_INCREMENT=454 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_options`
--
LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,'siteurl','http://web-space.local','yes'),(2,'home','http://web-space.local','yes'),(3,'blogname','WEB Space','yes'),(4,'blogdescription','','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','[email protected]','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','[email protected]','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%postname%/','yes'),(29,'rewrite_rules','a:134:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:11:\"sections/?$\";s:30:\"index.php?post_type=what-we-do\";s:41:\"sections/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?post_type=what-we-do&feed=$matches[1]\";s:36:\"sections/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?post_type=what-we-do&feed=$matches[1]\";s:28:\"sections/page/([0-9]{1,})/?$\";s:48:\"index.php?post_type=what-we-do&paged=$matches[1]\";s:10:\"graphql/?$\";s:22:\"index.php?graphql=true\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:47:\"what-we-do/%sections%/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"what-we-do/%sections%/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"what-we-do/%sections%/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"what-we-do/%sections%/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"what-we-do/%sections%/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"what-we-do/%sections%/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:36:\"what-we-do/%sections%/(.+?)/embed/?$\";s:65:\"index.php?%sections%$matches[1]&what-we-do=$matches[2]&embed=true\";s:40:\"what-we-do/%sections%/(.+?)/trackback/?$\";s:59:\"index.php?%sections%$matches[1]&what-we-do=$matches[2]&tb=1\";s:60:\"what-we-do/%sections%/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:71:\"index.php?%sections%$matches[1]&what-we-do=$matches[2]&feed=$matches[3]\";s:55:\"what-we-do/%sections%/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:71:\"index.php?%sections%$matches[1]&what-we-do=$matches[2]&feed=$matches[3]\";s:48:\"what-we-do/%sections%/(.+?)/page/?([0-9]{1,})/?$\";s:72:\"index.php?%sections%$matches[1]&what-we-do=$matches[2]&paged=$matches[3]\";s:55:\"what-we-do/%sections%/(.+?)/comment-page-([0-9]{1,})/?$\";s:72:\"index.php?%sections%$matches[1]&what-we-do=$matches[2]&cpage=$matches[3]\";s:44:\"what-we-do/%sections%/(.+?)(?:/([0-9]+))?/?$\";s:71:\"index.php?%sections%$matches[1]&what-we-do=$matches[2]&page=$matches[3]\";s:54:\"what-we-do/%sections%/feed/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?%sections%$matches[1]&feed=$matches[2]\";s:49:\"what-we-do/%sections%/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?%sections%$matches[1]&feed=$matches[2]\";s:30:\"what-we-do/%sections%/embed/?$\";s:42:\"index.php?%sections%$matches[1]&embed=true\";s:42:\"what-we-do/%sections%/page/?([0-9]{1,})/?$\";s:49:\"index.php?%sections%$matches[1]&paged=$matches[2]\";s:49:\"what-we-do/%sections%/comment-page-([0-9]{1,})/?$\";s:49:\"index.php?%sections%$matches[1]&cpage=$matches[2]\";s:24:\"what-we-do/%sections%/?$\";s:31:\"index.php?%sections%$matches[1]\";s:38:\"board-member/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"board-member/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"board-member/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"board-member/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"board-member/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:44:\"board-member/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:27:\"board-member/(.+?)/embed/?$\";s:38:\"index.php?board=$matches[1]&embed=true\";s:31:\"board-member/(.+?)/trackback/?$\";s:32:\"index.php?board=$matches[1]&tb=1\";s:39:\"board-member/(.+?)/page/?([0-9]{1,})/?$\";s:45:\"index.php?board=$matches[1]&paged=$matches[2]\";s:46:\"board-member/(.+?)/comment-page-([0-9]{1,})/?$\";s:45:\"index.php?board=$matches[1]&cpage=$matches[2]\";s:35:\"board-member/(.+?)(?:/([0-9]+))?/?$\";s:44:\"index.php?board=$matches[1]&page=$matches[2]\";s:47:\"skills/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?skills=$matches[1]&feed=$matches[2]\";s:42:\"skills/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?skills=$matches[1]&feed=$matches[2]\";s:23:\"skills/([^/]+)/embed/?$\";s:39:\"index.php?skills=$matches[1]&embed=true\";s:35:\"skills/([^/]+)/page/?([0-9]{1,})/?$\";s:46:\"index.php?skills=$matches[1]&paged=$matches[2]\";s:17:\"skills/([^/]+)/?$\";s:28:\"index.php?skills=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:38:\"index.php?&page_id=9&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:4:{i:0;s:34:\"advanced-custom-fields-pro/acf.php\";i:1;s:30:\"advanced-custom-fields/acf.php\";i:2;s:25:\"wp-graphql/wp-graphql.php\";i:3;s:31:\"wpgraphql-acf/wpgraphql-acf.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','webspace','yes'),(41,'stylesheet','webspace','yes'),(42,'comment_registration','0','yes'),(43,'html_type','text/html','yes'),(44,'use_trackback','0','yes'),(45,'default_role','subscriber','yes'),(46,'db_version','56657','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','1','yes'),(50,'default_link_category','2','yes'),(51,'show_on_front','page','yes'),(52,'tag_base','','yes'),(53,'show_avatars','1','yes'),(54,'avatar_rating','G','yes'),(55,'upload_url_path','','yes'),(56,'thumbnail_size_w','150','yes'),(57,'thumbnail_size_h','150','yes'),(58,'thumbnail_crop','1','yes'),(59,'medium_size_w','300','yes'),(60,'medium_size_h','300','yes'),(61,'avatar_default','mystery','yes'),(62,'large_size_w','1024','yes'),(63,'large_size_h','1024','yes'),(64,'image_default_link_type','none','yes'),(65,'image_default_size','','yes'),(66,'image_default_align','','yes'),(67,'close_comments_for_old_posts','0','yes'),(68,'close_comments_days_old','14','yes'),(69,'thread_comments','1','yes'),(70,'thread_comments_depth','5','yes'),(71,'page_comments','0','yes'),(72,'comments_per_page','50','yes'),(73,'default_comments_page','newest','yes'),(74,'comment_order','asc','yes'),(75,'sticky_posts','a:0:{}','yes'),(76,'widget_categories','a:0:{}','yes'),(77,'widget_text','a:0:{}','yes'),(78,'widget_rss','a:0:{}','yes'),(79,'uninstall_plugins','a:0:{}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','44','yes'),(82,'page_on_front','9','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','0','yes'),(87,'medium_large_size_w','768','yes'),(88,'medium_large_size_h','0','yes'),(89,'wp_page_for_privacy_policy','3','yes'),(90,'show_comments_cookies_opt_in','1','yes'),(91,'admin_email_lifespan','1718892452','yes'),(92,'disallowed_keys','','no'),(93,'comment_previously_approved','1','yes'),(94,'auto_plugin_theme_update_emails','a:0:{}','no'),(95,'auto_update_core_dev','enabled','yes'),(96,'auto_update_core_minor','enabled','yes'),(97,'auto_update_core_major','enabled','yes'),(98,'wp_force_deactivated_plugins','a:0:{}','yes'),(99,'wp_attachment_pages_enabled','0','yes'),(100,'initial_db_version','56657','yes'),(101,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(102,'fresh_site','0','yes'),(103,'user_count','1','no'),(104,'widget_block','a:6:{i:2;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:3;a:1:{s:7:\"content\";s:154:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Posts</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:227:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Comments</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}i:5;a:1:{s:7:\"content\";s:146:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Archives</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->\";}i:6;a:1:{s:7:\"content\";s:150:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Categories</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->\";}s:12:\"_multiwidget\";i:1;}','yes'),(105,'sidebars_widgets','a:2:{s:19:\"wp_inactive_widgets\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}s:13:\"array_version\";i:3;}','yes'),(106,'cron','a:8:{i:1707919996;a:3:{s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1707919997;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1707921170;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1707962853;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1708006053;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1708179226;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1708265253;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','yes'),(107,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(117,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(119,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(120,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(121,'_transient_wp_core_block_css_files','a:2:{s:7:\"version\";s:5:\"6.4.2\";s:5:\"files\";a:500:{i:0;s:23:\"archives/editor-rtl.css\";i:1;s:27:\"archives/editor-rtl.min.css\";i:2;s:19:\"archives/editor.css\";i:3;s:23:\"archives/editor.min.css\";i:4;s:22:\"archives/style-rtl.css\";i:5;s:26:\"archives/style-rtl.min.css\";i:6;s:18:\"archives/style.css\";i:7;s:22:\"archives/style.min.css\";i:8;s:20:\"audio/editor-rtl.css\";i:9;s:24:\"audio/editor-rtl.min.css\";i:10;s:16:\"audio/editor.css\";i:11;s:20:\"audio/editor.min.css\";i:12;s:19:\"audio/style-rtl.css\";i:13;s:23:\"audio/style-rtl.min.css\";i:14;s:15:\"audio/style.css\";i:15;s:19:\"audio/style.min.css\";i:16;s:19:\"audio/theme-rtl.css\";i:17;s:23:\"audio/theme-rtl.min.css\";i:18;s:15:\"audio/theme.css\";i:19;s:19:\"audio/theme.min.css\";i:20;s:21:\"avatar/editor-rtl.css\";i:21;s:25:\"avatar/editor-rtl.min.css\";i:22;s:17:\"avatar/editor.css\";i:23;s:21:\"avatar/editor.min.css\";i:24;s:20:\"avatar/style-rtl.css\";i:25;s:24:\"avatar/style-rtl.min.css\";i:26;s:16:\"avatar/style.css\";i:27;s:20:\"avatar/style.min.css\";i:28;s:20:\"block/editor-rtl.css\";i:29;s:24:\"block/editor-rtl.min.css\";i:30;s:16:\"block/editor.css\";i:31;s:20:\"block/editor.min.css\";i:32;s:21:\"button/editor-rtl.css\";i:33;s:25:\"button/editor-rtl.min.css\";i:34;s:17:\"button/editor.css\";i:35;s:21:\"button/editor.min.css\";i:36;s:20:\"button/style-rtl.css\";i:37;s:24:\"button/style-rtl.min.css\";i:38;s:16:\"button/style.css\";i:39;s:20:\"button/style.min.css\";i:40;s:22:\"buttons/editor-rtl.css\";i:41;s:26:\"buttons/editor-rtl.min.css\";i:42;s:18:\"buttons/editor.css\";i:43;s:22:\"buttons/editor.min.css\";i:44;s:21:\"buttons/style-rtl.css\";i:45;s:25:\"buttons/style-rtl.min.css\";i:46;s:17:\"buttons/style.css\";i:47;s:21:\"buttons/style.min.css\";i:48;s:22:\"calendar/style-rtl.css\";i:49;s:26:\"calendar/style-rtl.min.css\";i:50;s:18:\"calendar/style.css\";i:51;s:22:\"calendar/style.min.css\";i:52;s:25:\"categories/editor-rtl.css\";i:53;s:29:\"categories/editor-rtl.min.css\";i:54;s:21:\"categories/editor.css\";i:55;s:25:\"categories/editor.min.css\";i:56;s:24:\"categories/style-rtl.css\";i:57;s:28:\"categories/style-rtl.min.css\";i:58;s:20:\"categories/style.css\";i:59;s:24:\"categories/style.min.css\";i:60;s:19:\"code/editor-rtl.css\";i:61;s:23:\"code/editor-rtl.min.css\";i:62;s:15:\"code/editor.css\";i:63;s:19:\"code/editor.min.css\";i:64;s:18:\"code/style-rtl.css\";i:65;s:22:\"code/style-rtl.min.css\";i:66;s:14:\"code/style.css\";i:67;s:18:\"code/style.min.css\";i:68;s:18:\"code/theme-rtl.css\";i:69;s:22:\"code/theme-rtl.min.css\";i:70;s:14:\"code/theme.css\";i:71;s:18:\"code/theme.min.css\";i:72;s:22:\"columns/editor-rtl.css\";i:73;s:26:\"columns/editor-rtl.min.css\";i:74;s:18:\"columns/editor.css\";i:75;s:22:\"columns/editor.min.css\";i:76;s:21:\"columns/style-rtl.css\";i:77;s:25:\"columns/style-rtl.min.css\";i:78;s:17:\"columns/style.css\";i:79;s:21:\"columns/style.min.css\";i:80;s:29:\"comment-content/style-rtl.css\";i:81;s:33:\"comment-content/style-rtl.min.css\";i:82;s:25:\"comment-content/style.css\";i:83;s:29:\"comment-content/style.min.css\";i:84;s:30:\"comment-template/style-rtl.css\";i:85;s:34:\"comment-template/style-rtl.min.css\";i:86;s:26:\"comment-template/style.css\";i:87;s:30:\"comment-template/style.min.css\";i:88;s:42:\"comments-pagination-numbers/editor-rtl.css\";i:89;s:46:\"comments-pagination-numbers/editor-rtl.min.css\";i:90;s:38:\"comments-pagination-numbers/editor.css\";i:91;s:42:\"comments-pagination-numbers/editor.min.css\";i:92;s:34:\"comments-pagination/editor-rtl.css\";i:93;s:38:\"comments-pagination/editor-rtl.min.css\";i:94;s:30:\"comments-pagination/editor.css\";i:95;s:34:\"comments-pagination/editor.min.css\";i:96;s:33:\"comments-pagination/style-rtl.css\";i:97;s:37:\"comments-pagination/style-rtl.min.css\";i:98;s:29:\"comments-pagination/style.css\";i:99;s:33:\"comments-pagination/style.min.css\";i:100;s:29:\"comments-title/editor-rtl.css\";i:101;s:33:\"comments-title/editor-rtl.min.css\";i:102;s:25:\"comments-title/editor.css\";i:103;s:29:\"comments-title/editor.min.css\";i:104;s:23:\"comments/editor-rtl.css\";i:105;s:27:\"comments/editor-rtl.min.css\";i:106;s:19:\"comments/editor.css\";i:107;s:23:\"comments/editor.min.css\";i:108;s:22:\"comments/style-rtl.css\";i:109;s:26:\"comments/style-rtl.min.css\";i:110;s:18:\"comments/style.css\";i:111;s:22:\"comments/style.min.css\";i:112;s:20:\"cover/editor-rtl.css\";i:113;s:24:\"cover/editor-rtl.min.css\";i:114;s:16:\"cover/editor.css\";i:115;s:20:\"cover/editor.min.css\";i:116;s:19:\"cover/style-rtl.css\";i:117;s:23:\"cover/style-rtl.min.css\";i:118;s:15:\"cover/style.css\";i:119;s:19:\"cover/style.min.css\";i:120;s:22:\"details/editor-rtl.css\";i:121;s:26:\"details/editor-rtl.min.css\";i:122;s:18:\"details/editor.css\";i:123;s:22:\"details/editor.min.css\";i:124;s:21:\"details/style-rtl.css\";i:125;s:25:\"details/style-rtl.min.css\";i:126;s:17:\"details/style.css\";i:127;s:21:\"details/style.min.css\";i:128;s:20:\"embed/editor-rtl.css\";i:129;s:24:\"embed/editor-rtl.min.css\";i:130;s:16:\"embed/editor.css\";i:131;s:20:\"embed/editor.min.css\";i:132;s:19:\"embed/style-rtl.css\";i:133;s:23:\"embed/style-rtl.min.css\";i:134;s:15:\"embed/style.css\";i:135;s:19:\"embed/style.min.css\";i:136;s:19:\"embed/theme-rtl.css\";i:137;s:23:\"embed/theme-rtl.min.css\";i:138;s:15:\"embed/theme.css\";i:139;s:19:\"embed/theme.min.css\";i:140;s:19:\"file/editor-rtl.css\";i:141;s:23:\"file/editor-rtl.min.css\";i:142;s:15:\"file/editor.css\";i:143;s:19:\"file/editor.min.css\";i:144;s:18:\"file/style-rtl.css\";i:145;s:22:\"file/style-rtl.min.css\";i:146;s:14:\"file/style.css\";i:147;s:18:\"file/style.min.css\";i:148;s:23:\"footnotes/style-rtl.css\";i:149;s:27:\"footnotes/style-rtl.min.css\";i:150;s:19:\"footnotes/style.css\";i:151;s:23:\"footnotes/style.min.css\";i:152;s:23:\"freeform/editor-rtl.css\";i:153;s:27:\"freeform/editor-rtl.min.css\";i:154;s:19:\"freeform/editor.css\";i:155;s:23:\"freeform/editor.min.css\";i:156;s:22:\"gallery/editor-rtl.css\";i:157;s:26:\"gallery/editor-rtl.min.css\";i:158;s:18:\"gallery/editor.css\";i:159;s:22:\"gallery/editor.min.css\";i:160;s:21:\"gallery/style-rtl.css\";i:161;s:25:\"gallery/style-rtl.min.css\";i:162;s:17:\"gallery/style.css\";i:163;s:21:\"gallery/style.min.css\";i:164;s:21:\"gallery/theme-rtl.css\";i:165;s:25:\"gallery/theme-rtl.min.css\";i:166;s:17:\"gallery/theme.css\";i:167;s:21:\"gallery/theme.min.css\";i:168;s:20:\"group/editor-rtl.css\";i:169;s:24:\"group/editor-rtl.min.css\";i:170;s:16:\"group/editor.css\";i:171;s:20:\"group/editor.min.css\";i:172;s:19:\"group/style-rtl.css\";i:173;s:23:\"group/style-rtl.min.css\";i:174;s:15:\"group/style.css\";i:175;s:19:\"group/style.min.css\";i:176;s:19:\"group/theme-rtl.css\";i:177;s:23:\"group/theme-rtl.min.css\";i:178;s:15:\"group/theme.css\";i:179;s:19:\"group/theme.min.css\";i:180;s:21:\"heading/style-rtl.css\";i:181;s:25:\"heading/style-rtl.min.css\";i:182;s:17:\"heading/style.css\";i:183;s:21:\"heading/style.min.css\";i:184;s:19:\"html/editor-rtl.css\";i:185;s:23:\"html/editor-rtl.min.css\";i:186;s:15:\"html/editor.css\";i:187;s:19:\"html/editor.min.css\";i:188;s:20:\"image/editor-rtl.css\";i:189;s:24:\"image/editor-rtl.min.css\";i:190;s:16:\"image/editor.css\";i:191;s:20:\"image/editor.min.css\";i:192;s:19:\"image/style-rtl.css\";i:193;s:23:\"image/style-rtl.min.css\";i:194;s:15:\"image/style.css\";i:195;s:19:\"image/style.min.css\";i:196;s:19:\"image/theme-rtl.css\";i:197;s:23:\"image/theme-rtl.min.css\";i:198;s:15:\"image/theme.css\";i:199;s:19:\"image/theme.min.css\";i:200;s:29:\"latest-comments/style-rtl.css\";i:201;s:33:\"latest-comments/style-rtl.min.css\";i:202;s:25:\"latest-comments/style.css\";i:203;s:29:\"latest-comments/style.min.css\";i:204;s:27:\"latest-posts/editor-rtl.css\";i:205;s:31:\"latest-posts/editor-rtl.min.css\";i:206;s:23:\"latest-posts/editor.css\";i:207;s:27:\"latest-posts/editor.min.css\";i:208;s:26:\"latest-posts/style-rtl.css\";i:209;s:30:\"latest-posts/style-rtl.min.css\";i:210;s:22:\"latest-posts/style.css\";i:211;s:26:\"latest-posts/style.min.css\";i:212;s:18:\"list/style-rtl.css\";i:213;s:22:\"list/style-rtl.min.css\";i:214;s:14:\"list/style.css\";i:215;s:18:\"list/style.min.css\";i:216;s:25:\"media-text/editor-rtl.css\";i:217;s:29:\"media-text/editor-rtl.min.css\";i:218;s:21:\"media-text/editor.css\";i:219;s:25:\"media-text/editor.min.css\";i:220;s:24:\"media-text/style-rtl.css\";i:221;s:28:\"media-text/style-rtl.min.css\";i:222;s:20:\"media-text/style.css\";i:223;s:24:\"media-text/style.min.css\";i:224;s:19:\"more/editor-rtl.css\";i:225;s:23:\"more/editor-rtl.min.css\";i:226;s:15:\"more/editor.css\";i:227;s:19:\"more/editor.min.css\";i:228;s:30:\"navigation-link/editor-rtl.css\";i:229;s:34:\"navigation-link/editor-rtl.min.css\";i:230;s:26:\"navigation-link/editor.css\";i:231;s:30:\"navigation-link/editor.min.css\";i:232;s:29:\"navigation-link/style-rtl.css\";i:233;s:33:\"navigation-link/style-rtl.min.css\";i:234;s:25:\"navigation-link/style.css\";i:235;s:29:\"navigation-link/style.min.css\";i:236;s:33:\"navigation-submenu/editor-rtl.css\";i:237;s:37:\"navigation-submenu/editor-rtl.min.css\";i:238;s:29:\"navigation-submenu/editor.css\";i:239;s:33:\"navigation-submenu/editor.min.css\";i:240;s:25:\"navigation/editor-rtl.css\";i:241;s:29:\"navigation/editor-rtl.min.css\";i:242;s:21:\"navigation/editor.css\";i:243;s:25:\"navigation/editor.min.css\";i:244;s:24:\"navigation/style-rtl.css\";i:245;s:28:\"navigation/style-rtl.min.css\";i:246;s:20:\"navigation/style.css\";i:247;s:24:\"navigation/style.min.css\";i:248;s:23:\"nextpage/editor-rtl.css\";i:249;s:27:\"nextpage/editor-rtl.min.css\";i:250;s:19:\"nextpage/editor.css\";i:251;s:23:\"nextpage/editor.min.css\";i:252;s:24:\"page-list/editor-rtl.css\";i:253;s:28:\"page-list/editor-rtl.min.css\";i:254;s:20:\"page-list/editor.css\";i:255;s:24:\"page-list/editor.min.css\";i:256;s:23:\"page-list/style-rtl.css\";i:257;s:27:\"page-list/style-rtl.min.css\";i:258;s:19:\"page-list/style.css\";i:259;s:23:\"page-list/style.min.css\";i:260;s:24:\"paragraph/editor-rtl.css\";i:261;s:28:\"paragraph/editor-rtl.min.css\";i:262;s:20:\"paragraph/editor.css\";i:263;s:24:\"paragraph/editor.min.css\";i:264;s:23:\"paragraph/style-rtl.css\";i:265;s:27:\"paragraph/style-rtl.min.css\";i:266;s:19:\"paragraph/style.css\";i:267;s:23:\"paragraph/style.min.css\";i:268;s:25:\"post-author/style-rtl.css\";i:269;s:29:\"post-author/style-rtl.min.css\";i:270;s:21:\"post-author/style.css\";i:271;s:25:\"post-author/style.min.css\";i:272;s:33:\"post-comments-form/editor-rtl.css\";i:273;s:37:\"post-comments-form/editor-rtl.min.css\";i:274;s:29:\"post-comments-form/editor.css\";i:275;s:33:\"post-comments-form/editor.min.css\";i:276;s:32:\"post-comments-form/style-rtl.css\";i:277;s:36:\"post-comments-form/style-rtl.min.css\";i:278;s:28:\"post-comments-form/style.css\";i:279;s:32:\"post-comments-form/style.min.css\";i:280;s:23:\"post-date/style-rtl.css\";i:281;s:27:\"post-date/style-rtl.min.css\";i:282;s:19:\"post-date/style.css\";i:283;s:23:\"post-date/style.min.css\";i:284;s:27:\"post-excerpt/editor-rtl.css\";i:285;s:31:\"post-excerpt/editor-rtl.min.css\";i:286;s:23:\"post-excerpt/editor.css\";i:287;s:27:\"post-excerpt/editor.min.css\";i:288;s:26:\"post-excerpt/style-rtl.css\";i:289;s:30:\"post-excerpt/style-rtl.min.css\";i:290;s:22:\"post-excerpt/style.css\";i:291;s:26:\"post-excerpt/style.min.css\";i:292;s:34:\"post-featured-image/editor-rtl.css\";i:293;s:38:\"post-featured-image/editor-rtl.min.css\";i:294;s:30:\"post-featured-image/editor.css\";i:295;s:34:\"post-featured-image/editor.min.css\";i:296;s:33:\"post-featured-image/style-rtl.css\";i:297;s:37:\"post-featured-image/style-rtl.min.css\";i:298;s:29:\"post-featured-image/style.css\";i:299;s:33:\"post-featured-image/style.min.css\";i:300;s:34:\"post-navigation-link/style-rtl.css\";i:301;s:38:\"post-navigation-link/style-rtl.min.css\";i:302;s:30:\"post-navigation-link/style.css\";i:303;s:34:\"post-navigation-link/style.min.css\";i:304;s:28:\"post-template/editor-rtl.css\";i:305;s:32:\"post-template/editor-rtl.min.css\";i:306;s:24:\"post-template/editor.css\";i:307;s:28:\"post-template/editor.min.css\";i:308;s:27:\"post-template/style-rtl.css\";i:309;s:31:\"post-template/style-rtl.min.css\";i:310;s:23:\"post-template/style.css\";i:311;s:27:\"post-template/style.min.css\";i:312;s:24:\"post-terms/style-rtl.css\";i:313;s:28:\"post-terms/style-rtl.min.css\";i:314;s:20:\"post-terms/style.css\";i:315;s:24:\"post-terms/style.min.css\";i:316;s:24:\"post-title/style-rtl.css\";i:317;s:28:\"post-title/style-rtl.min.css\";i:318;s:20:\"post-title/style.css\";i:319;s:24:\"post-title/style.min.css\";i:320;s:26:\"preformatted/style-rtl.css\";i:321;s:30:\"preformatted/style-rtl.min.css\";i:322;s:22:\"preformatted/style.css\";i:323;s:26:\"preformatted/style.min.css\";i:324;s:24:\"pullquote/editor-rtl.css\";i:325;s:28:\"pullquote/editor-rtl.min.css\";i:326;s:20:\"pullquote/editor.css\";i:327;s:24:\"pullquote/editor.min.css\";i:328;s:23:\"pullquote/style-rtl.css\";i:329;s:27:\"pullquote/style-rtl.min.css\";i:330;s:19:\"pullquote/style.css\";i:331;s:23:\"pullquote/style.min.css\";i:332;s:23:\"pullquote/theme-rtl.css\";i:333;s:27:\"pullquote/theme-rtl.min.css\";i:334;s:19:\"pullquote/theme.css\";i:335;s:23:\"pullquote/theme.min.css\";i:336;s:39:\"query-pagination-numbers/editor-rtl.css\";i:337;s:43:\"query-pagination-numbers/editor-rtl.min.css\";i:338;s:35:\"query-pagination-numbers/editor.css\";i:339;s:39:\"query-pagination-numbers/editor.min.css\";i:340;s:31:\"query-pagination/editor-rtl.css\";i:341;s:35:\"query-pagination/editor-rtl.min.css\";i:342;s:27:\"query-pagination/editor.css\";i:343;s:31:\"query-pagination/editor.min.css\";i:344;s:30:\"query-pagination/style-rtl.css\";i:345;s:34:\"query-pagination/style-rtl.min.css\";i:346;s:26:\"query-pagination/style.css\";i:347;s:30:\"query-pagination/style.min.css\";i:348;s:25:\"query-title/style-rtl.css\";i:349;s:29:\"query-title/style-rtl.min.css\";i:350;s:21:\"query-title/style.css\";i:351;s:25:\"query-title/style.min.css\";i:352;s:20:\"query/editor-rtl.css\";i:353;s:24:\"query/editor-rtl.min.css\";i:354;s:16:\"query/editor.css\";i:355;s:20:\"query/editor.min.css\";i:356;s:19:\"query/style-rtl.css\";i:357;s:23:\"query/style-rtl.min.css\";i:358;s:15:\"query/style.css\";i:359;s:19:\"query/style.min.css\";i:360;s:19:\"quote/style-rtl.css\";i:361;s:23:\"quote/style-rtl.min.css\";i:362;s:15:\"quote/style.css\";i:363;s:19:\"quote/style.min.css\";i:364;s:19:\"quote/theme-rtl.css\";i:365;s:23:\"quote/theme-rtl.min.css\";i:366;s:15:\"quote/theme.css\";i:367;s:19:\"quote/theme.min.css\";i:368;s:23:\"read-more/style-rtl.css\";i:369;s:27:\"read-more/style-rtl.min.css\";i:370;s:19:\"read-more/style.css\";i:371;s:23:\"read-more/style.min.css\";i:372;s:18:\"rss/editor-rtl.css\";i:373;s:22:\"rss/editor-rtl.min.css\";i:374;s:14:\"rss/editor.css\";i:375;s:18:\"rss/editor.min.css\";i:376;s:17:\"rss/style-rtl.css\";i:377;s:21:\"rss/style-rtl.min.css\";i:378;s:13:\"rss/style.css\";i:379;s:17:\"rss/style.min.css\";i:380;s:21:\"search/editor-rtl.css\";i:381;s:25:\"search/editor-rtl.min.css\";i:382;s:17:\"search/editor.css\";i:383;s:21:\"search/editor.min.css\";i:384;s:20:\"search/style-rtl.css\";i:385;s:24:\"search/style-rtl.min.css\";i:386;s:16:\"search/style.css\";i:387;s:20:\"search/style.min.css\";i:388;s:20:\"search/theme-rtl.css\";i:389;s:24:\"search/theme-rtl.min.css\";i:390;s:16:\"search/theme.css\";i:391;s:20:\"search/theme.min.css\";i:392;s:24:\"separator/editor-rtl.css\";i:393;s:28:\"separator/editor-rtl.min.css\";i:394;s:20:\"separator/editor.css\";i:395;s:24:\"separator/editor.min.css\";i:396;s:23:\"separator/style-rtl.css\";i:397;s:27:\"separator/style-rtl.min.css\";i:398;s:19:\"separator/style.css\";i:399;s:23:\"separator/style.min.css\";i:400;s:23:\"separator/theme-rtl.css\";i:401;s:27:\"separator/theme-rtl.min.css\";i:402;s:19:\"separator/theme.css\";i:403;s:23:\"separator/theme.min.css\";i:404;s:24:\"shortcode/editor-rtl.css\";i:405;s:28:\"shortcode/editor-rtl.min.css\";i:406;s:20:\"shortcode/editor.css\";i:407;s:24:\"shortcode/editor.min.css\";i:408;s:24:\"site-logo/editor-rtl.css\";i:409;s:28:\"site-logo/editor-rtl.min.css\";i:410;s:20:\"site-logo/editor.css\";i:411;s:24:\"site-logo/editor.min.css\";i:412;s:23:\"site-logo/style-rtl.css\";i:413;s:27:\"site-logo/style-rtl.min.css\";i:414;s:19:\"site-logo/style.css\";i:415;s:23:\"site-logo/style.min.css\";i:416;s:27:\"site-tagline/editor-rtl.css\";i:417;s:31:\"site-tagline/editor-rtl.min.css\";i:418;s:23:\"site-tagline/editor.css\";i:419;s:27:\"site-tagline/editor.min.css\";i:420;s:25:\"site-title/editor-rtl.css\";i:421;s:29:\"site-title/editor-rtl.min.css\";i:422;s:21:\"site-title/editor.css\";i:423;s:25:\"site-title/editor.min.css\";i:424;s:24:\"site-title/style-rtl.css\";i:425;s:28:\"site-title/style-rtl.min.css\";i:426;s:20:\"site-title/style.css\";i:427;s:24:\"site-title/style.min.css\";i:428;s:26:\"social-link/editor-rtl.css\";i:429;s:30:\"social-link/editor-rtl.min.css\";i:430;s:22:\"social-link/editor.css\";i:431;s:26:\"social-link/editor.min.css\";i:432;s:27:\"social-links/editor-rtl.css\";i:433;s:31:\"social-links/editor-rtl.min.css\";i:434;s:23:\"social-links/editor.css\";i:435;s:27:\"social-links/editor.min.css\";i:436;s:26:\"social-links/style-rtl.css\";i:437;s:30:\"social-links/style-rtl.min.css\";i:438;s:22:\"social-links/style.css\";i:439;s:26:\"social-links/style.min.css\";i:440;s:21:\"spacer/editor-rtl.css\";i:441;s:25:\"spacer/editor-rtl.min.css\";i:442;s:17:\"spacer/editor.css\";i:443;s:21:\"spacer/editor.min.css\";i:444;s:20:\"spacer/style-rtl.css\";i:445;s:24:\"spacer/style-rtl.min.css\";i:446;s:16:\"spacer/style.css\";i:447;s:20:\"spacer/style.min.css\";i:448;s:20:\"table/editor-rtl.css\";i:449;s:24:\"table/editor-rtl.min.css\";i:450;s:16:\"table/editor.css\";i:451;s:20:\"table/editor.min.css\";i:452;s:19:\"table/style-rtl.css\";i:453;s:23:\"table/style-rtl.min.css\";i:454;s:15:\"table/style.css\";i:455;s:19:\"table/style.min.css\";i:456;s:19:\"table/theme-rtl.css\";i:457;s:23:\"table/theme-rtl.min.css\";i:458;s:15:\"table/theme.css\";i:459;s:19:\"table/theme.min.css\";i:460;s:23:\"tag-cloud/style-rtl.css\";i:461;s:27:\"tag-cloud/style-rtl.min.css\";i:462;s:19:\"tag-cloud/style.css\";i:463;s:23:\"tag-cloud/style.min.css\";i:464;s:28:\"template-part/editor-rtl.css\";i:465;s:32:\"template-part/editor-rtl.min.css\";i:466;s:24:\"template-part/editor.css\";i:467;s:28:\"template-part/editor.min.css\";i:468;s:27:\"template-part/theme-rtl.css\";i:469;s:31:\"template-part/theme-rtl.min.css\";i:470;s:23:\"template-part/theme.css\";i:471;s:27:\"template-part/theme.min.css\";i:472;s:30:\"term-description/style-rtl.css\";i:473;s:34:\"term-description/style-rtl.min.css\";i:474;s:26:\"term-description/style.css\";i:475;s:30:\"term-description/style.min.css\";i:476;s:27:\"text-columns/editor-rtl.css\";i:477;s:31:\"text-columns/editor-rtl.min.css\";i:478;s:23:\"text-columns/editor.css\";i:479;s:27:\"text-columns/editor.min.css\";i:480;s:26:\"text-columns/style-rtl.css\";i:481;s:30:\"text-columns/style-rtl.min.css\";i:482;s:22:\"text-columns/style.css\";i:483;s:26:\"text-columns/style.min.css\";i:484;s:19:\"verse/style-rtl.css\";i:485;s:23:\"verse/style-rtl.min.css\";i:486;s:15:\"verse/style.css\";i:487;s:19:\"verse/style.min.css\";i:488;s:20:\"video/editor-rtl.css\";i:489;s:24:\"video/editor-rtl.min.css\";i:490;s:16:\"video/editor.css\";i:491;s:20:\"video/editor.min.css\";i:492;s:19:\"video/style-rtl.css\";i:493;s:23:\"video/style-rtl.min.css\";i:494;s:15:\"video/style.css\";i:495;s:19:\"video/style.min.css\";i:496;s:19:\"video/theme-rtl.css\";i:497;s:23:\"video/theme-rtl.min.css\";i:498;s:15:\"video/theme.css\";i:499;s:19:\"video/theme.min.css\";}}','yes'),(123,'recovery_keys','a:0:{}','yes'),(138,'can_compress_scripts','1','yes'),(149,'recently_activated','a:0:{}','yes'),(155,'wp_graphql_version','1.16.0','yes'),(156,'graphql_general_settings','','yes'),(159,'finished_updating_comment_type','1','yes'),(162,'acf_version','5.10.1','yes'),(177,'theme_mods_twentytwentyfour','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1703342284;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}}','yes'),(178,'current_theme','WebSpace','yes'),(179,'theme_mods_webspace','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;}','yes'),(180,'theme_switched','','yes'),(181,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1707916885;s:7:\"checked\";a:2:{s:15:\"twentytwentytwo\";s:3:\"1.6\";s:8:\"webspace\";s:5:\"1.0.0\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:1:{s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.6.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}}','no'),(182,'recovery_mode_email_last_sent','1707236138','yes'),(184,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(195,'wp_calendar_block_has_published_posts','','yes'),(212,'_transient_health-check-site-status-result','{\"good\":19,\"recommended\":0,\"critical\":1}','yes'),(330,'category_children','a:0:{}','yes'),(331,'skill_category_children','a:0:{}','yes'),(333,'project_category_children','a:0:{}','yes'),(392,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.4.3.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.4.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.4.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.4.3-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.4.3\";s:7:\"version\";s:5:\"6.4.3\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.4\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1707919742;s:15:\"version_checked\";s:5:\"6.4.3\";s:12:\"translations\";a:0:{}}','no'),(394,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:24:\"[email protected]\";s:7:\"version\";s:5:\"6.4.3\";s:9:\"timestamp\";i:1707393927;}','no'),(428,'_transient_timeout_acf_plugin_updates','1708089684','no'),(429,'_transient_acf_plugin_updates','a:5:{s:7:\"plugins\";a:1:{s:34:\"advanced-custom-fields-pro/acf.php\";a:11:{s:4:\"slug\";s:26:\"advanced-custom-fields-pro\";s:6:\"plugin\";s:34:\"advanced-custom-fields-pro/acf.php\";s:11:\"new_version\";s:7:\"6.2.6.1\";s:3:\"url\";s:36:\"https://www.advancedcustomfields.com\";s:6:\"tested\";s:5:\"6.4.3\";s:7:\"package\";s:0:\"\";s:5:\"icons\";a:1:{s:7:\"default\";s:63:\"https://ps.w.org/advanced-custom-fields/assets/icon-256x256.png\";}s:7:\"banners\";a:2:{s:3:\"low\";s:77:\"https://ps.w.org/advanced-custom-fields/assets/banner-772x250.jpg?rev=1729102\";s:4:\"high\";s:78:\"https://ps.w.org/advanced-custom-fields/assets/banner-1544x500.jpg?rev=1729099\";}s:8:\"requires\";s:3:\"5.8\";s:12:\"requires_php\";s:3:\"7.0\";s:12:\"release_date\";s:8:\"20240207\";}}s:9:\"no_update\";a:0:{}s:10:\"expiration\";i:172800;s:6:\"status\";i:1;s:7:\"checked\";a:1:{s:34:\"advanced-custom-fields-pro/acf.php\";s:6:\"5.10.1\";}}','no'),(432,'_site_transient_timeout_browser_24e87e5f156ab48c5bb559e4c1652234','1708521685','no'),(433,'_site_transient_browser_24e87e5f156ab48c5bb559e4c1652234','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"121.0.0.0\";s:8:\"platform\";s:9:\"Macintosh\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(434,'_site_transient_timeout_php_check_18f908370f4cb169b20964c7203d6110','1708521686','no'),(435,'_site_transient_php_check_18f908370f4cb169b20964c7203d6110','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:3:\"7.0\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(436,'_site_transient_timeout_community-events-d41d8cd98f00b204e9800998ecf8427e','1707960087','no'),(437,'_site_transient_community-events-d41d8cd98f00b204e9800998ecf8427e','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";b:0;}s:6:\"events\";a:5:{i:0;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:61:\"WP Meetup Amsterdam: WooCommerce Team - Sharon & Olaf Lederer\";s:3:\"url\";s:59:\"https://www.meetup.com/wordpress-amsterdam/events/291726691\";s:6:\"meetup\";s:26:\"WordPress Meetup Amsterdam\";s:10:\"meetup_url\";s:43:\"https://www.meetup.com/wordpress-amsterdam/\";s:4:\"date\";s:19:\"2024-02-20 19:00:00\";s:8:\"end_date\";s:19:\"2024-02-20 21:00:00\";s:20:\"start_unix_timestamp\";i:1708452000;s:18:\"end_unix_timestamp\";i:1708459200;s:8:\"location\";a:4:{s:8:\"location\";s:22:\"Amsterdam, Netherlands\";s:7:\"country\";s:2:\"nl\";s:8:\"latitude\";d:52.365310000000001;s:9:\"longitude\";d:4.9355359999999999;}}i:1;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:51:\"Hoe kies je de juiste plugins? - WP Meetup Fryslân\";s:3:\"url\";s:64:\"https://www.meetup.com/wordpress-meetup-fryslan/events/298713716\";s:6:\"meetup\";s:25:\"WordPress Meetup Fryslân\";s:10:\"meetup_url\";s:48:\"https://www.meetup.com/WordPress-Meetup-Fryslan/\";s:4:\"date\";s:19:\"2024-02-27 19:30:00\";s:8:\"end_date\";s:19:\"2024-02-27 21:00:00\";s:20:\"start_unix_timestamp\";i:1709058600;s:18:\"end_unix_timestamp\";i:1709064000;s:8:\"location\";a:4:{s:8:\"location\";s:23:\"Leeuwarden, Netherlands\";s:7:\"country\";s:2:\"nl\";s:8:\"latitude\";d:53.197764999999997;s:9:\"longitude\";d:5.7959339999999999;}}i:2;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:45:\"WordPress Meetup Nijmegen - Let\'s meet again!\";s:3:\"url\";s:65:\"https://www.meetup.com/wordpress-meetup-nijmegen/events/299010031\";s:6:\"meetup\";s:25:\"WordPress Meetup Nijmegen\";s:10:\"meetup_url\";s:49:\"https://www.meetup.com/WordPress-Meetup-Nijmegen/\";s:4:\"date\";s:19:\"2024-02-29 20:00:00\";s:8:\"end_date\";s:19:\"2024-02-29 22:00:00\";s:20:\"start_unix_timestamp\";i:1709233200;s:18:\"end_unix_timestamp\";i:1709240400;s:8:\"location\";a:4:{s:8:\"location\";s:21:\"Nijmegen, Netherlands\";s:7:\"country\";s:2:\"nl\";s:8:\"latitude\";d:51.842303999999999;s:9:\"longitude\";d:5.8541610000000004;}}i:3;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:23:\"WordPress Meetup Zwolle\";s:3:\"url\";s:63:\"https://www.meetup.com/zwolle-wordpress-meetup/events/296680209\";s:6:\"meetup\";s:23:\"WordPress Meetup Zwolle\";s:10:\"meetup_url\";s:47:\"https://www.meetup.com/Zwolle-WordPress-Meetup/\";s:4:\"date\";s:19:\"2024-03-14 18:45:00\";s:8:\"end_date\";s:19:\"2024-03-14 20:45:00\";s:20:\"start_unix_timestamp\";i:1710438300;s:18:\"end_unix_timestamp\";i:1710445500;s:8:\"location\";a:4:{s:8:\"location\";s:19:\"Zwolle, Netherlands\";s:7:\"country\";s:2:\"nl\";s:8:\"latitude\";d:52.508583000000002;s:9:\"longitude\";d:6.0933020000000004;}}i:4;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:23:\"WordPress Meetup Zwolle\";s:3:\"url\";s:63:\"https://www.meetup.com/zwolle-wordpress-meetup/events/296680258\";s:6:\"meetup\";s:23:\"WordPress Meetup Zwolle\";s:10:\"meetup_url\";s:47:\"https://www.meetup.com/Zwolle-WordPress-Meetup/\";s:4:\"date\";s:19:\"2024-04-11 18:45:00\";s:8:\"end_date\";s:19:\"2024-04-11 20:45:00\";s:20:\"start_unix_timestamp\";i:1712853900;s:18:\"end_unix_timestamp\";i:1712861100;s:8:\"location\";a:4:{s:8:\"location\";s:19:\"Zwolle, Netherlands\";s:7:\"country\";s:2:\"nl\";s:8:\"latitude\";d:52.508583000000002;s:9:\"longitude\";d:6.0933020000000004;}}}}','no'),(438,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1707960087','no'),(439,'_transient_feed_9bbd59226dc36b9b26cd43f15694c5c3','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:52:\"\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"The latest news about WordPress and the WordPress community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 13 Feb 2024 16:54:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=6.5-beta1-57631\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"image\";a:1:{i:0;a:6:{s:4:\"data\";s:11:\"\n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:3:\"url\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://s.w.org/favicon.ico?2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"width\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"height\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:66:\"\n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 6.5 Beta 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2024/02/wordpress-6-5-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 13 Feb 2024 16:31:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"6.5\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=16854\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:301:\"WordPress 6.5 Beta 1 is now ready for download and testing!\n\nThis version of the WordPress software is under development. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it is recommended you evaluate Beta 1 on a test server and site.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Lauren Stein\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:25233:\"\n<p>WordPress 6.5 Beta 1 is ready for download and testing!</p>\n\n\n\n<p><strong>This beta version of the WordPress software is under development. </strong>Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, you should evaluate Beta 1 on a test server or site.</p>\n\n\n\n<p>Test WordPress 6.5 Beta 1 in four ways:</p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><th>Plugin</th><td>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin on a WordPress install. (Select the “Bleeding edge” channel and “Beta/RC Only” stream).</td></tr><tr><th>Direct Download</th><td>Download the <a href=\"https://wordpress.org/wordpress-6.5-beta1.zip\">Beta 1 version (zip)</a> and install it on a WordPress website.</td></tr><tr><th>Command Line</th><td>Use the following <a href=\"https://make.wordpress.org/cli/\">WP-CLI</a> command:<br><code>wp core update --version=6.5-beta1</code></td></tr><tr><th>WordPress Playground</th><td>Use the <a href=\"https://playground.wordpress.net/#{%20%22preferredVersions%22:%20{%20%22php%22:%20%228.0%22,%20%22wp%22:%20%22beta%22%20},%20%22features%22:%20{%20%22networking%22:%20true%20},%20%22steps%22:%20[%20{%20%22step%22:%20%22login%22,%20%22username%22:%20%22admin%22,%20%22password%22:%20%22password%22%20},%20{%20%22step%22:%20%22importFile%22,%20%22file%22:%20{%20%22resource%22:%20%22url%22,%20%22url%22:%20%22https://raw.githubusercontent.com/wpaccessibility/a11y-theme-unit-test/master/a11y-theme-unit-test-data.xml%22%20}%20},%20{%20%22step%22:%20%22importFile%22,%20%22file%22:%20{%20%22resource%22:%20%22url%22,%20%22url%22:%20%22https://raw.githubusercontent.com/WordPress/theme-test-data/master/themeunittestdata.wordpress.xml%22%20}%20},%20{%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20{%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22query-monitor%22%20},%20%22options%22:%20{%20%22activate%22:%20false%20},%20%22progress%22:%20{%20%22weight%22:%202%20}%20},%20{%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20{%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22create-block-theme%22%20},%20%22progress%22:%20{%20%22weight%22:%202%20}%20},%20{%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20{%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22debug-bar%22%20},%20%22progress%22:%20{%20%22weight%22:%202%20}%20},%20{%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20{%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22health-check%22%20},%20%22progress%22:%20{%20%22weight%22:%202%20}%20},%20{%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20{%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22test-reports%22%20},%20%22progress%22:%20{%20%22weight%22:%202%20}%20},%20{%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20{%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22user-switching%22%20},%20%22progress%22:%20{%20%22weight%22:%202%20}%20}%20]%20}\" data-type=\"link\" data-id=\"https://playground.wordpress.net/#{%20%22preferredVersions%22:%20{%20%22php%22:%20%228.0%22,%20%22wp%22:%20%22beta%22%20},%20%22features%22:%20{%20%22networking%22:%20true%20},%20%22steps%22:%20[%20{%20%22step%22:%20%22login%22,%20%22username%22:%20%22admin%22,%20%22password%22:%20%22password%22%20},%20{%20%22step%22:%20%22importFile%22,%20%22file%22:%20{%20%22resource%22:%20%22url%22,%20%22url%22:%20%22https://raw.githubusercontent.com/wpaccessibility/a11y-theme-unit-test/master/a11y-theme-unit-test-data.xml%22%20}%20},%20{%20%22step%22:%20%22importFile%22,%20%22file%22:%20{%20%22resource%22:%20%22url%22,%20%22url%22:%20%22https://raw.githubusercontent.com/WordPress/theme-test-data/master/themeunittestdata.wordpress.xml%22%20}%20},%20{%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20{%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22query-monitor%22%20},%20%22options%22:%20{%20%22activate%22:%20false%20},%20%22progress%22:%20{%20%22weight%22:%202%20}%20},%20{%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20{%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22create-block-theme%22%20},%20%22progress%22:%20{%20%22weight%22:%202%20}%20},%20{%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20{%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22debug-bar%22%20},%20%22progress%22:%20{%20%22weight%22:%202%20}%20},%20{%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20{%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22health-check%22%20},%20%22progress%22:%20{%20%22weight%22:%202%20}%20},%20{%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20{%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22test-reports%22%20},%20%22progress%22:%20{%20%22weight%22:%202%20}%20},%20{%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20{%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22user-switching%22%20},%20%22progress%22:%20{%20%22weight%22:%202%20}%20}%20]%20}\">6.5 Beta 1 WordPress Playground instance</a> to test the software directly in your browser without the need for a separate site or setup. </td></tr></tbody></table></figure>\n\n\n\n<p>The current target date for the final release of WordPress 6.5 is <strong>March 26, 2024</strong>. Your help testing this version is key to ensuring everything in the release is stable.</p>\n\n\n\n<p>Get an overview of the <a href=\"https://make.wordpress.org/core/6-5/\">6.5 release cycle</a>, and check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-5/\">6.5-related posts</a> in the coming weeks for further details.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How to help test this release</h2>\n\n\n\n<p>Testing for issues is a critical part of developing any software, and it’s a meaningful way for anyone to contribute—whether or not you have experience.</p>\n\n\n\n<p>If you encounter an issue, please share it in the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> of the support forums. If you are comfortable submitting a reproducible bug report, you can do so <a href=\"https://core.trac.wordpress.org/newticket\">via WordPress Trac</a>. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p>Curious about testing releases in general and how to get started? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</p>\n\n\n\n<p>WordPress 6.5 will include many new features previously only available through the Gutenberg plugin. Learn more about Gutenberg updates since WordPress 6.4 in the <a href=\"https://make.wordpress.org/core/tag/gutenberg-new/\">What’s New in Gutenberg</a> posts for versions <a href=\"https://make.wordpress.org/core/2023/10/11/whats-new-in-gutenberg-16-8-11-october/\">16.8</a>, <a href=\"https://make.wordpress.org/core/2023/10/25/whats-new-in-gutenberg-16-9-25-october-2/\">16.9</a>, <a href=\"https://make.wordpress.org/core/2023/11/10/whats-new-in-gutenberg-17-0-9-november/\">17.0</a>, <a href=\"https://make.wordpress.org/core/2023/11/22/whats-new-in-gutenberg-17-1-22-november/\">17.1</a>, <a href=\"https://make.wordpress.org/core/2023/12/06/whats-new-in-gutenberg-17-2-6-december/\">17.2</a>, <a href=\"https://make.wordpress.org/core/2023/12/20/whats-new-in-gutenberg-17-3-20-december/\">17.3</a>, <a href=\"https://make.wordpress.org/core/2024/01/04/whats-new-in-gutenberg-17-4-03-january/\">17.4</a>, <a href=\"https://make.wordpress.org/core/2024/01/17/whats-new-in-gutenberg-17-5-17-january-2024/\">17.5</a>, <a href=\"https://make.wordpress.org/core/2024/01/31/whats-new-in-gutenberg-17-6-31-january/\">17.6</a>, and 17.7 (scheduled for release on February 14).</p>\n\n\n\n<p>WordPress 6.5 Beta 1 contains approximately 681 enhancements and 488 bug fixes for the editor, including about 229 <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=6.5&group=component&max=500&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">tickets for WordPress 6.5 Core</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Vulnerability bounty doubles during Beta 1</h2>\n\n\n\n<p>The WordPress community sponsors a <a href=\"https://make.wordpress.org/security/2024/02/12/welcoming-2024-with-wordpress-6-5-beta-1/\" data-type=\"link\" data-id=\"https://make.wordpress.org/security/2024/02/12/welcoming-2024-with-wordpress-6-5-beta-1/\">monetary reward for reporting new, unreleased security vulnerabilities</a>. This reward doubles during the period between Beta 1 on February 13 and the final Release Candidate (RC) scheduled for March 19. Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the <a href=\"https://hackerone.com/wordpress\">HackerOne page</a> and in the <a href=\"https://wordpress.org/about/security/\">security white paper</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Discover what’s on the way in WordPress 6.5</h2>\n\n\n\n<p>This year’s first major release will add finesse and fine-tuning to how you control your site-building experience, with lots to explore specifically for developers. You’ll find more ways to manage your fonts and styles, notable upgrades to synced patterns, a collection of Site Editor and performance updates to help you get things done, and new ways to leverage design tools in Classic themes.</p>\n\n\n\n<p>WordPress 6.5 will include breakthrough foundational APIs that will start to transform how you use blocks to build memorable experiences. This release invites you to dig into these early-stage frameworks, discover how you’d like to see them evolve, and have an impact on their future improvements and capabilities.</p>\n\n\n\n<p>Excited yet? Keep reading for some highlights.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Meet the Font Library</h3>\n\n\n\n<p>Initially slated for release in WordPress 6.4, the <a href=\"https://core.trac.wordpress.org/ticket/59166\">Font Library</a> is one of those great things worth the wait. It gives you new capabilities for efficiently managing a vital piece of your site’s design—typography—without coding or extra steps.</p>\n\n\n\n<p>With the Font Library, you can handle fonts across your site regardless of your active theme—much like how you manage assets in the Media Library. You can install local fonts or Google Fonts, and it’s easily extensible, with the ability to add your own custom typography collections.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Synced patterns get an upgrade</h3>\n\n\n\n<p><a href=\"https://wordpress.org/documentation/article/reusable-blocks/\">Synced patterns</a> bring efficiency to the design process, letting you make global changes to particular layouts with minimal effort. However, there’s often a need to make contextual changes when it comes to content.</p>\n\n\n\n<p>WordPress 6.5 introduces new enhancements to synced patterns that let you override the content in each specific instance. You can choose what content can be updated within a synced pattern—while maintaining the design and layout you’ve already created. Use it for templated pieces like recipes, testimonials, or case studies that use recurring elements to frame unique content. </p>\n\n\n\n<p>This major release will introduce overrides for the Paragraph, Image, Heading, and Button blocks, with support for more blocks to come as work on synced patterns continues.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Connecting blocks and custom fields or other dynamic content</h3>\n\n\n\n<p>WordPress 6.5 will finally make it possible to <a href=\"https://github.com/WordPress/gutenberg/issues/53300#issuecomment-1938463648\">connect core block attributes to custom fields</a>. This capability lets you use the value of a custom field without creating custom blocks. For example, a digital publication could use custom fields with Paragraph and Image blocks. It could pull information from its individual staff writer profiles to dynamically display on its team page, like headshots and names.</p>\n\n\n\n<p>The <a href=\"https://github.com/WordPress/gutenberg/issues/54536\">Block Bindings API</a> powers this functionality and is designed to be extensible enough for developers to connect blocks to any dynamic content—not just custom fields. If your data is stored elsewhere, you can easily point blocks to that new source with only a few lines of code.</p>\n\n\n\n<p>This is the first step in a larger project to simplify how custom fields and other dynamic content are managed.</p>\n\n\n\n<h3 class=\"wp-block-heading\">The Interactivity API gets baked into Core</h3>\n\n\n\n<p>What started as just a taste in WordPress 6.4 with the <a href=\"https://github.com/WordPress/gutenberg/issues/51132\">lightbox feature for images</a> is officially making its way into Core. The <a href=\"https://make.wordpress.org/core/2023/03/30/proposal-the-interactivity-api-a-better-developer-experience-in-building-interactive-blocks\">Interactivity API</a> is a new framework that offers developers a standardized method to bring interactive front-end experiences, or interactions, to blocks. It aims to simplify the process, with less dependencies on external tooling, while maintaining optimal performance.</p>\n\n\n\n<p>Interactions create engaging user experiences, whether showing new comments or fetching search results without reloading a page, allowing visitors to interact with content in real time, or incorporating effects like countdowns and transitional animations that surprise and delight. Check out <a href=\"https://wpmovies.dev/\">this demo site to get a taste of what this framework can do</a>.</p>\n\n\n\n<p>6.5 is just the beginning of bringing this developer experience into Core. Find out how you can <a href=\"https://github.com/WordPress/gutenberg/issues/56803\">follow along with the work or lend a hand</a> and test more features.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Get more from your revisions</h3>\n\n\n\n<p>Revisions are the markers of progress. For creative projects, they’re also a welcome fallback when you’re working through a new design or concept. This release brings more detail to your style revision history in the Site Editor.</p>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2024/01/22/core-editor-improvement-robust-revisions-in-the-site-editor/\">Style revisions in 6.5</a> present a more detailed picture of your work, with design updates like time stamps, quick summaries that outline changes, and the ability to see a full list of revisions made—not just the previous 100. View revisions from the Style Book to see changes that aren’t reflected in the template you’re working on. Style revisions are also newly available for templates and template parts, giving you a broader view of your site’s changes.</p>\n\n\n\n<p>Expect to see more <a href=\"https://make.wordpress.org/core/2023/07/05/revisions/\">work happening to expand and improve revisions across the WordPress experience</a>. It’s a foundational part of the collaborative editing and workflows focus of the <a href=\"https://make.wordpress.org/core/2023/03/24/phase-3-collaboration/\">Gutenberg project’s Phase 3</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Classic themes can opt into appearance tools</h3>\n\n\n\n<p>As the design experience in Block themes evolves and improves, many of these upgrades are also available for Classic themes. Theme authors can choose to <a href=\"https://core.trac.wordpress.org/ticket/60118\">add support for appearance tools to any Classic theme</a>—even without the use of theme.json. Opting in gives designers and site creators using Classic themes access to a varied set of design options, from <a href=\"https://github.com/WordPress/wordpress-develop/blob/trunk/src/wp-includes/class-wp-theme-json.php#L576\">spacing and border controls to typography and color options</a>.</p>\n\n\n\n<p>Switching themes can feel like a big undertaking, and for folks who aren’t ready to jump into the flexibility of Block themes, these pathways to adoption can help ease that tension. Once a Classic theme gets initial support for appearance tools, more design options will be automatically added as they become available.</p>\n\n\n\n<h3 class=\"wp-block-heading\">More design tools are on the way</h3>\n\n\n\n<p>Each WordPress release brings more thought and attention to the way you can create with the Site Editor. The latest improvements to the design experience help bring your creative vision to life:</p>\n\n\n\n<ul>\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/57005\">Background images for Group blocks get size and repeat support</a>, letting you play with subtle or splashy ways to add visual interest to your layouts. </li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/56897\">Aspect ratio support for the Cover block</a> gives you more control over your Cover block images’ shape and size. </li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/57103\">Shadow support added to more blocks</a> to help create layouts with visual depth or add a little personality to your design.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Site Editor updates to streamline your workflow</h3>\n\n\n\n<p>Bring ease and simplicity to your site-building process with the latest advancements to the Site Editor’s capabilities, from important interface improvements to upgraded tools.</p>\n\n\n\n<p>Going beyond Group blocks, you can now <a href=\"https://github.com/WordPress/gutenberg/pull/54426\">rename every block in the List View</a>. You can also <a href=\"https://github.com/WordPress/gutenberg/pull/55188\">rename</a> or <a href=\"https://github.com/WordPress/gutenberg/pull/55292\">duplicate</a> individual patterns to help keep them organized. Other notable UI improvements add access to your block settings with a <a href=\"https://github.com/WordPress/gutenberg/pull/50273\">quick right-click from List View</a>, adjust preferences with <a href=\"https://github.com/WordPress/gutenberg/issues/56510\">consolidated settings in the Editor preferences panel</a>, and the ability to use the <a href=\"https://github.com/WordPress/gutenberg/pull/56295\">block toolbar on hover when you’re in Distraction Free mode</a>.</p>\n\n\n\n<p>You’ll also notice a cleaner and more unified link-building experience that <a href=\"https://github.com/WordPress/gutenberg/issues/50891\">improves link controls</a>, making it easier to create and manage links in various blocks.</p>\n\n\n\n<p>This release has a bounty of <a href=\"https://github.com/WordPress/gutenberg/issues/33683\">drag-and-drop enhancements</a> to make your editing experience feel more intuitive. You’ll notice helpful visual adjustments, like <a href=\"https://github.com/WordPress/gutenberg/pull/56625\">displaced items in List View</a> when you drag them around to reorganize. You’ll also find that you can <a href=\"https://github.com/WordPress/gutenberg/pull/56070\">drag and drop anywhere you’d like</a> in the Editor, from the very beginning to the end of you workspace.</p>\n\n\n\n<h3 class=\"wp-block-heading\">New Data Views in the Site Editor</h3>\n\n\n\n<p>Every piece of your site comes with a library of information and data. Organizing it, finding what you need, and making informed changes should be as effortless as your site editing experience.</p>\n\n\n\n<p>WordPress 6.5 includes <a href=\"https://github.com/WordPress/gutenberg/issues/55083\">data views</a> for pages, templates, patterns, and template parts. You can view data in a table or grid view, with a new UI for toggling fields and making bulk changes. It’s a refreshing and feature-rich experience that leads the way for the upcoming <a href=\"https://make.wordpress.org/core/2023/07/12/admin-design/\">Admin Redesign project</a> on the WordPress roadmap.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Plugin dependencies improve the plugin experience</h3>\n\n\n\n<p>WordPress 6.5 improves <a href=\"https://core.trac.wordpress.org/changeset/57545\">how users manage plugins that require other plugins</a>. Plugin authors can supply a new <code>Requires Plugins</code> header with a comma-separated list of required plugin slugs from the WordPress.org Plugins repository, which will present users with links to install and activate those plugins first.</p>\n\n\n\n<p>Required plugins must remain active and installed for as long as plugins that require them are active and installed. If any required plugins become inactive or uninstalled, the plugins that require them will be automatically deactivated.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Big performance gains across the editing experience and more</h3>\n\n\n\n<p>WordPress 6.5 contains more than 110 performance-related updates, including an impressive <a href=\"https://github.com/WordPress/gutenberg/issues/57935\">increase in speed and efficiency</a> across both the Post Editor and Site Editor. Loading is over two times faster than in 6.4, with input processing speed increasing to nearly four times faster than the previous release. You’ll also find yourself navigating through the Site Editor six times faster than before.</p>\n\n\n\n<p>The loading time for translated sites gets a boost due to <a href=\"https://make.wordpress.org/core/2023/11/08/merging-performant-translations-into-core/\">merging Performant Translations into Core</a>. This greatly improves the load time of translated sites across the board by loading multiple locales simultaneously, making switching between them a faster and more enjoyable experience.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Accessibility highlights</h3>\n\n\n\n<p>Ensuring that WordPress remains highly accessible is crucial for its success and fulfilling the mission of democratizing publishing. With this in mind, 6.5 will ship more than 65 updates to improve accessibility throughout the platform. These updates include fixes to contrast settings, cursor focus, submenus, positioning of elements, and more. For more information on specific tickets and improvements, please visit <a href=\"https://core.trac.wordpress.org/query?status=closed&focuses=~accessibility&milestone=6.5&group=component&max=500&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">WordPress Trac</a> and GitHub for Gutenberg.</p>\n\n\n\n<p><strong><em>Please note that features highlighted in this post are subject to change before the final release.</em></strong></p>\n\n\n\n<h3 class=\"wp-block-heading\">Just for you: a Beta 1 haiku</h3>\n\n\n\n<p>Freedom to publish<br>Blocks, fonts, patterns all around<br>Design as you wish</p>\n\n\n\n<p class=\"is-style-default\"><em>Thank you to the following contributors for collaborating on this post: <a href=\"https://profiles.wordpress.org/dansoschin/\">@dansoschin</a>, <em><a href=\'https://profiles.wordpress.org/rajinsharwar/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rajinsharwar</a>,</em> <a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>, <a href=\'https://profiles.wordpress.org/courane01/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>courane01</a>, <a href=\'https://profiles.wordpress.org/hellosatya/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>hellosatya</a>, <a href=\'https://profiles.wordpress.org/bph/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>bph</a>, <a href=\'https://profiles.wordpress.org/greenshady/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>greenshady</a>, <a href=\'https://profiles.wordpress.org/richtabor/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>richtabor</a>, <a href=\'https://profiles.wordpress.org/priethor/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>priethor</a>, <a href=\'https://profiles.wordpress.org/annezazu/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>annezazu</a>, <a href=\'https://profiles.wordpress.org/joedolson/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>joedolson</a>, <a href=\'https://profiles.wordpress.org/santosguillamot/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>santosguillamot</a>, <a href=\'https://profiles.wordpress.org/cwhitmore/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cwhitmore</a>, <a href=\'https://profiles.wordpress.org/costdev/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>costdev</a>, <a href=\'https://profiles.wordpress.org/ehtis/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>ehtis</a>, <a href=\'https://profiles.wordpress.org/huzaifaalmesbah/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>huzaifaalmesbah</a>, <a href=\'https://profiles.wordpress.org/audrasjb/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>audrasjb</a>, <a href=\'https://profiles.wordpress.org/get_dave/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>get_dave</a>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"16854\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:72:\"\n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"People of WordPress: Sunita Rai\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://wordpress.org/news/2024/02/people-of-wordpress-sunita-rai/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Feb 2024 20:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:6:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Features\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:10:\"Interviews\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:9:\"HeroPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:5:\"Nepal\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:19:\"People of WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=16761\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"This People of WordPress features Sunita Rai, a content marketer and volunteer translator from Nepal.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Abha Thakor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:13528:\"\n<p class=\"has-darker-grey-color has-off-white-2-background-color has-text-color has-background has-link-color wp-elements-9b663d0d5861b05380bcaca160ef01c8\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--60)\">The <em>People of WordPress</em> series shares inspiring stories of how people’s lives can change for the better through WordPress and its global community of contributors.</p>\n\n\n\n<p>In this edition, we feature Sunita Rai, a content marketer originally from a remote village in the hills of Nepal. Sunita’s journey to academic and professional success, with help from the WordPress community, will inspire many.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img fetchpriority=\"high\" decoding=\"async\" width=\"1024\" height=\"640\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/01/sunita-rai-featured-img.jpg?resize=1024%2C640&ssl=1\" alt=\"Sunita Rai at WordCamp Asia\" class=\"wp-image-16707\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/01/sunita-rai-featured-img.jpg?resize=1024%2C640&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/01/sunita-rai-featured-img.jpg?resize=300%2C188&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/01/sunita-rai-featured-img.jpg?resize=768%2C480&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/01/sunita-rai-featured-img.jpg?resize=1536%2C960&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/01/sunita-rai-featured-img.jpg?w=1920&ssl=1 1920w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading\">A strong desire to acquire knowledge</h2>\n\n\n\n<p>Schools first opened in Sunita’s village in the late 1970s, but most locals, including her parents, had neither the funds nor opportunities to complete their education. Over the years, they realized that an education could open doors for their children. Sunita’s parents vowed to ensure she received a full education, no matter the costs or hardships. </p>\n\n\n\n<p>Her father worked as a seasonal laborer in India and ensured Sunita and her siblings could go to school with the proper supplies. Her mother cared for everything at home, both the family and the farm. Money was scarce, but determination was abundant.</p>\n\n\n\n<p>To finish high school, Sunita moved in with her aunt in a nearby city. After graduation, she worked as a teacher. One of the biggest challenges was speaking and writing in English, a requirement for her first job teaching at a private English-language school. Her own education had used Nepali as the language of instruction. Fortunately, she enjoyed writing in English and became more fluent with practice. She discovered that she would always want a career where she could continue learning.</p>\n\n\n\n<p>On top of a demanding teaching schedule, Sunita continued her studies at a college affiliated with Tribhuvan University. She knew that doing both would be difficult, but she wanted to be able to support her family while pursuing ambitious life and career goals. Earning a bachelor’s degree was a hugely motivating achievement that inspired her to begin a master’s degree in sociology.</p>\n\n\n\n<p>Teaching for more than five years had been a full-time commitment, with hours of extra work at home. Preparing lessons, grading assignments, and handling exams made it difficult for her to find the time needed for her own studies. Sunita decided she needed more time for her coursework, so she left her teaching job and sought work that would allow her to focus on her studies while still earning money.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"768\" height=\"1024\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/01/sunita-rai-mardi-base-camp-trekking-nepal-nov2023.jpg?resize=768%2C1024&ssl=1\" alt=\"Sunita at basecamp Trekking Nepal in November 2023\" class=\"wp-image-16709\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/01/sunita-rai-mardi-base-camp-trekking-nepal-nov2023.jpg?resize=768%2C1024&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/01/sunita-rai-mardi-base-camp-trekking-nepal-nov2023.jpg?resize=225%2C300&ssl=1 225w, https://i0.wp.com/wordpress.org/news/files/2024/01/sunita-rai-mardi-base-camp-trekking-nepal-nov2023.jpg?w=900&ssl=1 900w\" sizes=\"(max-width: 768px) 100vw, 768px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading\">From teaching to writing to WordPress</h2>\n\n\n\n<p>After an extensive search, Sunita landed a content writing job at a successful WordPress development firm in Nepal. Her salary as a content writer wasn’t high, but it grew steadily over time. She would later gain some supplementary freelance work after presenting at a WordCamp. She was able to help support her family as she grew in her career, and now she could do more.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>I’m fortunate to have had the education that gave me the capacity to aspire, get into a WordPress job, meet people from around the world, and tell my story!</p>\n<cite>Sunita</cite></blockquote>\n\n\n\n<p>Early in her career, especially in her early days with WordPress, Sunita benefited from the support of excellent mentors who played pivotal roles in her career development, nurturing her skills in content writing, SEO, and general confidence. Now, she has mentored other content writers and advocates for mentoring programs.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1024\" height=\"672\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/01/speaker-moment-wrodcampasia2023-sunita-rai.jpg?resize=1024%2C672&ssl=1\" alt=\"Sunita speaking at WordCamp Asia 2023\" class=\"wp-image-16706\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/01/speaker-moment-wrodcampasia2023-sunita-rai.jpg?resize=1024%2C672&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/01/speaker-moment-wrodcampasia2023-sunita-rai.jpg?resize=300%2C197&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/01/speaker-moment-wrodcampasia2023-sunita-rai.jpg?resize=768%2C504&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/01/speaker-moment-wrodcampasia2023-sunita-rai.jpg?w=1200&ssl=1 1200w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Sunita has engaged in WordCamps, sharing her wealth of knowledge and experiences. Her first WordCamp was <a href=\"https://nepal.wordcamp.org/2015/\">WordCamp Nepal 2015</a>, a pivotal moment where she connected with WordPress enthusiasts from various Nepalese and international companies. She experienced a welcoming environment that inspired her to become involved in the WordPress community. </p>\n\n\n\n<p>At <a href=\"https://kathmandu.wordcamp.org/2016\">WordCamp Kathmandu in 2016</a>, Sunita delivered a talk on <a href=\"https://wordpress.tv/2016/12/01/sunita-rai-seo-copywriting-for-wordpress/\">SEO Copywriting for WordPress</a>, marking a significant milestone in her journey. She later joined a panel discussion titled “Girls in WordPress – Story, Experience, Opportunity, and Career” at <a href=\"https://biratnagar.wordcamp.org/2018/\">WordCamp Biratnagar 2018</a>.</p>\n\n\n\n<p>Most recently, Sunita helped organize speakers at WordCamp Kathmandu <a href=\"https://kathmandu.wordcamp.org/2022/\">2022</a> and <a href=\"https://kathmandu.wordcamp.org/2023/\">2023</a>, and also spoke outside her home country at <a href=\"https://asia.wordcamp.org/2023\">WordCamp Asia 2023</a> and <a href=\"https://sylhet.wordcamp.org/2023/\">WordCamp Sylhet, Bangladesh 2023</a>. These events and her <a href=\"https://wordpress.tv/?s=sunita%20rai\">talks</a>, helped her grow stronger connections within the global WordPress community and encourage more women speakers.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"900\" height=\"675\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/01/sunita-with-wordpress-bangladesh-members.jpg?resize=900%2C675&ssl=1\" alt=\"Sunita with members from the WordPress Bangladesh community\" class=\"wp-image-16711\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/01/sunita-with-wordpress-bangladesh-members.jpg?w=900&ssl=1 900w, https://i0.wp.com/wordpress.org/news/files/2024/01/sunita-with-wordpress-bangladesh-members.jpg?resize=300%2C225&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/01/sunita-with-wordpress-bangladesh-members.jpg?resize=768%2C576&ssl=1 768w\" sizes=\"(max-width: 900px) 100vw, 900px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Translating WordPress and empowering others</h2>\n\n\n\n<p>Reading and writing in your own language is powerful. For Sunita, translation is crucial in bridging gaps and granting access to those with limited platforms to express and share their passions. When she discovered that she could translate WordPress into Nepali, she joined the many other volunteers on the <a href=\"https://make.wordpress.org/polyglots/\">Polyglots team</a>. </p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<h2 class=\"wp-block-heading\">“Translating WordPress to Nepali means empowering my people to access the freedom that WordPress provides.” </h2>\n<cite>Sunita Rai</cite></blockquote>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"1024\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/01/sunita-with-3-other-female-organizers-wcktm2023.jpg?resize=768%2C1024&ssl=1\" alt=\"Sunita with 3 Female Oganizers WordCamp Kathmandu 2023\" class=\"wp-image-16710\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/01/sunita-with-3-other-female-organizers-wcktm2023.jpg?resize=768%2C1024&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/01/sunita-with-3-other-female-organizers-wcktm2023.jpg?resize=225%2C300&ssl=1 225w, https://i0.wp.com/wordpress.org/news/files/2024/01/sunita-with-3-other-female-organizers-wcktm2023.jpg?w=900&ssl=1 900w\" sizes=\"(max-width: 768px) 100vw, 768px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Sunita emphasizes that coding skills are not a prerequisite for contribution: “The potential impact you can have on the WordPress community is enormous, across areas from local meetups and WordCamps to testing and translating.”</p>\n\n\n\n<p>She highlights her own experience as a potential path for others. “WordPress has had a profound impact on my life… the freedom to work on my own time, to be financially independent, and to overcome my inferiority complex.”</p>\n\n\n\n<p>Her advice to anyone getting started with WordPress: “Get involved in the WordPress community and contribute as early as possible. By participating, you will better understand the project and its people, so you can advocate WordPress in a better way. It will offer you a sense of satisfaction or meaning as well as success in your career.”</p>\n\n\n\n<h2 class=\"wp-block-heading\">Share the stories</h2>\n\n\n\n<p>Help share these open source contributor stories and grow the community. Meet more WordPressers in the <a href=\"https://wordpress.org/news/category/newsletter/interviews/\">People of WordPress series</a>, or continue your own WordPress journey at <a href=\"https://learn.wordpress.org/\">Learn.WordPress.org</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p><em>Thanks to <a href=\"https://profiles.wordpress.org/sunitarai/\">Sunita Rai </a>for sharing about her adventures in WordPress, and to <a href=\"https://profiles.wordpress.org/webcommsat/\" target=\"_blank\" rel=\"noreferrer noopener\">Abha Thakor</a>, <a href=\"https://profiles.wordpress.org/nalininonstopnewsuk/\" target=\"_blank\" rel=\"noreferrer noopener\">Nalini Thakor</a>, <a href=\"https://profiles.wordpress.org/webtechpooja/\">Pooja Derashri,</a> <a href=\"https://profiles.wordpress.org/meher/\" target=\"_blank\" rel=\"noreferrer noopener\">Meher Bala</a>, <em><a href=\"https://profiles.wordpress.org/eidolonnight/\" target=\"_blank\" rel=\"noreferrer noopener\">Nicholas Garofalo</a>,</em> <a href=\"https://profiles.wordpress.org/cbringmann/\" target=\"_blank\" rel=\"noreferrer noopener\">Chloe Bringmann</a>, <a href=\"https://profiles.wordpress.org/majaloncar/\">Maja Loncar</a> and <a href=\"https://profiles.wordpress.org/marybaum/\" target=\"_blank\" rel=\"noreferrer noopener\">Mary Baum</a> for interviews, editorial, images, and reviews.</em></p>\n\n\n\n<div class=\"wp-block-media-text is-stacked-on-mobile is-vertically-aligned-center\" style=\"grid-template-columns:29% auto\"><figure class=\"wp-block-media-text__media\"><img loading=\"lazy\" decoding=\"async\" width=\"180\" height=\"135\" src=\"https://i0.wp.com/wordpress.org/news/files/2020/03/heropress_logo_180.png?resize=180%2C135&ssl=1\" alt=\"HeroPress logo\" class=\"wp-image-8409 size-full\" data-recalc-dims=\"1\" /></figure><div class=\"wp-block-media-text__content\">\n<p class=\"has-small-font-size\"><em>This People of WordPress feature is inspired by an essay originally published on </em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>, a community initiative created by Topher DeRosia. It highlights people in the WordPress community who have overcome barriers and whose stories might otherwise go unheard. </em>#HeroPress </p>\n</div></div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"16761\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:60:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"The Month in WordPress – January 2024\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2024/02/the-month-in-wordpress-january-2024/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 06 Feb 2024 17:45:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:18:\"month in wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=16837\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:326:\"January kicked off with big plans for the WordPress project in the year ahead. Work on the WordPress 6.5 release is underway, with Beta 1 scheduled for next week and early testing opportunities. Let’s catch up on all the exciting updates from the past month. Looking at 2024 In a recent episode of WP Briefing, […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Reyes Martínez\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:14584:\"\n<p>January kicked off with big plans for the WordPress project in the year ahead. Work on the WordPress 6.5 release is underway, with Beta 1 scheduled for next week and early testing opportunities. Let’s catch up on all the exciting updates from the past month.</p>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Looking at 2024</h2>\n\n\n\n<p><a href=\"https://wordpress.org/news/2024/01/episode-70-a-look-ahead-at-wordpress-in-2024/\">In a recent episode of WP Briefing</a>, WordPress Executive Director Josepha Haden Chomphosy discusses some of the <a href=\"https://make.wordpress.org/project/2024/01/19/big-picture-goals-2024/\">big-picture goals for WordPress this year</a>. The main highlights include <a href=\"https://make.wordpress.org/core/2023/07/03/real-time-collaboration/\">Phase 3 of the WordPress roadmap</a>, which involves collaborative editing and significant updates to writing and design workflows. Another major focus is <a href=\"https://wordpress.org/data-liberation/\">Data Liberation</a>, a new initiative introduced at <a href=\"https://wordpress.org/state-of-the-word/\">State of the Word 2023</a> with the ultimate goal of creating a more open web.</p>\n\n\n\n<figure class=\"wp-block-image size-large is-resized\"><a href=\"https://wordpress.org/news/2024/01/data-liberation-in-2024/\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/02/Data-liberation-slide-1.png?resize=1024%2C576&ssl=1\" alt=\"Data Liberation\" class=\"wp-image-16840\" style=\"width:680px;height:auto\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/02/Data-liberation-slide-1.png?resize=1024%2C576&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/02/Data-liberation-slide-1.png?resize=300%2C169&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/02/Data-liberation-slide-1.png?resize=768%2C432&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/02/Data-liberation-slide-1.png?resize=1536%2C864&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/02/Data-liberation-slide-1.png?w=1920&ssl=1 1920w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></a><figcaption class=\"wp-element-caption\"><em><a href=\"https://wordpress.org/news/2024/01/data-liberation-in-2024/\">Learn more about Data Liberation in 2024</a></em>.</figcaption></figure>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 6.5 is on its way</h2>\n\n\n\n<p>Preparations for WordPress 6.5, the first major release of 2024, are in full swing. <a href=\"https://make.wordpress.org/core/2024/01/18/wordpress-6-5-release-squad-formation/\">The release squad was announced</a> last month, and the next milestone will be Beta 1, <a href=\"https://make.wordpress.org/core/6-5/\">scheduled</a> for February 13.</p>\n\n\n\n<p>Curious about what version 6.5 will bring? <a href=\"https://make.wordpress.org/core/2024/01/17/hallway-hangout-lets-explore-wordpress-6-5-recap/\">Check out this Hallway Hangout recap</a> to learn about some upcoming features. You can also participate in <a href=\"https://make.wordpress.org/test/2024/01/13/early-opportunities-to-test-wordpress-6-5/\">this early testing opportunity</a> to experience them first-hand and provide feedback.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size is-layout-flow wp-block-quote-is-layout-flow\">\n<p>Until 6.5 is released, you can <a href=\"https://wordpress.org/news/2024/01/wordpress-6-4-3-maintenance-and-security-release/\">upgrade to WordPress 6.4.3</a>. This version includes numerous security and maintenance updates.</p>\n</blockquote>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">New in the Gutenberg plugin</h2>\n\n\n\n<p>Three new versions of Gutenberg shipped in January:</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2024/01/04/whats-new-in-gutenberg-17-4-03-january/\"><strong>Gutenberg 17.4</strong></a> featured improvements to List View and Style Revisions, more flexibility for background images in Group blocks, and significant advancements to the Data Views experience for the Templates page.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/01/17/whats-new-in-gutenberg-17-5-17-january-2024/\"><strong>Gutenberg 17.5</strong></a> made good progress in combining the Post Editor and Site Editor by introducing a shared preference panel, among other highlights.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/01/31/whats-new-in-gutenberg-17-6-31-january/\"><strong>Gutenberg 17.6</strong></a> included the ability to extend allowed blocks within a parent block, along with several improvements to Block Hooks, the Data Views experience, and the Site and Post Editor unification.</li>\n</ul>\n\n\n\n<div class=\"wp-block-media-text is-stacked-on-mobile has-off-white-2-background-color has-background\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;grid-template-columns:60% auto\"><figure class=\"wp-block-media-text__media\"><a href=\"https://make.wordpress.org/core/2024/01/22/core-editor-improvement-robust-revisions-in-the-site-editor/\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/02/Robust-Revisions-in-the-Site-Editor-Featured-Image.png?resize=1024%2C576&ssl=1\" alt=\"Blue decorative background with dots, the WordPress logo, and text "Core Editor Improvement: Robust Revisions in the Site Editor."\" class=\"wp-image-16842 size-full\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2024/02/Robust-Revisions-in-the-Site-Editor-Featured-Image.png?resize=1024%2C576&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2024/02/Robust-Revisions-in-the-Site-Editor-Featured-Image.png?resize=300%2C169&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2024/02/Robust-Revisions-in-the-Site-Editor-Featured-Image.png?resize=768%2C432&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2024/02/Robust-Revisions-in-the-Site-Editor-Featured-Image.png?resize=1536%2C864&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2024/02/Robust-Revisions-in-the-Site-Editor-Featured-Image.png?resize=2048%2C1152&ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></a></figure><div class=\"wp-block-media-text__content\">\n<p style=\"padding-top:0;padding-bottom:0\">WordPress 6.5 is slated to include some impactful changes and new features to current revision functionality in the Site Editor. <a href=\"https://make.wordpress.org/core/2024/01/22/core-editor-improvement-robust-revisions-in-the-site-editor/\">Read more »</a></p>\n</div></div>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Team updates</h2>\n\n\n\n<ul>\n<li>The <a href=\"https://make.wordpress.org/community/2024/01/12/call-for-mentees-mentors-cohort-2/\">second cohort of the WordPress Contributor Mentorship Program</a> is open for applications. This program aims to connect experienced WordPress contributors with newcomers or those looking to enhance their skills within the community. Both mentees and mentors can apply by February 7, 2024.</li>\n\n\n\n<li>If you are a part of the LGBTQ+ community and participate in the Mentorship Program, you may be interested in this <a href=\"https://lgbtqpress.com/2024/01/announcing-the-first-lgbtqpress-empowerment-grant/\">LGBTQ+Press Empowerment Grant</a>.</li>\n\n\n\n<li>The <a href=\"https://make.wordpress.org/community/2024/01/09/2024-global-sponsors-announcement/\">Global Community Sponsors for 2024</a> have been announced.</li>\n\n\n\n<li>The Community team <a href=\"https://make.wordpress.org/community/2024/01/31/reflecting-on-nextgen-and-looking-ahead/\">reflected on the “NextGen Events” pilot project</a> and recommended adopting an expanded scope for WordPress events, encouraging a broad range of innovative event formats.</li>\n\n\n\n<li>In 2023, the WordPress Core team shipped 2211 commits, and 472 people made their first contribution to WordPress Core. <a href=\"https://make.wordpress.org/core/2024/01/11/a-year-in-core-2023/\">Explore more stats in this report</a>.</li>\n\n\n\n<li>The Performance team <a href=\"https://make.wordpress.org/performance/roadmap-2024/\">released a roadmap</a> with this year’s focus areas.</li>\n\n\n\n<li>Are you looking to broaden your knowledge and improve your WordPress skills? <a href=\"https://make.wordpress.org/updates/2024/01/08/whats-new-on-learn-wordpress-in-december-2023/\">Check out what’s new on Learn WordPress</a>.</li>\n\n\n\n<li>Catch up on all the news in the WordPress development space with the latest edition of <a href=\"https://developer.wordpress.org/news/2024/01/10/whats-new-for-developers-january-2024/\">What’s new for developers?</a></li>\n</ul>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<a class=\"wp-block-jetpack-podcast-player jetpack-podcast-player__direct-link\" href=\"https://wordpress.org/news/2023/10/episode-64-patterns-in-wordpress/\">https://wordpress.org/news/2023/10/episode-64-patterns-in-wordpress/</a>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Requests for feedback and testing</h2>\n\n\n\n<ul>\n<li>Community team members <a href=\"https://make.wordpress.org/community/2024/01/22/proposal-pilot-program-to-test-gatherpress-on-the-wordpress-org-network-as-a-meetup-alternative/\">proposed a pilot program to test GatherPress</a>, a community-developed plugin, as a WordPress.org event management tool.</li>\n\n\n\n<li>New <a href=\"https://make.wordpress.org/project/2024/01/24/proposal-updates-to-five-for-the-future-from-the-community-summit/\">Five for the Future program enhancements</a> were suggested based on insights gathered during the WordPress Community Summit. You can help improve the program by sharing your feedback before February 7.</li>\n\n\n\n<li>A new proposal recommends the <a href=\"https://make.wordpress.org/core/2024/01/29/proposal-whats-next-for-the-outreach-program/\">next steps for the Full Site Editing (FSE) Outreach Program</a>. Input is welcome by February 12.</li>\n\n\n\n<li>Members of the Community team are requesting feedback and ideas to <a href=\"https://make.wordpress.org/community/2024/01/16/share-your-feedback-about-the-new-wordpress-events-page/\">help shape the future of the new WordPress Events page</a>.</li>\n</ul>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress events</h2>\n\n\n\n<ul>\n<li><img src=\"https://s.w.org/images/core/emoji/15.0.3/72x72/1f1f9-1f1fc.png\" alt=\"🇹🇼\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> WordCamp Asia 2024 is just around the corner! Organizers announced a <a href=\"https://asia.wordcamp.org/2024/schedule/\">tentative schedule</a> and a <a href=\"https://asia.wordcamp.org/2024/wordcamp-asia-diversity-scholarship/\">Diversity Scholarship</a> to fund the attendance of two active project contributors to their first flagship WordCamp.</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/15.0.3/72x72/1f1ea-1f1fa.png\" alt=\"🇪🇺\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> Tickets for WordCamp Europe 2024 <a href=\"https://europe.wordcamp.org/2024/tickets/\">are on sale</a>. The organizing team is <a href=\"https://europe.wordcamp.org/2024/volunteers/call-for-volunteers/\">looking for volunteers</a> to help make the event in Torino, Italy, memorable.</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/15.0.3/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://us.wordcamp.org/2024/\">WordCamp US 2024</a> shared details of the event to be held September 17-20 in Portland, Oregon. This WordCamp will have a strong focus on community collaboration with two Contributor Days.</li>\n\n\n\n<li>Check out these other WordPress events happening soon:\n<ul>\n<li><img src=\"https://s.w.org/images/core/emoji/15.0.3/72x72/1f4f8.png\" alt=\"📸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://events.wordpress.org/kerala/2024/photo-festival/\">WordPress Photo Festival</a> (online) on February 3-10</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/15.0.3/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://phoenix.wordcamp.org/2024/\">WordCamp Phoenix</a>, USA, on February 9-10</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/15.0.3/72x72/1f1ee-1f1f3.png\" alt=\"🇮🇳\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://pune.wordcamp.org/2024/\">WordCamp Pune</a>, India, on February 17</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/15.0.3/72x72/1f1ef-1f1f5.png\" alt=\"🇯🇵\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://kansai.wordcamp.org/2024/\">WordCamp Kansai</a>, Japan, on February 23-24</li>\n</ul>\n</li>\n</ul>\n\n\n\n<div style=\"height:1px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p><em><strong>Have a story we should include in the next issue of The Month in WordPress? Fill out </strong></em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><strong><em>this quick form</em></strong></a><em><strong> to let us know.</strong></em></p>\n\n\n\n<p><em>Thanks to </em><a href=\"https://profiles.wordpress.org/hellosatya/\"><em>Satyam Vishwakarma (Satya)</em></a><em>, </em><a href=\"https://profiles.wordpress.org/ninianepress/\"><em>Jenni McKinnon</em></a><em>, and </em><a href=\"https://profiles.wordpress.org/laurlittle/\"><em>Lauren Stein</em></a><em> for contributing to this edition of The Month in WordPress.</em></p>\n\n\n\n<div class=\"wp-block-group is-layout-constrained wp-block-group-is-layout-constrained\">\n<h3 class=\"wp-block-heading\">Subscribe to WordPress News</h3>\n\n\n\n<p>Join other subscribers and receive WordPress news directly in your inbox.</p>\n\n\n<div class=\"wp-block-jetpack-subscriptions__supports-newline is-style-split wp-block-jetpack-subscriptions\">\n <div>\n <div>\n <div>\n <p >\n <a href=\"https://wordpress.org/news/?post_type=post&p=16837\" style=\"font-size: 16px;padding: 15px 23px 15px 23px;margin: 0px; margin-left: 10px;border-radius: 0px;border-width: 1px; background-color: #113AF5; color: #FFFFFF; text-decoration: none; white-space: nowrap; margin-left: 0\">Subscribe</a>\n </p>\n </div>\n </div>\n </div>\n </div></div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"16837\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:61:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n\n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"WP Briefing: Episode 72: Why Your Website Matters\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2024/02/episode-72-why-your-website-matters/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Feb 2024 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=16810\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:224:\"In the latest WordPress Briefing, Josepha Haden Chomphosy explores the reasons for choosing a website supporting your digital presence, covering topics from trust-building to professionalism to owning a unique online domain.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:51:\"https://wordpress.org/news/files/2024/02/WPB072.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:10397:\"\n<p>In the latest WordPress Briefing, Josepha Haden Chomphosy explores the reasons for choosing a website supporting your digital presence, covering topics from trust-building to professionalism to owning a unique online domain.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Host: <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a><br>Editor: <a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo: <a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br>Production: <a href=\"https://profiles.wordpress.org/bjmcsherry/\">Brett McSherry</a><br>Song: Fearless First by Kevin MacLeod</p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/course/getting-started-with-wordpress-get-setup/\">Getting Started With WordPress: Get Set Up</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/course/creating-a-4-page-business-website/\">Creating a 4-page business website</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/download/\">Download WordPress 6.4.3</a></li>\n\n\n\n<li><strong>Small List of Big Things</strong>\n<ul>\n<li><a href=\"https://make.wordpress.org/test/2024/01/13/early-opportunities-to-test-wordpress-6-5/\" target=\"_blank\" rel=\"noreferrer noopener\">Early Opportunities to Test WordPress 6.5</a> </li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2024/01/12/call-for-mentees-mentors-cohort-2/\" target=\"_blank\" rel=\"noreferrer noopener\">Call for Mentees & Mentors: Contributor Mentorship Program Cohort #2</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2024/01/data-liberation-in-2024/\" target=\"_blank\" rel=\"noreferrer noopener\">Data Liberation in 2024</a> </li>\n\n\n\n<li><a href=\"https://asia.wordcamp.org/2024/tickets/\">WordCamp Asia 2024 Tickets</a></li>\n</ul>\n</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Transcripts</h2>\n\n\n\n<span id=\"more-16810\"></span>\n\n\n\n<p>[00:00:00] <strong>Josepha:</strong> Hello, everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I’m your host, Josepha Haden Chomphosy. Here we go. <br><br>[00:00:29] (Intro music) </p>\n\n\n\n<p>[00:00:39] <strong>Josepha:</strong> My friends, it is February. For many of us, that means we’ve already fallen off track on our New Year’s resolutions, but not you, intrepid WordPresser, especially you, newly found WordPresser who is still on the fence about needing a website, and I get it. It seems like a lot of work, and even if you shoot for the moon, it’s not clear which star you’ll land on.</p>\n\n\n\n<p>[00:01:01] <strong>Josepha:</strong> It feels easier to open a Facebook page or launch a new Instagram account, get a channel going on YouTube, but here’s a secret they won’t tell you. It’s just as much work. And even if you crack the code on today’s algorithm, you don’t own anything you build there, not the content, not the audience. So if you’re gonna make the effort to build anyway, why not build it in your space? It can be scary to take that kind of time.</p>\n\n\n\n<p>So, if you’re not convinced yet, let me give you a few other reasons why you should choose a website over some social media thing. I’ve got a list here, and they build on one another, really. But the first thing is a website covers the five W’s: who, what, when, where, and why. It’s basic information, I know, but it’s what people need to know when they’re looking at your product or company.</p>\n\n\n\n<p>The phone book, whether you had the yellow pages or the white pages, those are long gone, but that doesn’t mean that the need for that information is gone. When people are researching the right service or product to solve their problems, they’re getting online to do it. So you should be there, and your information should be easy to find. </p>\n\n\n\n<p>[00:02:12] <strong>Josepha:</strong> Which brings us right into item number two.</p>\n\n\n\n<p>When people know these things about you when, they know who you are, what you’re doing, when to get to you, where you are, why you’re doing it. Having that information increases trust and makes you look more professional, and I’ve seen that be counterintuitive for folks. I mean, it’s a digital asset, after all. But overwhelmingly, we see consumers who are well-researched by the time they get to us. They’ve looked at all of your competitors already and checked to see if you are a human, if you share some of their values, and how you manage waste or, complaints, or praise.</p>\n\n\n\n<p>You can never know who is looking for you. So, making it all as clear and easy to see as possible makes you more trustworthy. And the more trustworthy and professional you look, then number three, the more chances you have to bring in good leads and contacts, which can turn into sales or, at the very least, a sales opportunity. And it’s important to have good leads and contacts. Right?</p>\n\n\n\n<p>[00:03:17] <strong>Josepha:</strong> If you have your information out there on a website, then people can sort of prequalify themselves. If they already have a sense for whether they are a good fit for your product or service, then fingers crossed. You can spend most of your time with people who are making serious inquiries.</p>\n\n\n\n<p>And coming in at four, you can do this any way you want with words or art, NFTs of your latest work, or video tutorials. It lets you tell your story in ways that other mediums necessarily have to limit.</p>\n\n\n\n<p>And, importantly, you can still do those things elsewhere. Right? But having essentially a digital home online that is yours, keep your stuff online in a place you own and operate, then draw people to you through those other channels. Make it all work together.</p>\n\n\n\n<p>[00:04:07] <strong>Josepha:</strong> I have a fifth thing, mostly because I like lists of either three or five, and the list I had was four, but also because it’s true. Number five is still true. </p>\n\n\n\n<p>Getting domains is fun. You’ve got something to share with the world, and your domain name is title and, story, and first impression. And isn’t it great instead of having to say you can find me at LinkedIn, slash in slash, etc.?</p>\n\n\n\n<p>You can say something quick and memorable. Josepha.blog or whatever it is you registered. Getting domains is fun. It’s the fifth thing, and I tried to act like it was no big deal.</p>\n\n\n\n<p>But, also, it’s like one of the first things you have to do, and it’s kind of a big deal. You can have your own domain, and it can say a lot for you. So there you have it, some basic and not-so-basic reasons why you should have a website. If you are convinced or at least intrigued, I’ve got a few tutorials that can help you get started that I’ll link in the show notes. <br><br>[00:05:03] (Music interlude)</p>\n\n\n\n<p>[00:05:11] <strong>Josepha:</strong> Which brings us now to our small list of big things.</p>\n\n\n\n<p>I have four big things for you today: four-ish. So, first things first, I have some early opportunities for y’all to test our next major release. Our next major release is WordPress 6.5. The target release date is March 26th. But coming up here on February 13th, we have Beta 1 scheduled. That’s an early opportunity for you to provide feedback. A lot of the features that we have coming in this release are big, and they’re moving quite quickly. And so, if you are already a routine WordPress user, pop on over into the core channel or onto make.WordPress.org/core and get your hands on that beta release. We could use a lot of feedback from you on that.</p>\n\n\n\n<p>The second thing that I have is that the second cohort of the Contributor Mentorship Program has opened up, and we’re calling for participants whether you want to be mentored or mentor somebody. We are accepting applications for both. This is a fantastic opportunity for experienced contributors to help other people learn how to do this. And also, if you are learning to contribute to open source and to WordPress for the first time, I know it can be scary. It took me many, many tries to really get started. And so this is a great opportunity for anyone who is trying to contribute in a new way, in a different way.</p>\n\n\n\n<p>[00:06:35] <strong>Josepha:</strong> The third thing that I have is there’s a post up about Data Liberation in 2024. This is one of our big focuses for the year.</p>\n\n\n\n<p>A web where being locked into a system should be a thing of the past, and migrating your site to WordPress or around the WordPress ecosystem should be doable with essentially 1-click, and, so, there’s a lot of work that we’re doing there. You can find it on WordPress.org/data-liberation. There will be a link to that in our show notes, but also, there is a lot of work that has to be done, not only to get those resources together but also some companion tools to the resources. So head on over there, take a look at what’s out there. And if you have some stuff to contribute, share that too. </p>\n\n\n\n<p>[00:07:21] <strong>Josepha:</strong> And my fourth thing, my final thing, is that WordCamp Asia is about a month away. So you still have time to plan your attendance. If that’s something that you want to do, head on over to asia.wordcamp.org to learn more.</p>\n\n\n\n<p>And that, my friends, is your small list of big things. Don’t forget to follow us on your favorite podcast app or subscribe directly on WordPress.org/news. You’ll get a friendly reminder whenever there’s a new episode. If you liked what you heard today, share it with a fellow WordPresser or specifically for this one; if you liked what you heard, share it with a fellow collaborator whether they know WordPress or not. But if you had questions about what you heard, you can share those with me at [email protected]. I’m your host, Josepha Haden Chomphosy. Thanks for tuning in today for the WordPress Briefing, and I’ll see you again in a couple of weeks. <br><br>[00:08:10] (Music outro)</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"16810\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:60:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"WordPress 6.4.3 – Maintenance and Security release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wordpress.org/news/2024/01/wordpress-6-4-3-maintenance-and-security-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 30 Jan 2024 21:22:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=16754\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:346:\"This security and maintenance release features 5 bug fixes on Core, 16 bug fixes for the Block Editor, and 2 security fixes. Because this is a security release, it is recommended that you update your sites immediately. Backports are also available for other major WordPress releases, 4.1 and later. You can download WordPress 6.4.3 from […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Aaron Jorbin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:7108:\"\n<p>This security and maintenance release features <a href=\"https://core.trac.wordpress.org/query?status=closed&component=!Bundled+Theme&id=!59828&milestone=6.4.3&group=status&col=id&col=summary&col=component&col=owner&col=type&col=priority&col=version&col=keywords&order=priority\">5 bug fixes on Core</a>, <a href=\"https://github.com/WordPress/wordpress-develop/pull/5698#issuecomment-1909302298\">16 bug fixes for the Block Editor</a>, and 2 security fixes.</p>\n\n\n\n<p><strong>Because this is a security release, it is recommended that you update your sites immediately.</strong> Backports are also available for other major WordPress releases, 4.1 and later.</p>\n\n\n\n<p>You can <a href=\"https://wordpress.org/wordpress-6.4.3.zip\">download WordPress 6.4.3 from WordPress.org</a>, or visit your WordPress Dashboard, click “Updates”, and then click “Update Now”. If you have sites that support automatic background updates, the update process will begin automatically.</p>\n\n\n\n<p>WordPress 6.4.3 is a short-cycle release. The next major release will be <a href=\"https://make.wordpress.org/core/6-5/\">version 6.5</a> planned for 26 March 2024. You can review a summary of the maintenance updates in this release by reading the <a href=\"https://make.wordpress.org/core/2024/01/25/wordpress-6-4-3-rc1-is-now-available/\">Release Candidate announcement</a>. For further information on this release, please <a href=\"https://wordpress.org/support/wordpress-version/version-6-4-3\">visit the HelpHub site</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Security updates included in this release</h2>\n\n\n\n<p>The security team would like to thank the following people for responsibly reporting vulnerabilities, and allowing them to be fixed in this release:</p>\n\n\n\n<ul>\n<li><a href=\"https://hackerone.com/m4tutocs\">m4tuto</a> for finding a PHP File Upload bypass via Plugin Installer (requiring admin privileges).</li>\n\n\n\n<li><a href=\"https://twitter.com/_s_n_t\">@_s_n_t</a> of <a href=\"https://twitter.com/pentestltd\">@pentestltd</a> working with Trend Micro Zero Day Initiative for finding an RCE POP Chains vulnerability.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you to these WordPress contributors</h2>\n\n\n\n<p>This release was led by <a href=\"https://profiles.wordpress.org/mikachan/\">Sarah Norris</a>, <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a>, and <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>.</p>\n\n\n\n<p>WordPress 6.4.3 would not have been possible without the contributions of the following people. Their asynchronous coordination to deliver maintenance and security fixes into a stable release is a testament to the power and capability of the WordPress community.</p>\n\n\n\n<p class=\"is-style-wporg-props-medium\"><a href=\"https://profiles.wordpress.org/wildworks\">Aki Hamano</a>, <a href=\"https://profiles.wordpress.org/xknown\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/ajlende\">Alex Lende</a>, <a href=\"https://profiles.wordpress.org/alexstine\">Alex Stine</a>, <a href=\"https://profiles.wordpress.org/afercia\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andraganescu\">Andrei Draganescu</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/andrewserong\">Andrew Serong</a>, <a href=\"https://profiles.wordpress.org/afragen\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/aristath\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/artemiosans\">Artemio Morales</a>, <a href=\"https://profiles.wordpress.org/benharri\">ben</a>, <a href=\"https://profiles.wordpress.org/bobbingwide\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/cbravobernal\">Carlos Bravo</a>, <a href=\"https://profiles.wordpress.org/poena\">Carolina Nymark</a>, <a href=\"https://profiles.wordpress.org/chesio\">Česlav Przywara</a>, <a href=\"https://profiles.wordpress.org/costdev\">Colin Stewart</a>, <a href=\"https://profiles.wordpress.org/mapumba\">Daniel Käfer</a>, <a href=\"https://profiles.wordpress.org/talldanwp\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/ellatrix\">Ella</a>, <a href=\"https://profiles.wordpress.org/kebbet\">Erik</a>, <a href=\"https://profiles.wordpress.org/mamaduka\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/gziolo\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/isabel_brison\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/joen\">Joen A.</a>, <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/desrosj\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/joppuyo\">joppuyo</a>, <a href=\"https://profiles.wordpress.org/lakshmananphp\">Lax Mariappan</a>, <a href=\"https://profiles.wordpress.org/luisherranz\">luisherranz</a>, <a href=\"https://profiles.wordpress.org/flootr\">Markus</a>, <a href=\"https://profiles.wordpress.org/czapla\">Michal Czaplinski</a>, <a href=\"https://profiles.wordpress.org/mukesh27\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/ntsekouras\">Nik Tsekouras</a>, <a href=\"https://profiles.wordpress.org/dhrupo\">Niluthpal Purkayastha</a>, <a href=\"https://profiles.wordpress.org/noahtallen\">Noah Allen</a>, <a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/ramonopoly\">ramonopoly</a>, <a href=\"https://profiles.wordpress.org/youknowriad\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/SergeyBiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sabernhardt\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/tykoted\">Teddy Patriarca</a>, <a href=\"https://profiles.wordpress.org/hellofromTonya\">Tonya Mork</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">How to contribute</h2>\n\n\n\n<p>To get involved in WordPress core development, head over to Trac, <a href=\"https://core.trac.wordpress.org/report/6\">pick a ticket</a>, and join the conversation in the <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> and <a href=\"https://wordpress.slack.com/archives/C065MBW03EH\">#6-5-release-leads channels</a>. Need help? Check out the <a href=\"https://make.wordpress.org/core/handbook/\">Core Contributor Handbook</a>.</p>\n\n\n\n<p>As a final reminder, The WordPress Security Team will never email you requesting that you install a plugin or theme on your site, and will never ask for an administrator username and password. <a href=\"https://wordpress.org/news/2023/12/alert-wordpress-security-team-impersonation-scams/\">Please stay vigilant against phishing attacks</a>.</p>\n\n\n\n<p><em>Thanks to <a href=\"https://profiles.wordpress.org/angelasjin/\">Angela Jin</a>, <a href=\"https://profiles.wordpress.org/ehtis\">Ehtisham S.</a>, <a href=\"https://profiles.wordpress.org/audrasjb\">Jb Audras,</a> and <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a> for proofreading.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"16754\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:61:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n\n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"WP Briefing: Episode 71: New Year, New Blog!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/news/2024/01/episode-71-new-year-new-blog/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 22 Jan 2024 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=16745\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:270:\"In the latest WordPress Briefing, Executive Director Josepha Haden Chomphosy revisits our roots in blogging and breaks down the essentials of starting your first WordPress blog. Tune in to Episode 71 for practical tips and inspiration to kickstart your blogging journey.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:51:\"https://wordpress.org/news/files/2024/01/WPB071.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:18609:\"\n<p>In the latest WordPress Briefing, Executive Director Josepha Haden Chomphosy revisits our roots in blogging and breaks down the essentials of starting your first WordPress blog. Tune in to Episode 71 for practical tips and inspiration to kickstart your blogging journey.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Host: <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a><br>Editor: <a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo: <a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br>Production: <a href=\"https://profiles.wordpress.org/bjmcsherry/\">Brett McSherry</a><br>Song: Fearless First by Kevin MacLeod</p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/download/\">WordPress 6.4.2 Download</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/course/getting-started-with-wordpress-get-setup/\">Getting Started with WordPress: Get Setup</a></li>\n\n\n\n<li><a href=\"https://www.meetup.com/wordpress-social-learning/events/285233962/\">How to Make a WordPress Blog Social Learning Space Event</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/plugins/\">WordPress Plugins</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/themes/\">WordPress Themes</a></li>\n\n\n\n<li><strong>Small List of Big Things</strong>\n<ul>\n<li> <a href=\"https://make.wordpress.org/themes/2023/12/29/a-year-in-themes-team-2023/\" target=\"_blank\" rel=\"noreferrer noopener\">A Year in Review With Themes Team</a>\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/12/22/wordpress-end-of-year-celebrations/\">WordPress End-of-Year Celebrations!</a></li>\n</ul>\n</li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/12/leap-into-2024-with-these-site-editor-tools/\" target=\"_blank\" rel=\"noreferrer noopener\">Leap into 2024 with these Site Editor Tools</a>\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/\">WordPress Developer Blog</a></li>\n</ul>\n</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/team-reps/\" target=\"_blank\" rel=\"noreferrer noopener\">2024 Team Reps</a> – Watch for updates as we move into 2024. Each team in the WordPress project goes through a process to review and elect new team reps. Those elections are happening now.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/project/2024/01/19/big-picture-goals-2024/\">Big Pictures Goals 2024</a></li>\n</ul>\n</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Transcripts</h2>\n\n\n\n<span id=\"more-16745\"></span>\n\n\n\n<p>[00:00:00] <strong>Josepha:</strong> Hello, everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I’m your host, Josepha Haden Chomphosy. Here we go. </p>\n\n\n\n<p>[00:00:28] (Intro music) </p>\n\n\n\n<p>[00:00:40] <strong>Josepha:</strong> Today, we’ve got a throwback episode about blogging. If you’re like me, you sometimes miss the early days of blogs, where the words were a little more pensive, and the images were a little less professional. If you’re on a slow hobby journey like so many of us are right now, give this one a listen.</p>\n\n\n\n<p>[00:00:58] (music interlude)</p>\n\n\n\n<p>[00:01:05] <strong>Josepha:</strong> You may be one of these contributors I keep mentioning. You may be an agency owner or freelancer. Maybe you’ve wondered how to make a WordPress blog for your big idea. Or maybe you’re one of the many people who use WordPress for their own project or business. </p>\n\n\n\n<p>Before WordPress was known as a content management system, as a way to get sites online fast, it was a blogging tool. We have long since outgrown that, but even 20 years into our journey, blogging is still a key part of what WordPress enables you to do. That’s because, even after those 20 years, the mission of WordPress is still the same, and that is to democratize publishing.</p>\n\n\n\n<p>To help people have a place online where they can tell their stories, or share their projects, or set up their businesses. If you’ve ever tried to set up a blog, you know that there isn’t a lot of information about what to know before you get going at all. So, I’m going to talk about that a little bit today.</p>\n\n\n\n<p>[00:02:06] <strong>Josepha:</strong> And just by the way, if you heard the word blog right now and thought, Oh, Jospeha, how old fashioned. I think it’s important to remember that there’s a business advantage to having well-written, relevant content on your website. And if you’re not blogging for business, because not all of us are, then the benefits are a little different but still important to my mind. Things like the cathartic benefits of journaling, a chance to build community, and the general importance of preserving wisdom for the ages. </p>\n\n\n\n<p>Anyway, back to the topic at hand, before we can get to any of the fancy things that WordPress can do nowadays, it’s important to know a few things as you get ready to set up your first-ever website. So let’s dive in. </p>\n\n\n\n<p>Here is how you need to get yourself started. First, have an idea and a plan. So, have an idea for what you’re doing, the concept of your content, who you want to reach, but also some concept of a domain name. I would encourage you to not necessarily get your heart set on a domain name at first, cause like, if you want the domain name WordPress.org, like, we own that, you can’t have that. But if you know that you want a domain like ‘WordPressbloggingforthefuture.com’ like, that one might be more available. And if you know kind of the words you want in your domain, then you can be a bit flexible about what is there. </p>\n\n\n\n<p>[00:03:30] <strong>Josepha:</strong> The second thing that you need to do is that if you are just getting started, ask yourself the question, what sort of host do I want? We kind of mention all along the WordPress process that, like, you need a good host, but it’s not always clear where that decision has to happen. It happens right here at the start before you even know what WordPress is most of the time. So, the earliest question that you have to answer for yourself is, what sort of host do I want? Where do I want my site to live? So ask yourself how much you want to get into the maintenance and configuration of your website and the hardware that it lives on versus creating content or keeping your shop up to date. There’s this whole spectrum of hosting options, and they range from full service, where they will keep your WordPress software up to date and provide daily backups, and have customer support if something goes really wrong.</p>\n\n\n\n<p>[00:04:23] <strong>Josepha:</strong> So it ranges all the way from full service like that, all the way down to essentially zero service, just kind of hands off. They give you a space to keep your WordPress software, to keep your WordPress site, but they leave everything else up to you. They leave the backups up to you; they leave updating up to you, things like that.</p>\n\n\n\n<p>So that’s the first thing you have to ask yourself and the first question you have to be able to answer. Most of the time, you will want to start with one of the full-service options. That way, you know that your software is set up correctly and safely from the start. And as you learn more about the software, and what you want, and what you need, and you have the ability to learn in the time that you have, the more that you can add on either services with the existing host that you chose or moving to a different host; however, that works out for you.</p>\n\n\n\n<p>[00:05:09] <strong>Josepha:</strong> So if that one sounds like the right option, then you choose a host, go to their site, and actually, most of them will have a way to walk you through how to set up a WordPress site inside their system. Most of the time, it’s just one click, and then they ask you some questions to get some configurations right.</p>\n\n\n\n<p>The other option that on the like zero, zero service side, that’s not quite fair, but you know, on the other side of that spectrum, that probably will be appealing to you if you are already familiar with code or already know how to manage a server, or you know how to work in this thing called cPanel, etc. So if you already have a lot of information on how all of that works, you can, if you want to, head over to WordPress.org/download and you can download a zip file of the WordPress software and set that up in your own environment. Okay, quick check here. If this all sounds roughly doable to you, or at least it feels like we’re in the right starting point, but you find yourself thinking, gosh, I just wish she would slow down a little, I’ve got you covered.</p>\n\n\n\n<p>[00:06:17] <strong>Josepha:</strong> In the show notes, you’ll find a link to one of the LearnWP courses for getting started with WordPress. There’s a section on choosing a host, as well as various other early steps of this process. If you felt like I blazed through all of that, which, honestly, I kind of did. You can work through those lessons in that course at your own pace, and it’s really a very good guide.</p>\n\n\n\n<p>All right. So let’s pretend we did all of that. Now you’ve got yourself a website. The thing that you will want to do next, or rather the first thing that you’ll notice once you get your site up and running, is that there’s this ‘Hello World’ post. There’s a post that already exists in there. The Hello World post is a placeholder for the common features of a blog post.</p>\n\n\n\n<p>[00:07:03] <strong>Josepha:</strong> There, you can find your featured image, your title, your content, and even some fake comments. You can either edit this post so that you can see how your writing will look from the start, and you can kind of compare, like, okay, the Hello World part over here on this page exists in this field over here on this page. So you can kind of see where everything works, how it all looks together. Or, if you’re more familiar with WordPress or CMSs in general, you can simply remove that and start fresh. We’ve got now a website. We know kind of how to look at our posts and create posts, where comments are, where they can be moderated, and stuff.</p>\n\n\n\n<p>And so, the most fun task for everyone is choosing a theme. But if it doesn’t sound like a fun task to you, I can help you kind of do some choose-your-own-adventure guiding questions here. Firstly, you can ask yourself how you want the site to look. Do you want it to mostly be a lot of photos or entirely words? Mostly animations? You can head to the theme directory and search for a theme with most of the features that you want. There’s like a filtering system where you can put in, like, you want, three columns so that you can have three columns of text if you want it to look kind of like an old school newspaper kind of layout and things like that. </p>\n\n\n\n<p>[00:08:24] <strong>Josepha:</strong> There’s also a way to look for themes inside your instance, your WordPress site, but like, if you haven’t set that up yet, but you do still want to see kind of what your theme options are, you can go to WordPress.org/themes and take a look at what’s out there. Just as a quick side note, if you get to that theme directory, if you get to WordPress.org/themes, and it feels overwhelming, which I can understand, I recommend starting with a theme that is designed for blogging specifically, so that you can see how things look right away. And there’s actually a theme that does come with every WordPress site, so if you’re not ready, you can skip this thing entirely. And just work with the theme that’s already there. Every WordPress instance ships with a theme, and it is fully functional when you get your site up and running, so you don’t need to choose a theme right now if you don’t feel ready. And then the other very fun thing that people do with their WordPress sites, is to add plugins to them.</p>\n\n\n\n<p>[00:09:20] <strong>Josepha:</strong> Plugins are these little pieces of software that you add on to the WordPress software that lets it do additional things. It adds additional functionality to it. The questions that you can ask to kind of guide yourself through what sorts of plugins you might want what sorts of functionality you might want to add to your site are a little similar to the ones that you want to ask for figuring out which themes.</p>\n\n\n\n<p>So, figure out if there are tasks that you need visitors to do. Do you need them to contact you? Do you want them to watch a video? Should they review and respond to questions? If you have a concept of the things that you want users to do on your website, then you can head to the plugin directory and search for a plugin with features that you need.</p>\n\n\n\n<p>[00:10:05] <strong>Josepha:</strong> Also, there are just endless lists of recommended plugins out there. If that is something that you find valuable as part of your research, those are also easy to find. And as a general side note here as well, there are even more plugins than there are themes. So if you have gotten to this point and feel like you don’t quite know the answers to the questions that I shared, and it’s going to be a while until you feel like you can know what those answers are. That’s totally fine. I’ll tell you this, I have never seen a site without a contact form. So feel free to begin your journey there. There are a lot of great plugins for contact forms, and it can kind of help you figure out how to work with plugins in that way. So, yeah, I made it sound like you can get a WordPress website built in like seven minutes.</p>\n\n\n\n<p>And on the one hand, you definitely can. And on the other hand, it’s still a little bit more complicated. So here I have a final note for everyone. You will hear around the WordPress ecosystem and, obviously, hear some things that could make you feel a little nervous about doing this for the first time.</p>\n\n\n\n<p>[00:11:10] <strong>Josepha</strong>: Things like the five-second installation, which WordPress has been famous for for years, but also about how easy and simple it all is. And as somebody who was once in the position of learning WordPress for the first time, like I first encountered a WordPress site in 2009, and I started learning how to use WordPress in 2010. </p>\n\n\n\n<p>I can say with confidence that once you learn it, it’s easy. We are the easiest of the hard options for CMSs like content management systems are just complicated. But we are the easiest one out there. And so, as you’re learning, I want to just remind you to celebrate your small wins along the way. If you feel like you’re late to this blogging game like you should have had a website for years, I mean, sure, that could be true.</p>\n\n\n\n<p>[00:12:01] <strong>Josepha:</strong> And yes, the best time to plant a tree was 20 years ago, but the second best time to plant that tree is today. WordPress didn’t start out powering over 40% of the web, and your first site can’t be immediately measured in the millions of readers. So, what will your small beginning lead you to?</p>\n\n\n\n<p>[00:12:18] (Music interlude)</p>\n\n\n\n<p>[00:12:25] <strong>Josepha:</strong> And now, our small list of big things. Today we’ve got some look-back items and some look-forward items. So let’s hop right in. </p>\n\n\n\n<p>First thing is we have a year in review with the themes team. So much amazing work has been done by the themes team over the past year, both for reviewing themes and creating them. So I’ll leave a link to those in the show notes. </p>\n\n\n\n<p>We also have a post out that just has some general celebrations from teams around the community. I’ll leave a link to that. It probably has been linked in quite a few places, but you know, we don’t always embrace those moments of celebration. We don’t always embrace our wins. And so it’s always good to share those early and often. There are probably more than just those two. So if you posted one or you saw a really interesting one that you think that we should know about, don’t forget to share it. </p>\n\n\n\n<p>[00:13:16] <strong>Josepha:</strong> Next, we have a leap into 2024 with Site Editor tools. So, on the new Developer Blog, if you haven’t seen it yet, there is a lot of excellent content there for whether you are like an advanced developer in WordPress or you’re kind of intermediate and ready to move into your advanced developer era. </p>\n\n\n\n<p>The Site Editor will give you a powerful way to visually create every part of your site and tell your story. And this post will help you to kind of see how to handle everything from big style changes to simple copy updates, all in a single place. We want to make sure that you get the most out of your WordPress this year. And that post will give you a few standout tools and features that you’ll want to try. </p>\n\n\n\n<p>You’ll also want to keep an eye out for updates as we move into 2024 around team reps. So each team in the WordPress project goes through a process to review and elect team reps, and elections are happening now.</p>\n\n\n\n<p>[00:14:12] <strong>Josepha:</strong> Along with things that are happening now that you should keep an eye on, the annual goals, our big picture post has gone out as well. It went out at the end of the week last week. There’ll be a link to all of these in the show notes. And yeah, keep an eye out for, hopefully, a fantastic 2024 in WordPress. </p>\n\n\n\n<p>And that, my friends, is your small list of big things. Don’t forget to follow us on your favorite podcast app or subscribe directly on WordPress.org/news. You’ll get a friendly reminder whenever there’s a new episode. And if you like what you heard today, share it with a fellow WordPresser, or if you have questions about what you heard, you can share those with me at [email protected]. I’m your host, Josepha Haden Chomphosy. Thanks for tuning in today for the WordPress Briefing, and I’ll see you again in a couple of weeks. </p>\n\n\n\n<p>[00:14:57] (Music outro)</p>\n\n\n\n<p> </p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"16745\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:57:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"Data Liberation in 2024\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/news/2024/01/data-liberation-in-2024/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 12 Jan 2024 16:58:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=16736\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:314:\"Imagine a more open web where people can switch between any platform of their choosing. A web where being locked into a system is a thing of the past. This is the web I’ve always wanted to see. That’s why I announced a new initiative called Data Liberation for 2024. Migrating your site to WordPress, […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2885:\"\n<p>Imagine a more open web where people can switch between any platform of their choosing. A web where being locked into a system is a thing of the past. This is the web I’ve always wanted to see. That’s why I announced a new initiative called <a href=\"https://wordpress.org/data-liberation/\" target=\"_blank\" rel=\"noreferrer noopener\">Data Liberation</a> for 2024. Migrating your site to WordPress, or exporting all your content from WordPress, should be possible in one click. I want WordPress’ export format to become the lingua franca of CMSes, whether coming to WordPress or moving within WordPress. </p>\n\n\n\n<p>I often hear about folks across the WordPress community duplicating efforts when creating scripts and workflows to move users to WordPress. Imagine if we shared those resources instead and built community-owned plugins that anyone could use! </p>\n\n\n\n<p>But it should be more than plugins; workflows, tutorials, and helper scripts should be shared, too. I want this resource to have space to include moving from social networks, moving from a page builder to core blocks, switching from classic to blocks, and improving WordPress current canonical plugins for importing. </p>\n\n\n\n<h2 class=\"wp-block-heading\">You can help!</h2>\n\n\n\n<p>Of course, the heart of any open source project is the community that shows up to build it. My hope is that this marks the start of a new contribution pathway, separate from core teams, that allows folks to contribute what they’ve learned and what they’ve created to help others move to WordPress. I expect this emphasis on migration will also influence future development, both in core and with recommended community or canonical plugins.</p>\n\n\n\n<p>There are a few things that I think will be key to making this project a success:</p>\n\n\n\n<ul>\n<li>A dedicated landing page on WordPress.org following a WordPress.org/and/[platform-name] format.</li>\n\n\n\n<li>A forum used for non-review user feedback and general discussion.</li>\n\n\n\n<li>A dedicated Slack channel.</li>\n\n\n\n<li>Moderation within hours rather than days.</li>\n\n\n\n<li>Listed on <a href=\"https://github.com/WordPress\">WordPress GitHub</a> with syncing for individual commits to SVN for history in both places.</li>\n</ul>\n\n\n\n<p>By complementing the community’s existing efforts—the <a href=\"https://wordpress.org/five-for-the-future/\">Five for the Future program</a>, the <a href=\"https://learn.wordpress.org/\">Learn WordPress initiative</a>, a focus on internationalization, etc.—my hope is that this will help even more people see themselves in the WordPress project, providing fresh momentum for <a href=\"https://events.wordpress.org/\">WordCamps and meetups</a>. </p>\n\n\n\n<p>It’s never been more crucial to champion openness on the web. Bringing focused attention to improved portability will untether users and increase their freedom like never before.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"16736\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:61:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n\n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"WP Briefing: Episode 70: A Look Ahead at WordPress in 2024\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://wordpress.org/news/2024/01/episode-70-a-look-ahead-at-wordpress-in-2024/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 08 Jan 2024 13:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=16677\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:264:\"Curious about WordPress\'s big-picture items for 2024? Phase 3, Data Liberation, new meetups, and more, get the spotlight in this episode. Join Executive Director Josepha Haden Chomphosy for all this, plus a small list of big things coming up in the next two weeks.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:50:\"https://wordpress.org/news/files/2024/01/WP070.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:8342:\"\n<p>Curious about WordPress’s big-picture items for 2024? Phase 3, Data Liberation, new meetups, and more, get the spotlight in this episode. Join Executive Director Josepha Haden Chomphosy for all this, plus a small list of big things coming up in the next two weeks.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Host: <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a><br>Editor: <a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo: <a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br>Production: <a href=\"https://profiles.wordpress.org/bjmcsherry/\">Brett McSherry</a><br>Song: Fearless First by Kevin MacLeod</p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/03/real-time-collaboration/\">Real-Time Collaboration</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/\">Make WordPress Core</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/data-liberation/\">Data Liberation</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/plugins/\">Make WordPress Plugins</a></li>\n\n\n\n<li><a href=\"https://events.wordpress.org/\">WordCamp Events</a></li>\n\n\n\n<li><strong>Small List of Big Things</strong>\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/12/12/overflow-questions-from-state-of-the-word-2023/\">Overflow Questions from State of the Word 2023 in Madrid, Spain</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/11/17/announcing-the-2023-annual-meetup-survey/\" target=\"_blank\" rel=\"noreferrer noopener\">Annual Meetup Survey</a> – This is the final chance to share your feedback on WordPress meetups for 2024 and how we can improve the program in the future. </li>\n</ul>\n</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Transcripts</h2>\n\n\n\n<span id=\"more-16677\"></span>\n\n\n\n<p>[00:00:00] <strong>Josepha:</strong> Hello, everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I’m your host, Josepha Haden Chomphosy. Here we go. </p>\n\n\n\n<p>[00:00:28] (Intro music) </p>\n\n\n\n<p>[00:00:40] <strong>Josepha:</strong> Hello, my dears, and welcome to 2024. I hope you’ve had a lovely break. At the top of the year, I like to look around and gather the projects that the community is interested in. We can’t always commit to everything, and sometimes even the things we plan to do can’t make it across the finish line. In the next few weeks, I’ll be publishing kind of the big picture goals for the year, but I wanted to share a little bit about what I’ve collected so far.</p>\n\n\n\n<p>[00:01:05] <strong>Josepha:</strong> Firstly, we’ve got Phase 3. This has been called a few things over the years: collaborative editing, multiplayer, co-editing. But whatever it’s been called, the biggest changes to writing and design workflows are likely to happen in this phase. A redesigned workflow can be a bit of a shock. But fortunately, we already have a prototype out there.</p>\n\n\n\n<p>I’ll include a link to some resources in the show notes, or of course, you can always stop by make.WordPress.org/core for some insights. But I would encourage you to, at the very least, get your hands on that prototype to see what it looks like is coming in Phase 3 so that you can be aware and provide your feedback.</p>\n\n\n\n<p>The next thing on our list is Data Liberation. This is a new-to-us project that was introduced at State of the Word. Fortunately, though, it’s not a new concept overall. Data Liberation is actually one of the earliest ideas that sold me on WordPress. The idea that you could set up a site for a client, or yourself, and that hard work wasn’t lost if something went wrong, was really important to me. It’s been a long time since we put any effort into our importers and exporters, and I think this will be a good focus for the year.</p>\n\n\n\n<p>[00:02:14] <strong>Josepha:</strong> The next thing that I’ve picked up, kind of a list of three things, but there are three mid-sized areas that I want us to pay attention to this year: plugins, old tickets, and new meetups. </p>\n\n\n\n<p>Plugins, because they really have turned a corner on where they ended 2023. A lot of work has been done to make sure that they’ve streamlined some efforts, gotten some better onboarding for folks as they’re going in, and we could really use a hand to keep that momentum going.</p>\n\n\n\n<p>Old tickets, because it’s something that we hope for year after year when we’re talking to people about what they want in new releases. So often, part of what they say is some way to work through all of these old things that have been around forever, some with patches. And why not, after all?</p>\n\n\n\n<p>And then new meetups, because I really still think that meetups are the best intro to WordPress. No matter whether you’re wanting to become a developer eventually or, like, the community-building aspect is the thing that hooks you forever. Meetups are the place to encourage those and discover those. </p>\n\n\n\n<p>[00:03:20] <strong>Josepha:</strong> The next thing on my list is also two things. It’s two things, but kind of a guess at the moment. There are two summit items that I want us to try to consider this year.</p>\n\n\n\n<p>So the first one is contributor recognition. Acknowledgment and recognition, I think, are two different things, and there was an entire series of sessions at the summit where we talked about it. And so I think that it’s worth us digging in on that.</p>\n\n\n\n<p>The other thing from the summit that I would really like us to all kind of dig in on is accessibility, how we do it, how we confirm it, what we think we should do versus what we actually do, and see what we can move on the needle there.</p>\n\n\n\n<p>And the last thing is sort of a personal wish. I think it’s about time that we take a look at the way that we kind of manage ourselves as a project, the way that we do our meetings and report on our successes, things like that. And I realize that this is a big thing, and it might be a little bit scary. But, I mean, we’ve been doing this for a really long time, and it’s probably as good a time as any, frankly, to look at what we’re doing by habit or tradition and see if it still suits us.</p>\n\n\n\n<p>So, that’s my back of the napkin set of notes so far. Keep an eye out in the next couple of weeks for the annual Big Picture post so you can get some context, notes, and discussion opportunities. And, of course, anything that has shown up that’s a bit bigger, a bit more final will be in there as well. </p>\n\n\n\n<p>But first, our small list of big things. </p>\n\n\n\n<p>[00:04:52] (Music interlude) </p>\n\n\n\n<p>[00:05:00] <strong>Josepha:</strong> Firstly, State of the Word had nearly 200 questions submitted, and Matt has been answering the overflow on make.WordPress.org/project. So, I’ll include a link, but head on over there to that post if you would like to catch up on those.</p>\n\n\n\n<p>And then the second item, and last item, is that you’ve got a few more days left to give us feedback on WordPress meetups in 2023, and give us an idea of what we can do to improve those. I believe those close on January 14th. I really love my local meetup, and I hope that we can get some of that same sort of feeling going in all of yours, too.</p>\n\n\n\n<p>[00:05:33] <strong>Josepha:</strong> And that, my friends, is your small list of big things. Don’t forget to follow us on your favorite podcast app or subscribe directly on WordPress.org/news. You’ll get a friendly reminder whenever there’s a new episode. If you liked what you heard today, share it with a fellow WordPresser, or if you had questions about what you heard, you can share those with me at [email protected].</p>\n\n\n\n<p>I’m your host, Josepha Haden Chomphosy. Thanks again for tuning in for the WordPress Briefing, and I’ll see you again in a couple of weeks. </p>\n\n\n\n<p>[00:06:02] (Music outro) </p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"16677\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:60:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"The Month in WordPress – December 2023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/news/2024/01/the-month-in-wordpress-december-2023/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 05 Jan 2024 10:10:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:18:\"month in wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=16680\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:331:\"As 2023 came to a close, WordPress bid farewell with the much-anticipated annual State of the Word and the 6.5 roadmap, among other exciting updates. Read on to learn more about the community’s end-of-year celebrations and catch a sneak peek of what’s in store for the year ahead. Highlights from State of the Word On […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Reyes Martínez\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:11332:\"\n<p>As 2023 came to a close, WordPress bid farewell with the much-anticipated annual State of the Word and the 6.5 roadmap, among other exciting updates.</p>\n\n\n\n<p>Read on to learn more about the community’s end-of-year celebrations and catch a sneak peek of what’s in store for the year ahead.</p>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Highlights from State of the Word</h2>\n\n\n\n<p>On December 11, WordPress co-founder Matt Mullenweg delivered his annual <strong><a href=\"https://wordpress.org/state-of-the-word/\">State of the Word</a> keynote in Madrid, Spain</strong>, marking the first international edition of the event. Nearly 200 WordPress enthusiasts and tech industry leaders gathered in person to hear what’s next for WordPress—with a large audience joining online or from one of the 47 watch parties held across 18 countries.</p>\n\n\n\n<p>The keynote <a href=\"https://wordpress.org/news/2023/12/state-of-the-word-2023-recap/\">highlighted</a> last year’s milestones and showcased compelling demos, providing a glimpse into the upcoming developments for the Site Editor, Collaboration phase, and Admin redesign. Matt also introduced 2024’s focus on <a href=\"https://wordpress.org/data-liberation/\">Data Liberation</a>, aiming to unlock digital barriers and frictionless migrations into WordPress for a more open web.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/c7M4mBVgP3Y?version=3&rel=1&showsearch=0&showinfo=1&iv_load_policy=1&fs=1&hl=en-US&autohide=2&wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox\"></iframe>\n</div></figure>\n\n\n\n<p>The event concluded with a <a href=\"https://www.youtube.com/watch?v=S01uBD2pyQY\">Q&A session</a> and <a href=\"https://make.wordpress.org/project/2023/12/12/overflow-questions-from-state-of-the-word-2023/\">this follow-up post</a>.</p>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Roadmap to WordPress 6.5</h2>\n\n\n\n<p>WordPress 6.5 is <a href=\"https://make.wordpress.org/core/6-5/\">scheduled</a> for release on <strong>March 26, 2024</strong>. This major release is set to introduce a new Font Library for easy global font management, support for Appearance Tools in Classic Themes, Data Views for templates and patterns, and more robust revisions across the editing experience, among other highlights.</p>\n\n\n\n<p>6.5 will also include new APIs like Interactivity, Custom Fields, and Block Binding that expand block capabilities and underpin features like Synced Pattern Overrides.</p>\n\n\n\n<p>Learn more about the features planned for WordPress 6.5 in <a href=\"https://make.wordpress.org/core/2023/12/07/roadmap-to-6-5/\">this roadmap post</a>.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size is-layout-flow wp-block-quote-is-layout-flow\">\n<p>Don’t wait for the next release to optimize your creative workflows with <a href=\"https://wordpress.org/news/2023/12/leap-into-2024-with-these-site-editor-tools/\">these powerful Site Editor tools</a>.</p>\n</blockquote>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">New in the Gutenberg plugin</h2>\n\n\n\n<p>Two new versions of Gutenberg shipped in December:</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/12/06/whats-new-in-gutenberg-17-2-6-december/\"><strong>Gutenberg 17.2</strong></a> introduced improvements to the site editing experience, including the ability to drag and drop blocks to the top and bottom of documents and sticky table headers. The update also enhanced the Interactivity API docs and addressed numerous bug fixes.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/12/20/whats-new-in-gutenberg-17-3-20-december/\"><strong>Gutenberg 17.3</strong></a> featured a summary of changes in the global styles revision history, an updated preferences panel, and a new social icon for the Gravatar service, along with the ongoing development of Phase 3 features.</li>\n</ul>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<a class=\"wp-block-jetpack-podcast-player jetpack-podcast-player__direct-link\" href=\"https://wordpress.org/news/2023/10/episode-64-patterns-in-wordpress/\">https://wordpress.org/news/2023/10/episode-64-patterns-in-wordpress/</a>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Team updates</h2>\n\n\n\n<ul>\n<li>Openverse <a href=\"https://make.wordpress.org/openverse/2023/12/11/introducing-enhanced-content-safety-features-on-openverse/\">introduced new features to filter sensitive content</a>, aiming for a more accessible and safer browsing experience. This update marks the beginning of a significant initiative to enhance content safety tools.</li>\n\n\n\n<li>Matrix contributors <a href=\"https://make.wordpress.org/project/2023/12/12/update-on-matrix-migration-pausing-the-transition/\">announced</a> the decision to pause the Making WordPress Slack migration to Matrix and the factors contributing to it.</li>\n\n\n\n<li>The <a href=\"https://make.wordpress.org/meta/2023/12/15/developer-resources-gets-a-refresh/\">redesign of the Developer Resources section</a> went live last month.</li>\n\n\n\n<li>Are you searching for events in your local community? Explore the recently launched <a href=\"https://make.wordpress.org/community/2023/12/13/announcing-the-new-wordpress-events-page/\">WordPress.org Events page</a>—your new central hub for discovering upcoming events or applying to organize one.</li>\n\n\n\n<li>In 2023, WordPress significantly <a href=\"https://make.wordpress.org/core/2023/12/19/wordpress-performance-impact-on-core-web-vitals-in-2023/\">improved Core Web Vitals (CWV) across sites</a>. The overall passing rates went up from 28.31% to 36.44% on mobile and from 32.55% to 40.80% on desktop, making both WordPress and the whole web perform better.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/12/22/call-to-action-2024-major-releases-call-for-volunteers/\">Volunteers are needed</a> for 2024’s WordPress major releases. If you’re interested, now’s the time to get involved!</li>\n\n\n\n<li>Check out all the community <a href=\"https://make.wordpress.org/project/2023/12/22/wordpress-end-of-year-celebrations/\">achievements and contributions</a> that moved the WordPress project closer to its goals in 2023.</li>\n</ul>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<a class=\"wp-block-jetpack-podcast-player jetpack-podcast-player__direct-link\" href=\"https://wordpress.org/news/2023/10/episode-64-patterns-in-wordpress/\">https://wordpress.org/news/2023/10/episode-64-patterns-in-wordpress/</a>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Requests for feedback & testing</h2>\n\n\n\n<ul>\n<li>Complete the <a href=\"https://make.wordpress.org/community/2023/11/17/announcing-the-2023-annual-meetup-survey/\">2023 Annual Meetup Survey</a> before January 14, 2024, and help strengthen WordPress meetups in the future.</li>\n</ul>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress events</h2>\n\n\n\n<ul>\n<li><img src=\"https://s.w.org/images/core/emoji/15.0.3/72x72/1f1f9-1f1fc.png\" alt=\"🇹🇼\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> WordCamp Asia has opened <a href=\"https://asia.wordcamp.org/2024/contributor-day-registration/\">registrations for its Contributor Day</a>. The conference will be held in Taipei, Taiwan, on March 7-9, 2024.</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/15.0.3/72x72/1f1ea-1f1fa.png\" alt=\"🇪🇺\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> WordCamp Europe’s <a href=\"https://europe.wordcamp.org/2024/speakers/call-for-speakers/\">call for speakers</a> is open until January 15, 2024. Don’t miss the chance to be part of this event by either submitting your speaking proposals or <a href=\"https://europe.wordcamp.org/2024/sponsors/call-for-sponsors/\">supporting it as a sponsor</a>.</li>\n\n\n\n<li>Mark your calendars! <a href=\"https://us.wordcamp.org/2024/\">WordCamp US 2024</a> is headed to Portland, Oregon, from September 17 to 20, as revealed during the State of the Word.</li>\n\n\n\n<li>Check out these WordPress events happening soon:\n<ul>\n<li><img src=\"https://s.w.org/images/core/emoji/15.0.3/72x72/1f1ee-1f1f3.png\" alt=\"🇮🇳\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://events.wordpress.org/kolkata/2024/careercamp/\">Kolkata CareerCamp</a>, India on January 6, 2024</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/15.0.3/72x72/1f1f3-1f1f5.png\" alt=\"🇳🇵\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://nepal.wordcamp.org/2024/\">WordCamp Nepal</a> on January 12-13, 2024</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/15.0.3/72x72/1f1ea-1f1f8.png\" alt=\"🇪🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://zaragoza.wordcamp.org/2024/\">WordCamp Zaragoza</a>, Spain on January 19-20, 2024</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/15.0.3/72x72/1f1ee-1f1e9.png\" alt=\"🇮🇩\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://events.wordpress.org/jakarta/2024/web-challenge/\">WordPress Web Challenge</a>, Indonesia on January 27, 2024</li>\n</ul>\n</li>\n</ul>\n\n\n\n<div style=\"height:1px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p><em><strong>Have a story we should include in the next issue of The Month in WordPress? Fill out </strong></em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><strong><em>this quick form</em></strong></a><em><strong> to let us know.</strong></em></p>\n\n\n\n<p><em>Thank you to <a href=\"https://profiles.wordpress.org/bernard0omnisend/\">Bernard Meyer</a>, <a href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a>, and <a href=\"https://profiles.wordpress.org/laurlittle/\">Lauren Stein</a></em> <em>for contributing to this edition of The Month in WordPress.</em></p>\n\n\n\n<div class=\"wp-block-group is-layout-constrained wp-block-group-is-layout-constrained\">\n<h3 class=\"wp-block-heading\">Subscribe to WordPress News</h3>\n\n\n\n<p>Join other subscribers and receive WordPress news directly in your inbox.</p>\n\n\n<div class=\"wp-block-jetpack-subscriptions__supports-newline is-style-split wp-block-jetpack-subscriptions\">\n <div>\n <div>\n <div>\n <p >\n <a href=\"https://wordpress.org/news/?post_type=post&p=16680\" style=\"font-size: 16px;padding: 15px 23px 15px 23px;margin: 0px; margin-left: 10px;border-radius: 0px;border-width: 1px; background-color: #113AF5; color: #FFFFFF; text-decoration: none; white-space: nowrap; margin-left: 0\">Subscribe</a>\n </p>\n </div>\n </div>\n </div>\n </div></div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"16680\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:75:\"\n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n\n\n\n\n\n\n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"Leap into 2024 with these Site Editor Tools\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://wordpress.org/news/2023/12/leap-into-2024-with-these-site-editor-tools/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 28 Dec 2023 18:35:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:6:\"Design\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"Features\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:9:\"Gutenberg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:11:\"Site editor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=16658\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:297:\"The Site Editor gives you a powerful way to visually create every part of your site and tell your story. It lets you handle everything from big stylistic changes to simple copy updates all in a single place. To help you make the most of this new way to WordPress, here are a few standout […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:6:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:70:\"https://wordpress.org/news/files/2023/12/Command-Palette-news-post.mp4\";s:6:\"length\";s:7:\"5553759\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:70:\"https://wordpress.org/news/files/2023/12/Style-book-news-post-demo.mp4\";s:6:\"length\";s:8:\"30842905\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:75:\"https://wordpress.org/news/files/2023/12/Styling-options-news-post-demo.mp4\";s:6:\"length\";s:8:\"27873396\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:88:\"https://wordpress.org/news/files/2023/12/Distraction-free-and-preview-news-post-demo.mp4\";s:6:\"length\";s:8:\"24659305\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:68:\"https://wordpress.org/news/files/2023/12/Patterns-news-post-demo.mp4\";s:6:\"length\";s:7:\"3617911\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:69:\"https://wordpress.org/news/files/2023/12/List-View-news-post-demo.mp4\";s:6:\"length\";s:7:\"2163970\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"annezazu\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:9388:\"\n<p>The Site Editor gives you a powerful way to visually create every part of your site and tell your story. It lets you handle everything from big stylistic changes to simple copy updates all in a single place. To help you make the most of this new way to WordPress, here are a few standout tools and features you’ll want to try. </p>\n\n\n\n<h3 class=\"wp-block-heading\">Command Palette</h3>\n\n\n\n<p>Think of the Command Palette as the ultimate shortcut tool, letting you do more with less clicks and without needing to remember where each option might be. It’s available across the editing experience, whether you’re switching between templates in the Site Editor or toggling open settings in the Post Editor, with specific contextual options depending on where you are.<strong> </strong>You can use the keyboard shortcut Cmd+K on Mac or Ctrl+K on Windows to activate it and get started. </p>\n\n\n\n<p>If you think of a command that doesn’t exist yet that would help with your workflow, open a <a href=\"https://github.com/WordPress/gutenberg/issues/new/choose\">feature request issue</a> so we can consider adding it.</p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://wordpress.org/news/files/2023/12/Command-Palette-news-post.mp4\"></video></figure>\n\n\n\n<p class=\"is-style-default\"><a href=\"https://make.wordpress.org/core/2023/09/12/core-editor-improvement-commanding-the-command-palette/\"><em>Read more</em></a><em> about everything you can do with the Command Palette, including a </em><a href=\"https://wordpress.org/documentation/article/site-editor-command-palette/#list-of-available-commands\"><em>list of available commands</em></a><em>. </em></p>\n\n\n\n<h3 class=\"wp-block-heading\">Style Book</h3>\n\n\n\n<p>The Style Book helps you see all the blocks on your site as you style them. It’s built into the Styles section and can be toggled on/off as you’d like. This is especially useful when you’re aiming for design consistency for a client, trying to see how a change might impact a block that might not be visible, or wanting to get a different look at how a style variation will switch things up.</p>\n\n\n\n<p>Work is also underway for the next WordPress release to <a href=\"https://github.com/WordPress/gutenberg/pull/56800\">integrate the Style Book into Style revisions</a> to allow for an at-a-glance view of changes made. </p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://wordpress.org/news/files/2023/12/Style-book-news-post-demo.mp4\"></video></figure>\n\n\n\n<p><a href=\"https://learn.wordpress.org/tutorial/how-to-use-the-wordpress-stylebook-with-your-block-theme/\"><em>Learn more</em></a><em> about how best to use the Style Book.</em></p>\n\n\n\n<h3 class=\"wp-block-heading\">Styling shortcuts</h3>\n\n\n\n<p>Sometimes you get a design just right—the color contrast, the perfect padding, the exact font size. Instead of needing to manually recreate the design or copy/paste the block to fill in with new content, you have two powerful options built into the editing experience: copy/paste styles and apply styles globally for all instances of the desired block. </p>\n\n\n\n<p>Copying and pasting styles is perfect for more nuanced and smaller changes, like headings on a landing page that you intentionally want to be distinct. Applying changes globally is best for blocks like buttons and for changes that are likely to work well across layouts, like setting a specific border radius and color. This helps keep the creativity flowing and makes achieving design consistency across your site much easier.</p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://wordpress.org/news/files/2023/12/Styling-options-news-post-demo.mp4\"></video></figure>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2023/02/01/core-editor-improvement-strengthening-style-options/\"><em>Read more</em></a><em> about the various styling options available. </em></p>\n\n\n\n<h3 class=\"wp-block-heading\">Distraction free mode</h3>\n\n\n\n<p>Just like an artist might need to take a few steps back to view their in-progress artwork, sometimes we need to get a different view of our site before diving back in. Distraction free offers you that alternate perspective with a pared-down experience that lets you focus purely on creating, like:</p>\n\n\n\n<ul>\n<li>Hiding the top toolbar until one intentionally hovers over where it typically sits.</li>\n\n\n\n<li>Removing many of the top toolbar buttons.</li>\n\n\n\n<li>Automatically closing any open sidebars, like block settings and list view. </li>\n\n\n\n<li>Hiding the insertion point indicator, reducing visual clutter. </li>\n\n\n\n<li>Hiding the block toolbar for individual blocks.</li>\n</ul>\n\n\n\n<p>It’s worth noting that this mode can be used when writing posts and pages too! For an added bonus and more views of your site, you can use the preview options to see how your site might look across different devices.</p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://wordpress.org/news/files/2023/12/Distraction-free-and-preview-news-post-demo.mp4\"></video></figure>\n\n\n\n<p><a href=\"https://wordpress.org/documentation/article/distraction-free-mode/\"><em>Learn more</em></a><em> about making the most out of Distraction free mode. </em></p>\n\n\n\n<h3 class=\"wp-block-heading\">Patterns</h3>\n\n\n\n<p>Patterns are a collection of blocks that make it simple to add complex layouts and designs to any WordPress site without starting from scratch. They save time by reducing duplication and ensuring consistency. You can create your own, use theme-provided patterns, or <a href=\"https://wordpress.org/patterns/\">lean on the Pattern Directory</a>. </p>\n\n\n\n<p>You can also specify whether to sync your patterns so that one change applies to all parts of your site, or to keep them unsynced so you can customize each instance. For any patterns you create, you can assign categories to make them easy to find and organize. Use the Inserter with easy filtering options to add patterns to your content, and head to the dedicated Patterns section in the Site Editor to create or edit patterns to your liking. </p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://wordpress.org/news/files/2023/12/Patterns-news-post-demo.mp4\"></video></figure>\n\n\n\n<p><a href=\"https://learn.wordpress.org/tutorial/creating-your-own-custom-synced-or-non-synced-patterns/\"><em>Learn more</em></a><em> about creating patterns. </em></p>\n\n\n\n<h3 class=\"wp-block-heading\">List View</h3>\n\n\n\n<p>List View is the go-to tool for navigating between layers of your content, selecting exactly what you need, and getting a sense of how everything fits together. Similar to the Style Book and Distraction free mode, you can toggle it on/off as you’d like. It’s currently visible in the Top Toolbar and will remain open as you navigate through your site. Beyond providing a simple view of the layers of your site, there are more recent additions to List View that makes the tool even more powerful:</p>\n\n\n\n<ul>\n<li>See previews of your images for Image and Gallery blocks reflected in List View to make it easier to find what you need.</li>\n\n\n\n<li>The Escape key deselects blocks to make it easier to purely preview your content without any blocks selected. </li>\n\n\n\n<li>Lean on a keyboard shortcut for duplicating blocks quickly: CMD+Shift+D for Mac or Control + Shift + D for Windows. </li>\n\n\n\n<li>Drag and drop blocks at any level directly within List View.</li>\n\n\n\n<li>Rename Group blocks and have the custom name reflected in List View for improved organization.</li>\n</ul>\n\n\n\n<p>Here’s how a few of these improvements come together:</p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://wordpress.org/news/files/2023/12/List-View-news-post-demo.mp4\"></video></figure>\n\n\n\n<p><a href=\"https://wordpress.org/documentation/article/list-view/\"><em>Learn more</em></a><em> about using List View. </em></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>As you explore these tools, remember that, except for the Style Book, you can use these features when writing posts and pages too. Expect the Site Editor and other tools to evolve with each release. To get a sneak peek at what’s planned for the next major WordPress release in March, <a href=\"https://make.wordpress.org/core/2023/12/07/roadmap-to-6-5/\">check out the roadmap</a> and stay tuned. </p>\n\n\n\n<h3 class=\"wp-block-heading\">Subscribe to WordPress News</h3>\n\n\n\n<p>Join other subscribers and receive WordPress news directly in your inbox. </p>\n\n\n<div class=\"wp-block-jetpack-subscriptions__supports-newline wp-block-jetpack-subscriptions\">\n <div>\n <div>\n <div>\n <p >\n <a href=\"https://wordpress.org/news/?post_type=post&p=16658\" style=\"font-size: 16px;padding: 15px 23px 15px 23px;margin: 0px; margin-left: 10px;border-radius: 0px;border-width: 1px; background-color: #113AF5; color: #FFFFFF; text-decoration: none; white-space: nowrap; margin-left: 0\">Subscribe</a>\n </p>\n </div>\n </div>\n </div>\n </div>\n\n\n<p><em>Thank you to the contributors who collaborated on this post: <a href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a>, <a href=\"https://profiles.wordpress.org/laurlittle/\">Lauren Stein</a>, <a href=\"https://profiles.wordpress.org/joen/\" data-type=\"link\" data-id=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a></em>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"16658\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n hourly \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n 1 \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:12:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 14 Feb 2024 13:21:27 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:25:\"strict-transport-security\";s:12:\"max-age=3600\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Tue, 13 Feb 2024 16:54:18 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:4:\"gzip\";s:7:\"alt-svc\";s:19:\"h3=\":443\"; ma=86400\";s:4:\"x-nc\";s:9:\"HIT ord 2\";}}s:5:\"build\";s:14:\"20211220193300\";}','no'),(440,'_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1707960087','no'),(441,'_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1707916887','no'),(442,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1707960088','no'),(443,'_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"Do The Woo Community: GatherPress, Organizing WordPress Events with Mike, Mervin and Patricia\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=79097\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://dothewoo.io/gatherpress-organizing-wordpress-events/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:419:\"<p>The GatherPress plugin has been proposed to replace Meetup.com to help organize WordPress events through an open source solution.</p>\n<p>>> The post <a href=\"https://dothewoo.io/gatherpress-organizing-wordpress-events/\">GatherPress, Organizing WordPress Events with Mike, Mervin and Patricia</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a> .</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 14 Feb 2024 09:53:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"WordPress.org blog: WordPress 6.5 Beta 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=16854\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2024/02/wordpress-6-5-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:22906:\"<p>WordPress 6.5 Beta 1 is ready for download and testing!</p>\n\n\n\n<p><strong>This beta version of the WordPress software is under development. </strong>Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, you should evaluate Beta 1 on a test server or site.</p>\n\n\n\n<p>Test WordPress 6.5 Beta 1 in four ways:</p>\n\n\n\n<table><tbody><tr><th>Plugin</th><td>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin on a WordPress install. (Select the “Bleeding edge” channel and “Beta/RC Only” stream).</td></tr><tr><th>Direct Download</th><td>Download the <a href=\"https://wordpress.org/wordpress-6.5-beta1.zip\">Beta 1 version (zip)</a> and install it on a WordPress website.</td></tr><tr><th>Command Line</th><td>Use the following <a href=\"https://make.wordpress.org/cli/\">WP-CLI</a> command:<br /><code>wp core update --version=6.5-beta1</code></td></tr><tr><th>WordPress Playground</th><td>Use the <a href=\"https://playground.wordpress.net/#{%20%22preferredVersions%22:%20{%20%22php%22:%20%228.0%22,%20%22wp%22:%20%22beta%22%20},%20%22features%22:%20{%20%22networking%22:%20true%20},%20%22steps%22:%20[%20{%20%22step%22:%20%22login%22,%20%22username%22:%20%22admin%22,%20%22password%22:%20%22password%22%20},%20{%20%22step%22:%20%22importFile%22,%20%22file%22:%20{%20%22resource%22:%20%22url%22,%20%22url%22:%20%22https://raw.githubusercontent.com/wpaccessibility/a11y-theme-unit-test/master/a11y-theme-unit-test-data.xml%22%20}%20},%20{%20%22step%22:%20%22importFile%22,%20%22file%22:%20{%20%22resource%22:%20%22url%22,%20%22url%22:%20%22https://raw.githubusercontent.com/WordPress/theme-test-data/master/themeunittestdata.wordpress.xml%22%20}%20},%20{%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20{%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22query-monitor%22%20},%20%22options%22:%20{%20%22activate%22:%20false%20},%20%22progress%22:%20{%20%22weight%22:%202%20}%20},%20{%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20{%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22create-block-theme%22%20},%20%22progress%22:%20{%20%22weight%22:%202%20}%20},%20{%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20{%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22debug-bar%22%20},%20%22progress%22:%20{%20%22weight%22:%202%20}%20},%20{%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20{%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22health-check%22%20},%20%22progress%22:%20{%20%22weight%22:%202%20}%20},%20{%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20{%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22test-reports%22%20},%20%22progress%22:%20{%20%22weight%22:%202%20}%20},%20{%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20{%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22user-switching%22%20},%20%22progress%22:%20{%20%22weight%22:%202%20}%20}%20]%20}\">6.5 Beta 1 WordPress Playground instance</a> to test the software directly in your browser without the need for a separate site or setup. </td></tr></tbody></table>\n\n\n\n<p>The current target date for the final release of WordPress 6.5 is <strong>March 26, 2024</strong>. Your help testing this version is key to ensuring everything in the release is stable.</p>\n\n\n\n<p>Get an overview of the <a href=\"https://make.wordpress.org/core/6-5/\">6.5 release cycle</a>, and check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-5/\">6.5-related posts</a> in the coming weeks for further details.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How to help test this release</h2>\n\n\n\n<p>Testing for issues is a critical part of developing any software, and it’s a meaningful way for anyone to contribute—whether or not you have experience.</p>\n\n\n\n<p>If you encounter an issue, please share it in the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> of the support forums. If you are comfortable submitting a reproducible bug report, you can do so <a href=\"https://core.trac.wordpress.org/newticket\">via WordPress Trac</a>. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p>Curious about testing releases in general and how to get started? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</p>\n\n\n\n<p>WordPress 6.5 will include many new features previously only available through the Gutenberg plugin. Learn more about Gutenberg updates since WordPress 6.4 in the <a href=\"https://make.wordpress.org/core/tag/gutenberg-new/\">What’s New in Gutenberg</a> posts for versions <a href=\"https://make.wordpress.org/core/2023/10/11/whats-new-in-gutenberg-16-8-11-october/\">16.8</a>, <a href=\"https://make.wordpress.org/core/2023/10/25/whats-new-in-gutenberg-16-9-25-october-2/\">16.9</a>, <a href=\"https://make.wordpress.org/core/2023/11/10/whats-new-in-gutenberg-17-0-9-november/\">17.0</a>, <a href=\"https://make.wordpress.org/core/2023/11/22/whats-new-in-gutenberg-17-1-22-november/\">17.1</a>, <a href=\"https://make.wordpress.org/core/2023/12/06/whats-new-in-gutenberg-17-2-6-december/\">17.2</a>, <a href=\"https://make.wordpress.org/core/2023/12/20/whats-new-in-gutenberg-17-3-20-december/\">17.3</a>, <a href=\"https://make.wordpress.org/core/2024/01/04/whats-new-in-gutenberg-17-4-03-january/\">17.4</a>, <a href=\"https://make.wordpress.org/core/2024/01/17/whats-new-in-gutenberg-17-5-17-january-2024/\">17.5</a>, <a href=\"https://make.wordpress.org/core/2024/01/31/whats-new-in-gutenberg-17-6-31-january/\">17.6</a>, and 17.7 (scheduled for release on February 14).</p>\n\n\n\n<p>WordPress 6.5 Beta 1 contains approximately 681 enhancements and 488 bug fixes for the editor, including about 229 <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=6.5&group=component&max=500&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">tickets for WordPress 6.5 Core</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Vulnerability bounty doubles during Beta 1</h2>\n\n\n\n<p>The WordPress community sponsors a <a href=\"https://make.wordpress.org/security/2024/02/12/welcoming-2024-with-wordpress-6-5-beta-1/\">monetary reward for reporting new, unreleased security vulnerabilities</a>. This reward doubles during the period between Beta 1 on February 13 and the final Release Candidate (RC) scheduled for March 19. Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the <a href=\"https://hackerone.com/wordpress\">HackerOne page</a> and in the <a href=\"https://wordpress.org/about/security/\">security white paper</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Discover what’s on the way in WordPress 6.5</h2>\n\n\n\n<p>This year’s first major release will add finesse and fine-tuning to how you control your site-building experience, with lots to explore specifically for developers. You’ll find more ways to manage your fonts and styles, notable upgrades to synced patterns, a collection of Site Editor and performance updates to help you get things done, and new ways to leverage design tools in Classic themes.</p>\n\n\n\n<p>WordPress 6.5 will include breakthrough foundational APIs that will start to transform how you use blocks to build memorable experiences. This release invites you to dig into these early-stage frameworks, discover how you’d like to see them evolve, and have an impact on their future improvements and capabilities.</p>\n\n\n\n<p>Excited yet? Keep reading for some highlights.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Meet the Font Library</h3>\n\n\n\n<p>Initially slated for release in WordPress 6.4, the <a href=\"https://core.trac.wordpress.org/ticket/59166\">Font Library</a> is one of those great things worth the wait. It gives you new capabilities for efficiently managing a vital piece of your site’s design—typography—without coding or extra steps.</p>\n\n\n\n<p>With the Font Library, you can handle fonts across your site regardless of your active theme—much like how you manage assets in the Media Library. You can install local fonts or Google Fonts, and it’s easily extensible, with the ability to add your own custom typography collections.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Synced patterns get an upgrade</h3>\n\n\n\n<p><a href=\"https://wordpress.org/documentation/article/reusable-blocks/\">Synced patterns</a> bring efficiency to the design process, letting you make global changes to particular layouts with minimal effort. However, there’s often a need to make contextual changes when it comes to content.</p>\n\n\n\n<p>WordPress 6.5 introduces new enhancements to synced patterns that let you override the content in each specific instance. You can choose what content can be updated within a synced pattern—while maintaining the design and layout you’ve already created. Use it for templated pieces like recipes, testimonials, or case studies that use recurring elements to frame unique content. </p>\n\n\n\n<p>This major release will introduce overrides for the Paragraph, Image, Heading, and Button blocks, with support for more blocks to come as work on synced patterns continues.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Connecting blocks and custom fields or other dynamic content</h3>\n\n\n\n<p>WordPress 6.5 will finally make it possible to <a href=\"https://github.com/WordPress/gutenberg/issues/53300#issuecomment-1938463648\">connect core block attributes to custom fields</a>. This capability lets you use the value of a custom field without creating custom blocks. For example, a digital publication could use custom fields with Paragraph and Image blocks. It could pull information from its individual staff writer profiles to dynamically display on its team page, like headshots and names.</p>\n\n\n\n<p>The <a href=\"https://github.com/WordPress/gutenberg/issues/54536\">Block Bindings API</a> powers this functionality and is designed to be extensible enough for developers to connect blocks to any dynamic content—not just custom fields. If your data is stored elsewhere, you can easily point blocks to that new source with only a few lines of code.</p>\n\n\n\n<p>This is the first step in a larger project to simplify how custom fields and other dynamic content are managed.</p>\n\n\n\n<h3 class=\"wp-block-heading\">The Interactivity API gets baked into Core</h3>\n\n\n\n<p>What started as just a taste in WordPress 6.4 with the <a href=\"https://github.com/WordPress/gutenberg/issues/51132\">lightbox feature for images</a> is officially making its way into Core. The <a href=\"https://make.wordpress.org/core/2023/03/30/proposal-the-interactivity-api-a-better-developer-experience-in-building-interactive-blocks\">Interactivity API</a> is a new framework that offers developers a standardized method to bring interactive front-end experiences, or interactions, to blocks. It aims to simplify the process, with less dependencies on external tooling, while maintaining optimal performance.</p>\n\n\n\n<p>Interactions create engaging user experiences, whether showing new comments or fetching search results without reloading a page, allowing visitors to interact with content in real time, or incorporating effects like countdowns and transitional animations that surprise and delight. Check out <a href=\"https://wpmovies.dev/\">this demo site to get a taste of what this framework can do</a>.</p>\n\n\n\n<p>6.5 is just the beginning of bringing this developer experience into Core. Find out how you can <a href=\"https://github.com/WordPress/gutenberg/issues/56803\">follow along with the work or lend a hand</a> and test more features.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Get more from your revisions</h3>\n\n\n\n<p>Revisions are the markers of progress. For creative projects, they’re also a welcome fallback when you’re working through a new design or concept. This release brings more detail to your style revision history in the Site Editor.</p>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2024/01/22/core-editor-improvement-robust-revisions-in-the-site-editor/\">Style revisions in 6.5</a> present a more detailed picture of your work, with design updates like time stamps, quick summaries that outline changes, and the ability to see a full list of revisions made—not just the previous 100. View revisions from the Style Book to see changes that aren’t reflected in the template you’re working on. Style revisions are also newly available for templates and template parts, giving you a broader view of your site’s changes.</p>\n\n\n\n<p>Expect to see more <a href=\"https://make.wordpress.org/core/2023/07/05/revisions/\">work happening to expand and improve revisions across the WordPress experience</a>. It’s a foundational part of the collaborative editing and workflows focus of the <a href=\"https://make.wordpress.org/core/2023/03/24/phase-3-collaboration/\">Gutenberg project’s Phase 3</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Classic themes can opt into appearance tools</h3>\n\n\n\n<p>As the design experience in Block themes evolves and improves, many of these upgrades are also available for Classic themes. Theme authors can choose to <a href=\"https://core.trac.wordpress.org/ticket/60118\">add support for appearance tools to any Classic theme</a>—even without the use of theme.json. Opting in gives designers and site creators using Classic themes access to a varied set of design options, from <a href=\"https://github.com/WordPress/wordpress-develop/blob/trunk/src/wp-includes/class-wp-theme-json.php#L576\">spacing and border controls to typography and color options</a>.</p>\n\n\n\n<p>Switching themes can feel like a big undertaking, and for folks who aren’t ready to jump into the flexibility of Block themes, these pathways to adoption can help ease that tension. Once a Classic theme gets initial support for appearance tools, more design options will be automatically added as they become available.</p>\n\n\n\n<h3 class=\"wp-block-heading\">More design tools are on the way</h3>\n\n\n\n<p>Each WordPress release brings more thought and attention to the way you can create with the Site Editor. The latest improvements to the design experience help bring your creative vision to life:</p>\n\n\n\n<ul>\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/57005\">Background images for Group blocks get size and repeat support</a>, letting you play with subtle or splashy ways to add visual interest to your layouts. </li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/56897\">Aspect ratio support for the Cover block</a> gives you more control over your Cover block images’ shape and size. </li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/57103\">Shadow support added to more blocks</a> to help create layouts with visual depth or add a little personality to your design.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Site Editor updates to streamline your workflow</h3>\n\n\n\n<p>Bring ease and simplicity to your site-building process with the latest advancements to the Site Editor’s capabilities, from important interface improvements to upgraded tools.</p>\n\n\n\n<p>Going beyond Group blocks, you can now <a href=\"https://github.com/WordPress/gutenberg/pull/54426\">rename every block in the List View</a>. You can also <a href=\"https://github.com/WordPress/gutenberg/pull/55188\">rename</a> or <a href=\"https://github.com/WordPress/gutenberg/pull/55292\">duplicate</a> individual patterns to help keep them organized. Other notable UI improvements add access to your block settings with a <a href=\"https://github.com/WordPress/gutenberg/pull/50273\">quick right-click from List View</a>, adjust preferences with <a href=\"https://github.com/WordPress/gutenberg/issues/56510\">consolidated settings in the Editor preferences panel</a>, and the ability to use the <a href=\"https://github.com/WordPress/gutenberg/pull/56295\">block toolbar on hover when you’re in Distraction Free mode</a>.</p>\n\n\n\n<p>You’ll also notice a cleaner and more unified link-building experience that <a href=\"https://github.com/WordPress/gutenberg/issues/50891\">improves link controls</a>, making it easier to create and manage links in various blocks.</p>\n\n\n\n<p>This release has a bounty of <a href=\"https://github.com/WordPress/gutenberg/issues/33683\">drag-and-drop enhancements</a> to make your editing experience feel more intuitive. You’ll notice helpful visual adjustments, like <a href=\"https://github.com/WordPress/gutenberg/pull/56625\">displaced items in List View</a> when you drag them around to reorganize. You’ll also find that you can <a href=\"https://github.com/WordPress/gutenberg/pull/56070\">drag and drop anywhere you’d like</a> in the Editor, from the very beginning to the end of you workspace.</p>\n\n\n\n<h3 class=\"wp-block-heading\">New Data Views in the Site Editor</h3>\n\n\n\n<p>Every piece of your site comes with a library of information and data. Organizing it, finding what you need, and making informed changes should be as effortless as your site editing experience.</p>\n\n\n\n<p>WordPress 6.5 includes <a href=\"https://github.com/WordPress/gutenberg/issues/55083\">data views</a> for pages, templates, patterns, and template parts. You can view data in a table or grid view, with a new UI for toggling fields and making bulk changes. It’s a refreshing and feature-rich experience that leads the way for the upcoming <a href=\"https://make.wordpress.org/core/2023/07/12/admin-design/\">Admin Redesign project</a> on the WordPress roadmap.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Plugin dependencies improve the plugin experience</h3>\n\n\n\n<p>WordPress 6.5 improves <a href=\"https://core.trac.wordpress.org/changeset/57545\">how users manage plugins that require other plugins</a>. Plugin authors can supply a new <code>Requires Plugins</code> header with a comma-separated list of required plugin slugs from the WordPress.org Plugins repository, which will present users with links to install and activate those plugins first.</p>\n\n\n\n<p>Required plugins must remain active and installed for as long as plugins that require them are active and installed. If any required plugins become inactive or uninstalled, the plugins that require them will be automatically deactivated.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Big performance gains across the editing experience and more</h3>\n\n\n\n<p>WordPress 6.5 contains more than 110 performance-related updates, including an impressive <a href=\"https://github.com/WordPress/gutenberg/issues/57935\">increase in speed and efficiency</a> across both the Post Editor and Site Editor. Loading is over two times faster than in 6.4, with input processing speed increasing to nearly four times faster than the previous release. You’ll also find yourself navigating through the Site Editor six times faster than before.</p>\n\n\n\n<p>The loading time for translated sites gets a boost due to <a href=\"https://make.wordpress.org/core/2023/11/08/merging-performant-translations-into-core/\">merging Performant Translations into Core</a>. This greatly improves the load time of translated sites across the board by loading multiple locales simultaneously, making switching between them a faster and more enjoyable experience.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Accessibility highlights</h3>\n\n\n\n<p>Ensuring that WordPress remains highly accessible is crucial for its success and fulfilling the mission of democratizing publishing. With this in mind, 6.5 will ship more than 65 updates to improve accessibility throughout the platform. These updates include fixes to contrast settings, cursor focus, submenus, positioning of elements, and more. For more information on specific tickets and improvements, please visit <a href=\"https://core.trac.wordpress.org/query?status=closed&focuses=~accessibility&milestone=6.5&group=component&max=500&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">WordPress Trac</a> and GitHub for Gutenberg.</p>\n\n\n\n<p><strong><em>Please note that features highlighted in this post are subject to change before the final release.</em></strong></p>\n\n\n\n<h3 class=\"wp-block-heading\">Just for you: a Beta 1 haiku</h3>\n\n\n\n<p>Freedom to publish<br />Blocks, fonts, patterns all around<br />Design as you wish</p>\n\n\n\n<p class=\"is-style-default\"><em>Thank you to the following contributors for collaborating on this post: <a href=\"https://profiles.wordpress.org/dansoschin/\">@dansoschin</a>, <em><a href=\"https://profiles.wordpress.org/rajinsharwar/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>rajinsharwar</a>,</em> <a href=\"https://profiles.wordpress.org/webcommsat/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>webcommsat</a>, <a href=\"https://profiles.wordpress.org/courane01/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>courane01</a>, <a href=\"https://profiles.wordpress.org/hellosatya/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>hellosatya</a>, <a href=\"https://profiles.wordpress.org/bph/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>bph</a>, <a href=\"https://profiles.wordpress.org/greenshady/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>greenshady</a>, <a href=\"https://profiles.wordpress.org/richtabor/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>richtabor</a>, <a href=\"https://profiles.wordpress.org/priethor/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>priethor</a>, <a href=\"https://profiles.wordpress.org/annezazu/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>annezazu</a>, <a href=\"https://profiles.wordpress.org/joedolson/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>joedolson</a>, <a href=\"https://profiles.wordpress.org/santosguillamot/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>santosguillamot</a>, <a href=\"https://profiles.wordpress.org/cwhitmore/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>cwhitmore</a>, <a href=\"https://profiles.wordpress.org/costdev/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>costdev</a>, <a href=\"https://profiles.wordpress.org/ehtis/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>ehtis</a>, <a href=\"https://profiles.wordpress.org/huzaifaalmesbah/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>huzaifaalmesbah</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>audrasjb</a>, <a href=\"https://profiles.wordpress.org/get_dave/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>get_dave</a>.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 13 Feb 2024 16:31:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Lauren Stein\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"Do The Woo Community: Learn WordPress Product Marketing Deeply with Noel Tock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=79091\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://dothewoo.io/learn-wordpress-product-marketing-deeply/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:420:\"<p>Noel Tock from Human Made shares insights on WordPress limitations & the role of AI and the importance of learning product marketing deeply.</p>\n<p>>> The post <a href=\"https://dothewoo.io/learn-wordpress-product-marketing-deeply/\">Learn WordPress Product Marketing Deeply with Noel Tock</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a> .</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 13 Feb 2024 11:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Matt: Vision Pro + Drone\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=111382\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://ma.tt/2024/02/vision-pro-drone/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"<p>This feels significant. Check out this video. Hat tip: Rory Chitwood.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 10 Feb 2024 22:51:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"Gutenberg Times: Using Grid Support, Pattern overrides, Power in the Details, Interactions are coming — Weekend Edition 284\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=27329\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:129:\"https://gutenbergtimes.com/using-grid-support-pattern-overrides-power-in-the-details-interactions-are-coming-weekend-edition-284/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:24502:\"<p>Howdy, </p>\n\n\n\n<p>Justin Tadlock wrote: “WordPress 6.5 is just a month and a half away, and that means all cylinders are firing. ” Beta 1 will arrive on February 13, 2024, and that comes with a feature freeze. </p>\n\n\n\n<p><a href=\"https://github.com/WordPress/gutenberg/releases/tag/v17.7.0-rc.1\">Gutenberg 17.7 is available as Release candidate 1</a>, which is the last plugin release to make it into WordPress 6.5 release. Go out and test! </p>\n\n\n\n<p>You don’t need a test site on a server or locally anymore. You can test right in our browser via <a href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\">WordPress Playground (link w/ Gutenberg Nightly installed)</a></p>\n\n\n\n<p>Happy testing, until next week 🙂</p>\n\n\n\n<p>Yours, 💕<br /><em>Birgit</em></p>\n\n\n\n<p>If you will be at <strong>WordCamp Asia</strong> and would like to meetup, you can use <a href=\"https://calendly.com/pauli-haack/wcasia\">my public calendar</a> to see how we can connect. (Don’t worry about the 30-min slot,we can keep going if it pleases us.) </p>\n\n\n\n<p>My friend and college <strong>Ryan Welcher</strong> will also be in Taipei, Taiwan. If you want to meet with him, you can <a href=\"https://calendly.com/ryan-welcher/wordcamp-asia-2024?from=slack\">use his Calendly link</a> to schedule a meeting. </p>\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<ol><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/using-grid-support-pattern-overrides-power-in-the-details-interactions-are-coming-weekend-edition-284/#0-word-press-release-information\">Developing Gutenberg and WordPress</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/using-grid-support-pattern-overrides-power-in-the-details-interactions-are-coming-weekend-edition-284/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/using-grid-support-pattern-overrides-power-in-the-details-interactions-are-coming-weekend-edition-284/#2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/using-grid-support-pattern-overrides-power-in-the-details-interactions-are-coming-weekend-edition-284/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor.</a><ol><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/using-grid-support-pattern-overrides-power-in-the-details-interactions-are-coming-weekend-edition-284/#interactivity-api\">Interactivity API</a><ol><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/using-grid-support-pattern-overrides-power-in-the-details-interactions-are-coming-weekend-edition-284/#buzz-on-x-formerly-known-as-twitter\">Buzz on X (formerly known as Twitter)</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/using-grid-support-pattern-overrides-power-in-the-details-interactions-are-coming-weekend-edition-284/#documentation-and-demos\">Documentation and Demos</a></li></ol></li></ol></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/using-grid-support-pattern-overrides-power-in-the-details-interactions-are-coming-weekend-edition-284/#upcoming-events\">Upcoming Events</a><ol><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/using-grid-support-pattern-overrides-power-in-the-details-interactions-are-coming-weekend-edition-284/#developer-hours\">Developer Hours</a></li></ol></li></ol>\n</div></div>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p><strong>Anne McCarthy</strong> published a great video again, and shows us the <strong><a href=\"https://www.youtube.com/watch?v=qKo2I5bXoX8\">Power in Every Detail and gives a Quick Look at Smaller Features in WordPress 6.5</a>.</strong></p>\n\n\n\n<p>“This video goes through smaller yet impactful features and improvements coming in WordPress 6.5, set to be released on March 26th, 2024. This is truly just a glimpse! Drag & drop improvements could have an entire video dedicated to it alone.” she wrote. </p>\n\n\n\n<p>McCarthy covered a lot in five minutes! </p>\n\n\n\n<ul>\n<li>See outline of blocks that are editable to help visualize what you can interact with. </li>\n\n\n\n<li>Show a preview of your template or turn it off. </li>\n\n\n\n<li>Right click on List View to show block options. </li>\n\n\n\n<li>Use the block toolbar while in distraction-free mode. </li>\n\n\n\n<li>Explore a new preferences section, complete with Appearance and Accessibility sections. </li>\n\n\n\n<li>Drag & drop an image next to another, and it automatically transforms into a gallery. </li>\n\n\n\n<li>Set a gallery to randomly change the order of the images shown on each page load. </li>\n\n\n\n<li>Rename almost all blocks in List View for better organization. </li>\n\n\n\n<li>Enjoy faster editing experience across the board. </li>\n\n\n\n<li>See a summary of style changes when you save in the Site Editor. </li>\n\n\n\n<li>View your site quickly after saving, thanks to an updated snacker notice.</li>\n</ul>\n\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<div class=\"toolbelt-video-wrapper\"></div>\n</div>\n\n\n\n\n<p>If you are more like me that you rather read about changes and updates, Anne McCarthy posted <a href=\"https://make.wordpress.org/core/2024/02/10/core-editor-improvement-power-in-the-details/\"><strong>Core Editor Improvement: Power in the Details</strong></a> on the make blog with a lot more details and instructions on how to use them. </p>\n\n\n\n<p class=\"has-accent-color has-light-background-background-color has-text-color has-background has-link-color wp-elements-be0f489534e352b6db8b419a84c4135e\">🎙️ Latest episode: <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-95-gutenberg-17-5-early-testing-of-wordpress-6-5-and-block-themes/\">Gutenberg Changelog #95 – Gutenberg 17.5, Early Testing of WordPress 6.5 and Block Themes</a> with special guest: Carolina Nymark</p>\n\n\n\n<p>For his post, <strong><a href=\"https://developer.wordpress.org/news/2024/02/10/whats-new-for-developers-february-2024/\">What’s new for developers? (February 2024</a>)</strong>, <strong>Justin Tadlock</strong> collected a ton of information. He highlighted the Block Bindings API, the new <code>allowedBlocks</code> property for block.json and its implication for extenders, and features update for the WordPress playground. In addition, you’ll find 20+ other knowledge nuggets for plugins and tools developers, as well as for theme builders in this post. </p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n\n<div class=\"ngl-articles colored ngl-articles-50_50 ngl-articles-frontend\">\n\n \n <div class=\"ngl-articles-wrap ngl-articles-webview\">\n \n \n <div class=\"ngl-article-mobile\">\n <table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n <tr>\n <td valign=\"top\">\n <div class=\"ngl-article-mob-wrap\">\n <div class=\"ngl-article-featured\"><a href=\"https://gutenbergtimes.com/pattern-overrides-an-early-review/\" target=\"_self\" rel=\"\"><img src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/02/Screenshot-2024-02-07-at-11.29.34.png?w=652&ssl=1\" /></a></div><div class=\"ngl-article-title\"><a href=\"https://gutenbergtimes.com/pattern-overrides-an-early-review/\" target=\"_self\" rel=\"\"><span>Synced Pattern Overrides – an early review</span></a></div><div class=\"ngl-article-excerpt\">A month ago, Anne McCarthy suggested Early Opportunities to Test WordPress 6.5. Meanwhile, Gutenberg 17.6 has been released and 17.7 is in the works. For my explorations, I used WordPress…</div> </div>\n </td>\n </tr>\n </table>\n </div>\n \n \n \n\n \n \n </div>\n\n</div>\n\n\n\n\n<p><strong><a href=\"https://twitter.com/danielwrobert\">Daniel Robert</a></strong> shared what the Woo team has been working on via <strong><a href=\"https://developer.woo.com/2024/02/02/store-editing-snaps-enhancing-product-display-and-streamlining-store-management/\">Store Editing Snaps: Enhancing Product Display and Streamlining Store Management</a>.</strong> “It highlights the Product Collection Block for improved product presentation and updates to templating logic for handling WooCommerce templates, aiming to streamline store setup and fix long-standing bugs. Efforts also include improving user experience in the editor and ensuring robust test coverage for theme and block template customization” </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/joyofwp\">Bud Kraus</a></strong> went on <a href=\"https://www.hostinger.com/tutorials/wordpress-twenty-twenty-four-theme\"><strong>Exploring Twenty Twenty-Four: A WordPress Theme for Any Website</strong></a> and shared what he wants you to know. “Twenty Twenty-Four lets you make a wide variety of websites, limited only by your imagination. However, its strength is in creating three types of sites, which I will explore in detail later on. ” he wrote. Kraus then continues to give a mini tutorial on how to work with pattern and the image aspect ratios feature in templates. If you haven’t checked out the latest WordPress default theme, you learn quite a great deal about it.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his video on <a href=\"https://www.youtube.com/watch?v=DnTvy8zDtWc\"><strong>WordPress Layouts,</strong></a> <strong>Jamie Marsland,</strong> PootlePress, explains the four width your content can take: Default, wide, full, and custom width. You’ll learn how to determine globally your layout for text and media, how to establish a custom width for certain sections, and how all those are interconnected. </p>\n\n\n\n<p>Before block themes and the site editor, users didn’t have much control over these various layout width on their site, unless the theme developer purposefully allows those settings on their theme. With the block themes there come more power to the users, and with that, to quote Mr. Parker, comes great responsibility. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Tammie Lister</strong>‘s <strong><a href=\"https://editortips.com/\">Editor Tips</a></strong> site has new posts: </p>\n\n\n\n<ul>\n<li><a href=\"https://editortips.com/show-button-text-labels/\">Show button text labels</a><br />You can show button text labels by turning them on in preferences. This can then also be turned off using the same method.</li>\n\n\n\n<li><a href=\"https://editortips.com/manage-block-visbility/\">Manage block visibility</a><br />Control what blocks are visible by going to ‘preferences’ and selecting ‘Blocks‘. Here you can choose to show most used blocks and even turn on or off a particular block.</li>\n\n\n\n<li><a href=\"https://editortips.com/document-outline/\">Document outline</a><br />Want to see an outline of your document? You can by clicking the ‘Document overview‘ and selecting ‘Outline’</li>\n\n\n\n<li><a href=\"https://editortips.com/view-site-from-editor/\">View site from editor</a><br />If you are in the editor browser, you can view your site by going to the ‘search’ icon and hovering. The ‘view site‘ icon will reveal, and you can then click to see your site.</li>\n\n\n\n<li><a href=\"https://editortips.com/editor-breadcrumbs/\">Editor breadcrumbs</a><br />Quickly navigate through your block content using the editor navigation at the bottom of the screen. Just go to the bottom, and you can click up the stack of blocks to find where you have been</li>\n</ul>\n\n\n\n<p>You can also follow <a href=\"https://twitter.com/wpeditortips\"><strong>@wpeditortips</strong></a> on X (former Twitter) </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Rich Tabor</strong> amplified Matias Ventura’s idea for WordPress contributors to build single block plugins for the repository outside the core blocks. Learn more by heading over to the post <strong><a href=\"https://rich.blog/core-directory-blocks/\">Let’s build more blocks</a></strong>. What are blocks, that you would need in addition to the core blocks? <a href=\"https://github.com/WordPress/gutenberg/issues/58773\">Chime in on GitHub</a>. </p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p>In his article “<a href=\"https://developer.wordpress.org/news/2024/02/06/adding-and-using-grid-support-in-wordpress-themes/\"><strong>Adding and using grid support in WordPress themes</strong></a>” <strong>Justin Tadlock </strong>wrote about how Theme developers can add a feature called grid support to their themes. This grid support helps them arrange the website’s layout in more creative ways, giving them more flexibility in design. The article provides step-by-step instructions and examples to help theme makers understand how to include this feature in their work.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>On February 8th, 2024 contributors came together in a<a href=\"https://make.wordpress.org/themes/2024/02/09/recap-of-hallway-hangout-on-intrinsic-design/\"><strong> Hallway Hangout in Intrinsic Design.</strong></a> The discussion was focused on understanding intrinsic design principles and some challenges of implementing them in WordPress themes and plugins. I posted a recap with the video recording and shared links. </p>\n\n\n\n<a href=\"https://developer.wordpress.org/news/2023/02/23/intrinsic-design-theming-and-rethinking-how-to-design-with-wordpress/\"><img width=\"652\" height=\"355\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/02/Proliferation-of-screen-views.png?resize=652%2C355&ssl=1\" alt=\"\" class=\"wp-image-27378\" /></a>Featured image on <a href=\"https://developer.wordpress.org/news/2023/02/23/intrinsic-design-theming-and-rethinking-how-to-design-with-wordpress/\">Developer Blog post demonstrating the proliferation of screen sizes </a>by Justin Tadlock\n\n\n\n\n<p><strong> <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">“Keeping up with Gutenberg – Index 2022”</a> </strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test, and Meta team from Jan. 2021 on. Updated by yours truly. <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\"><em>The index 2020 is here</em></a></p>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor.</h2>\n\n\n\n<p>In his post, <strong><a href=\"https://make.wordpress.org/core/2024/02/08/improving-block-development-documentation-2023-recap-and-a-look-ahead/\">Improving block development documentation: 2023 recap and a look ahead</a>,</strong> Nick Diego summarized what changes came to the Block Editor Handbook in the last 12 months or so<a href=\"https://make.wordpress.org/core/2024/02/08/improving-block-development-documentation-2023-recap-and-a-look-ahead/\"><strong> </strong></a>and what’s in store as next steps. He also acknowledges that with 400 pages in the handbook, it needs some commitment from contributors to keep up to date, especially on a project that is in active development for so long and keeps adding new APIs, and its documentation. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In her post <a href=\"https://developer.woo.com/2024/01/31/introducing-new-woocommerce-developer-documentation/\"><strong>Introducing New WooCommerce Developer Documentation</strong></a>, <strong><a href=\"https://twitter.com/jacklynbiggin\">Jacklyn Biggin</a></strong> shared about the launch of the new site. ”This resource is designed to assist developers in building powerful ecommerce stores, crafting unique extensions or themes, and contributing directly to enhancing WooCommerce itself. Whether you’re a seasoned developer or just starting your journey with WooCommerce, you’ll find essential guides and resources tailored to meet your needs.” she wrote. </p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"interactivity-api\">Interactivity API</h3>\n\n\n\n<p>The Buzz about the Interactivity API coming to WordPress 6.5 is heating on X (former Twitter) and we collected a few resources, so you can get started exploring the possibilities. Start with the two videos linked below. </p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"buzz-on-x-formerly-known-as-twitter\">Buzz on X (formerly known as Twitter)</h4>\n\n\n\n<p>Core contributor <strong>Felix Arntz</strong> <a href=\"https://twitter.com/felixarntz/status/1755629914819346863\">posted</a>: “I need to interrupt my baby bonding leave to just say: This is the most exciting new API to land in WordPress core since the REST API and Block API! If you’re a WordPress developer of any kind, I encourage you to start using the Interactivity API sooner than later.”</p>\n\n\n\n<p><strong>Riad Benguella</strong> <a href=\"https://twitter.com/riadbenguella/status/1755662059570668029\">posted: </a>“The interactivity API is coming to WordPress on 6.5. With block bindings, improved block hooks, the data views package, WordPress 6.5 is going to be huge for WordPress developers.”</p>\n\n\n\n<p><strong>Deryck Oñate</strong> <a href=\"https://twitter.com/DeryckOE/status/1755615465634988048\">tweeted</a>: ‘WordPress 6.5 will have Interactivity API in the core. Something new and exciting to learn and take advantage of. Thanks to <a href=\"https://twitter.com/luisherranz\">@luisherranz</a> and all the contributors, and linked to <a href=\"https://github.com/WordPress/wordpress-develop/pull/5953\"><strong>Interactivity API: Server Directive Processing</strong></a></p>\n\n\n\n<p><strong>Seth Rubinstein</strong>, Pew Research, posted: ” I see that the <a href=\"https://developer.wordpress.org/block-editor/reference-guides/packages/packages-interactivity/\">WordPress/interactivity api</a> is getting merged into the WP 6.5 release. Congrats to Luis Heranze and Pablo Postigo and all those involved in this amazing new addition to the modern WordPress developer’s toolbox. (…)</p>\n\n\n\n<p>If you’re looking for code examples of how to use the API in a systemic way, we just put in place a release strategy for our plugins, so you can now see our in-development work leading up to the April 18th launch of PRC Platform. </p>\n\n\n\n<p>These repos are now getting updated with each push to our in-development release branch, no more waiting months for updates. Of particular note for people to peruse:</p>\n\n\n\n<ul>\n<li><a href=\"https://github.com/pewresearch/prc-block-library/tree/develop/blocks\">Pew Research Block Library</a> </li>\n\n\n\n<li><a href=\"https://github.com/pewresearch/prc-platform-core/tree/develop/includes/facets/blocks\">Pew Research Platform Core</a></li>\n</ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<h4 class=\"wp-block-heading\" id=\"documentation-and-demos\">Documentation and Demos</h4>\n\n\n\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<div class=\"toolbelt-video-wrapper\"></div>\n</div>This session features a live product demo presented by <strong>Michal Czaplinski,</strong> one of the developers who have brought the Interactivity API to fruition. Following the demo, Michal answers questions posed by the audience.\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<div class=\"toolbelt-video-wrapper\"></div>\n</div>With Jonathan Bossenger: “In this session, you will learn more about this new developer API, through a live coding example”\n\n\n\n\n<ul>\n<li><a href=\"https://github.com/WordPress/gutenberg/blob/trunk/packages/interactivity/docs/1-getting-started.md#getting-started-with-the-interactivity-api\">Getting Started Guide</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/blob/trunk/packages/interactivity/docs/2-api-reference.md\">API Reference</a></li>\n\n\n\n<li><a href=\"https://wpmovies.dev\">Movies demo</a> (<a href=\"https://github.com/WordPress/wp-movies-demo\">code</a>)</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/block-development-examples\">Block Development Examples on GitHub</a></li>\n\n\n\n<li><a href=\"https://github.com/jonathanbossenger/wp-interactive-game\">Interactive Game of Dodge</a> by Jonathan Bossenger</li>\n</ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"upcoming-events\">Upcoming Events</h2>\n\n\n\n<p><strong>March 19, 2024: </strong><br /><strong><a href=\"https://events.wpengine.com/event/f5972890-64b0-4934-9b39-2e704bf34725/websitePage:7b184ebe-3411-489f-bc0c-f76fe90d1ce5\">WP Engine’s Decode 2024 online conference</a> </strong></p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"developer-hours\">Developer Hours</h3>\n\n\n\n<p><strong>February 13, 2024, at 16:00 UTC</strong><br /><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/298634428/\"><strong>JavaScript for modern WordPress development</strong></a></p>\n\n\n\n<p><strong>February 27, 2024, at 16:00 UTC</strong><br /><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/298634463/\"><strong>How to build modern web layouts with WordPress blocks</strong></a></p>\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg’s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. </p>\n\n\n\n<p>Now available via <a href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\">WordPress Playground</a> (no need for a test site) <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n<p class=\"has-text-align-right has-small-font-size\"><em>Questions? Suggestions? Ideas? Don’t hesitate to send <a href=\"mailto:[email protected]\">them via email</a> or send me a message on WordPress Slack or Twitter @bph</em>. </p>\n\n\n\n<p class=\"has-text-align-right has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, send them to <a href=\"mailto:[email protected]\">[email protected]</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p>Featured Image: Philipp Frank’s Pegelhaus Photo: Birgit Pauli-Haack</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don’t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button type=\"submit\" class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too, and won’t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 10 Feb 2024 11:07:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"Matt: WordPress, Taylor Swift, Super Bowl, oh my\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=111368\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://ma.tt/2024/02/wp-taylor/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2365:\"<p>There has been quite a bit of buzz in the WordPress community because during the Grammys red carpet Taylor Swift’s <a href=\"https://twitter.com/tswifterastour/status/1754298096518062573\">website went down and this is what everyone saw</a>:</p>\n\n\n\n<img width=\"604\" height=\"635\" src=\"https://i0.wp.com/ma.tt/files/2024/02/GFiE0Y_aIAAANP6-974x1024.jpeg?resize=604%2C635&ssl=1\" alt=\"\" class=\"wp-image-111369\" />\n\n\n\n<p>Hey there! That looks familiar. What a beautiful WordPress logo! (Hat tip: <a href=\"https://alexascordato.com/\">Alexa Scordato</a> for telling me about this.) The website also had some ups and downs, we haven’t been able to get in touch with anyone on Taylor’s tech team, but if you’re there, we’re standing by and happy to <a href=\"https://wp.cloud/\">spin up your site on wp.cloud</a> so it can handle any amount of traffic.</p>\n\n\n\n<p>This gets even more interesting, because for the first time in my life, after having orbited around the Super Bowl for decades*, I am attending in person. Thanks to the graciousness of my friend and advisor <a href=\"https://jasonhoffman.blog/\">Jason Hoffman</a>, I’ll be in an owner’s suite, <a href=\"https://mercantile.wordpress.org/\">wearing a WordPress t-shirt</a>, possibly not too far from Taylor, watching the game. Look for me on TV! I know <a href=\"https://taylorswift.tumblr.com/\">she loves Tumblr</a> so I’ll have with me a little gift bag of <a href=\"https://www.tumblr.com/\">Tumblr</a> swag just in case I meet her.</p>\n\n\n\n<p>* How have I been orbiting around the Super Bowl? Even though I don’t follow sports, I’m obsessed with the Super Bowl, and typically host watch parties every year. I love seeing the pinnacle of American achievement. The Super Bowl centers around a number of interesting stories in my life, such as when I was in high school and very poor the Super Bowl was in Houston, and they made McNuggets really cheap, so I ate 104 McNuggets in one sitting. (Sweet and sour sauce, natch.) At that infamous <a href=\"https://en.wikipedia.org/wiki/Super_Bowl_XXXVIII_halftime_show_controversy\">Justin Timberlake / Janet Jackson moment</a>, they needed extras on the field to be their audience and my high school girlfriend was one of the kids in the audience when it happened. There’s so many more stories I could tell!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Feb 2024 21:11:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:11:\"\n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"HeroPress: Community is a choice\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://heropress.com/?p=6535\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:109:\"https://heropress.com/community-is-a-choice/#utm_source=rss&utm_medium=rss&utm_campaign=community-is-a-choice\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:13632:\"<img width=\"768\" height=\"1024\" src=\"https://heropress.com/wp-content/uploads/2024/02/37165c5bf3b0273f6.26785708-rotated-1-768x1024.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"\" /><div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-6535_632103-6b\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n<div class=\"kb-row-layout-wrap kb-row-layout-id6535_2f7d29-6b alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top kb-theme-content-width\">\n\n<div class=\"wp-block-kadence-column kadence-column6535_96f652-00 inner-column-1\"><div class=\"kt-inside-inner-col\">\n<h2 class=\"kt-adv-heading6535_522ef1-4a wp-block-kadence-advancedheading\"><a href=\"https://heropress.com/\">HeroPress.com</a> – <a href=\"https://heropress.com/essays/words-to-wordpress-charting-my-path-through-technology-and-community/\">Words to WordPress: Charting My Path Through Technology and Community! – লেখালেখি থেকে শুরু করে ওয়ার্ডপ্রেসের সাথে আমার পথচলা </a></h2>\n\n\n\n\n\n<div class=\"wp-block-image is-style-default\">\n<a href=\"https://heropress.com/essays/words-to-wordpress-charting-my-path-through-technology-and-community/\"><img width=\"300\" height=\"300\" src=\"https://heropress.com/wp-content/uploads/2024/02/Adrita-WordCamp-300x300.webp\" alt=\"Adrita Chakraborty\" class=\"wp-image-6515\" /></a></div>\n\n\n\n<p>Adrita Chakraborty from Dhaka, Bangladesh came to WordPress by coincidence, but quickly fell in love.</p>\n\n\n\n<p><em>Starting with WordPress might have been a coincidence, but staying with it was a choice I made because of the joy and achievement it brings. My story is simple: it’s about finding your passion in unexpected places and growing with it.</em></p>\n\n\n\n<p>Adrita’s essay is <a href=\"https://heropress.com/essays/words-to-wordpress-charting-my-path-through-technology-and-community/\">available</a> on <a href=\"https://heropress.com\">HeroPress.com</a>.</p>\n</div></div>\n\n</div></div>\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-6535_d32edd-c3\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n<div class=\"kb-row-layout-wrap kb-row-layout-id6535_be1ef9-54 alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top kb-theme-content-width\">\n\n<div class=\"wp-block-kadence-column kadence-column6535_cfee86-be inner-column-1\"><div class=\"kt-inside-inner-col\">\n<h2 class=\"kt-adv-heading6535_822b21-5d wp-block-kadence-advancedheading\"><a href=\"https://photos.wpkerala.org/\">WordPress Photo Festival 2024</a></h2>\n\n\n\n\n\n<div class=\"wp-block-image\">\n<a href=\"https://photos.wpkerala.org/\"><img width=\"249\" height=\"300\" src=\"https://heropress.com/wp-content/uploads/2024/02/[email protected]\" alt=\"WordPress Photo Festival 2024\" class=\"wp-image-6539\" /></a></div>\n\n\n\n<p>This week was a big week for the WPPhotos Project. The WordPress Kerala community kicked off a global photos festival that lasts a week (it end tomorrow). All that was required to enter is a WordPress.org account and include the even hashtag in the description.</p>\n\n\n\n<p>Over 1360 images have been moderated through and there are currently 200+ in the queue. This has been a good stress test for the moderation team, we’ve done a pretty good job keeping up.</p>\n\n\n\n<p>If you’d like to see the submitted photos visit <a href=\"https://photos.wpkerala.org/\">https://photos.wpkerala.org/</a>.</p>\n</div></div>\n\n</div></div>\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-6535_bc820e-8f\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n<div class=\"kb-row-layout-wrap kb-row-layout-id6535_f27161-0f alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top kb-theme-content-width\">\n\n<div class=\"wp-block-kadence-column kadence-column6535_52d065-7c inner-column-1\"><div class=\"kt-inside-inner-col\">\n<h2 class=\"kt-adv-heading6535_c54615-e0 wp-block-kadence-advancedheading\"><a href=\"https://hallwaychats.com\">WPPhotos.Info</a></h2>\n\n\n\n\n\n<div class=\"wp-block-image\">\n<a href=\"https://wpphotos.info/sharks-on-the-sand/\"><img width=\"300\" height=\"225\" src=\"https://heropress.com/wp-content/uploads/2024/02/40365b3f9f700cfa6.90654423-scaled-1-300x225.jpg\" alt=\"A group of sharks laying on the sand.\" class=\"wp-image-6538\" /></a></div>\n\n\n\n<p><a href=\"https://wordpress.org/photos/author/faisalahammad/\">Faisal Ahammad</a>, shared his story about the WPPhoto of the week:</p>\n\n\n\n<p>“My four friends and I visited Malaysia and Singapore last September to attend <strong>WordCamp Malaysia 2023</strong>. After the conference, we flew to Singapore and visited the <strong>S.E.A Aquarium<img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2122.png\" alt=\"™\" class=\"wp-smiley\" /></strong>, where I took this photo. I saw many new sea animals at the aquarium, including these sharks.</p>\n\n\n\n<p><a href=\"https://wpphotos.info/sharks-on-the-sand/\">Read more of the story at WPPhotos.info!</a></p>\n</div></div>\n\n</div></div>\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-6535_3860e8-36\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n<div class=\"kb-row-layout-wrap kb-row-layout-id6535_efcad1-f7 alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top kb-theme-content-width\">\n\n<div class=\"wp-block-kadence-column kadence-column6535_fabfdf-d4 inner-column-1\"><div class=\"kt-inside-inner-col\">\n<h2 class=\"kt-adv-heading6535_8b687b-e4 wp-block-kadence-advancedheading\"><a href=\"https://wppodcasts.com\">WP Podcasts</a></h2>\n\n\n\n\n\n\n<a href=\"https://wppodcasts.com\"><img src=\"https://heropressnetwork.com/wp-content/uploads/2024/01/pocket_casts_single_315.png\" alt=\"Pocket Casts image\" class=\"wp-image-4316\" /></a>\n\n\n\n\n<p>There were <em>eighteen</em> WordPress podcast episodes released this week!</p>\n\n\n\n<ul>\n<li><a href=\"https://podcasters.spotify.com/pod/show/the-sdm-show/episodes/Episode-393-Security-Tips-For-Your-Business-e2fadqg#new_tab\">Episode 393: Security Tips For Your Business</a> from <a href=\"https://wppodcasts.com/podcast/the-sdm-show/\">The SDM Show</a></li>\n\n\n\n<li><a href=\"https://kitchensinkwp.com/podcast-e519-where-are-they-now/?utm_source=rss&utm_medium=rss&utm_campaign=podcast-e519-where-are-they-now#new_tab\">Podcast E519 – Where Are They Now?</a> from <a href=\"https://wppodcasts.com/podcast/kitchensink-wordpress-podcast/\">Kitchensink WordPress Podcast</a></li>\n\n\n\n<li><a href=\"https://unbilleteachattanooga.com/episodio-248/#new_tab\">Episodio 248: Trabajar con y para Jira, con Jaime Capitel</a> from <a href=\"https://wppodcasts.com/podcast/un-billete-a-chattanooga/\">Un billete a Chattanooga</a></li>\n\n\n\n<li><a href=\"https://www.wppodcast.cat/podcast/precarregant-php/#new_tab\">14. Precarregant PHP</a> from <a href=\"https://wppodcasts.com/podcast/wordpress-podcast-catala/\">WordPress Pòdcast (català)</a></li>\n\n\n\n<li><a href=\"https://share.transistor.fm/s/b017a521#new_tab\">Your Feedback Needed!</a> from <a href=\"https://wppodcasts.com/podcast/the-wp-minute/\">The WP Minute</a></li>\n\n\n\n<li><a href=\"https://dothewoo.io/woocommerce-performance-optimization/#new_tab\">WooCommerce Performance Optimization with Sabrina Zeidan and Uros Tasic</a> from <a href=\"https://wppodcasts.com/podcast/do-the-woo-a-woocommerce-podcast/\">Do the Woo – A WooCommerce Podcast</a></li>\n\n\n\n<li><a href=\"https://dothewoo.io/funding-wordpress-projects-with-tom-willmot-and-joost-de-valk/#new_tab\">Funding WordPress Projects with Tom Willmot and Joost de Valk</a> from <a href=\"https://wppodcasts.com/podcast/do-the-woo-a-woocommerce-podcast/\">Do the Woo – A WooCommerce Podcast</a></li>\n</ul>\n\n\n\n<p>There are new episodes every single day, so be sure to stop by <a href=\"https://wppodcasts.com\">WPPodcasts.com</a> and search for things that interest you!</p>\n</div></div>\n\n</div></div>\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-6535_81581d-7d\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n<div class=\"kb-row-layout-wrap kb-row-layout-id6535_c4994d-3c alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top kb-theme-content-width\">\n\n<div class=\"wp-block-kadence-column kadence-column6535_cf9ac5-47 inner-column-1\"><div class=\"kt-inside-inner-col\">\n<h2 id=\"wpphotos\" class=\"kt-adv-heading6535_b814ba-58 wp-block-kadence-advancedheading\"><a href=\"https://wordpress.org/photos\">WP Photos</a></h2>\n\n\n\n<p>Here are some of the great photos submitted to the <a href=\"https://wordpress.org/photos\">WPPhotos</a> project this week!</p>\n\n\n\n\n<a href=\"https://wordpress.org/photos/photo/12265c61b9/\"><img width=\"1024\" height=\"768\" src=\"https://heropress.com/wp-content/uploads/2025/02/12265c61b9905faa5.58707887-1024x768.jpg\" alt=\"A cloudy sky with birds overhead during sunset\" class=\"wp-image-6544\" /></a><a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/12265c61b9/\">photo</a> by <a href=\"https://wordpress.org/photos/author/omorfaruk/\">Omor Faruk</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.\n\n\n\n<a href=\"https://wordpress.org/photos/photo/15465c5f25/\"><img width=\"1024\" height=\"683\" src=\"https://heropress.com/wp-content/uploads/2025/02/15465c5f2523e7496.81350362-1024x683.jpeg\" alt=\"Black and white photo off a wooden horse on top of a merry-go-round\" class=\"wp-image-6545\" /></a><a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/15465c5f25/\">photo</a> by <a href=\"https://wordpress.org/photos/author/nilovelez/\">Nilo Velez</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.\n\n\n\n<a href=\"https://wordpress.org/photos/photo/18365c60cf/\"><img width=\"768\" height=\"1024\" src=\"https://heropress.com/wp-content/uploads/2025/02/18365c60cfcc2d547.13858936-768x1024.jpeg\" alt=\"A man holding smoothie\" class=\"wp-image-6546\" /></a><a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/18365c60cf/\">photo</a> by <a href=\"https://wordpress.org/photos/author/ohidul/\">ohidul</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.\n\n\n\n<a href=\"https://wordpress.org/photos/photo/35765c5ff0/\"><img width=\"786\" height=\"1024\" src=\"https://heropress.com/wp-content/uploads/2025/02/35765c5ff05e66731.37883106-786x1024.jpg\" alt=\"Zeiss Ikoflex Antique Camera\" class=\"wp-image-6547\" /></a><a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/35765c5ff0/\">photo</a> by <a href=\"https://wordpress.org/photos/author/mardroid/\">Marcel Tannich</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.\n\n\n\n<a href=\"https://wordpress.org/photos/photo/36665c6000/\"><img width=\"892\" height=\"1024\" src=\"https://heropress.com/wp-content/uploads/2025/02/36665c6000796b6b1.44498940-892x1024.jpg\" alt=\"A bat clinging to a banana tree branch while sipping honey from a flower.\" class=\"wp-image-6548\" /></a><a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/36665c6000/\">photo</a> by <a href=\"https://wordpress.org/photos/author/adhishadhi/\">Adhish S</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.\n\n\n\n<a href=\"https://wordpress.org/photos/photo/59465c6006/\"><img width=\"848\" height=\"1024\" src=\"https://heropress.com/wp-content/uploads/2025/02/59465c600683d0520.06952455-848x1024.jpg\" alt=\"Sunlight filtering through green leaves, casting dappled shadows.\" class=\"wp-image-6549\" /></a><a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/59465c6006/\">photo</a> by <a href=\"https://wordpress.org/photos/author/adhishadhi/\">Adhish S</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.\n\n\n\n\n<p>Be sure to check out the <a href=\"https://wordpress.org/photos/\">hundreds of other great photos</a>!</p>\n</div></div>\n\n</div></div>\n\n\n<p></p>\n\n\n\n<p><a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/37165c5bf3/\">photo</a> by <a href=\"https://wordpress.org/photos/author/hardeepasrani/\">Hardeep Asrani</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.</p>\n\n\n\n\n\n\n<p>That’s it for this week! If you’d like to get this post in your email every week, <a href=\"https://heropressnetwork.com/newsletter\">make sure you sign up</a>!</p>\n\n<p>The post <a href=\"https://heropress.com/community-is-a-choice/\">Community is a choice</a> appeared first on <a href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Feb 2024 15:37:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"Do The Woo Community: Dev Biz Fluctuations, OS Onchain Frames Bounties, and Deep Thoughts on Woo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=79079\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://dothewoo.io/dev-biz-fluctuations-os-onchain-frames-bounties-and-deep-thoughts-on-woo/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:451:\"<p>WooCommerce dev business up and downs, grants available for Frames builders and outsourcing for WooCommerce builder projects.</p>\n<p>>> The post <a href=\"https://dothewoo.io/dev-biz-fluctuations-os-onchain-frames-bounties-and-deep-thoughts-on-woo/\">Dev Biz Fluctuations, OS Onchain Frames Bounties, and Deep Thoughts on Woo</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a> .</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Feb 2024 12:44:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"WordPress Foundation: The WordPress Foundation 2023 Annual Report is Now Available\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://wordpressfoundation.org/?p=1118915\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"https://wordpressfoundation.org/news/2024/the-wordpress-foundation-2023-annual-report-is-now-available/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1830:\"<p>The WordPress Foundation has recently released its <a href=\"https://wordpressfoundation.org/2023-annual-report/\">2023 Annual Report</a>, highlighting the success of the programs and events supported by the non-profit organization over the year.</p>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress Foundation Programs</h2>\n\n\n\n<p>Last year, the WordPress Foundation reintroduced its programs to support charity hackathons and open source education worldwide. These initiatives contributed to a renewed interest in participation with 64 attendees.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Community Support Programs</h2>\n\n\n\n<p>The WordPress Meetup program saw impressive development in 2023, with 748 meetup groups hosting 3,869 events (+765 since 2022) and welcoming 5,242 new members. The United States, Spain, and Germany led as countries with the most meetups held.</p>\n\n\n\n<p>WordCamps also increased to 76 (up from 27 in 2022), involving 24,335 attendees, 1715 speakers, and 890 organizers. The community remains committed to diversity, with an increase in female speakers from 28.5% in 2022 to 32.7% in 2023. Ticket sales generated $565,970, with an average ticket cost of $21.70.</p>\n\n\n\n<p>Looking ahead to 2024, the WordPress Foundation is excited to build upon this success and continue to support education about WordPress and open source software through its programs and new, engaging <a href=\"https://events.wordpress.org/\">community events</a>.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-1 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://wordpressfoundation.org/2023-annual-report/\">Check out the 2023 Annual Report</a></div>\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Feb 2024 00:11:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Reyes Martinez\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"Matt: Debt vs Equity\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=111340\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"https://ma.tt/2024/02/debt-vs-equity/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:506:\"<p><a href=\"https://balajis.com/\">Balaji Srinivasan</a> <a href=\"https://twitter.com/balajis/status/1753564694541943186\">posted a great essay on how founders should think about debt vs equity</a>, unfortunately it’s on X/Twitter so the format isn’t great, but the content is gold. As we exit the <a href=\"https://en.wikipedia.org/wiki/Zero_interest-rate_policy\">ZIRP world</a> and go back into normal interest rates, I think this is really important concept for entrepreneurs to understand.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 08 Feb 2024 18:20:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"Do The Woo Community: Funding WordPress Projects with Tom Willmot and Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=79074\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://dothewoo.io/funding-wordpress-projects-with-tom-willmot-and-joost-de-valk/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:412:\"<p>This episode tackles a discussion on the importance of supporting open source projects in the WordPress space.</p>\n<p>>> The post <a href=\"https://dothewoo.io/funding-wordpress-projects-with-tom-willmot-and-joost-de-valk/\">Funding WordPress Projects with Tom Willmot and Joost de Valk</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a> .</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 08 Feb 2024 13:09:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"Matt: Thoughts on Tech Employment\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=111211\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://ma.tt/2024/02/thoughts-on-tech-employment/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4869:\"<p>The Washington Post writes <a href=\"https://www.washingtonpost.com/technology/2024/02/03/tech-layoffs-us-economy-google-microsoft/\">The U.S. economy is booming. So why are tech companies laying off workers?</a> This article has some good data, but I think misses the point with sub-heads like “Shine has come off the tech industry.” Really? How is that reflected in their stock prices?</p>\n\n\n\n<p>I think a few things are happening.</p>\n\n\n\n<p>First, tech companies are typically best at adopting new technology, which leads to productivity gains. </p>\n\n\n\n<p>AI may be an obvious example of this, though for all its hype it hasn’t had a huge impact on most companies yet. I agree with Sam Altman <a href=\"https://twitter.com/alexisohanian/status/1752753792058294725\">when he says there may someday be a billion-dollar company run by one person</a> who is able to highly leverage future AI agents to automate most traditional roles at a company. That said, I think there are advantages to teams including allowing people to go on vacation or take time off, and provide business continuity and succession, so literally one-person is probably an exaggeration. We don’t need AI to see very small teams being valued highly: <a href=\"https://www.theverge.com/2012/4/13/2946785/facebook-instagram-acquisition\">Instagram had only 13 employees when it sold for a billion dollars to Facebook</a>, in 2012!</p>\n\n\n\n<p>Some of this productivity gains just come from adoption of existing tools like Google Workspace or Office 365, issue trackers and version control with tools like Gitlab, Github, or Jira. At Automattic we don’t use email to work or communicate internally, it’s all Slack and <a href=\"https://wordpress.com/p2/\">P2</a>. We also leverage our <a href=\"https://distributed.blog/\">distributed</a> nature to effectively have teams around the world coordinating several shifts of product work per day, and 24/7 coverage for things like systems and customer support without the need for “graveyard shifts.”</p>\n\n\n\n<p>The way tech companies operate, the pace and culture, would be unrecognizable to people at many more traditional companies.</p>\n\n\n\n<p>At tech companies some roles are highly leveraged, like systems, engineering, and design, and everything else in the company really exists to support these. These leveraged roles can create enormous amounts of value, and that’s why it’s not unusual to hear of machine learning engineers working on ads at Google with salaries in the seven figures. (There’s been a weird accounting thing where companies put a lot of their compensation into equity, but I think that’s going away as investors are learning to better account for dilution and employees appreciate the fungibility of cash.)</p>\n\n\n\n<p>Creators are also highly leveraged, which is why <a href=\"https://www.wsj.com/business/media/joe-rogan-podcast-spotify-deal-28eb5f74\">Joe Rogan can sign a new $250M deal with Spotify</a> (which smartly puts him back on Youtube) after laying off 1,500 people in December. Some people like <a href=\"https://hagenterschueren.com/\">Hagen Terschüren</a> try to <a href=\"https://mastodon.social/@hagen/111863148058114596\">tie this together and say you should avoid Spotify for it</a>, but there’s nothing wrong with a business becoming more efficient to serve its customers, it’s the whole point of capitalism. Capitalism is, as Nicholas Stern says (<a href=\"https://a16z.com/its-time-to-build/\">via Marc</a>), the best way to take care of people we don’t know. There’s no honor in keeping people employed inefficiently, it’s better for them to find someplace in the market where their talents will be better leveraged for society and themselves.</p>\n\n\n\n<p>There was a bubble in hiring because tech had so much money it tried to throw people at problems. But the unlock in technology can come from a single person, a single insight. <a href=\"https://en.wikipedia.org/wiki/The_Mythical_Man-Month\">It’s the mythical man-month</a>. Tech-first companies are going to become leaner and more leveraged. Fewer people are going to create more value for society, in ways that will follow power laws and I think we should investigate things like <a href=\"https://en.wikipedia.org/wiki/Universal_basic_income\">Universal Basic Income</a> to provide for all living beings. Technological progress creates abundance, where we have more than what we need.</p>\n\n\n\n<p>At <a href=\"https://automattic.com/\">Automattic</a> last year we did not do layoffs, but allowed performance management and natural attrition (voluntary regrettable was 2.9%, non-regrettable 6.8% for us in 2023) to allow our size to shrink down more naturally, on average two people left for every person we hired last year, from a peak of about 2,064 to 1,936 today.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 08 Feb 2024 02:33:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"Matt: Joshua Redman on Tiny Desk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=111326\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"https://ma.tt/2024/02/joshua-redman-on-tiny-desk/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:985:\"<p>It’s hard to pick a favorite tenor player, but the GOATs that come to mind are Dexter Gordon, Sonny Rollins, John Coltrane, Michael Brecker, and I’m missing people but if I had to pick someone to express the human condition and soul, it would be <a href=\"https://www.joshuaredman.com/\">Joshua Redman</a>. He has such incredible fluency with the horn you get an amazing emotional experience with his vibrations. He’s probably the greatest living tenor saxophonist. <a href=\"https://www.npr.org/2024/02/02/1228083815/tiny-desk-concert-joshua-redman\">He just did a Tiny Desk concert, and the audio and visual capture was impeccable</a>. I watched this full-screen on an Apple XDR and listened with Airpods Max—the chords they’re using, the subtlety of the interactions— the experience was exquisite. (Also peep <a href=\"https://www.houstonisd.org/hspva\">HSPVA</a> grad Paul Cornish!) I can’t embed because it’s not on Youtube yet.</p>\n\n\n\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 08 Feb 2024 00:42:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"WPTavern: It’s alive!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=153740\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/its-alive\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:603:\"<p>Okay I have reviewed all the applications, and invited seven people to participate in a $25/hr trial contract where they will have full access to the site, and can post and participate however they like, they just need to log their hours. After a two-week trial, we’ll decide which two will receive full-time <a href=\"https://audrey.co/\">Audrey Capital</a> employment offers, and will set up some fair and transparent system for freelancers to contribute to the site as well.</p>\n\n\n\n<p>Thank you to everyone who applied, even if you are not one of the seven that made it to this next stage.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Feb 2024 22:02:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"WordPress.org blog: People of WordPress: Sunita Rai\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=16761\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://wordpress.org/news/2024/02/people-of-wordpress-sunita-rai/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10177:\"<p class=\"has-darker-grey-color has-off-white-2-background-color has-text-color has-background has-link-color wp-elements-9b663d0d5861b05380bcaca160ef01c8\">The <em>People of WordPress</em> series shares inspiring stories of how people’s lives can change for the better through WordPress and its global community of contributors.</p>\n\n\n\n<p>In this edition, we feature Sunita Rai, a content marketer originally from a remote village in the hills of Nepal. Sunita’s journey to academic and professional success, with help from the WordPress community, will inspire many.</p>\n\n\n\n<img width=\"1024\" height=\"640\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/01/sunita-rai-featured-img.jpg?resize=1024%2C640&ssl=1\" alt=\"Sunita Rai at WordCamp Asia\" class=\"wp-image-16707\" />\n\n\n\n<h2 class=\"wp-block-heading\">A strong desire to acquire knowledge</h2>\n\n\n\n<p>Schools first opened in Sunita’s village in the late 1970s, but most locals, including her parents, had neither the funds nor opportunities to complete their education. Over the years, they realized that an education could open doors for their children. Sunita’s parents vowed to ensure she received a full education, no matter the costs or hardships. </p>\n\n\n\n<p>Her father worked as a seasonal laborer in India and ensured Sunita and her siblings could go to school with the proper supplies. Her mother cared for everything at home, both the family and the farm. Money was scarce, but determination was abundant.</p>\n\n\n\n<p>To finish high school, Sunita moved in with her aunt in a nearby city. After graduation, she worked as a teacher. One of the biggest challenges was speaking and writing in English, a requirement for her first job teaching at a private English-language school. Her own education had used Nepali as the language of instruction. Fortunately, she enjoyed writing in English and became more fluent with practice. She discovered that she would always want a career where she could continue learning.</p>\n\n\n\n<p>On top of a demanding teaching schedule, Sunita continued her studies at a college affiliated with Tribhuvan University. She knew that doing both would be difficult, but she wanted to be able to support her family while pursuing ambitious life and career goals. Earning a bachelor’s degree was a hugely motivating achievement that inspired her to begin a master’s degree in sociology.</p>\n\n\n\n<p>Teaching for more than five years had been a full-time commitment, with hours of extra work at home. Preparing lessons, grading assignments, and handling exams made it difficult for her to find the time needed for her own studies. Sunita decided she needed more time for her coursework, so she left her teaching job and sought work that would allow her to focus on her studies while still earning money.</p>\n\n\n\n<img width=\"768\" height=\"1024\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/01/sunita-rai-mardi-base-camp-trekking-nepal-nov2023.jpg?resize=768%2C1024&ssl=1\" alt=\"Sunita at basecamp Trekking Nepal in November 2023\" class=\"wp-image-16709\" />\n\n\n\n<h2 class=\"wp-block-heading\">From teaching to writing to WordPress</h2>\n\n\n\n<p>After an extensive search, Sunita landed a content writing job at a successful WordPress development firm in Nepal. Her salary as a content writer wasn’t high, but it grew steadily over time. She would later gain some supplementary freelance work after presenting at a WordCamp. She was able to help support her family as she grew in her career, and now she could do more.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>I’m fortunate to have had the education that gave me the capacity to aspire, get into a WordPress job, meet people from around the world, and tell my story!</p>\n<cite>Sunita</cite></blockquote>\n\n\n\n<p>Early in her career, especially in her early days with WordPress, Sunita benefited from the support of excellent mentors who played pivotal roles in her career development, nurturing her skills in content writing, SEO, and general confidence. Now, she has mentored other content writers and advocates for mentoring programs.</p>\n\n\n\n<img width=\"1024\" height=\"672\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/01/speaker-moment-wrodcampasia2023-sunita-rai.jpg?resize=1024%2C672&ssl=1\" alt=\"Sunita speaking at WordCamp Asia 2023\" class=\"wp-image-16706\" />\n\n\n\n<p>Sunita has engaged in WordCamps, sharing her wealth of knowledge and experiences. Her first WordCamp was <a href=\"https://nepal.wordcamp.org/2015/\">WordCamp Nepal 2015</a>, a pivotal moment where she connected with WordPress enthusiasts from various Nepalese and international companies. She experienced a welcoming environment that inspired her to become involved in the WordPress community. </p>\n\n\n\n<p>At <a href=\"https://kathmandu.wordcamp.org/2016\">WordCamp Kathmandu in 2016</a>, Sunita delivered a talk on <a href=\"https://wordpress.tv/2016/12/01/sunita-rai-seo-copywriting-for-wordpress/\">SEO Copywriting for WordPress</a>, marking a significant milestone in her journey. She later joined a panel discussion titled “Girls in WordPress – Story, Experience, Opportunity, and Career” at <a href=\"https://biratnagar.wordcamp.org/2018/\">WordCamp Biratnagar 2018</a>.</p>\n\n\n\n<p>Most recently, Sunita helped organize speakers at WordCamp Kathmandu <a href=\"https://kathmandu.wordcamp.org/2022/\">2022</a> and <a href=\"https://kathmandu.wordcamp.org/2023/\">2023</a>, and also spoke outside her home country at <a href=\"https://asia.wordcamp.org/2023\">WordCamp Asia 2023</a> and <a href=\"https://sylhet.wordcamp.org/2023/\">WordCamp Sylhet, Bangladesh 2023</a>. These events and her <a href=\"https://wordpress.tv/?s=sunita%20rai\">talks</a>, helped her grow stronger connections within the global WordPress community and encourage more women speakers.</p>\n\n\n\n<img width=\"900\" height=\"675\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/01/sunita-with-wordpress-bangladesh-members.jpg?resize=900%2C675&ssl=1\" alt=\"Sunita with members from the WordPress Bangladesh community\" class=\"wp-image-16711\" />\n\n\n\n<h2 class=\"wp-block-heading\">Translating WordPress and empowering others</h2>\n\n\n\n<p>Reading and writing in your own language is powerful. For Sunita, translation is crucial in bridging gaps and granting access to those with limited platforms to express and share their passions. When she discovered that she could translate WordPress into Nepali, she joined the many other volunteers on the <a href=\"https://make.wordpress.org/polyglots/\">Polyglots team</a>. </p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<h2 class=\"wp-block-heading\">“Translating WordPress to Nepali means empowering my people to access the freedom that WordPress provides.” </h2>\n<cite>Sunita Rai</cite></blockquote>\n\n\n\n<img width=\"768\" height=\"1024\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/01/sunita-with-3-other-female-organizers-wcktm2023.jpg?resize=768%2C1024&ssl=1\" alt=\"Sunita with 3 Female Oganizers WordCamp Kathmandu 2023\" class=\"wp-image-16710\" />\n\n\n\n<p>Sunita emphasizes that coding skills are not a prerequisite for contribution: “The potential impact you can have on the WordPress community is enormous, across areas from local meetups and WordCamps to testing and translating.”</p>\n\n\n\n<p>She highlights her own experience as a potential path for others. “WordPress has had a profound impact on my life… the freedom to work on my own time, to be financially independent, and to overcome my inferiority complex.”</p>\n\n\n\n<p>Her advice to anyone getting started with WordPress: “Get involved in the WordPress community and contribute as early as possible. By participating, you will better understand the project and its people, so you can advocate WordPress in a better way. It will offer you a sense of satisfaction or meaning as well as success in your career.”</p>\n\n\n\n<h2 class=\"wp-block-heading\">Share the stories</h2>\n\n\n\n<p>Help share these open source contributor stories and grow the community. Meet more WordPressers in the <a href=\"https://wordpress.org/news/category/newsletter/interviews/\">People of WordPress series</a>, or continue your own WordPress journey at <a href=\"https://learn.wordpress.org/\">Learn.WordPress.org</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p><em>Thanks to <a href=\"https://profiles.wordpress.org/sunitarai/\">Sunita Rai </a>for sharing about her adventures in WordPress, and to <a href=\"https://profiles.wordpress.org/webcommsat/\" target=\"_blank\" rel=\"noreferrer noopener\">Abha Thakor</a>, <a href=\"https://profiles.wordpress.org/nalininonstopnewsuk/\" target=\"_blank\" rel=\"noreferrer noopener\">Nalini Thakor</a>, <a href=\"https://profiles.wordpress.org/webtechpooja/\">Pooja Derashri,</a> <a href=\"https://profiles.wordpress.org/meher/\" target=\"_blank\" rel=\"noreferrer noopener\">Meher Bala</a>, <em><a href=\"https://profiles.wordpress.org/eidolonnight/\" target=\"_blank\" rel=\"noreferrer noopener\">Nicholas Garofalo</a>,</em> <a href=\"https://profiles.wordpress.org/cbringmann/\" target=\"_blank\" rel=\"noreferrer noopener\">Chloe Bringmann</a>, <a href=\"https://profiles.wordpress.org/majaloncar/\">Maja Loncar</a> and <a href=\"https://profiles.wordpress.org/marybaum/\" target=\"_blank\" rel=\"noreferrer noopener\">Mary Baum</a> for interviews, editorial, images, and reviews.</em></p>\n\n\n\n<div class=\"wp-block-media-text is-stacked-on-mobile is-vertically-aligned-center\"><img width=\"180\" height=\"135\" src=\"https://i0.wp.com/wordpress.org/news/files/2020/03/heropress_logo_180.png?resize=180%2C135&ssl=1\" alt=\"HeroPress logo\" class=\"wp-image-8409 size-full\" /><div class=\"wp-block-media-text__content\">\n<p class=\"has-small-font-size\"><em>This People of WordPress feature is inspired by an essay originally published on </em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>, a community initiative created by Topher DeRosia. It highlights people in the WordPress community who have overcome barriers and whose stories might otherwise go unheard. </em>#HeroPress </p>\n</div></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Feb 2024 20:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Abha Thakor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Matt: VR Question\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=111319\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://ma.tt/2024/02/vr-question/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:221:\"<p>What if this VR is training our brains to compute in a different way? How we perceive our thoughts to train the models. We are reconfiguring our model of reality to process things in a way we couldn’t before.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Feb 2024 19:23:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"Gutenberg Times: Synced Pattern Overrides – an early review\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=27281\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://gutenbergtimes.com/pattern-overrides-an-early-review/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:17987:\"<p>A month ago, Anne McCarthy suggested <a href=\"https://make.wordpress.org/test/2024/01/13/early-opportunities-to-test-wordpress-6-5/\">Early Opportunities to Test WordPress 6.5</a>. Meanwhile, Gutenberg 17.6 has been released and 17.7 is in the works.</p>\n\n\n\n<p>For my explorations, I used WordPress Playground with the latest Gutenberg Nightly. <a href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\">You are invited to follow along.</a></p>\n\n\n\n<p>About the feature, quoted from McCarthy’s post: </p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>Building upon the power of synced patterns, pattern overrides allows you to ensure a synced layout and style across patterns while enabling each instance of the pattern to have customized content. This provides consistency in design across different pieces of content. (…) Additionally, folks would then be able to revisit and modify the design of the recipe pattern without affecting the content in existing instances.</p>\n</blockquote>\n\n\n\n<p>In this series of videos, you’ll see me creating a pattern from the theme’s patterns, setting the allowed overrides for content parts of the pattern, here heading block, button block und Image block</p>\n\n\n\n<p>Then I change a few styles of the pattern to make it my own. </p>\n\n\n\n<p>On three new pages, I use the pattern, change the headline, button text and link and and replace the image. </p>\n\n\n\n<p>In part three, I change the original synced pattern some more, and the changes are then immediately applied to the copies on those three pages as well. Pretty nifty.</p>\n\n\n\n<p>Now let’s go. <a href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\">Use this link to load the WordPress Playground</a>. No other set-up needed. Once the WordPress site is finished loading in your browser, you’ll find yourself in the Site Editor.</p>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<ol><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/pattern-overrides-an-early-review/#part-1-create-the-synced-pattern-with-overrides\">Part 1: Create the Synced Pattern with Overrides</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/pattern-overrides-an-early-review/#part-2-use-the-pattern-with-overrides-on-various-pages\">Part 2: Use the pattern with overrides on various pages. </a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/pattern-overrides-an-early-review/#part-3-edit-the-original-again-and-see-changes-propagated\">Part 3: Edit the original again and see changes propagated</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/pattern-overrides-an-early-review/#a-look-behind-the-scene-of-the-pattern-block-markup\">A look behind the scene of the pattern block markup</a></li></ol>\n</div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"part-1-create-the-synced-pattern-with-overrides\">Part 1: Create the Synced Pattern with Overrides</h2>\n\n\n\n<p>Here is my test flow: </p>\n\n\n\n<ul>\n<li>From the Site editor, I went to Patterns</li>\n\n\n\n<li>Duplicated a theme pattern</li>\n\n\n\n<li>Gave is a name and made sure the Synced pattern in enabled</li>\n\n\n\n<li>Now, I selected the blocks for which I would allow overrides. One at a time. </li>\n</ul>\n\n\n\n<p>For this first version, the feature for WordPress 6.5, only Heading, Paragraph, Image, and Buttons block allow overrides. The pattern, however, has a List block section that won’t be part of the overrides.</p>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<img width=\"272\" height=\"87\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/02/Screenshot-2024-02-06-at-12.37.18.png?resize=272%2C87&ssl=1\" alt=\"\" class=\"wp-image-27288\" />\n</div></div>\n\n\n\n<p>This part is new and still a little hidden. </p>\n\n\n\n<ul>\n<li>Select the block, </li>\n\n\n\n<li>In the sidebar, scroll all the way down to <code>Advanced > Pattern Overrides</code> section and</li>\n\n\n\n<li>Click the checkbox next to “Allow instance overrides”</li>\n</ul>\n\n\n\n\n\n\n\n<p>To continue with my test, I also changed the background for the pattern, the font for the headline “Inter”, increased the button, changed its background and added more radius. </p>\n\n\n\n<img width=\"652\" height=\"255\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/02/Screenshot-2024-02-06-at-12.43.16.png?resize=652%2C255&ssl=1\" alt=\"\" class=\"wp-image-27283\" />\n\n\n\n<p>It now looks quite different from the theme’s pattern.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"part-2-use-the-pattern-with-overrides-on-various-pages\">Part 2: Use the pattern with overrides on various pages. </h2>\n\n\n\n<p>Now that’s a sync pattern with overrides, I can use it on any page with different headline, button text and image. That’s part 2 of the exploration.</p>\n\n\n\n\n\n\n\n<p>When using a synced pattern with overrides, the content pieces that can change will have a small light blue outline, as illustrated in below graphic. Notice the list block doesn’t have a blue outline, as it’s not part of the overrides settings.</p>\n\n\n\n<img width=\"652\" height=\"325\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/02/Screenshot-2024-02-07-at-11.29.34.png?resize=652%2C325&ssl=1\" alt=\"\" class=\"wp-image-27313\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"part-3-edit-the-original-again-and-see-changes-propagated\">Part 3: Edit the original again and see changes propagated</h2>\n\n\n\n<p>I decided to change the button color again, make the button smaller and reduce the border radius of the image and change the background to a solid color instead of the gradient.</p>\n\n\n<div class=\"wp-block-image\">\n<img width=\"368\" height=\"79\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/02/Screenshot-2024-02-07-at-19.18.09.png?resize=368%2C79&ssl=1\" alt=\"\" class=\"wp-image-27324\" /></div>\n\n\n<p>You can follow long via this video, first you see the changes I made to the original pattern, and then you can see that those are immediately applied to the other instances without changing the content. </p>\n\n\n\n\n\n\n\n<p>A partial sync pattern is achieved by assigning content blocks to be edited.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"a-look-behind-the-scene-of-the-pattern-block-markup\">A look behind the scene of the pattern block markup</h2>\n\n\n\n<p>Original Pattern mark up with overrides has added block attributes <code>metadata</code>. Here are the three examples heading block, button block and image block. Each block that has ‘Allow instance overrides’ checked is assigned a metadata > id. Then various attributes for content <code>bindings</code>. They are highlighted in below example code.</p>\n\n\n\n<p>For the Heading block, the attributes for <code>content</code> are part of the bindings.</p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro\"><span></span><span tabindex=\"0\" class=\"code-block-pro-copy-button\"></span><pre class=\"shiki solarized-light\" tabindex=\"0\"><code><span class=\"line\"><span><!--</span><span> wp:</span><span>heading</span><span> {</span></span>\n<span class=\"line\"><span> </span><span>\"metadata\"</span><span>:{</span></span>\n<span class=\"line\"><span> </span><span>\"id\"</span><span>:</span><span>\"ByO9Zd\"</span><span>,</span></span>\n<span class=\"line\"><span> </span><span>\"bindings\"</span><span>:{</span></span>\n<span class=\"line\"><span> </span><span>\"content\"</span><span>:{</span><span>\"source\"</span><span>:</span><span>\"core/pattern-overrides\"</span><span>}</span></span>\n<span class=\"line\"><span> }</span></span>\n<span class=\"line\"><span> },</span></span>\n<span class=\"line\"><span> </span><span>\"fontSize\"</span><span>:</span><span>\"x-large\"</span><span>,</span><span>\"fontFamily\"</span><span>:</span><span>\"body\"</span><span>} </span><span>--></span></span>\n<span class=\"line\"><span> </span><span><</span><span>h2</span><span> </span><span>class</span><span>=</span><span>\"wp-block-heading is-style-default ..../></span></span>\n<span class=\"line\"><span><!-- /wp:heading --></span></span></code></pre></div>\n\n\n\n<p>For the button overrides, we see four attributes under the bindings attributes. </p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro\"><span></span><span tabindex=\"0\" class=\"code-block-pro-copy-button\"></span><pre class=\"shiki solarized-light\" tabindex=\"0\"><code><span class=\"line\"><span><!--</span><span> wp:</span><span>buttons</span><span> </span><span>--></span></span>\n<span class=\"line\"><span><</span><span>div</span><span> </span><span>class</span><span>=</span><span>\"wp-block-buttons\"</span><span>></span></span>\n<span class=\"line\"><span><!-- wp:button </span><span>{</span></span>\n<span class=\"line\"><span> </span><span>\"backgroundColor\"</span><span>:</span><span>\"contrast\"</span><span>,</span></span>\n<span class=\"line\"><span> </span><span>\"metadata\"</span><span>:{</span></span>\n<span class=\"line\"><span> </span><span>\"id\"</span><span>:</span><span>\"eBKMUK\"</span><span>,</span></span>\n<span class=\"line\"><span> </span><span>\"bindings\"</span><span>:{</span></span>\n<span class=\"line\"><span> </span><span>\"text\"</span><span>:{</span><span>\"source\"</span><span>:</span><span>\"core/pattern-overrides\"</span><span>},</span></span>\n<span class=\"line\"><span> </span><span>\"url\"</span><span>:{</span><span>\"source\"</span><span>:</span><span>\"core/pattern-overrides\"</span><span>},</span></span>\n<span class=\"line\"><span> </span><span>\"linkTarget\"</span><span>:{</span><span>\"source\"</span><span>:</span><span>\"core/pattern-overrides\"</span><span>},</span></span>\n<span class=\"line\"><span> </span><span>\"rel\"</span><span>:{</span><span>\"source\"</span><span>:</span><span>\"core/pattern-overrides\"</span><span>}</span></span>\n<span class=\"line\"><span> }</span></span>\n<span class=\"line\"><span> },</span></span>\n<span class=\"line\"><span> </span><span>\"style\"</span><span>:{</span><span>\"border\"</span><span>:{</span><span>\"radius\"</span><span>:</span><span>\"25px\"</span><span>}},</span><span>\"fontSize\"</span><span>:</span><span>\"medium\"</span><span>}</span><span> --></span></span>\n<span class=\"line\"><span><</span><span>div</span><span> </span><span>class</span><span>=</span><span>\"wp-block-button has-custom-font-size has-medium-font-size\"</span><span>></span></span>\n<span class=\"line\"><span><</span><span>a</span><span> </span><span>class</span><span>=</span><span>\"wp-block-button__link has-contrast-background-color has-background wp-element-button\"</span><span> </span></span>\n<span class=\"line\"><span>style</span><span>=</span><span>\"border-radius:25px\"</span><span>></span><span>Download app</span><span></</span><span>a</span><span>></</span><span>div</span><span>></span></span>\n<span class=\"line\"><span><!-- /wp:button --></span><span></</span><span>div</span><span>></span></span>\n<span class=\"line\"><span><!--</span><span> </span><span>/</span><span>wp:</span><span>buttons</span><span> </span><span>--></</span><span>div</span><span>></span></span></code></pre></div>\n\n\n\n<p>And for the image block, the code looks like this:</p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro\"><span></span><span tabindex=\"0\" class=\"code-block-pro-copy-button\"></span><pre class=\"shiki solarized-light\" tabindex=\"0\"><code><span class=\"line\"><span><!--</span><span> wp:</span><span>image</span><span> {</span></span>\n<span class=\"line\"><span> </span><span>\"aspectRatio\"</span><span>:</span><span>\"4/3\"</span><span>,</span><span>\"scale\"</span><span>:</span><span>\"cover\"</span><span>,</span></span>\n<span class=\"line\"><span> </span><span>\"sizeSlug\"</span><span>:</span><span>\"full\"</span><span>,</span><span>\"linkDestination\"</span><span>:</span><span>\"none\"</span><span>,</span></span>\n<span class=\"line\"><span> </span><span>\"metadata\"</span><span>:{</span></span>\n<span class=\"line\"><span> </span><span>\"id\"</span><span>:</span><span>\"gDXyh2\"</span><span>,</span></span>\n<span class=\"line\"><span> </span><span>\"bindings\"</span><span>:{</span></span>\n<span class=\"line\"><span> </span><span>\"url\"</span><span>:{</span><span>\"source\"</span><span>:</span><span>\"core/pattern-overrides\"</span><span>},</span></span>\n<span class=\"line\"><span> </span><span>\"title\"</span><span>:{</span><span>\"source\"</span><span>:</span><span>\"core/pattern-overrides\"</span><span>},</span></span>\n<span class=\"line\"><span> </span><span>\"alt\"</span><span>:{</span><span>\"source\"</span><span>:</span><span>\"core/pattern-overrides\"</span><span>}</span></span>\n<span class=\"line\"><span> }</span></span>\n<span class=\"line\"><span> },</span></span>\n<span class=\"line\"><span> </span><span>\"style\"</span><span>:{</span><span>\"border\"</span><span>:{</span><span>\"radius\"</span><span>:</span><span>\"10px\"</span><span>}},</span><span>\"className\"</span><span>:</span><span>\"is-style-rounded\"</span><span>}</span></span>\n<span class=\"line\"><span> </span><span>--></span></span>\n<span class=\"line\"><span><</span><span>figure</span><span> </span><span>class</span><span>=</span><span>\"wp-block-image size-full has-custom-border is-style-rounded\"</span><span>></span></span>\n<span class=\"line\"><span> </span><span><</span><span>img</span><span> </span><span>src</span><span>=</span><span>\"https://playground.wordpress.net/scope:0.4852901504712184/wp-content/themes/twentytwentyfour/assets/images/abstract-geometric-art.webp\"</span><span> </span></span>\n<span class=\"line\"><span> </span><span>alt</span><span>=</span><span>\"White abstract geometric artwork from Dresden, Germany\"</span><span> </span></span>\n<span class=\"line\"><span> </span><span>style</span><span>=</span><span>\"border-radius:10px;aspect-ratio:4/3;object-fit:cover\"</span><span>/></span></span>\n<span class=\"line\"><span></</span><span>figure</span><span>></span></span>\n<span class=\"line\"><span><!--</span><span> </span><span>/</span><span>wp:</span><span>image</span><span> </span><span>--></span></span></code></pre></div>\n\n\n\n<p>If you take a look through the code editor, we can examine the block mark-up of an instance of the pattern used in a post or page, and how those attributes have changed their values for this particle page.</p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro\"><span></span><span tabindex=\"0\" class=\"code-block-pro-copy-button\"></span><pre class=\"shiki solarized-light\" tabindex=\"0\"><code><span class=\"line\"><span><!--</span><span> wp:</span><span>block</span><span> {</span><span>\"ref\"</span><span>:</span><span>7</span><span>,</span><span>\"content\"</span><span>:{</span></span>\n<span class=\"line\"><span>\"9NAGvU\"</span><span>:{</span><span>\"values\"</span><span>:{</span><span>\"content\"</span><span>:</span><span>\"What to order a rainbow cake?\"</span><span>}},</span></span>\n<span class=\"line\"><span>\"eBKMUK\"</span><span>:{</span><span>\"values\"</span><span>:{</span><span>\"text\"</span><span>:</span><span>\"Order Now\"</span><span>,</span><span>\"url\"</span><span>:</span><span>\"https://rainbowcake.com\"</span><span>}},</span></span>\n<span class=\"line\"><span>\"gDXyh2\"</span><span>:{</span><span>\"values\"</span><span>:{</span><span>\"url\"</span><span>:</span><span>\"https://playground.wordpress.net/scope:0.4852901504712184/wp-content/uploads/2024/02/Rainbow-cake-Ajith-R-Nair.jpg\"</span><span>,</span><span>\"alt\"</span><span>:</span><span>\"\"</span><span>}}</span></span>\n<span class=\"line\"><span>}} </span><span>/--></span></span></code></pre></div>\n\n\n\n<p>This concluded my first pass exploring pattern overrides. A few questions came to my mind. </p>\n\n\n\n<ul>\n<li>How can a developer package patterns with overrides?</li>\n\n\n\n<li>How can I modify a theme pattern and not have to duplicate it? I probably can’t as it has its lock mechanism.</li>\n\n\n\n<li>What would a theme developer have to do to create patterns that allow content overrides and update when the theme updates? </li>\n\n\n\n<li>How can I lock down the overrides for content creators?</li>\n</ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"has-normal-font-size\"><strong>Notes </strong></p>\n\n\n\n<ul>\n<li>In the info section of the Pattern list, it still shows “Fully synced” (<a href=\"https://github.com/WordPress/gutenberg/issues/58725\">#58725</a>)</li>\n\n\n\n<li>I didn’t succeed in changing the text of the button after I already changed the link. I only succeeded when I first changed the button text and then the link. Need to do some more testing. If the toolbar is on top, there is no problem, only when the toolbar is just above the block. After further testing, it turns out this might be isolated to using WordPress Playground as a testing tool. (<a href=\"https://github.com/WordPress/gutenberg/issues/58812\">#58812</a>) </li>\n\n\n\n<li>Thank you to Anne McCarthy post review. </li>\n</ul>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Feb 2024 18:36:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"WPTavern: #109 – Ben Ritner on How Kadence WP Managed the Pivot Towards AI\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=153732\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://wptavern.com/podcast/109-ben-ritner-on-how-kadence-wp-managed-the-pivot-towards-ai\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:61665:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox has a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, how one company managed to pivot towards AI.</p>\n\n\n\n<p>If you’d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to WPTavern.com forward slash feed forward slash podcast, and you can copy that URL into most podcasts players.</p>\n\n\n\n<p>If you have a topic that you’d like us to feature on the podcast, I’m keen to hear from you and hopefully get you, or your idea, featured on the show. Head to WPTavern.com forward slash contact forward slash jukebox and use the form there.</p>\n\n\n\n<p>So on the podcast today, we have Ben Ritner. Ben is the founder of Kadence WP, a company that specializes in developing themes and plugins for WordPress, with a focus on enhancing the front end of websites.</p>\n\n\n\n<p>The team have developed a suite of blocks that enable users to do more with the core Gutenberg editor, and in 2021, Kadence was acquired and became part of the StellarWP umbrella brand. Where Ben now serves as part of the senior leadership team. Under StellarWP, there’s a suite of popular plugins, including Learn Dash, the Events Calendar, and GiveWP.</p>\n\n\n\n<p>In this episode, Ben provides us with an insight into how the Kadence team managed the integration of AI into their products, shedding light on the impact that it has had on their website building process.</p>\n\n\n\n<p>We discussed the challenges of migrating content between systems, as well as delving into the role of AI in content creation and design adaptation.</p>\n\n\n\n<p>Ben talks us through what guided their technical innovations to accommodate AI generated content and images. Ben’s perspective is pretty unique, working for a company he started right through to today, where they have an install base of over 400,000 websites, all of which could potentially make use of AI, but not at the risk of breaking backwards compatibility with their own products.</p>\n\n\n\n<p>We chat about the importance of integrating marketing and SEO knowledge for effective website development, and how the recent demand for AI might cause freelancers and agencies to think again about the products and services they offer.</p>\n\n\n\n<p>We also get into the way that the team decides what trends in AI to follow. AI is still new, and it’s possible that what’s all the rage today will be superseded at any time. Where does Ben find inspiration for which AI platform to use, and which implementations of AI are dead ends for website builders?</p>\n\n\n\n<p>If you’re interested in the impact of AI in web development and are intrigued by its potential, this episode is for you.</p>\n\n\n\n<p>If you want to find out more, you can find all of the links in the show notes by heading to WPTavern.com forward slash podcast, where you’ll find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Ben Ritner.</p>\n\n\n\n<p>I am joined on the podcast today by Ben Ritner. Hello, Ben.</p>\n\n\n\n<p>[00:03:40] <strong>Ben Ritner:</strong> Hey. Nice to be on.</p>\n\n\n\n<p>[00:03:42] <strong>Nathan Wrigley:</strong> Yeah, thank you for joining me today. We’re going to talk today about AI. We’re also going to talk about Ben’s history with WordPress and Kadence, which is a product that Ben launched quite a little while ago, but he can tell you all about that. But first, Ben, just so that the audience know who you are, and what your relationship is with WordPress, a moment to give us your potted bio, if that’s all right. So over to you.</p>\n\n\n\n<p>[00:04:03] <strong>Ben Ritner:</strong> Yeah. So I’m the founder of Kadence WP, which is a company that develops themes and plugins for WordPress, primarily focused on the front end of your website. So, how do you make that website look good, responsive, fast?</p>\n\n\n\n<p>So we’re, you know, kind of in that page builder space, but we’re doing it from a blocks perspective. So we’ve got a package of blocks, that enable you to do a lot more with the core Gutenberg editor, than what comes in core. And at this moment, I’m part of the senior leadership team of StellarWP, which is a umbrella brand that Kadence is under.</p>\n\n\n\n<p>Kadence was acquired in 2021. And so now I’ve moved in with the Stellar org, and we have a number of popular plugins in our suite, including LearnDash, and the events calendar GiveWP. So, yeah, that’s me.</p>\n\n\n\n<p>[00:04:54] <strong>Nathan Wrigley:</strong> Okay, great. Thank you so much. We are going to dwell a little bit on AI. In fact, I think the primary focus of this will be to touch on AI, but we’re going to come at it from different angles. We’ll talk about the products that you’ve got, although that may not be the primary focus of what we talk about. But we’re going to talk a little bit about ethics maybe, or, you know, how AI works, and how it might affect the job market, and whether we’re doing ourselves out of work in the future, and so on.</p>\n\n\n\n<p>And so one of the first questions I’ve got for you is surrounding the software that you build. Now, you can go into the details of it if you wish, that’s absolutely fine. Get into the weeds, and get all technical. I’m going to encourage users to go to the following url. So it’s kadencewp.com/wordpress-solutions/kadence-ai. If you want to find that in an easier way, go to WP Tavern, search for this episode, and it’ll be in the show notes there.</p>\n\n\n\n<p>But over there you demonstrate how you can create, more or less an entire website. So completely from scratch. You’ve got a vanilla install of WordPress, you install all the bits and pieces that Kadence requires, and moments later, and I really do mean moments. I think you could probably achieve this in under three, four minutes. You’ve got yourself a functioning website.</p>\n\n\n\n<p>Now, I’m interested to know, why you went down that route? What were the sort of, the things that you were thinking about? Why website building? Why not, oh I don’t know, just simply block building? I’m curious to know where you are getting your inspiration from. Because if we rewind the clock two years, nobody was talking about AI in the WordPress space, and those that were, were very prescient.</p>\n\n\n\n<p>Now everybody’s talking about it. There’s this landslide of products. And you must feel the commercial pressure to get these things right. So, how do you know? How do you judge that what you are building is the right thing for the company’s future? As opposed to just, well, guesswork really. Difficult question, but let’s begin there.</p>\n\n\n\n<p>[00:06:47] <strong>Ben Ritner:</strong> Yeah, yeah. So I think with Kadence, the decision making comes down to, we were really listening to our user base. And we had a product, we have a product called Kadence Starter Templates. Which is essentially a site that is designed, and has placeholder text, and allows you to import that as you’re like, I’m going tolaunch a site quickly. Maybe it’s in my correct niche, because we had over 80 starter templates.</p>\n\n\n\n<p>So maybe the images are close to something I’m going to do, or maybe the text is close. But I’ve got to go in there and edit it, and make it my own. That starting place gets past that white screen of, what do I do, I’m staring at a white screen, and somehow I need to build a website from this.</p>\n\n\n\n<p>And that was immensely popular. We saw all kinds of users using it, from the agencies using it as a, I want to get started quickly on a site, that they had already had designed for, but they wanted to use the starter template because they just wanted it to be built out to where they could edit.</p>\n\n\n\n<p>And we saw, you know, freelancers using it. We saw hobbyists using it. And essentially, when we went in to look at, what’s the easiest way to implement AI, to make that faster and better for users? How do we make that white screen problem of, I don’t know what to do next, easier for users? And there’s a lot of focus right now on prompt based communication with the AI, where it’s really on, how good are you at writing a prompt to an AI to get stuff back?</p>\n\n\n\n<p>And we kind of just wanted to approach, can we take our starter templates product, and just make the content, the images, and the text, be filled with AI data? Images, we’re still a ways out from, because AI generated images are pretty poor at this time, and expensive. What we do use, is we use AI to search Pexels, and then pull in images that are in that same vein for what you’re doing.</p>\n\n\n\n<p>So it’s a good starting point, but is it a launch site? No. Like, there’s nothing about our product, or even where we’re trying to go, where we’ll say, you can launch and don’t need to edit. Part of it is because AI is not that good. But there is a sense of, are you 80% there? And that, I think, is really intriguing.</p>\n\n\n\n<p>And I think, in our minds, this was step one. Ideally we can get to 90% there. Because I think once AI images gets better, and being able to tell the AI specifically, hey, we’ve got a hero here, there’s this text , we want an image for that background, you know, we will get there eventually. But as far as like our decision making into what are we going to build, it really came out of, what are people using and like, and how do we make that experience better?</p>\n\n\n\n<p>[00:09:22] <strong>Nathan Wrigley:</strong> So you were in the, well, lucky isn’t the right word, but you’re in the enviable position, that you already had the stack of things that really were required. And it was just a case, well, just a case, it was a case of tweaking the things that you already had. So the starter templates, and what have you. And that’s the decision that you made.</p>\n\n\n\n<p>It’s curious, because I’ve seen quite a lot of commercial products come out of nowhere, and they’re trying to do exactly the same thing. So in a sense, you had a lot of that stack in place, which must have made it, well, again, I don’t mean to use the word easy, but it must have made it slightly easier for you to build on top of what you already had.</p>\n\n\n\n<p>[00:09:57] <strong>Ben Ritner:</strong> Yeah. It definitely made it, it made the story easy to tell. Because I think that’s part of the issue when you’re talking about AI is, how do you explain this to your users in a way where you can show them how this is going to benefit, and make their lives easier?</p>\n\n\n\n<p>And we were also like, we know the problems that come with the current way that we were doing starter templates. Which was essentially, we have a dummy site that actually lives on a server somewhere, and you’re just copying that to your local site.</p>\n\n\n\n<p>We had thought about, what if we broke this down to be a section by section thing? Where we don’t actually have a dummy site that lives somewhere. What we have is a library of sections, that can go throughout any kind of pages, and then we’ll live on your site, put those sections together with content, to build out the pages.</p>\n\n\n\n<p>So we took the idea of starter templates and just said, let’s rechange the technology behind it, so it’s better and more flexible, and then add in AI generated content and images that can be changed on the fly, and are specific to the user.</p>\n\n\n\n<p>We do have some other AI tools built in. What’s interesting is, you know, we started with, can we get starter templates, and then we backed off. But what we need to do is figure out the sections piece. How do we get AI into sections, and then we pulled that back out to like, okay, now we can do pages and then websites.</p>\n\n\n\n<p>I think it’s really interesting to think through where we can go with AI. And I think what your original question was getting at is, how do you choose where to go? And we had a path of like, here’s an easy story, and here’s how we can implement it.</p>\n\n\n\n<p>But when I think about, where is AI going, what’s the future, what’s it going to look like? AI, to me, is a very good tool at doing iterative work. When you ask an AI to improve something, it generally does a pretty good job. And when I’ve, you know, in my life, and experiencing with using AI tools, the best results usually come from a feedback loop of, it presents you options, and you either choose, I like this one, or you ask for edits.</p>\n\n\n\n<p>And we don’t have a tool that does that very well. We have some inline text options, but it’s pretty basic. And what’s interesting for me, just because of using AI for myself, where I feel like our next realm of where we want to go to, is a more iterative thing, because I’ve seen that AI does a better job when we go there.</p>\n\n\n\n<p>So part of that decision making, of like, where are we going? It’s based on, I use ChatGPT every day, pretty much. And when I get the best results from it, is when I’ve said, okay, that’s close, but edit this, or change this. And I think that iterative approach, if we can bring that into a UI, can be really interesting when we talk about, how do we build very custom and interesting layouts inside of WordPress?</p>\n\n\n\n<p>So our challenge right now is, what does a page wizard look like that’s iterative, that allows you to say, I want this page to be about this, show me some examples? We show you some examples, and then you choose the one that’s like, I’m feeling this, don’t like that section, I would like more on this, and then generate.</p>\n\n\n\n<p>And that, to me, could get really interesting, in terms of like getting you to that 90% of like, this page is 90% there, and I’m going to go in and tweak some of the text. But yeah, I think that’s all kind of how we’re choosing where to go is, trying and playing with the AI ourselves.</p>\n\n\n\n<p>[00:13:16] <strong>Nathan Wrigley:</strong> It almost sounds like you are envisaging a future, in which you have a conversation with a page. So you’ve got something in front of you, maybe that was generated by something, using your templates. But maybe it was something that you created yourself. And then the AI is somehow in a conversation where you discuss, and you say, I would like the headline to be shorter.</p>\n\n\n\n<p>Okay, right, give me several options, we’ve done that. That image is in the wrong place, can we move that round to the other side? And that picture of a cat, replace it with a picture of a lion or, you get the idea. So you are talking, in effect, to the page. Am I describing your intuitions there?</p>\n\n\n\n<p>[00:13:53] <strong>Ben Ritner:</strong> Yes. Although I am scared of anything that relies on us to prompt the AI. So, I do want to have that talking, but I want to really focus on, rather than doing too much of, you can just raw text in, because that’s that same problem with the white page of like, I don’t know what to ask the AI.</p>\n\n\n\n<p>I want to do a lot more of, we’re going to give you options, choose the one you like, and then mini select options inside of that. Or like, where we can guide that to where it’s really just a bunch of clicks, instead of relying on you to communicate well with an AI.</p>\n\n\n\n<p>[00:14:27] <strong>Nathan Wrigley:</strong> The pace of AI is moving so quickly. I really meant it when I said that two years ago, nobody was talking about it. I have no recollection of it being an important subject in the WordPress space. And now it seems to be almost everything that I hear, be it on mainstream media, or in the tech press or in the WordPress space.</p>\n\n\n\n<p>Somehow AI manages to get itself in there, because everybody’s so fascinated by it. I just wonder where you get your inspiration from. Now it may be that there are commercial rivals inside of WordPress, you can mention things or not mention things. Or maybe there are things happening in the wider world that, you know, being where you are now in the tech space, and the company that you work for, there’s probably tendrils that you can use via that company.</p>\n\n\n\n<p>Or maybe it’s just other things that you’ve seen in the SaaS space, or things that you’ve watched on television, I don’t know. I’m just curious, because I genuinely feel like the whole thing is a bit of a storm, and you’re being blown around, and some things seem to be landing, and other things seem to, we have a go and it fits.</p>\n\n\n\n<p>You are telling me that the metrics that you are getting are saying that what you’ve built is working, which is great. But I can imagine that six months from now, something else will have come along, spun the whole thing around, and you are going to have to get, well, not back to the drawing board, but you might well have to reimagine the things that you’ve done. So where do you even begin to look for inspiration in this space?</p>\n\n\n\n<p>[00:15:42] <strong>Ben Ritner:</strong> It’s interesting. I think there is always a fear that someone will come and top you, in such a way that will make you irrelevant. I’m not worried about that personally, but I get it, and I definitely know that it exists. I think there’s a lot more involved in like someone just being able to come and trump you that hard.</p>\n\n\n\n<p>We announced Kadence AI last March, and it’s honestly annoying to me that it wasn’t until January of this year that we officially launched it publicly. We had a beta version last summer. So we’ve had our cards on the table for a long time of like, this is what we’re building and this is how it’s going to work.</p>\n\n\n\n<p>And I know that there’s other plugins and products that have done other things, I mean, Jetpack itself released an AI. And that does a lot of inline, you know, editing great for bloggers, where you want to generate content. I know that there’s other WordPress AI generated page builders, ZipWP is one. Great product in their approach.</p>\n\n\n\n<p>I think that there’s definitely different ways to go about it. And for us, we put our cards on the table last March, we had to get that done. And the trickiest parts were getting the AI to consistently respond, in a format that allowed us to input that into the content that we had. And then trial and error, and things like that really came into play.</p>\n\n\n\n<p>Another big piece for us, which was kind of annoying, we had to spend so much time on it, but we have a large user base. And we needed to create a credit system for our licenses, that allowed us to give everyone access to this tool, but also protect ourselves, because every time this communication happens with OpenAI, it costs us money.</p>\n\n\n\n<p>That was an annoying, massive overhaul of a product licensing system, that had to have backward compatibility, and be implemented across our product line. And that delayed AI by several months, frustratingly.</p>\n\n\n\n<p>You know, as far as like choosing where to go from here, we have a channel at work that’s like AI stuff. Essentially, someone in our org is posting in there every single day with, have you seen this tool? Have you seen this tool? I mean, I’m curious. I’m all in on, I’m watching the videos, what are they doing? I’m really interested. I want to know what people are doing, and how they’re thinking about it.</p>\n\n\n\n<p>And then I’m also using ChatGPT everyday, because I want to make sure that I’m really staying engaged with it, and then allowing myself to think, how do I improve upon what we have?</p>\n\n\n\n<p>Which I think is a lot different than like, what if you had a blank slate? You had no customer base, and you’re trying to create a product that’s unique. That’s a little bit harder to do versus like, here we have 400,000 active installs with Kadence blocks.</p>\n\n\n\n<p>What do these customers need, and how do I give them the tools? And, how does AI benefit them? And to me, AI is a tool, it is not a solution. And I think that that’s really important in my mind, in terms of thinking of, how can I use AI, and how can I bring AI into the Kadence world?</p>\n\n\n\n<p>[00:18:35] <strong>Nathan Wrigley:</strong> Yeah, it’s kind of interesting. Over the last few years, I think it’s fair to say that you, or Kadence, we could use those interchangeably perhaps, have achieved, and I’m doing air quotes, success. You know, three years ago, I suspect the install base was almost nowhere near the number that you just quoted at us. And it’s been a real rise. So congratulations for that.</p>\n\n\n\n<p>That was something that I was going to ask you about, whether or not that growth forces you to put the brakes on a little bit? In the sense that, you know, you’ve got this existing user base, you can’t possibly ship something which breaks 400,000 plus websites.</p>\n\n\n\n<p>But also, you have to get their buy-in, in a way. And I know that they’re your customers, but they’re also the people that you need. And so if you do something shockingly different all of a sudden, we know how that goes. That typically doesn’t go well. So just an intuition as to whether or not you can’t be quite as nimble as you would like to be, or if there’s the breaks that you’ve got to put on. Do you have to be ultra cautious? Difficult question, and maybe one that you’re not willing to answer, but i’ll throw it out there anyway.</p>\n\n\n\n<p>[00:19:33] <strong>Ben Ritner:</strong> Yeah. I would say that the speed of development has changed, because we have improved our systems. Which, on one hand, slows us down a little bit more, in terms of some of the rapid releases I was doing early on, when it was like me and no one else, or like me and my sister and a support person.</p>\n\n\n\n<p>We’ve definitely slowed down from some of that, but we’ve also done a lot less hot fixes, and bug fixes, because we’ve implemented more QA and testing. You know, obviously like we’ve helped that system a lot.</p>\n\n\n\n<p>We’ve also done a lot of stuff, and Kadence over the years, that has improved the code quality, and the structure of the code significantly. But backward compatibility is really tricky, and there are lots of times in a developer’s life, man, this would be so much easier if we could just start from scratch. Because so much changes, and Kadence Blocks was built originally before Gutenberg was part of Core. We released it in September, and it became part of Core in December of 20 or 2019, 2018. Gosh, I can’t even remember the year that Gutenberg became part of Core.</p>\n\n\n\n<p>But we’ve rewritten product multiple times, to try to keep it up to date, and it’s always a challenge. And that backward compatibility is always a challenge. And just even, I mean, when we originally wrote it, Grid CSS and Flex CSS were not fully supported as like things that you could use.</p>\n\n\n\n<p>And so like, just even the structure of our blocks were so different, because we couldn’t rely on some of this new CSS, and that challenge is real. And that desire to just, give me a clean slate from a developer. Every developer will tell you, they would love that iterative, fixing of older code is so hard.</p>\n\n\n\n<p>But that’s the hard work. And that has slowed us down, certainly it has slowed us down. But I’m also really proud of that work, because we’ve really fought to do as much as we possibly can to keep backward compatibility, and to continue to improve the code base, so that we’re thinking future. And so yes, you know, we’ve had a lot of success, and things have changed for me and, you know, my day-to-day in a large part.</p>\n\n\n\n<p>But what’s causing the slowdown is not necessarily that we’ve been successful, as much as all the other things that come into play, when you talk about a product that’s been around for more than a couple years. And that’s the, we got to do a major revamp on this code base, and we’ve got to prepare all these blocks for what we’re doing in Gutenberg today versus, you know, four years ago, that kind of stuff.</p>\n\n\n\n<p>[00:22:00] <strong>Nathan Wrigley:</strong> Prior to the whole advent of AI and all of that, did you have a roadmap which looked really different than what it is now? Because I don’t build software, but I can imagine that if I did build software, I’d want to be staring into the future as far as I could go. I would want that roadmap to be, you know, agile, but at least have some North Star to be heading towards.</p>\n\n\n\n<p>And I’m just wondering, if AI kind of upended that, it was more of a case of, oh okay, there’s this, right. Throw all that away. Did any of that happen? Did you have to sort of retool the team, or take new people on, or just, like I say, throw away the old roadmap and begin again?</p>\n\n\n\n<p>[00:22:33] <strong>Ben Ritner:</strong> Roadmap for me, or generally like Kadence, is usually not too much more than six months out. Mostly because we learn a lot from our users. The users determine the roadmap more than any other factor, and we’re continuously updating what we’re going to be working on in six months, because things change and WordPress changes. So it’s not as long term as you might think. Like, I don’t know what Kadence will be developing next January. I have some ideas, certainly. Some back of the mind thoughts, but nothing that we have committed to or decided.</p>\n\n\n\n<p>And so the main shift that happened for us is ChatGPT came out, and within a month we were like, we’re not building starter templates anymore. And that was the big shift. We were kicking out starter templates, at least two a month, of these, you know, niche sites. And we just decided then to pull the plug.</p>\n\n\n\n<p>And we were like, the future is going to be AI generated starter templates. We have to solve that problem. Let’s stop spending any resources that we can, on the old way of, it’s old and we just had released them, right? But like that old way of thinking. And that was, what did AI do in terms of shifting our mindset? It was like, we’ve got to put everything into getting AI starter templates out the door.</p>\n\n\n\n<p>Thankfully, because I’m part of Stellar, we didn’t have to go to the Kadence dev team, and I’m one of them, right? And say, you guys who are working on all this stuff that we were doing, we were working on some major dynamic content stuff, some advanced query block stuff, big rewrite of Kadence blocks. We didn’t have to go to that team and say, everybody stop what you’re doing, we’re doing AI.</p>\n\n\n\n<p>We were able to pull resources from our parent company, and that was the team. We formed a whole new team to say, let’s see if we can solve the AI problem. Which I was a part of, but I wasn’t the entirety of that team. And so I spent the last year, half on Kadence and half on AI. And that’s probably not accurate time, but like basically I’ve been on two teams. Then I got our Kadence team involved, as we integrated the AI stuff we had done into Kadence.</p>\n\n\n\n<p>But how we were able to do that, is we were able to think, okay, we have a use case for how Kadence is going to use AI. But from a Stellar level, all of our products could benefit. LearnDash, for example, has already implemented AI into it. You can get a course outline done using AI.</p>\n\n\n\n<p>And so we went and developed backend tools, and a server that does all the proxy communication with OpenAI, and all the caching, and all of that licensing piece. That was work that a different team, not the Kadence dev team did.</p>\n\n\n\n<p>So it really helped in us being able to keep releasing things with Kadence theme, and Kadence blocks all of last year, while there was another team working on this whole AI piece. And then towards the end of last year, we spent that time integrating it really into, well, I mean we’ve been doing it the whole time. We had a beta version out last summer.</p>\n\n\n\n<p>But, you know, that work then bringing in more of the Kadence dev team, and support team, and all of that to kind of get it out the door. That came at the end where it’s like, when we announced, hey, we’re going to do AI, there was a lot of fear that, well, what about your roadmap? What about you guys developing this or that?</p>\n\n\n\n<p>Like that was the feedback we were getting, is everyone was very concerned, hey, AI seems like it could be a fad. And we were like, no, hold on, we’re still doing that. We were just fortunate enough to be able to have resources from outside of our brand, come in and work on a lot of the AI stuff. And so that helped a lot with the roadmap. But obviously the starter templates piece was a shift.</p>\n\n\n\n<p>[00:26:07] <strong>Nathan Wrigley:</strong> It’s really nice that in the background you’ve got a bigger company, and the AI piece, a lot of the technologies, there’ll be a lot of commonality there. And so if you build that backend, like you say, the tooling that you need for LearnDash, and all of the different bits and pieces that make up the StellarWP Suite. And you can all share in the benefits of all of that rather than, I don’t know, five or six different companies all trying to achieve the same thing. So the economies of scale work really well there.</p>\n\n\n\n<p>Pretty brave decision though, I’ve got to say, because I think, if you were to go back four or five years, everybody was, do you remember NFTs and Crypto and all that? There was that same euphoria, and it was going to be the future. And I think there’s quite a lot of people who down tools, and just moved in that direction. And fast forward to today, that now looks like it was a mistake. I think we can probably consign that to the dustbin of history. Perhaps I’m wrong about that, but it feels like that’s the way it’s gone.</p>\n\n\n\n<p>And intuitions a couple of years ago about, let’s throw everything at AI, that could have gone the same way. It didn’t. I don’t think it did. It really doesn’t look like it’s going to go that way. It looks like it’s going to continue into, you know, for the next decade or however. Again, I could be wrong about that. But it’s a brave decision for you, the company to make. And it looks like you’re on the right side of history, so it’s a sigh of relief.</p>\n\n\n\n<p>[00:27:22] <strong>Ben Ritner:</strong> Yeah. I mean, I think the fact that NFTs, so many people were like, what is this, and how does it work, and all of that? It’s part of the reason why you could get on board with AI a lot easier, because everybody could open up ChatGPT and go, oh wow, this isn’t the annoying Verizon Wireless, or whatever, large company chat bot that I get at support.</p>\n\n\n\n<p>This is very different and improved. And I think that’s part of why it wasn’t easy to be like, this could be implemented and used, and be very useful. And I would say we did the bare minimum of, we’re doing text replacement on layouts. The future of having an AI do more creative, and I’m using air quotes when I say creative, work with you, is going to be really interesting.</p>\n\n\n\n<p>Because I think that it’s a phenomenal tool to work with you. Like, as far as you being able to guide it, influence it. I think it’s going to take a lot of the time consuming, exhausting work of making this all look exactly right out, which is going to be great.</p>\n\n\n\n<p>[00:28:31] <strong>Nathan Wrigley:</strong> I am going to get into the nuts and the bolts of the actual stuff that you’ve built over at Kadence. I dropped a URL at the beginning. It’ll be in the show notes. If you go over to there, you’re going to find a video right at the top of the page. Caveat emptor. I don’t know if that will be there in the days, weeks, or months to come.</p>\n\n\n\n<p>But it’s a video. It’s a few minutes long. I think it’s you, Ben, it sounds like you. And you are running through the process of basically building a WordPress website from scratch. And I’m going to paraphrase it, and if I miss a step out here, forgive me, but I’ll just, for the sake of brevity, I’ll just paraphrase it.</p>\n\n\n\n<p>Basically, you begin this wizard, and you enter some basic details. Details about your company. You describe the business, it spits back at you some possible keywords, and you select those. Once you’ve done that, you do what you often do with AI, you pick a tone, you know, this sort of feeling of how you wish the website to be. And then you go into the image selection process.</p>\n\n\n\n<p>And then all of that gets consumed by the AI. It has a think for, I don’t know if that’s the right word. It does what it does. And then it brings back some layouts for you. And you’ve got this selection of layouts, and your intuition says, that’s the one. So you pick that. You then start adjusting colors, and it disallows, or at least it prompts you that that’s not going to be a good selection, in terms of accessibility, which is nice, thank you for that.</p>\n\n\n\n<p>Then you mess around with the fonts a little bit, and you import some pages that you wish, that you think would be appropriate. So you’re nearly there. You, at that point, launch the site, if you wish. All the pages get imported, and your site is ready to be launched.</p>\n\n\n\n<p>And then you’re into the process of tweaking it, and making it your own. I think anybody using AI would advise you to do. Edit with the block editor, go in, use the AI to amend things if you wish, or just do it yourself. And then you can begin the process of saying, actually, this row is just way off message. Let’s just swap that one out, and just pick a different one. And again, the AI can step in and what have you.</p>\n\n\n\n<p>So that took me longer to say than it takes to do, I suspect. That is pretty incredible. And it’s leveraging all the different bits and pieces that you mentioned earlier.</p>\n\n\n\n<p>Is this in any way bound to the products that you release? So I know that you’ve got a theme. I know that you’ve got a block suite, and there’s a pro version of that block suite.</p>\n\n\n\n<p>Having played with it myself, I can see that you’ve definitely used the blocks that are at your disposal. But, how does that work if I don’t have access to your pro suite? Would I even be able to use this? Is this available? Is there any kind of free plan? Can I just pay for the AI bit? And what if I decide that I want to back away from it and, I don’t know, amend things? Is there any lock in, is essentially what I’m saying?</p>\n\n\n\n<p>[00:30:59] <strong>Ben Ritner:</strong> Certainly. There is a free tool. Kadence Blocks is free, and Kadence Theme is free, and Kadence Starter Templates is free. You can get a free account to use AI. You’ll get 250 credits, which is more than enough to build a website. You could build a couple with that many credits. And so if you’re using free, you will have slightly limited choices into which layout you can choose.</p>\n\n\n\n<p>So when you get to the point where you’re shown layouts, we’re going to give you, let’s call it six. Two of those will be pro only. And that means that when we design those layouts, they’re actually using pro blocks that we have. And so if you imported them, it wouldn’t work, because you don’t have pro, so you can’t access those.</p>\n\n\n\n<p>If you use one of the free layouts, which I’ve already looked at one of our, you know, our more popular one is a free one right now. You can do the whole thing for free. And you don’t have any cost to you. You can go and try it out. We have a way for you to try it out in InstaWP as well. And that’s free. So if you just want to like play around, that is on our site.</p>\n\n\n\n<p>As far as content lock, and this goes into a really interesting conversation of, how avoidable is content lock in WordPress, and in websites in general? And, how do we get away from that? Because the blocks are part of the core editor, if you delete Kadence blocks from your website, the HTML markup will still exist on your website, because it’s just block markup.</p>\n\n\n\n<p>But the rendering of those blocks won’t function, because they depend on Kadence blocks to be rendered. And that’s how all custom blocks work in WordPress, is that if you have a custom block, you need that code to essentially handle the rendering.</p>\n\n\n\n<p>There is work, and we’re scoping some of this out. There is work, and Matt Mullenweg talked about this State of the Word, to do more data liberation. Where you could say, I’m using Kadence Blocks, but I want to convert this to Core Blocks, or I’m using Spectra Blocks, and I want this to convert to Kadence Blocks, or whatever.</p>\n\n\n\n<p>The issue with that, is that there is almost never a one for one with any of these tools. Elementor to Kadence, Elementor to Core. All of these kinds of ideas of being able to migrate out of one system into another is fine, if what you’re trying to get is the text and images. Not fine, if what you’re trying to get is a one for one of this to that, because Kadence Blocks wouldn’t exist if we didn’t massively expound upon what’s in core.</p>\n\n\n\n<p>No one would use it, if it didn’t take it a whole lot further. And so to convert these blocks to core blocks, you will lose functionality. You will lose the ability to have the accordions, and the tabs, and the sliders, and the certain types of image overlays and animations, and all of that stuff.</p>\n\n\n\n<p>So, is there content lock? Yes. There’s content lock with core blocks as well. If you want to take core blocks to the classic editor, that doesn’t really work. So it all depends on what your definition of content lock is, and whether or not you feel like this is the system that’s going to be around for a while, and supported.</p>\n\n\n\n<p>And so I think, when you look at Kadence, we’re backed by a much larger company. There’s a lot of longevity in using Kadence Blocks, in terms of being able to render out those blocks for you, and the focus on backward compatibility.</p>\n\n\n\n<p>Do I think data liberation is really interesting? Absolutely. I think where I think about data liberation is, how do we get, and this is what AI, I think, could be really good at. How do we get out of the mindset of, can I move from HTML to WordPress, or Wix to WordPress, or Core Blocks to Kadence Blocks, or Elementor to Beaver Builder, or whatever it is that you want to move?</p>\n\n\n\n<p>How do we stop thinking about tools and go, you have a website, it’s HTML and JavaScript? Can we train an AI to convert that to some kind of standardised information? Where it basically says, here’s the JSON markup of this site. This is the type of content it is. Everyone builds importers for that type of thing, so you could say, I want this site in Kadence Blocks. And we use AI to convert that site into some kind of standardised markup that says, here’s all the content, the type of content, the context for how that content is. And then Kadence Blocks is an importer for that, or WordPress Core has an importer for that.</p>\n\n\n\n<p>That wouldn’t still be a one for one, because, again, there’s just no way you’re going to get a one for one, unless you convert straight to HTML. You could move it, but you wouldn’t actually be able to use it down the road. But what could be really interesting is, if you could then import that markup into whatever tool of your choice.</p>\n\n\n\n<p>Now, it might not be a one for one in design, but in terms of actually usable, and now those blocks will render, and are editable, and you can tweak the styling. And you’re that much closer. That to me is really, really interesting.</p>\n\n\n\n<p>That’s part of the exploration for us is, can we create a system that exports? You know, where we think about grabbing the front end content, getting that into some kind of standardised system, importing that, and then exporting that in and out of that standardised system. I think that there’s a lot of really interesting stuff, in terms of just being able to process that and say, could this be a thing that we work toward?</p>\n\n\n\n<p>It would take a lot of resources and energy, but would solve all of the weird platform specific stuff. Today what you need is a Wix to WordPress thing. Okay, like I totally get that. But I think down the road as AI gets a lot better at scraping sites, and understanding context, and being able to create, say, hey, this is an area that has media and text, that are related to each other. And we could conceive of a way of like, here’s all of the way that AI’s going to convert that content into a standardised format. And that could be really interesting for data liberation of your website.</p>\n\n\n\n<p>[00:36:49] <strong>Nathan Wrigley:</strong> That’s absolutely fascinating. The data liberation thing, really is about CMS to CMS at the moment, isn’t it? You know, it’s Shopify to WooCommerce and it’s, I don’t know, Joomla to WordPress, or whatever it may be. But that more granular piece of, could I come from, let’s say Joomla, through WordPress, and the tools that I’m using inside of WordPress, that’s Kadence. So, can we go that extra step? Not just import it into Core Blocks, but can we then go a little bit further, because I’ve invested in Kadence, I know what I’m doing over there. Let’s give that a go.</p>\n\n\n\n<p>But yeah, that’s really fascinating. And obviously, in everybody’s interest, if there’s some standardised way of doing that, and everybody could jump on board, so even your commercial rivals. You could access it, then the import isn’t the problem, it’s the quality of the product that is the reason why people would wish to import it. Yeah, that’s a really interesting idea, and not one that I thought of, the data liberation thing. Yeah, we’ll see how that goes in 2024.</p>\n\n\n\n<p>In terms of the AI, the way that I deployed it was into a vanilla site, to test out what you’d got. Also I noticed, I could be wrong about this, but on the video that you posted on the website, it felt like that was a vanilla site. How does the AI work if, because most people are not starting from scratch, are they? A lot of the audience listening to this, will wish to try things out on sites that they’ve already got, and push the boundaries of pages that they’ve already got.</p>\n\n\n\n<p>So I know that the blocks themselves, they can be adapted. You’ve got a bit in the, you know, the bar that appears when you interact with Gutenberg. There’s something in there which you can interact with the AI and prompt it, and what have you. But does the whole wizard that we described earlier, is there any utility in that, if you’ve already got a site? Or, is it just for beginning blank slate stuff?</p>\n\n\n\n<p>[00:38:22] <strong>Ben Ritner:</strong> So that Wizard, you don’t need to generate a website, although you can, and you can import that into an existing site, if you want to. That’s totally fine. But Gutenberg, we have what’s called a design library. And if you have Kadence Blocks installed, you’ll see the design library tab in the backend, like in a page editing thing at the top bar.</p>\n\n\n\n<p>And if you open that up, we can generate contextual stuff, using that same information from the wizard. So if you are building a page, for example, and you’re like, I need a call to action section, that’s a context that we’ve created. You can go in and say, I want all of your sections with call to action context.</p>\n\n\n\n<p>So the AI generated text that is for your website, about call to action. And then you can pick from the layouts. And there’s hundreds, we have over 600 different patterns in that design library. And all of those can be empowered by AI, and many of them can be used multiple times. So you might see a pattern and say, well, that’s a great pattern, that I like.</p>\n\n\n\n<p>I can put about context into it, or I can put value proposition context into it, or call to action context into it. So you can choose the context, and then you can choose the pattern type, and then you can drop that pattern into your website. So if you have an existing website and you’re like, I even have an existing page, and I just want a section, AI can help you there. Or if you’re building a new page, and you want to piece together patterns, there’s a lot of different ways that you can use that tool.</p>\n\n\n\n<p>[00:39:48] <strong>Nathan Wrigley:</strong> So you can go back through and kind of retrofit, and just swap things out. And presumably, rows and patterns kind of used interchangeably there. You can just save those, put them somewhere else for later keeping. But the idea is that you can put these different contexts in, so that you can modify the things that you’ve got. Okay, that’s really interesting.</p>\n\n\n\n<p>What’s the stack that’s in the background? I mean, I’m guessing it’s OpenAI, because everybody seems to be using OpenAI. Are you keeping an open mind about OpenAI? Now there’s a phrase I should coin. Because it does seem like hot on the heels of OpenAI, you know, they really were first to market with this interactive chat like capability. Which is very beguiling, but it does seem like hot on the heels are Anthropic and Google, with all of their offerings. Are you wedded to OpenAI, well, first of all, is it OpenAI?</p>\n\n\n\n<p>[00:40:32] <strong>Ben Ritner:</strong> It is open AI, yes.</p>\n\n\n\n<p>[00:40:33] <strong>Nathan Wrigley:</strong> And second of all, are you wedded to that, or do you keep exploring the different models? Because it does feel, in certain contexts, that OpenAI might be feeling the pressure, let’s say. I’ve tried a few different ones out, and in a variety of different contexts, OpenAI excels. In a few, very niche contexts, there are some rivals, which absolutely, you know, they just seem to do a much better job. So anyway, I’ll just hand that one over.</p>\n\n\n\n<p>[00:40:57] <strong>Ben Ritner:</strong> Yeah, for sure. I think we are very much open-minded, in terms of what we do. Part of us building this whole proxy server to handle, and this whole prompt database, and the way that we communicate with OpenAI. The whole time we were thinking, this structure, all that we’re doing, if we need to switch to some other system. Because OpenAI changes their prices, or they discontinue doing what we’re using the for, or for whatever reason, we need to make sure it’s movable.</p>\n\n\n\n<p>So we have experimented with Google’s, and right now we’re using OpenAI. But in a year from now, we might not be. And I think that was a key part for us of, like we need to make sure that we have the ability to shift and move, if we’re seeing a new company come up that is significantly better.</p>\n\n\n\n<p>[00:41:42] <strong>Nathan Wrigley:</strong> Yeah, you never know. Maybe there’s somebody who’s developing something which is really adjacent to the web design industry, and an AI which is specifically for that.</p>\n\n\n\n<p>So what you’ve built, this conduit between the website and the AI. You’ve built this middleware, which sits in between. And that middleware could just be repurposed at a moment’s notice, to talk to the, I don’t know, the Gemini or Anthropic API. And so, really, you wouldn’t have much disruption to service. Ah, that’s interesting.</p>\n\n\n\n<p>[00:42:08] <strong>Ben Ritner:</strong> We’ve got that server in two different places, so we can experiment too. So we can experiment by just locally pinging saying, hey, use the backup server, and then, let’s experiment with that. So we have a lot of ability to do things, to test things, without disrupting our user base.</p>\n\n\n\n<p>[00:42:24] <strong>Nathan Wrigley:</strong> You mentioned that there was some sort of credit system, whereby you acquire credits, which then you spend, in order to do the transactions with the AI. How does that work? Is that like a monthly thing that you add on top? Is that a subscription service on top, or do you get a certain package when you purchase it? Just run us through how that works.</p>\n\n\n\n<p>And you mentioned that 250 credits was available on the free version. You also mentioned that that would probably get you through the process of building a couple of websites. So yeah, just talk us through the typical spend on doing things, and how the credit system works, and how do you top things up if you’re an agency, and a blowing through your credits.</p>\n\n\n\n<p>[00:42:59] <strong>Ben Ritner:</strong> Yeah, so we aren’t charging anything extra for the credits. They come with whatever you have. So if you’ve purchased from us, you get credits automatically into your account. And if you have an existing purchase, and if you go and purchase today, our pro products have a certain amount of credit. So Kadence Blocks Pro alone is 1200. If you go up to our essential bundle, which is Kadence Blocks Pro and Theme Pro and Starter Templates Pro, that is going to give you 4,000 credits, and then up from that is 8,000 credits.</p>\n\n\n\n<p>We largely created the credits as a deterrent to prevent abuse, not as a system to sell you something more. And our goal is that you don’t need a separate subscription. And we want to make it so easy to use, or you’re not really worried too much about your credit count. To that point we’re talking about single lifetime credit bundle packages, that you’ll be able to buy for that agency, that’s burning through their credits.</p>\n\n\n\n<p>We’re going tomake that very, very cost effective. Because, again, we didn’t ever consider that credits could ever be a revenue driver. We have no plan for it to be a revenue driver. We literally just want to protect ourself on cost. So going forward, there’ll be some way to buy credits very cheap.</p>\n\n\n\n<p>The whole communication and stuff with OpenAI is relatively cheap. That’s part of the reason why it’s so usable, so many people are building on it, is because being able to communicate with the AI is cheap. When you take it out to a scale of 400,000 active installs, and things like that, you start to go, oh wow, this could get expensive pretty quick.</p>\n\n\n\n<p>So that’s where, you know, we need to limit some of that. But in general, the idea is that we give you more than enough credits. And if you are an agency, or you’re burning through a lot of credits, we’re going to make it very cheap for you to buy more. Current plan right now is a $20 package that’s going to have like 4,000 extra credits. So we’re going to make it really simple for you to just say like, oh, top me up, I need more credits.</p>\n\n\n\n<p>[00:44:51] <strong>Nathan Wrigley:</strong> Let’s just, before we wind it up, let’s close the lid on Kadence itself. And let’s just talk about your intuitions, Ben, about AI in general. Now, I’m not trying to force you to say anything here or to, you know, imply that you’ve got a certain opinion. But I’m curious as to what you think.</p>\n\n\n\n<p>So there’s two phrases that I’m just going to raise, and one is that, you know, a rising tide carries all boats. In other words, we throw AI into the mix, and everybody’s experience of life, and website building, and all of that, just becomes better. And then there’s another phrase which is, just a race to the bottom, which is entirely the opposite, you know.</p>\n\n\n\n<p>And I’m just wondering if you have any intuitions about that. Because, certainly amongst the people that I’ve met, who are jobing website developers, you know, they’re using tools, much like you’ve got, and rivals, to build websites.</p>\n\n\n\n<p>There is this sort of impending sense of fear amongst some of them, that the very tools which seem so beguiling at the moment, and seem so brilliant because they save a bit of time here, you know, save a minute there, and an hour there and what have you. That all is great, except that there’s this fear that maybe these tools are going to hollow out the very industry that we’re serving.</p>\n\n\n\n<p>To the point where, well, in a few years time, you’ll just go to some webpage and tell it, I want a website to market my cat food, off you go. And, you know, three minutes later you’re done, and it’s all finished. So I wonder if you’ve been thinking about that, if you’ve got any guardrails in place, or intuitions there. I know that’s a fairly ephemeral question, it’s hard to get your hands on. But just a few minutes on your thoughts around that.</p>\n\n\n\n<p>[00:46:15] <strong>Ben Ritner:</strong> Sure. I think, if you are a freelancer who’s building brochure websites, and not offering anything else, other than, here’s your website, that would be a concern. I think that’s a valid concern of like, will these customers keep coming to me, for this very simple brochure website, if that’s all I’m offering?</p>\n\n\n\n<p>I think that that’s been going away for a while, and that freelancers, if you’re paying attention, you’re probably already looking at, how can I help people have an effective website, not just a website?</p>\n\n\n\n<p>And I think that there was a time where everyone was like, I just need a website. There’s just so many local businesses that were like, I just need a website. I think we’re coming to the end of that time, and most businesses are not just saying, I need a brochure website. They’re saying, I need a website that helps me do business, even these local companies. That is able to capture on SEO, that’s able to adequately supply a convincing marketing message for someone to choose them over their competition. That represents them well online, and that allows them to be effective, and continue to serve their local communities, or broader.</p>\n\n\n\n<p>So to me, I think if you’re a freelancer, you should be really thinking about and learning about marketing. And really thinking and learning about SEO. Because what you want to be able to offer is, yeah, this might look like a brochure website, but let me show you how it’s actually effective. Let me show you how we positioned your marketing messaging to make it effective.</p>\n\n\n\n<p>And we are running the ability to do social media ads, and everything else. Like, there’s just so much more that most businesses need, most anyone who’s going to be online. I feel like, if all you’re offering is a brochure site, and done and move on, that is at risk. Because I do think that AI can create a very basic brochure site, that someone will be able to say, that’s good enough.</p>\n\n\n\n<p>But I don’t think that that’s what the majority of, especially WordPress freelancers, are really trying to pitch someone on. And I think that you just need to make sure that you are continuing to grow yourself. To say, I understand the web, the intricacies of marketing, and SEO. And I can help you, not just to make a good looking website that has your content, but make it so it’s actually something that people will be able to find, and that’s going to actually grow your business, or improve your business.</p>\n\n\n\n<p>And I don’t think AI is going to be able to solve that. I think tools will help you solve for that. But I don’t think AI, on its own, or anything automated like that, is just going to be able to solve for that.</p>\n\n\n\n<p>[00:48:49] <strong>Nathan Wrigley:</strong> It’s interesting. I think the only thing that I know that AI will do in the future, is be an agent of change. Whatever that change is, it’s more or less a question of just putting my finger in the air and guessing, I’m not really sure.</p>\n\n\n\n<p>But it’s fascinating to get your perspective on it, because a lot of the people that I talk to are those freelancers, they’re the people building websites. And interesting to get a different perspective. A company that’s building the tools to enable those freelancers to do the work, and all of the concerns, and thought that you are putting into building out those tools. Really fascinating conversation, I enjoyed that tremendously.</p>\n\n\n\n<p>Just before we call it a day, Ben, I’m wondering if you wouldn’t mind just sharing some of the places, or place, where people could get in touch with you, if they wish to. I will drop the URL, like I said, of the Kadence website. So if there’s anything aside from that, just let us know.</p>\n\n\n\n<p>[00:49:36] <strong>Ben Ritner:</strong> I’m not super active on social media, but best place would be our Kadence Facebook group. That is the one place on social media I will come in and out of. I’m not a huge social media person, but that’s one that I, that community is super fun, and I love that.</p>\n\n\n\n<p>You will find a lot of very engaged people in there. So you can go in there and ping me in there. And that’s probably your best, outside of, obviously you can come to the Kadence website, and just click on our support.</p>\n\n\n\n<p>[00:50:02] <strong>Nathan Wrigley:</strong> Great. Thank you so much, Ben. It was really a pleasure chatting to you today, all about Kadence, but also about AI. Really appreciate it. Thanks so much.</p>\n</div>\n\n\n\n<p>On the podcast today we have Ben Ritner.</p>\n\n\n\n<p>Ben is the founder of <a href=\"https://www.kadencewp.com/\">Kadence WP</a>, a company that specialises in developing themes and plugins for WordPress, with a focus on enhancing the front end of websites. The team have developed a suite of blocks that enable users to do more with the core Gutenberg editor, and in 2021 Kadence was acquired and became part of the StellarWP umbrella brand, where Ben now serves as part of the senior leadership team. Under StellarWP, there’s a suite of popular plugins, including LearnDash, the Events Calendar, and GiveWP.</p>\n\n\n\n<p>In this episode, Ben provides us with an insight into how the Kadence team managed the integration of AI into their products, shedding light on the impact it has had on their website building process.</p>\n\n\n\n<p>We discuss the challenges of migrating content between systems, as well as delving into the role of AI in content creation and design adaptation.</p>\n\n\n\n<p>Ben talks us through what guided their technical innovations to accommodate AI-generated content and images. Ben’s perspective is pretty unique, working for a company he started, right through to today where they have an install base of over 400,000 websites, all of which could potentially make use of AI, but not at the risk of breaking backwards compatibility with their own products.</p>\n\n\n\n<p>We chat about the importance of integrating marketing and SEO knowledge for effective website development, and how the recent demand for AI might cause freelancers and agencies to think again about the products and services they offer.</p>\n\n\n\n<p>We also get into the way that the team decides what trends in AI to follow; AI is still new, and it’s possible that what’s all the rage today might be superseded at any time. Where does Ben find inspiration for which AI platform to use, and which implementations of AI are dead ends for website builders?</p>\n\n\n\n<p>If you’re interested in the impact of AI in web development and are intrigued by its potential, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p><a href=\"https://www.kadencewp.com/wordpress-solutions/kadence-ai/\">Next level site creation with AI</a></p>\n\n\n\n<p><a href=\"https://zipwp.com/\">ZipWP</a></p>\n\n\n\n<p><a href=\"https://www.learndash.com/\">LearnDash</a></p>\n\n\n\n<p><a href=\"https://openai.com/\">OpenAI</a></p>\n\n\n\n<p><a href=\"https://stellarwp.com/\">StellarWP</a></p>\n\n\n\n<p><a href=\"https://instawp.com/\">InstaWP</a></p>\n\n\n\n<p><a href=\"https://wordpress.org/data-liberation/\">Data Liberation</a></p>\n\n\n\n<p><a href=\"https://www.facebook.com/groups/webcreatorcommunity/\">Kadence Facebook Group</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Feb 2024 15:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"Akismet: Comment Spam: How to Protect Your Site from Spammers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://akismet.com/?p=283729\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"https://akismet.com/blog/comment-spam/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:20903:\"<p>Everyone has encountered spam comments at one point or another, but they’re more than just an eyesore. They actually scare away real visitors, can mess with your search engine rankings, and can even pose serious cybersecurity risks. It’s a big deal, whether you’re running a small blog or a major business.</p>\n\n<p>Thankfully, there’s something you can do about it, and you don’t have to go it alone. Today, we’ll talk about what comment spam is and why it’s so important to tackle it head‑on.</p>\n\n\n<p>We’ll also discuss why<a href=\"https://akismet.com/features/\"> Akismet</a> is your website’s best protection against spam comments. It quietly filters out all that junk (without interrupting users with annoying quizzes or buttons to click), so your site stays clean and professional — a place where real conversations can happen </p>\n\n\n\n<span id=\"more-283729\"></span>\n\n\n<h2 class=\"wp-block-heading\">What is comment spam?</h2>\n\n<p>Comment spam clutters up your website’s comment sections with unwanted messages. Spammers aren’t there to join the conversation but to push their own agenda, which is often sketchy at best. Because there are strong motivations for spammers’ efforts, those with programming knowledge constantly spend time developing new ways to bypass filters and spread spam automatically through sophisticated bots.</p>\n\n<p>Websites and online spaces are constantly evolving, and so are the methods to combat nuisances like comment spam. Google, for instance, rolled out a significant update in<a href=\"https://developers.google.com/search/blog/2023/10/october-2023-spam-update\" target=\"_blank\" rel=\"noreferrer noopener\"> October 2023</a> to tackle various types of spam, including cloaking, hacking, auto‑generated, and scraped content across multiple languages. This shows just how serious the issue has become globally and the efforts being made to keep online spaces spam‑free.</p>\n\n<p>You, however, will still need to take care in preventing comment spam on your own website or blog posts. But more on that in a moment.</p>\n\n<h2 class=\"wp-block-heading\">What are the motivations behind comment spam?</h2>\n\n<p>Comment spam is driven by several motivations, each with its own unique impact on websites and users. Understanding these motivations can help in developing more effective strategies to counter this prevalent issue.</p>\n\n<h3 class=\"wp-block-heading\">1. SEO link building</h3>\n\n<p>The first thing spammers are often after is improving their website’s ranking on search engines. They sneak links into blog comments or other pages with a comments section, hoping it’ll boost their site’s visibility. This trick is known as SEO poisoning because it can actually hurt your own rankings as a result. And it’s still a booming business, even with many efforts in place to counteract it.</p>\n\n<h3 class=\"wp-block-heading\">2. Malware distribution</h3>\n\n<p>Unfortunately, some of these comment spammers are out to spread malware. They use those sneaky SEO tactics to get their harmful content boosted in the search results or even post links directly to the malware in the comments themselves. When your visitors click on these links, they might end up with stolen data or worse.</p>\n\n<h3 class=\"wp-block-heading\">3. Advertising and promotion</h3>\n\n<p>Lastly, some spammers are just trying to push their products or services. It’s like those people who hand out flyers on the street, except they’re leaving their flyers in your comments. They use all sorts of tactics to try to get through on thousands of sites a day (or more), and because they cast such a wide net, even a tiny success rate is worth it for them.</p>\n\n<p>Each of these motivations creates different challenges for site administrators and blog owners. From an SEO standpoint, comment spam can really hurt your site’s ranking. The spammy people you let hang around can rub off and give you a bad reputation. If search engines find out you’re unintentionally hosting bad links, they might penalize you. It might not sound fair, but it’s a fact all the same.</p>\n\n<h2 class=\"wp-block-heading\">The adverse effects of comment spam</h2>\n\n<p>Comment spam can significantly impact a website in various detrimental ways:</p>\n\n<h3 class=\"wp-block-heading\">1. Site reputation</h3>\n\n\n<p>Imagine walking into a party and finding trash everywhere. That’s what a website swamped with spam comments feels like. It screams neglect and poor management. Visitors will likely think twice before engaging, and genuine community members? They might just leave. </p>\n\n\n<p>And if those spam comments have links to shady sites, it makes it seem as though you’ve invited trouble right to your doorstep. Spam comments post a real hit to your site’s good name.</p>\n\n<h3 class=\"wp-block-heading\">2. SEO consequences</h3>\n\n\n<p>When it comes to SEO, comment spam, as we’ve already mentioned, is a real problem. Google’s got a sharp eye for sites that house spammy content. If your site is littered with this stuff, Google might think it’s not up to par, which can mean a nosedive in rankings. </p>\n\n\n<p>Imagine, just when you thought you were getting the hang of SEO, comment spam can pull the rug right from under you. It’s tough because a dip in search rankings means fewer visitors and, ultimately, a hit to potential conversions.</p>\n\n<h3 class=\"wp-block-heading\">3. Potential for site blocklisting</h3>\n\n<p>In the worst‑case scenario, too much comment spam can get your site on the search engines’ naughty list, i.e. blocklisted. This happens when your site is seen by search engines as a place with potentially harmful content or that at least links to dangerous websites. Recovering from a blocklisting is no joke, either. It’s a long and difficult process, so avoiding this is obviously preferable.</p>\n\n<h2 class=\"wp-block-heading\">Common characteristics of comment spam</h2>\n\n<p>Comment spam typically exhibits several common characteristics that can help in identifying and filtering it out:</p>\n\n<h3 class=\"wp-block-heading\">1. Links to external websites</h3>\n\n<p>First off, links in blog comments that lead to other sites are classic red flags. These aren’t just any links, though. They’re usually totally unrelated to your post and are all about getting more eyeballs on spammers’ sites or boosting their SEO. Often these links pose major threats, leading to places you wouldn’t want your visitors to end up.</p>\n\n<p>With cybersecurity investments booming to $76 billion in 2023, according to<a href=\"https://hginsights.com/market-reports/market-report-socs\" target=\"_blank\" rel=\"noreferrer noopener\"> HG Insights</a>, it’s clear everyone’s taking these threats seriously, and not just the big fish but small businesses, too.</p>\n\n<h3 class=\"wp-block-heading\">2. Generic or flattering language</h3>\n\n<p>Then, there’s the flattery game. Spammers love to post comments using vague, super‑positive comments like “Great post!” but they’re pretty empty and don’t add much value to your site. They’re trying to butter you up so you’ll let their comment slide through. And while not always spam, comments like these definitely raise red flags.</p>\n\n\n<img width=\"1074\" height=\"366\" src=\"https://akismet455732288.files.wordpress.com/2024/02/image.png\" alt=\"example of a flattering spam comment\" class=\"wp-image-283731\" />\n\n\n<h3 class=\"wp-block-heading\">3. Irrelevant content</h3>\n\n\n<p>Spam comments are completely off-topic. They’ll slap any old thing in the comment section, as long as they can sneak in a backlink or a plug for something. With phishing websites on the rise, it’s clear these irrelevant comments are part of a bigger online game.</p>\n\n\n\n<img width=\"1216\" height=\"442\" src=\"https://akismet455732288.files.wordpress.com/2024/02/image-1.png\" alt=\"example of an off-topic spam comment\" class=\"wp-image-283732\" />\n\n\n<h3 class=\"wp-block-heading\">4. Poorly written comments</h3>\n\n<p>Spammers often use comments with grammatical errors either to sneak past filters searching for common spam words, to appear more human, or simply because they’re trying to write in a non‑native language. So comments with numerous grammatical errors should be viewed with suspicion.</p>\n\n\n<img width=\"1204\" height=\"628\" src=\"https://akismet455732288.files.wordpress.com/2024/02/image-2.png\" alt=\"example of a spam comment with lots of hashtags\" class=\"wp-image-283733\" />\n\n\n<h3 class=\"wp-block-heading\">5. Lots of pingbacks and trackbacks</h3>\n\n<p>These are automated or manual notifications sent when one website links to another. While they can enhance interaction between websites, they can also be used for spamming. Distinguishing between genuine and spam trackbacks or pingbacks involves assessing their relevance and the quality of the linking site.</p>\n\n\n<img width=\"1440\" height=\"714\" src=\"https://akismet455732288.files.wordpress.com/2024/02/image-3.png\" alt=\"example of a pingback on a blog post\" class=\"wp-image-283734\" />\n\n\n<h3 class=\"wp-block-heading\">6. A sudden influx of comments</h3>\n\n<p>A ton of comments coming in at once, especially from new or unverified users, can be a sign of spam. This can be a coordinated effort to flood your site with spam comments.</p>\n\n<h3 class=\"wp-block-heading\">7. Suspicious usernames or email addresses</h3>\n\n<p>And let’s not forget the weird usernames and email addresses. These are often pretty obvious with random numbers or bizarre word salad‑style names. It’s all about creating fake identities to spread spam far and wide.</p>\n\n<p>Identifying these characteristics can help you in effectively managing and reducing the amount of comment spam on your website. And using tools like Akismet can help in automating the process of spam detection and removal.</p>\n\n<h2 class=\"wp-block-heading\">Why common anti‑spam methods fall short (and what to do instead)</h2>\n\n<p>Common anti‑spam methods, though widely used, have limitations that can make them less effective:</p>\n\n<h3 class=\"wp-block-heading\">1. CAPTCHA and its limitations</h3>\n\n\n<p>While you’re probably used to seeing CAPTCHAs or reCAPTCHAs (those tests that make you do things like decipher a string or random letters or check all the pictures with stoplights) in your everyday life, they can be a real headache for users. </p>\n\n\n\n<img width=\"828\" height=\"982\" src=\"https://akismet455732288.files.wordpress.com/2024/02/image-4.png\" alt=\"example of a CAPTCHA, asking users to select squares with red spheres\" class=\"wp-image-283736\" />\n\n\n<p>Ever found yourself squinting at your screen, trying to figure out if that’s a letter or a smudge? You’re not alone. In fact, only about 66% of people get through these tests on their first try, according to the<a href=\"https://baymard.com/blog/captchas-in-checkout\"> Baymard Institute</a>.</p>\n\n<p>Then, there’s the issue of accessibility. People with visual impairments can find themselves at a disadvantage with visual CAPTCHAs, and the audio alternatives have similar downfalls. Plus, those advanced bots you’re trying to block? They’re getting better at sneaking past these tests, making CAPTCHAs less effective by the day.</p>\n\n<h3 class=\"wp-block-heading\">2. Question‑based challenges</h3>\n\n<p>Asking users a question to prove they’re human seems like a smart move. But it’s got its pitfalls, too. For one, bots can be programmed to answer common questions. And if your questions are too obscure or complex, you might end up turning away real humans who just wanted to interact with your site.</p>\n\n<h3 class=\"wp-block-heading\">3. Limiting commenting to registered users</h3>\n\n<p>Making people sign up before they can comment is a decent barrier against spam, but it presents its own set of issues. Not everyone wants to go through the hassle of creating an account, especially if they’re just passing by. So, you might be keeping out the spam, but you’re also likely missing out on some valuable contributions from casual visitors.</p>\n\n<h3 class=\"wp-block-heading\">4. Manual review and approval of all comments</h3>\n\n<p>Having a real person review each comment is great for quality control. But let’s face it, it’s a time‑consuming task. If your site’s buzzing with activity, staying on top of all those comments can be a daunting, if not impossible, task.</p>\n\n<p>In all of these cases, using a tool like Akismet is a preferable option to keep comment spam under control. Now, let’s talk about why.</p>\n\n<h2 class=\"wp-block-heading\">Akismet: The #1 tool to stop comment spam completely</h2>\n\n<p>Because of its popularity, you’ve probably heard of Akismet in the past — especially if you’re running a WordPress site. It’s kind of a big deal in the world of online spam protection.</p>\n\n<p>Created by Automattic, the people behind WordPress.com, Akismet has been at the forefront of spam solutions since 2005. It’s proven itself to be a reliable ally for website owners who are tired of dealing with comment spam, but don’t want to interrupt users with annoying, unreliable tests.</p>\n\n\n<p>What you may not know is that Akismet provides solutions for more than just WordPress sites. Thanks to its flexible API connection, it can work with many other platforms like Drupal, phpBB3, and Joomla. Abiding by the open source philosophy, Akismet likes to say that it’s built <em>by</em> developers, <em>for</em> developers. </p>\n\n\n<h3 class=\"wp-block-heading\">How Akismet works</h3>\n\n\n<p>So, how does Akismet keep those spam comments at bay? It’s pretty smart. When someone (or some<em>thing</em>) leaves a comment on your site, fills out a form, or submits any other form of text, Akismet’s advanced AI program can analyze it for authenticity. </p>\n\n\n<p>It’s constantly evolving and learning to maintain its incredible 99.99% accuracy rate.</p>\n\n<p>Depending on your configuration, it can set comments aside for you to review later or automatically delete suspicious ones. Based on your feedback, it can adapt to your site for even improved performance (if that’s even possible).</p>\n\n\n<p>Akismet is all automated — for both you and your site’s visitors. </p>\n\n\n<h3 class=\"wp-block-heading\">The benefits of using Akismet to block comment spam</h3>\n\n<p>Akismet stands out as the best way to block comment spam because:</p>\n\n\n<ol><li><strong>It offers real‑time monitoring and adaptability</strong>. Akismet’s cloud‑based system constantly learns from the billions of data points it processes from its use on over 100 million sites, allowing it to adapt to new spam techniques and protect websites against the most advanced spam attacks.</li>\n\n<li><strong>It has a database of known spam patterns</strong>. It also uses a massive database and sophisticated algorithms to detect and block spam, which is continuously updated to recognize new spamming methods.</li>\n\n<li><strong>It boasts 99.99% spam detection accuracy</strong>. One of Akismet’s standout features is its high accuracy rate in spam detection, significantly reducing the likelihood of spam slipping through the cracks.</li>\n\n\n<li><strong>You can set it and forget it</strong>. Once configured, Akismet runs autonomously, saving you considerable time and effort that would otherwise be spent on manual spam moderation. </li>\n\n\n<li><strong>It’s compatible with multiple platforms</strong>. Although primarily known for its integration with WordPress, Akismet can be utilized across various platforms, making it a versatile tool for blocking comment spam, <a href=\"https://akismet.com/blog/forum-spam/\">forum spam</a>, <a href=\"https://akismet.com/blog/how-to-stop-contact-form-spam-on-wordpress/\">contact form spam</a>, <a href=\"https://akismet.com/blog/what-is-seo-spam-how-to-protect-your-wordpress-site/\">SEO spam</a>, and various other forms of unwanted content.</li>\n\n<li><strong>It doesn’t affect the user experience</strong>. Unlike some anti‑spam tools that can be intrusive or cumbersome for users (like CAPTCHAs), Akismet operates in the background without adding friction to the user experience. This is essential for high engagement and conversion rates.</li></ol>\n\n\n<h2 class=\"wp-block-heading\">How to start blocking comment spam today with Akismet</h2>\n\n<p>Blocking comment spam with Akismet can significantly enhance your website’s user experience and security. Below is a straightforward step‑by‑step guide to get you started.</p>\n\n<h3 class=\"wp-block-heading\">Step 1: Install and activate the Akismet plugin</h3>\n\n<p>If you’re using WordPress, there’s a good chance Akismet is already pre‑installed. However, if it’s not:</p>\n\n\n<ol><li>Go to your WordPress dashboard.</li>\n\n<li>Navigate to <strong>Plugins → Add New</strong>.</li>\n\n<li>Search for “Akismet” in the WordPress plugin directory.</li>\n\n<li>Click <strong>Install Now </strong>next to the Akismet plugin.</li></ol>\n\n\n\n<p><strong><em>Note:</em></strong><em> If Akismet isn’t pre-installed or if you’re not using WordPress, visit the </em><a href=\"https://akismet.com/developers/getting-started/\"><em>getting started guide</em></a><em> for more information. </em></p>\n\n\n<p>Once the plugin is installed, click the <strong>Activate</strong> button within your WordPress dashboard to activate the Akismet plugin.</p>\n\n\n<img width=\"450\" height=\"197\" src=\"https://akismet455732288.files.wordpress.com/2024/02/image-5.png\" alt=\"installing Akismet in WordPress\" class=\"wp-image-283737\" />\n\n\n<h3 class=\"wp-block-heading\">Step 2: Obtain and input your API key</h3>\n\n<p>To connect your site to Akismet’s servers:</p>\n\n\n<ol><li>Visit the Akismet website.</li>\n\n<li>Sign up for an account to obtain an API key.</li>\n\n\n<li>Select the plan that fits your needs (free for personal blogs; paid subscriptions are available for businesses and commercial sites). Enterprise users can <a href=\"https://akismet.com/enterprise-pricing/\">create their own plan or discuss it with an expert</a>. </li>\n\n\n<li>Follow the instructions to generate your API key.</li></ol>\n\n\n\n<img width=\"900\" height=\"532\" src=\"https://akismet455732288.files.wordpress.com/2024/02/image.jpeg\" alt=\"pricing plans for Akismet\" class=\"wp-image-283738\" />\n\n\n<p>After obtaining your API key:</p>\n\n\n<ol><li>Go back to your WordPress dashboard.</li>\n\n<li>Navigate to <strong>Akismet → Settings</strong>.</li>\n\n<li>Enter your API key in the designated field and connect.</li></ol>\n\n\n\n<img width=\"450\" height=\"267\" src=\"https://akismet455732288.files.wordpress.com/2024/02/image-6.png\" alt=\"adding an API key to Akismet settings\" class=\"wp-image-283739\" />\n\n\n<h3 class=\"wp-block-heading\">Step 3: Configure Akismet settings</h3>\n\n<p>Once activated, review the default settings for Akismet by going to <strong>Settings → Akismet Anti‑Spam </strong>then finding the <strong>Settings</strong> section.</p>\n\n<p>Determine how you’d like to handle comments flagged as spam as well as the <strong>Strictness</strong> of the spam filter.</p>\n\n<h3 class=\"wp-block-heading\">Step 4: Monitor and adjust as needed</h3>\n\n<p>With Akismet now operational, you’ll want to make monitoring the spam filtering process a part of your regular website maintenance schedule. Check in on Akismet’s settings, pop into the comments marked as spam, and make adjustments to the settings if needed, based on the nature of spam comments your site receives.</p>\n\n<p>By following these steps, Akismet will begin to automatically monitor and filter your website’s comments and form submissions. This automation saves time and ensures a cleaner, more professional online environment for your visitors.</p>\n\n<h2 class=\"wp-block-heading\">Say goodbye to comment spam with Akismet</h2>\n\n\n<p>All-around, Akismet provides an easy-to-use solution to a massive website-related problem. It works automatically in the background with near-perfect accuracy, and is scalable and customizable for your unique program. </p>\n\n\n\n<p><a href=\"https://akismet.com/pricing/\">Get started with Akismet</a>. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Feb 2024 14:15:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Jen Swisher\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"Do The Woo Community: WooCommerce Performance Optimization with Sabrina Zeidan and Uros Tasic\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=79061\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://dothewoo.io/woocommerce-performance-optimization/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:450:\"<p>WooCommerce developer Uros and WordPress engineer Sabrina discuss website performance optimization, advocating for awareness, regular testing, and practical tools.</p>\n<p>>> The post <a href=\"https://dothewoo.io/woocommerce-performance-optimization/\">WooCommerce Performance Optimization with Sabrina Zeidan and Uros Tasic</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a> .</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Feb 2024 10:41:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:233:\"HeroPress: Words to WordPress: Charting My Path Through Technology and Community! – লেখালেখি থেকে শুরু করে ওয়ার্ডপ্রেসের সাথে আমার পথচলা \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=6519\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:210:\"https://heropress.com/essays/words-to-wordpress-charting-my-path-through-technology-and-community/#utm_source=rss&utm_medium=rss&utm_campaign=words-to-wordpress-charting-my-path-through-technology-and-community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:18834:\"<img width=\"1024\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/2025/02/020624-min.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: Starting with WordPress might have been a coincidence, but staying with it was a choice.\" /><p><a href=\"https://heropress.com/feed/#bangla\">এই নিবন্ধটি বাংলায় পাওয়া যায়</a></p>\n\n\n\n<p>My journey with WordPress started unexpectedly. I will demonstrate my voyage towards WordPress as a freelancer to a full-time job holder and a contributor in the community. </p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-how-i-entered-into-the-world-of-wordpress\">How I Entered into the World of WordPress</h2>\n\n\n\n<p>Back in 2015, I began writing content as a freelancer, not knowing that WordPress would become such a big part of my life. At first, WordPress was just a tool for me to publish my writings. But soon, it turned into much more than that. It became the center of my career. When I graduated from Gono University with a Computer Science and Engineering degree, I didn’t imagine WordPress would be where I’d find my passion. </p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-everyday-i-m-growing-with-wordpress\">Everyday I’m Growing with WordPress</h2>\n\n\n\n<p>After freelancing, I joined weDevs, a company known for creating WordPress plugins. This was a significant change for me. At weDevs, I wasn’t just writing; I was part of a team that made tools to help people build better websites. I learned a lot about WordPress and how it works from the inside.</p>\n\n\n\n<p>Then, I moved to BuddyBoss, where I became a technical writer. This job was different because I had to explain how things work in a way that everyone could understand. It was challenging but also very rewarding. I enjoyed making complex ideas simple and helping others learn about WordPress.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-volunteering-and-being-part-of-the-community\">Volunteering and Being Part of the Community</h2>\n\n\n\n<p>One of the best parts of my journey has been volunteering at WordCamps and WordPress Meetups. Going beyond my work responsibilities, I made it a point to engage actively within the community. Till now, I have volunteered at several notable events:</p>\n\n\n\n<ul>\n<li>WordCamp Kent 2020 (Online)</li>\n\n\n\n<li>WordCamp Northeast Ohio 2021 (Online)</li>\n\n\n\n<li>WordCamp India 2021 (Online)</li>\n\n\n\n<li>WordCamp Asia 2023</li>\n\n\n\n<li>WordCamp Sylhet 2023</li>\n</ul>\n\n\n\n<p>These events have been enriching for me. They’ve allowed me to meet people as excited about WordPress as I am. It was great to see how strong and welcoming the WordPress community is, sharing knowledge and experiences.</p>\n\n\n\n<p>Apart from that, currently, I am an Organizer of the WordPress Dhaka Community. All these years of working for WordPress paid me really well and recognized me as a community member to serve the Dhaka WordPress enthusiasts.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-what-i-ve-learned-through-the-journey\">What I’ve Learned Through the Journey</h2>\n\n\n\n<p>Looking back, I see how much I’ve grown because of WordPress. It started as just a platform for my writing, but it became a way to connect with others, learn new skills, and share my knowledge. My career has taken me to places I never expected, and I’m grateful for all the opportunities WordPress has given me.</p>\n\n\n\n<p>I’ve learned that being open to new experiences and willing to learn can lead you to exciting places. WordPress has been a part of not only my career but also my personal growth.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-looking-forward\">Looking Forward</h2>\n\n\n\n<p>My journey with WordPress is far from over. There’s always something new to learn and more ways to contribute to the community. I’m excited to see where this path will take me next. Whether it’s writing, volunteering, or working on new projects, I’m ready for the challenges and opportunities ahead. </p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-footnote\">Footnote</h2>\n\n\n\n<p>Starting with WordPress might have been a coincidence, but staying with it was a choice I made because of the joy and achievement it brings. My story is simple: it’s about finding your passion in unexpected places and growing with it. I hope it can inspire others to explore their interests and see where they lead.<br />When it comes to my hobbies, there’s a long list. I love traveling, reading, watching movies (but not web series), and listening to music. I have two furry babies, Judy and Deany (Shih-Tzu), and plan to adopt a cat soon. These personal joys add another layer of happiness and fulfillment to my life, making my journey with WordPress even more rewarding. If you want to get connected with me just visit <a href=\"https://adritaa.com/portfolio/\">Adritaa.com</a> for more details.</p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-6519_be3042-60\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<h1 id=\"bangla\" class=\"kt-adv-heading6519_f56988-09 wp-block-kadence-advancedheading\">লেখালেখি থেকে শুরু করে ওয়ার্ডপ্রেসের সাথে আমার পথচলা </h1>\n\n\n\n<p>ওয়ার্ডপ্রেসের সাথে আমার যাত্রার শুরুটা ছিল বেশ অপ্রত্যাশিত। একজন ফ্রিল্যান্সার হিসেবে ওয়ার্ডপ্রেসের সাথে আমার পথচলা, পূর্ণ-সময়ের চাকরি এবং কমিউনিটির একজন সংগঠক হিসেবে আমার অভিজ্ঞতা আমি এখানে প্রকাশ করছি। </p>\n\n\n\n<h2 class=\"wp-block-heading\">ওয়ার্ডপ্রেসের সাথে আমার পরিচয় </h2>\n\n\n\n<p>২০১৫ সালে, আমি একজন ফ্রিল্যান্সার হিসাবে বিভিন্ন ধরনের কন্টেন্ট লিখতে শুরু করি, তখনও আমি বুঝতে পারিনি যে ওয়ার্ডপ্রেস আমার জীবনের এত বড় অংশ হয়ে উঠবে। প্রথমদিকে, ওয়ার্ডপ্রেস ছিল আমার জন্যে লেখা প্রকাশ একটি হাতিয়ার মাত্র। কিন্তু সময়ের সাথে এটা তারচাইতে অনেক বেশি কিছুতে পরিণত হয়েযায়। ওয়ার্ডপ্রেস আমার কর্মজীবনের কেন্দ্রস্থলে পরিণত হয়। </p>\n\n\n\n<p>আমি যখন গণ ইউনিভার্সিটি থেকে কম্পিউটার সায়েন্স এবং ইঞ্জিনিয়ারিং বিষয়ে স্নাতক পাশ করি, তখন আমি কল্পনাও করতে পারিনি যে ওয়ার্ডপ্রেস এমন একটি মাধ্যম হয়ে উঠবে যেখানে আমি আমার কাজের আনন্দ খুঁজে পাব।</p>\n\n\n\n<h2 class=\"wp-block-heading\">ওয়ার্ডপ্রেসের সাথে আমার প্রতিদিনের বেড়ে ওঠা</h2>\n\n\n\n<p>ফ্রিল্যান্সিংয় কাজের শেষে, আমি ওয়ার্ডপ্রেস জগতে প্লাগইন তৈরির জন্য সুপরিচিত কোম্পানি weDevs-এ কন্টেন্ট রাইটার হিসেবে যোগ দেই। এই কাজে যুক্ত হওয়া আমার জন্য একটি উল্লেখযোগ্য পরিবর্তন ছিল। weDevs এ, আমি শুধু লেখার কাজই করিনি; এ প্রতিষ্ঠানে আমি এমন একটি টিমের সাথে যুক্ত ছিলাম, যারা গ্রাহকদের জন্য আরও উন্নত ওয়েবসাইট তৈরি করার প্রয়োজনীয় সরঞ্জাম তৈরি করতো। </p>\n\n\n\n<p>আমি সেখান থেকে ওয়ার্ডপ্রেস সম্পর্কে অনেক কিছুই শিখি এবং জানতে পারি কিভাবে ওয়ার্ডপ্রেসর ব্যাকএন্ড থেকে কাজ হয়। এরবাইরে আমি ওয়ার্ডপ্রেস প্লাগিন মার্কেটিং নিয়েও এই প্রতিষ্ঠানে বেশকিছু উল্লেখযোগ্য কাজ করি। </p>\n\n\n\n<p>এরপর, আমি BuddyBoss-এ যোগ দেই টেকনিক্যাল রাইটার হিসেবে। এখানে আমার কাজ পূর্বের কাজ থেকে ভিন্ন ধরনের। এখানে আমি কন্টেন্টের মাধ্যমে ব্যাখ্যা করি, কিভাবে একজন ব্যবহারকারী ওয়ার্ডপ্রেসের ব্যাকএন্ড থেকে সঠিক ভাবে BuddyBoss প্লাগিন ব্যবহার করতে পারবে। এই কাজ আমার কাছে যেমন চ্যালেঞ্জিং ছিল তেমনি ছিল আমার ক্যারিয়ারের জন্য মাইলফলক। টেকনিক্যাল জটিল সব ব্যাপারগুলো সহজভাবে ব্যবহারকারীদের কাছে তুলে ধরতে এবং তাদেরকে ওয়ার্ডপ্রেস শেখানোর কাজটি এখানে থেকে আমি উপভোগ করছি।</p>\n\n\n\n<h2 class=\"wp-block-heading\">ভলেন্টিয়ার এবং কমিউনিটি অর্গানাইজার হিসেবে আমার যাত্রা</h2>\n\n\n\n<p>আমার ওয়ার্ডপ্রেস পথচলার অন্যতম অংশ হচ্ছে ওয়ার্ডক্যাম্প এবং WordPress Meetups-এ ভলেন্টয়ারী কাজ করা। প্রাতিষ্ঠানিক কাজের বাইরে যেয়ে, আমি ওয়ার্ডপ্রেস কমিউনিটিতে সক্রিয়ভাবে জড়িত থাকার চেষ্টা করি। এখন পর্যন্ত, আমি বেশ কয়েকটি উল্লেখযোগ্য ইভেন্টে ভলেন্টিয়ার হয়েছি:</p>\n\n\n\n<p>১।ওয়ার্ডক্যাম্প কেন্ট ২০২০ (অনলাইন)<br />২। ওয়ার্ডক্যাম্প উত্তরপূর্ব ওহাইও ২০২১ (অনলাইন)<br />৩। ওয়ার্ডক্যাম্প ইন্ডিয়া ২০২১ (অনলাইন)<br />৪। ওয়ার্ডক্যাম্প এশিয়া ২০২৩ <br />৫। ওয়ার্ডক্যাম্প সিলেট ২০২৩</p>\n\n\n\n<p>এই ইভেন্টগুলো আমার জন্য খুবই গুরুত্বপূর্ণ ছিল। এ ইভেন্টগুলতে আমি আমার মতোই অন্য ওয়ার্ডপ্রেস প্রেমিদের সাথে দেখা করার এবং যোগাযোগ করার সুযোগ পাই, যারা আমার মতই ওয়ার্ডপ্রেসকে ভালবাসে। ওয়ার্ডপ্রেস কমিউনিটি কতটা শক্তিশালী এবং কিভাবে তারা নতুনদের স্বাগত জানাচ্ছে, জ্ঞান আর অভিজ্ঞতা ভাগাভাগি করে নিচ্ছে এ ব্যাপারগুলো দেখতে পারা আমার কাছে দুর্দান্ত এক অভিজ্ঞতা ছিল। </p>\n\n\n\n<p>বর্তমানে আমি ওয়ার্ডপ্রেস ঢাকা কমিউনিটির একজন অর্গানাইজার। ঢাকা ওয়ার্ডপ্রেস কমিউনিটির পক্ষ থেকে ওয়ার্ডপ্রেসের ব্যাপারে উৎসাহীদের সহযোগিতা করতে আমাকে একটি কমিউনিটি অর্গানাইজার হিসেবে স্বীকৃতি দেয় যা আমার কাছে সত্যিকার ভাবেই অনেক সন্মানের।</p>\n\n\n\n<h2 class=\"wp-block-heading\">এ যাত্রাপথে আমি যা শিখেছি</h2>\n\n\n\n<p>অতীতের দিকে ফিরে তাকালে, আমি ওয়ার্ডপ্রেসের কারণে কোন পর্যায়ে এসেছি সেটা দেখতে পাই। যা আমার লেখা প্রকাশের একটি প্ল্যাটফর্ম হিসাবে শুরু হয়েছিল, সেটাই এখন অন্যদের সাথে সংযোগ করার মাধ্যম হিসেবে, নতুন দক্ষতা অর্জনের এবং আমার অভিজ্ঞতা অন্যদের সাথে ভাগ করার একটি মাধ্যম হয়ে উঠেছে। আমার কর্মজীবন আমাকে এমন এক জায়গায় নিয়ে এসেছে যা আমি কখনো কল্পনা করিনি। ওয়ার্ডপ্রেসই আমাকে এই সব সুযোগ দিয়েছে এর জন্যে আমি ওয়ার্ডপ্রেসর কাছে কৃতজ্ঞ।</p>\n\n\n\n<p>আমি এখান থেকে শিখেছি নতুন কোনো অভিজ্ঞতা ও নতুন কিছু শেখার জন্য আগ্রহী থাকলে নিজেকে অসাধারণ সব জায়গায় নিয়ে যাওয়া সম্ভব। ওয়ার্ডপ্রেস শুধুমাত্র আমার কর্মজীবনই নয়, আমার ব্যক্তিগত জ্ঞান সমৃদ্ধিরও একটি অংশ।</p>\n\n\n\n<h2 class=\"wp-block-heading\">আমার ভবিষ্যৎ পরিকল্পনা</h2>\n\n\n\n<p>ওয়ার্ডপ্রেসের সাথে আমার যাত্রা কখনোই শেষ হবার নয়। এখানে সবসময় নতুন কিছু শেখার আছে এবং কমিউনিটিতে অবদান রাখার আরও নানান উপায় আছে। এই পথচলা আমাকে পরবর্তী কোথায় নিয়ে যাবে তা দেখতে আমি খুবই উৎসাহী। আমি নতুন চ্যালেঞ্জ এবং সুযোগের জন্য সবসময় প্রস্তুত সেটা লেখা-লেখি, ভলেন্টিয়ারী, বা নতুন প্রজেক্টে কাজ করা যে ভাবেই হোক না কেন।</p>\n\n\n\n<h2 class=\"wp-block-heading\">আজ এ পর্যন্তই</h2>\n\n\n\n<p>ওয়ার্ডপ্রেসের সাথে যাত্রা শুরু করা আমার জন্য হয়তো একটি কাকতালীয় ঘটনা ছিল, কিন্তু এখানে কাজ করে আমি যে আনন্দ পেয়েছি এবং যা অর্জন করেছি তা বলে শেষ করার মত নয়৷ আমি আশা করি, আমার এই পথচলার গল্প ওয়ার্ডপ্রেস প্রেমীদের অনুপ্রাণিত করবে এবং আগামীতে নেতৃত্ব দিতে সাহায্য করবে৷</p>\n\n\n\n<p>আমার শখের একটি দীর্ঘ তালিকা আছে৷ আমি ঘুরে বেড়াতে, বই পড়তে, সিনেমা দেখতে (কিন্তু ওয়েব সিরিজ নয়), এবং গান শুনতে পছন্দ করি। আমার দুটি পোষা কুকুর আছে, জুডি এবং ড্যানি, এবং শীঘ্রই একটি বিড়াল দত্তক নেওয়ার ইচ্ছেও আছে৷ এই নির্মল আনন্দগুলো আমার জীবনে সুখ এবং পরিপূর্ণতার আরেকটি স্তর যোগ করে, যা ওয়ার্ডপ্রেসের সাথে আমার যাত্রাকে আরও বেশি ফলপ্রসূ করে তোলে প্রতিদিন। আপনি যদি আমার সাথে যোগাযোগ করতে চান তাহলে বিস্তারিত জানতে আমার ওয়েবসাইট <a href=\"https://adritaa.com/portfolio/\">Adritaa.com</a> এ ঘুরে আসতে পারেন।</p>\n<p>The post <a href=\"https://heropress.com/essays/words-to-wordpress-charting-my-path-through-technology-and-community/\">Words to WordPress: Charting My Path Through Technology and Community! – লেখালেখি থেকে শুরু করে ওয়ার্ডপ্রেসের সাথে আমার পথচলা </a> appeared first on <a href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Feb 2024 02:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Adrita Chakraborty\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"WordPress.org blog: The Month in WordPress – January 2024\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=16837\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2024/02/the-month-in-wordpress-january-2024/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:11903:\"<p>January kicked off with big plans for the WordPress project in the year ahead. Work on the WordPress 6.5 release is underway, with Beta 1 scheduled for next week and early testing opportunities. Let’s catch up on all the exciting updates from the past month.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Looking at 2024</h2>\n\n\n\n<p><a href=\"https://wordpress.org/news/2024/01/episode-70-a-look-ahead-at-wordpress-in-2024/\">In a recent episode of WP Briefing</a>, WordPress Executive Director Josepha Haden Chomphosy discusses some of the <a href=\"https://make.wordpress.org/project/2024/01/19/big-picture-goals-2024/\">big-picture goals for WordPress this year</a>. The main highlights include <a href=\"https://make.wordpress.org/core/2023/07/03/real-time-collaboration/\">Phase 3 of the WordPress roadmap</a>, which involves collaborative editing and significant updates to writing and design workflows. Another major focus is <a href=\"https://wordpress.org/data-liberation/\">Data Liberation</a>, a new initiative introduced at <a href=\"https://wordpress.org/state-of-the-word/\">State of the Word 2023</a> with the ultimate goal of creating a more open web.</p>\n\n\n\n<a href=\"https://wordpress.org/news/2024/01/data-liberation-in-2024/\"><img width=\"1024\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/02/Data-liberation-slide-1.png?resize=1024%2C576&ssl=1\" alt=\"Data Liberation\" class=\"wp-image-16840\" /></a><em><a href=\"https://wordpress.org/news/2024/01/data-liberation-in-2024/\">Learn more about Data Liberation in 2024</a></em>.\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 6.5 is on its way</h2>\n\n\n\n<p>Preparations for WordPress 6.5, the first major release of 2024, are in full swing. <a href=\"https://make.wordpress.org/core/2024/01/18/wordpress-6-5-release-squad-formation/\">The release squad was announced</a> last month, and the next milestone will be Beta 1, <a href=\"https://make.wordpress.org/core/6-5/\">scheduled</a> for February 13.</p>\n\n\n\n<p>Curious about what version 6.5 will bring? <a href=\"https://make.wordpress.org/core/2024/01/17/hallway-hangout-lets-explore-wordpress-6-5-recap/\">Check out this Hallway Hangout recap</a> to learn about some upcoming features. You can also participate in <a href=\"https://make.wordpress.org/test/2024/01/13/early-opportunities-to-test-wordpress-6-5/\">this early testing opportunity</a> to experience them first-hand and provide feedback.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size is-layout-flow wp-block-quote-is-layout-flow\">\n<p>Until 6.5 is released, you can <a href=\"https://wordpress.org/news/2024/01/wordpress-6-4-3-maintenance-and-security-release/\">upgrade to WordPress 6.4.3</a>. This version includes numerous security and maintenance updates.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">New in the Gutenberg plugin</h2>\n\n\n\n<p>Three new versions of Gutenberg shipped in January:</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2024/01/04/whats-new-in-gutenberg-17-4-03-january/\"><strong>Gutenberg 17.4</strong></a> featured improvements to List View and Style Revisions, more flexibility for background images in Group blocks, and significant advancements to the Data Views experience for the Templates page.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/01/17/whats-new-in-gutenberg-17-5-17-january-2024/\"><strong>Gutenberg 17.5</strong></a> made good progress in combining the Post Editor and Site Editor by introducing a shared preference panel, among other highlights.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/01/31/whats-new-in-gutenberg-17-6-31-january/\"><strong>Gutenberg 17.6</strong></a> included the ability to extend allowed blocks within a parent block, along with several improvements to Block Hooks, the Data Views experience, and the Site and Post Editor unification.</li>\n</ul>\n\n\n\n<div class=\"wp-block-media-text is-stacked-on-mobile has-off-white-2-background-color has-background\"><a href=\"https://make.wordpress.org/core/2024/01/22/core-editor-improvement-robust-revisions-in-the-site-editor/\"><img width=\"1024\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2024/02/Robust-Revisions-in-the-Site-Editor-Featured-Image.png?resize=1024%2C576&ssl=1\" alt=\"Blue decorative background with dots, the WordPress logo, and text \" /></a><div class=\"wp-block-media-text__content\">\n<p>WordPress 6.5 is slated to include some impactful changes and new features to current revision functionality in the Site Editor. <a href=\"https://make.wordpress.org/core/2024/01/22/core-editor-improvement-robust-revisions-in-the-site-editor/\">Read more »</a></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Team updates</h2>\n\n\n\n<ul>\n<li>The <a href=\"https://make.wordpress.org/community/2024/01/12/call-for-mentees-mentors-cohort-2/\">second cohort of the WordPress Contributor Mentorship Program</a> is open for applications. This program aims to connect experienced WordPress contributors with newcomers or those looking to enhance their skills within the community. Both mentees and mentors can apply by February 7, 2024.</li>\n\n\n\n<li>If you are a part of the LGBTQ+ community and participate in the Mentorship Program, you may be interested in this <a href=\"https://lgbtqpress.com/2024/01/announcing-the-first-lgbtqpress-empowerment-grant/\">LGBTQ+Press Empowerment Grant</a>.</li>\n\n\n\n<li>The <a href=\"https://make.wordpress.org/community/2024/01/09/2024-global-sponsors-announcement/\">Global Community Sponsors for 2024</a> have been announced.</li>\n\n\n\n<li>The Community team <a href=\"https://make.wordpress.org/community/2024/01/31/reflecting-on-nextgen-and-looking-ahead/\">reflected on the “NextGen Events” pilot project</a> and recommended adopting an expanded scope for WordPress events, encouraging a broad range of innovative event formats.</li>\n\n\n\n<li>In 2023, the WordPress Core team shipped 2211 commits, and 472 people made their first contribution to WordPress Core. <a href=\"https://make.wordpress.org/core/2024/01/11/a-year-in-core-2023/\">Explore more stats in this report</a>.</li>\n\n\n\n<li>The Performance team <a href=\"https://make.wordpress.org/performance/roadmap-2024/\">released a roadmap</a> with this year’s focus areas.</li>\n\n\n\n<li>Are you looking to broaden your knowledge and improve your WordPress skills? <a href=\"https://make.wordpress.org/updates/2024/01/08/whats-new-on-learn-wordpress-in-december-2023/\">Check out what’s new on Learn WordPress</a>.</li>\n\n\n\n<li>Catch up on all the news in the WordPress development space with the latest edition of <a href=\"https://developer.wordpress.org/news/2024/01/10/whats-new-for-developers-january-2024/\">What’s new for developers?</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<a class=\"wp-block-jetpack-podcast-player jetpack-podcast-player__direct-link\" href=\"https://wordpress.org/news/2023/10/episode-64-patterns-in-wordpress/\">https://wordpress.org/news/2023/10/episode-64-patterns-in-wordpress/</a>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Requests for feedback and testing</h2>\n\n\n\n<ul>\n<li>Community team members <a href=\"https://make.wordpress.org/community/2024/01/22/proposal-pilot-program-to-test-gatherpress-on-the-wordpress-org-network-as-a-meetup-alternative/\">proposed a pilot program to test GatherPress</a>, a community-developed plugin, as a WordPress.org event management tool.</li>\n\n\n\n<li>New <a href=\"https://make.wordpress.org/project/2024/01/24/proposal-updates-to-five-for-the-future-from-the-community-summit/\">Five for the Future program enhancements</a> were suggested based on insights gathered during the WordPress Community Summit. You can help improve the program by sharing your feedback before February 7.</li>\n\n\n\n<li>A new proposal recommends the <a href=\"https://make.wordpress.org/core/2024/01/29/proposal-whats-next-for-the-outreach-program/\">next steps for the Full Site Editing (FSE) Outreach Program</a>. Input is welcome by February 12.</li>\n\n\n\n<li>Members of the Community team are requesting feedback and ideas to <a href=\"https://make.wordpress.org/community/2024/01/16/share-your-feedback-about-the-new-wordpress-events-page/\">help shape the future of the new WordPress Events page</a>.</li>\n</ul>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress events</h2>\n\n\n\n<ul>\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1f9-1f1fc.png\" alt=\"🇹🇼\" class=\"wp-smiley\" /> WordCamp Asia 2024 is just around the corner! Organizers announced a <a href=\"https://asia.wordcamp.org/2024/schedule/\">tentative schedule</a> and a <a href=\"https://asia.wordcamp.org/2024/wordcamp-asia-diversity-scholarship/\">Diversity Scholarship</a> to fund the attendance of two active project contributors to their first flagship WordCamp.</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ea-1f1fa.png\" alt=\"🇪🇺\" class=\"wp-smiley\" /> Tickets for WordCamp Europe 2024 <a href=\"https://europe.wordcamp.org/2024/tickets/\">are on sale</a>. The organizing team is <a href=\"https://europe.wordcamp.org/2024/volunteers/call-for-volunteers/\">looking for volunteers</a> to help make the event in Torino, Italy, memorable.</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" /> <a href=\"https://us.wordcamp.org/2024/\">WordCamp US 2024</a> shared details of the event to be held September 17-20 in Portland, Oregon. This WordCamp will have a strong focus on community collaboration with two Contributor Days.</li>\n\n\n\n<li>Check out these other WordPress events happening soon:\n<ul>\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4f8.png\" alt=\"📸\" class=\"wp-smiley\" /> <a href=\"https://events.wordpress.org/kerala/2024/photo-festival/\">WordPress Photo Festival</a> (online) on February 3-10</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" /> <a href=\"https://phoenix.wordcamp.org/2024/\">WordCamp Phoenix</a>, USA, on February 9-10</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1f3.png\" alt=\"🇮🇳\" class=\"wp-smiley\" /> <a href=\"https://pune.wordcamp.org/2024/\">WordCamp Pune</a>, India, on February 17</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ef-1f1f5.png\" alt=\"🇯🇵\" class=\"wp-smiley\" /> <a href=\"https://kansai.wordcamp.org/2024/\">WordCamp Kansai</a>, Japan, on February 23-24</li>\n</ul>\n</li>\n</ul>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p><em><strong>Have a story we should include in the next issue of The Month in WordPress? Fill out </strong></em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><strong><em>this quick form</em></strong></a><em><strong> to let us know.</strong></em></p>\n\n\n\n<p><em>Thanks to </em><a href=\"https://profiles.wordpress.org/hellosatya/\"><em>Satyam Vishwakarma (Satya)</em></a><em>, </em><a href=\"https://profiles.wordpress.org/ninianepress/\"><em>Jenni McKinnon</em></a><em>, and </em><a href=\"https://profiles.wordpress.org/laurlittle/\"><em>Lauren Stein</em></a><em> for contributing to this edition of The Month in WordPress.</em></p>\n\n\n\n<div class=\"wp-block-group is-layout-constrained wp-block-group-is-layout-constrained\">\n<h3 class=\"wp-block-heading\">Subscribe to WordPress News</h3>\n\n\n\n<p>Join other subscribers and receive WordPress news directly in your inbox.</p>\n\n\n<div class=\"wp-block-jetpack-subscriptions__supports-newline is-style-split wp-block-jetpack-subscriptions\">\n <div>\n <div>\n <div>\n <p>\n <a href=\"https://wordpress.org/news/?post_type=post&p=16837\">Subscribe</a>\n </p>\n </div>\n </div>\n </div>\n </div></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 06 Feb 2024 17:45:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Reyes Martínez\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"Matt: National Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=111231\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://ma.tt/2024/02/national-security/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:704:\"<p>If I were President for a day, the first thing I would do is instruct our national security to patch and secure every American technology company, as they are our gems in the world. I would burn every zero-day I had on a US company and help them patch it. The rest of the world would know our immense defense budget was now being used to secure our companies as well, as China does. Apple, Meta, Google, Microsoft, Intel, Cisco, Arista, Unifi, Qualcomm… I’m probably missing a few, they should all have the shield of our national security defense. Right now each company has to create their own defenses, and they are getting eaten and pillaged by foreign companies with state backing.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Feb 2024 21:35:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Matt: Vesuvius Challenge\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=111222\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"https://ma.tt/2024/02/vesuvius-challenge/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:262:\"<p>I’m a proud supporter of the <a href=\"https://scrollprize.org/\">Vesuvius Challenge</a>, and <a href=\"https://www.bloomberg.com/features/2024-ai-unlock-ancient-world-secrets/\">they just announced the winners and have a great article in Bloomberg</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Feb 2024 15:37:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"WordPress.org blog: WP Briefing: Episode 72: Why Your Website Matters\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=16810\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2024/02/episode-72-why-your-website-matters/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10415:\"<p>In the latest WordPress Briefing, Josepha Haden Chomphosy explores the reasons for choosing a website supporting your digital presence, covering topics from trust-building to professionalism to owning a unique online domain.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Host: <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a><br />Editor: <a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br />Logo: <a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br />Production: <a href=\"https://profiles.wordpress.org/bjmcsherry/\">Brett McSherry</a><br />Song: Fearless First by Kevin MacLeod</p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/course/getting-started-with-wordpress-get-setup/\">Getting Started With WordPress: Get Set Up</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/course/creating-a-4-page-business-website/\">Creating a 4-page business website</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/download/\">Download WordPress 6.4.3</a></li>\n\n\n\n<li><strong>Small List of Big Things</strong>\n<ul>\n<li><a href=\"https://make.wordpress.org/test/2024/01/13/early-opportunities-to-test-wordpress-6-5/\" target=\"_blank\" rel=\"noreferrer noopener\">Early Opportunities to Test WordPress 6.5</a> </li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2024/01/12/call-for-mentees-mentors-cohort-2/\" target=\"_blank\" rel=\"noreferrer noopener\">Call for Mentees & Mentors: Contributor Mentorship Program Cohort #2</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2024/01/data-liberation-in-2024/\" target=\"_blank\" rel=\"noreferrer noopener\">Data Liberation in 2024</a> </li>\n\n\n\n<li><a href=\"https://asia.wordcamp.org/2024/tickets/\">WordCamp Asia 2024 Tickets</a></li>\n</ul>\n</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Transcripts</h2>\n\n\n\n<span id=\"more-16810\"></span>\n\n\n\n<p>[00:00:00] <strong>Josepha:</strong> Hello, everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I’m your host, Josepha Haden Chomphosy. Here we go. <br /><br />[00:00:29] (Intro music) </p>\n\n\n\n<p>[00:00:39] <strong>Josepha:</strong> My friends, it is February. For many of us, that means we’ve already fallen off track on our New Year’s resolutions, but not you, intrepid WordPresser, especially you, newly found WordPresser who is still on the fence about needing a website, and I get it. It seems like a lot of work, and even if you shoot for the moon, it’s not clear which star you’ll land on.</p>\n\n\n\n<p>[00:01:01] <strong>Josepha:</strong> It feels easier to open a Facebook page or launch a new Instagram account, get a channel going on YouTube, but here’s a secret they won’t tell you. It’s just as much work. And even if you crack the code on today’s algorithm, you don’t own anything you build there, not the content, not the audience. So if you’re gonna make the effort to build anyway, why not build it in your space? It can be scary to take that kind of time.</p>\n\n\n\n<p>So, if you’re not convinced yet, let me give you a few other reasons why you should choose a website over some social media thing. I’ve got a list here, and they build on one another, really. But the first thing is a website covers the five W’s: who, what, when, where, and why. It’s basic information, I know, but it’s what people need to know when they’re looking at your product or company.</p>\n\n\n\n<p>The phone book, whether you had the yellow pages or the white pages, those are long gone, but that doesn’t mean that the need for that information is gone. When people are researching the right service or product to solve their problems, they’re getting online to do it. So you should be there, and your information should be easy to find. </p>\n\n\n\n<p>[00:02:12] <strong>Josepha:</strong> Which brings us right into item number two.</p>\n\n\n\n<p>When people know these things about you when, they know who you are, what you’re doing, when to get to you, where you are, why you’re doing it. Having that information increases trust and makes you look more professional, and I’ve seen that be counterintuitive for folks. I mean, it’s a digital asset, after all. But overwhelmingly, we see consumers who are well-researched by the time they get to us. They’ve looked at all of your competitors already and checked to see if you are a human, if you share some of their values, and how you manage waste or, complaints, or praise.</p>\n\n\n\n<p>You can never know who is looking for you. So, making it all as clear and easy to see as possible makes you more trustworthy. And the more trustworthy and professional you look, then number three, the more chances you have to bring in good leads and contacts, which can turn into sales or, at the very least, a sales opportunity. And it’s important to have good leads and contacts. Right?</p>\n\n\n\n<p>[00:03:17] <strong>Josepha:</strong> If you have your information out there on a website, then people can sort of prequalify themselves. If they already have a sense for whether they are a good fit for your product or service, then fingers crossed. You can spend most of your time with people who are making serious inquiries.</p>\n\n\n\n<p>And coming in at four, you can do this any way you want with words or art, NFTs of your latest work, or video tutorials. It lets you tell your story in ways that other mediums necessarily have to limit.</p>\n\n\n\n<p>And, importantly, you can still do those things elsewhere. Right? But having essentially a digital home online that is yours, keep your stuff online in a place you own and operate, then draw people to you through those other channels. Make it all work together.</p>\n\n\n\n<p>[00:04:07] <strong>Josepha:</strong> I have a fifth thing, mostly because I like lists of either three or five, and the list I had was four, but also because it’s true. Number five is still true. </p>\n\n\n\n<p>Getting domains is fun. You’ve got something to share with the world, and your domain name is title and, story, and first impression. And isn’t it great instead of having to say you can find me at LinkedIn, slash in slash, etc.?</p>\n\n\n\n<p>You can say something quick and memorable. Josepha.blog or whatever it is you registered. Getting domains is fun. It’s the fifth thing, and I tried to act like it was no big deal.</p>\n\n\n\n<p>But, also, it’s like one of the first things you have to do, and it’s kind of a big deal. You can have your own domain, and it can say a lot for you. So there you have it, some basic and not-so-basic reasons why you should have a website. If you are convinced or at least intrigued, I’ve got a few tutorials that can help you get started that I’ll link in the show notes. <br /><br />[00:05:03] (Music interlude)</p>\n\n\n\n<p>[00:05:11] <strong>Josepha:</strong> Which brings us now to our small list of big things.</p>\n\n\n\n<p>I have four big things for you today: four-ish. So, first things first, I have some early opportunities for y’all to test our next major release. Our next major release is WordPress 6.5. The target release date is March 26th. But coming up here on February 13th, we have Beta 1 scheduled. That’s an early opportunity for you to provide feedback. A lot of the features that we have coming in this release are big, and they’re moving quite quickly. And so, if you are already a routine WordPress user, pop on over into the core channel or onto make.WordPress.org/core and get your hands on that beta release. We could use a lot of feedback from you on that.</p>\n\n\n\n<p>The second thing that I have is that the second cohort of the Contributor Mentorship Program has opened up, and we’re calling for participants whether you want to be mentored or mentor somebody. We are accepting applications for both. This is a fantastic opportunity for experienced contributors to help other people learn how to do this. And also, if you are learning to contribute to open source and to WordPress for the first time, I know it can be scary. It took me many, many tries to really get started. And so this is a great opportunity for anyone who is trying to contribute in a new way, in a different way.</p>\n\n\n\n<p>[00:06:35] <strong>Josepha:</strong> The third thing that I have is there’s a post up about Data Liberation in 2024. This is one of our big focuses for the year.</p>\n\n\n\n<p>A web where being locked into a system should be a thing of the past, and migrating your site to WordPress or around the WordPress ecosystem should be doable with essentially 1-click, and, so, there’s a lot of work that we’re doing there. You can find it on WordPress.org/data-liberation. There will be a link to that in our show notes, but also, there is a lot of work that has to be done, not only to get those resources together but also some companion tools to the resources. So head on over there, take a look at what’s out there. And if you have some stuff to contribute, share that too. </p>\n\n\n\n<p>[00:07:21] <strong>Josepha:</strong> And my fourth thing, my final thing, is that WordCamp Asia is about a month away. So you still have time to plan your attendance. If that’s something that you want to do, head on over to asia.wordcamp.org to learn more.</p>\n\n\n\n<p>And that, my friends, is your small list of big things. Don’t forget to follow us on your favorite podcast app or subscribe directly on WordPress.org/news. You’ll get a friendly reminder whenever there’s a new episode. If you liked what you heard today, share it with a fellow WordPresser or specifically for this one; if you liked what you heard, share it with a fellow collaborator whether they know WordPress or not. But if you had questions about what you heard, you can share those with me at [email protected]. I’m your host, Josepha Haden Chomphosy. Thanks for tuning in today for the WordPress Briefing, and I’ll see you again in a couple of weeks. <br /><br />[00:08:10] (Music outro)</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Feb 2024 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"Matt: Child of the 90s\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=111217\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://ma.tt/2024/02/child-of-the-90s/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:150:\"<p>This is a brilliant ad, true genius. (Hat tip, <a href=\"https://kengagne.com/\">Ken Gagne</a>.)</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Feb 2024 02:24:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"Matt: iFixit Teardown of Vision Pro\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=111209\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://ma.tt/2024/02/ifixit-teardown-of-vision-pro/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:493:\"<p>When I read things like <a href=\"https://www.ifixit.com/News/90137/vision-pro-teardown-why-those-fake-eyes-look-so-weird\">the iFixit Teardown of Vision Pro</a>, I am moved almost to tears at the sheer beauty of craftsmanship in this thing. It is literally <em>incredible</em>. I have so much respect for the big tech companies like Apple that invest in long-term science, research, and development to create innovations like this. It is literally the engine driving our economy forward.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 04 Feb 2024 18:04:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Matt: Old Emails\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=111191\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://ma.tt/2024/02/old-emails/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:421:\"<p>I just replied to an email from 2018. I am tragically, comically, behind on email. Because <a href=\"https://automattic.com/\">Automattic</a> doesn’t use email, we use <a href=\"https://wordpress.com/p2/\">P2</a>, it’s never been a priority for me. But I have been sloppy, careless, and derelict in my duty of answering emails. Apologies to you all. You’re going to get some weird, very late replies.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 04 Feb 2024 01:44:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:115:\"Gutenberg Times: Outreach program, WordPress 6.5 testing, Gutenberg 17.6, Starter Patterns — Weekend Edition #283\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=27201\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:118:\"https://gutenbergtimes.com/outreach-program-wordpress-6-5-testing-gutenberg-17-6-starter-patterns-weekend-edition-283/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:16829:\"<p>Howdy, </p>\n\n\n\n<p>We are almost there, Gutenberg 17.6 is the second to last plugin release that will make it into the WordPress 6.5. If you haven’t explored the new features, I recommend reviewing the post <a href=\"https://make.wordpress.org/test/2024/01/13/early-opportunities-to-test-wordpress-6-5/\"><strong>Early Opportunities to Test WordPress 6.5</strong></a><strong> </strong>and get acquainted and at the same time contribute to testing the new version, and help find the bugs. You can use the <a href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\"><strong>Gutenberg Nightly via WordPress Playground </strong></a>to get your testing site up and running in seconds. </p>\n\n\n\n<p>The first Beta is scheduled for February 13th, 2024 and then, you can use the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\"><strong>Beta tester plugin</strong></a> to explore the new WordPress version. </p>\n\n\n\n<p>Test the Font Library, Template, and Style revisions or the Pattern overrides. All cool features to improve WordPress for designers, side builders and owners. What are you looking forward to? </p>\n\n\n\n<p>Well, have fun testing and let me know how I can help. </p>\n\n\n\n<p>Yours, 💕<br /><em>Birgit</em></p>\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<ol><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/outreach-program-wordpress-6-5-testing-gutenberg-17-6-starter-patterns-weekend-edition-283/#0-word-press-release-information\">Developing Gutenberg and WordPress</a><ol><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/outreach-program-wordpress-6-5-testing-gutenberg-17-6-starter-patterns-weekend-edition-283/#upcoming-events\">Upcoming Events</a></li></ol></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/outreach-program-wordpress-6-5-testing-gutenberg-17-6-starter-patterns-weekend-edition-283/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/outreach-program-wordpress-6-5-testing-gutenberg-17-6-starter-patterns-weekend-edition-283/#2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/outreach-program-wordpress-6-5-testing-gutenberg-17-6-starter-patterns-weekend-edition-283/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </a></li></ol>\n</div></div>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p>Release lead, <strong><a href=\"https://github.com/c4rl0sbr4v0\">Carlos Bravo</a></strong>, p<strong>ublished </strong><a href=\"https://make.wordpress.org/core/2024/01/31/whats-new-in-gutenberg-17-6-31-january/\">What’s new in Gutenberg 17.6? (31 January)</a> post. He wrote: “This release, which includes 264 pull requests (that’s a lot of work!), can be labeled mainly as a ‘code quality’ one, as it includes two important refactors in both Fonts and Interactivity APIs. It also includes some improvements in the new “Data Views” experiment, block hooks improvements, and finally, a feature that all developers have been waiting for: the ability to extend allowed blocks within a parent block.” </p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/#new-block-json-allowed-blocks\">New Block JSON allowed Blocks </a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/#site-editor-post-editor-unification\">Site Editor – Post Editor unification.</a></li>\n</ul>\n\n\n\n<p>Developers also might be interested in the new Interactivity API directives, and that Footnotes are now also available for custom post types (CPTs). </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his latest <strong><a href=\"https://make.wordpress.org/design/2024/01/29/design-share-jan-15-jan-26/\">Design Share: Jan 15-Jan 26</a>,</strong> <strong>Joen Asmussen</strong> lists the great work of the WordPress Design team: </p>\n\n\n\n<ul>\n<li>Improved Lightbox UI – the lightbox toggle is now part of the link settings for the images, as it’s somewhat a link to the resized view and links and lightbox a mutually exclusive. </li>\n\n\n\n<li>Cover Aspect Ratio – applied to the Cover block in various forms. </li>\n\n\n\n<li>Drag & Drop Displacement for moving blocks in the List view</li>\n\n\n\n<li>Scrolling Top Toolbar is an interesting solution to the problem that we run out of real estate for everything to be placed in the Toolbar when tagged to the top. </li>\n</ul>\n\n\n\n<p>All features are already available in <a href=\"https://wordpress.org/plugins/gutenberg/\" target=\"_blank\" rel=\"noreferrer noopener\">Gutenberg 17.6</a>, and ready for testing. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>WordPress’ extenders and site builders are invited to provide their feedback on the future direction of the <strong>Outreach Program</strong> (aka FSE-outreach-experiments). Share your insight to help shape the program’s trajectory. The full proposal can be read at <a href=\"https://make.wordpress.org/core/2024/01/29/proposal-whats-next-for-the-outreach-program/\"><strong>What’s next for the Outreach program</strong></a>.</p>\n\n\n\n<p class=\"has-accent-color has-light-background-background-color has-text-color has-background has-link-color wp-elements-be0f489534e352b6db8b419a84c4135e\">🎙️ Latest episode: <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-95-gutenberg-17-5-early-testing-of-wordpress-6-5-and-block-themes/\">Gutenberg Changelog #95 – Gutenberg 17.5, Early Testing of WordPress 6.5 and Block Themes</a> with special guest: Carolina Nymark</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"upcoming-events\">Upcoming Events</h3>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2024/01/17/media-phase-3-meeting-feb-7/\"><strong>Phase 3 Media Meeting: February 7, 2024,</strong></a> at 12:00 UTC, Anthony Burchell wrote: “kick off a round table discussion about some opportunities and challenges ahead in the development of Phase 3. The Media Component Maintainers hope to find areas of focus where contributors can lean in to align efforts with folks working on Phase 3.”</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p><strong>February 8th, 202</strong>4 <strong>15:00 UTC</strong>:<strong> </strong><a href=\"https://make.wordpress.org/themes/2024/01/30/hallway-hangout-intrinsic-design/\">Hallway Hangout: Intrinsic Design</a> A discussion on <strong>Intrinsic Design and how to use it on real life projects</strong></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>February 13, 2024, at 16:00 UTC</strong> <strong><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/298634428/\">Developer Hours: JavaScript for modern WordPress development</a></strong></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>February 26, 2024: </strong><a href=\"https://www.stateofdigitalpublishing.com/wp-week/\"><strong>WP Publisher Success Week</strong></a><strong>,</strong> an online event. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>February 27, 2024, at 16:00 UTC </strong><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/298634463/\"><strong>Developer Hours: How to build modern web layouts with WordPress blocks</strong></a></p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p>Earlier this month, <strong>Kevin Batdorf</strong> updated his <strong><a href=\"https://wordpress.org/plugins/code-block-pro/\">Code Block Pro</a></strong> plugin, which provides Syntax highlighting for your code block For version 1.26, he added support for two more fonts: Roboto Mono by Google and Hack font by Source foundry to the beautiful Themes available with the plugin. This latest version also adds a button for readers to copy the code with one click and some controls for the button styling. </p>\n\n\n\n<p>You can obtain the latest version from one of the following places. </p>\n\n\n\n<ul>\n<li>from the <a href=\"https://wordpress.org/plugins/code-block-pro/\">WordPress repository</a>, </li>\n\n\n\n<li>from the website <a href=\"https://code-block-pro.com/\">Code-Block-Pro.com</a> with theme demos and </li>\n\n\n\n<li>via <a href=\"https://github.com/KevinBatdorf/code-block-pro/\">GitHub</a></li>\n</ul>\n\n\n\n<a href=\"https://code-block-pro.com/themes\"><img width=\"652\" height=\"372\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/01/Screenshot-2024-01-31-at-11.05.59.png?resize=652%2C372&ssl=1\" alt=\"Screenshot of code block pro theme screen\" class=\"wp-image-27230\" /></a>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/andre_g\">Andrea Gandino</a></strong> announced via X (former twitter) that his plugin <a href=\"https://wordpress.org/plugins/advanced-columns-block/\"><strong>Advanced columns block</strong></a> is now available from the WordPress repository. Its free version provides users with a drag and drop interface, grid and media query support and a lot more. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Tammie Lister</strong> published a few more Editor Tips on her new site: </p>\n\n\n\n<ul>\n<li><a href=\"https://editortips.com/copy-a-color/\">Copy a color</a> Copy any color in a palette by clicking ‘copy’ when the palette is open within the site editor.</li>\n\n\n\n<li><a href=\"https://editortips.com/unlink-to-set-one-side/\">Unlink to set one side</a> – Want to just set one side of a border, not all at the same time? </li>\n\n\n\n<li><a href=\"https://editortips.com/add-options-to-tools/\">Add options to tools</a><br />Turn on extra options, for example under typography, by checking the option.</li>\n\n\n\n<li><a href=\"https://editortips.com/show-options/\">Show options</a><br />Want to see more at any point in the interface? </li>\n\n\n\n<li><a href=\"https://editortips.com/view-device-sizes-in-site-editor/\">View device sizes in site editor</a><br />You can quickly check your design on three device sizes in the site editor using the ‘View‘ tool. </li>\n\n\n\n<li><a href=\"https://editortips.com/quick-revisions-for-styles/\">Quick revisions for Styles</a><br />Clicking the ‘revisions’ icon jumps you straight to revisions. You can do this even in the ‘Style’ browser.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n\n<p><strong> <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">“Keeping up with Gutenberg – Index 2022”</a> </strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test, and Meta team from Jan. 2021 on. Updated by yours truly. <em><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\">The index 2024 is here</a></em></p>\n\n\n\n\n<p>In case you missed it above, the next WordPress <strong><a href=\"https://make.wordpress.org/themes/2024/01/30/hallway-hangout-intrinsic-design/\">Hallway Hangout will be on Intrinsic Design</a></strong> on February 8th, 2024 at 15:00 UTC – a discussion with agency developer and themes builders on solution to common problems.</p>\n\n\n\n<p>For an introduction to the topic, read Justin Tadlock’s post on the Developer Blog: <a href=\"https://developer.wordpress.org/news/2023/02/23/intrinsic-design-theming-and-rethinking-how-to-design-with-wordpress/\">Intrinsic design, theming, and rethinking how to design with WordPress</a>. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Want to add starter page and template patterns to your theme, just like Twenty Twenty-Four does it? <strong>Justin Tadlock</strong> shared what he learned in his latest post on the WordPress Developer Blog: <a href=\"https://developer.wordpress.org/news/2024/01/31/adding-starter-patterns-to-your-wordpress-themes/\"><strong>Adding starter patterns to your WordPress themes</strong></a>. “Similar to page patterns, template patterns give users a starting point when you’re building a new template. The difference is that template patterns work from the Site Editor.” he wrote. </p>\n\n\n\n<img width=\"652\" height=\"337\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/02/starter-template-patterns-tt4-1536x795-1.webp?resize=652%2C337&ssl=1\" alt=\"\" class=\"wp-image-27267\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </h2>\n\n\n\n<p>In his latest post on the WordPress Developer Blog, <strong><a href=\"https://developer.wordpress.org/news/2024/01/29/how-to-disable-specific-blocks-in-wordpress/\">How to disable specific blocks in WordPress</a></strong>, <strong>Nick Diego</strong> guides readers through the steps necessary to disable certain blocks within the WordPress editor. This can be essential for site admins who wish to simplify the editing experience or enforce a consistent content creation strategy by limiting the available blocks to users. Diego explains the methods to achieve this: </p>\n\n\n\n<ul>\n<li> using functions in the theme’s <code>functions.php</code> file, </li>\n\n\n\n<li>employing a plugin that provides a user interface for block management, or </li>\n\n\n\n<li>using the new block JSON configuration. </li>\n</ul>\n\n\n\n<p>Each technique will vary in complexity and control, offering solutions for both novice and advanced users.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg’s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. </p>\n\n\n\n<p>Now available via <a href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\">WordPress Playground</a> (no need for a test site) <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n<p class=\"has-text-align-right has-small-font-size\"><em>Questions? Suggestions? Ideas? Don’t hesitate to send <a href=\"mailto:[email protected]\">them via email</a> or send me a message on WordPress Slack or Twitter @bph</em>. </p>\n\n\n\n<p class=\"has-text-align-right has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, send them to <a href=\"mailto:[email protected]\">[email protected]</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p>Featured Image: Colmar by Birgit Pauli-Haack</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don’t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button type=\"submit\" class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too, and won’t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 03 Feb 2024 13:45:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"Matt: Vision Pro First Impressions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=111171\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://ma.tt/2024/02/vision-pro-first-impressions/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1566:\"<p>Okay… wow. The hardware and display are like nothing I’ve ever seen, really feels like it’s from the future. That said, I found the setup clunky and buggy. Some might have been user error, for example I kept trying to “select” things with my middle finger and thumb and not my left finger.</p>\n\n\n\n<p>I almost got stuck in the Persona setup, couldn’t continue. I don’t love how my Persona looks. Looking and selecting stopped working and I could only continue by physically reaching out and hitting the buttons. (This must sound ridiculous to someone who hasn’t used a Vision Pro yet. I looked pretty silly!) </p>\n\n\n\n<p>I got totally stuck at the part of the setup where it was importing iCloud apps from backup, and I was ready to give up. A friend put it on and was able to get past that step for me. Adding credit cards was a terrible UI, with the security code PIN pad in front of the interface.</p>\n\n\n\n<img width=\"604\" height=\"340\" src=\"https://i0.wp.com/ma.tt/files/2024/02/IMG_0001-1024x576.png?resize=604%2C340&ssl=1\" alt=\"\" class=\"wp-image-111177\" />\n\n\n\n<p>I decided to call it a night, and try more tomorrow. Just like I learned to type I think I’m going to need to learn to become fluent in this new interaction paradigm. I did have a before and after feeling, like the world had shifted, not unlike when you saw the first iPod or iPhone. This post probably doesn’t make any sense to someone who hasn’t tried the Vision Pro, but hopefully the team sees it and can take this feedback.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 03 Feb 2024 06:29:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Matt: Samattical\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=111128\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://ma.tt/2024/02/samattical/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1565:\"<p>Today is the day! The first day of my sabbatical. What an experience it has been. On Thursday I delivered my very first Ignite talk on the subject! Here it is.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>The Ignite format is a tricky one as a speaker! I will do better next time. My friend Connie has delivered seven Ignite talks now and I thought hers and Adam Savage’s were the highlights of the ones I saw. (I didn’t see everything because I was popping in and out.)</p>\n\n\n\n<p>Preparing for this sabbatical has been the most fun I’ve had working at Automattic, ever. It brought so much clarity to things, we’ve been able to resolve in hours things that have lingered for months, including two acquisitions, several hires, big strategies, and more.</p>\n\n\n\n<p>After this talk I caught a redeye to NYC to meet with the WordPress.com leadership team and hand off my leadership there to Daniel Bachhuber. </p>\n\n\n\n<p>It is a beautiful symmetry that the first-ever sabbatical taken at Automattic was by its CEO at the time, Toni Schneider, which gave me the opportunity to step in and try on being a CEO, and it’s an incredible gift that Toni is returning to be CEO of Automattic while I’m out for the months of February, March, and April.</p>\n\n\n\n<p>What am I going to do with all this free time? Blog a ton. So follow along if you want to see this journey. I’m going to try to open source all the things. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f607.png\" alt=\"😇\" class=\"wp-smiley\" /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 02 Feb 2024 17:15:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:11:\"\n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"HeroPress: Privilege Is Where You Leverage It\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://heropress.com/?p=6491\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:135:\"https://heropress.com/privilege-is-where-you-leverage-it/#utm_source=rss&utm_medium=rss&utm_campaign=privilege-is-where-you-leverage-it\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:12043:\"<img width=\"1024\" height=\"576\" src=\"https://heropress.com/wp-content/uploads/2025/02/37265bac28e6e72b8.75703762-2048x1152-1-1024x576.jpeg\" class=\"attachment-large size-large wp-post-image\" alt=\"\" /><div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-6491_5da784-55\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n<div class=\"kb-row-layout-wrap kb-row-layout-id6491_f9ad37-83 alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top kb-theme-content-width\">\n\n<div class=\"wp-block-kadence-column kadence-column6491_3cd3ac-21 inner-column-1\"><div class=\"kt-inside-inner-col\">\n<h2 class=\"kt-adv-heading6491_05fe9f-7a wp-block-kadence-advancedheading\"><a href=\"https://heropress.com/\">HeroPress.com</a> – <a href=\"https://heropress.com/essays/privileged/\">Privileged</a></h2>\n\n\n\n\n\n<div class=\"wp-block-image is-style-default\">\n<a href=\"https://heropress.com/essays/privileged/\"><img width=\"300\" height=\"300\" src=\"https://heropress.com/wp-content/uploads/2022/04/laurence-300x300.jpg\" alt=\"Laurence Bahiirwa\" class=\"wp-image-4427\" /></a></div>\n\n\n\n<p>Laurence Bahiirwa from Kampala, Uganda <a href=\"https://heropress.com/essays/privileged/\">wrote</a> about what privilege means, and how he leveraged the privilege he was given in Uganda.</p>\n\n\n\n<p><em>Privilege! Such an elite word with a capital P Dangit! For some it comes in different shades, others societal class, others in the life growth patterns. Why do I highlight this? It is because one never sees it unless they take time to meditate and be thankful for what they have.</em></p>\n\n\n\n<p>Laurance’s essay is <a href=\"https://heropress.com/essays/privileged/\">available</a> on <a href=\"https://heropress.com\">HeroPress.com</a>.</p>\n</div></div>\n\n</div></div>\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-6491_5aed78-5e\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n<div class=\"kb-row-layout-wrap kb-row-layout-id6491_581f6b-89 alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top kb-theme-content-width\">\n\n<div class=\"wp-block-kadence-column kadence-column6491_b1f97d-4b inner-column-1\"><div class=\"kt-inside-inner-col\">\n<h2 class=\"kt-adv-heading6491_ee2ccc-9c wp-block-kadence-advancedheading\"><a href=\"https://hallwaychats.com\">WPPhotos.Info</a></h2>\n\n\n\n\n\n<div class=\"wp-block-image\">\n<a href=\"https://wpphotos.info/sunset-in-rethymno-on-the-island-of-crete/\"><img width=\"300\" height=\"225\" src=\"https://heropress.com/wp-content/uploads/2025/02/36165b63eadbc2ef7.42140208-scaled-1-300x225.jpeg\" alt=\"Sandy beach of Rethymno, Crete with people walking close to the water during sunset. In the background you can see the outlines of the old town and the Fortezza in front of some mountains.\" class=\"wp-image-6500\" /></a></div>\n\n\n\n<p>This week’s <a href=\"https://wpphotos.info\">WPPhotos Info</a> is called “<a href=\"https://wpphotos.info/sunset-in-rethymno-on-the-island-of-crete/\">Sunset in Rethymno on the island of Crete</a>“. </p>\n\n\n\n<p>This photo was taken by <a href=\"https://wordpress.org/photos/author/ocean90/\">Dominik Schilling</a> last year in September in Rethymno on the island of Crete.</p>\n\n\n\n<p>He was there on summer vacation. Since he is in love with sunsets he takes a lot of sunset photos <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f600.png\" alt=\"😀\" class=\"wp-smiley\" /><br />The beach itself is awarded with a <a href=\"https://www.rethymno.gr/en/city/blue-flags/blue-flags.html\" target=\"_blank\" rel=\"noreferrer noopener\">blue flag </a>and also a place for <a href=\"https://www.rethymno.guide/news-en/713-sea-turtle-nesting-takes-place-on-rethymno%E2%80%99s-beaches\" target=\"_blank\" rel=\"noreferrer noopener\">sea turtle nesting</a>.</p>\n\n\n\n<p><a href=\"https://wpphotos.info/sunset-in-rethymno-on-the-island-of-crete/\">Read more of the story at WPPhotos.info!</a></p>\n</div></div>\n\n</div></div>\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-6491_623549-16\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n<div class=\"kb-row-layout-wrap kb-row-layout-id6491_03a05c-8d alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top kb-theme-content-width\">\n\n<div class=\"wp-block-kadence-column kadence-column6491_fd6071-00 inner-column-1\"><div class=\"kt-inside-inner-col\">\n<h2 class=\"kt-adv-heading6491_0f1459-99 wp-block-kadence-advancedheading\"><a href=\"https://wppodcasts.com\">WP Podcasts</a></h2>\n\n\n\n\n\n\n<a href=\"https://wppodcasts.com\"><img src=\"https://heropressnetwork.com/wp-content/uploads/2024/01/pocket_casts_single_315.png\" alt=\"Pocket Casts image\" class=\"wp-image-4316\" /></a>\n\n\n\n\n<p>There were <em>twenty-five</em> WordPress podcast episodes released this week!</p>\n\n\n\n<ul>\n<li><a href=\"https://potencia.pro/277-como-usar-chatgpt-para-desarrollar-con-wordpress/#new_tab\">Potencia Pro 277: Como usar ChatGPT para desarrollar con WordPress</a> from <a href=\"https://wppodcasts.com/podcast/potencia-pro-wordpress-y-cozas/\">Potencia Pro, WordPress y cozas</a></li>\n\n\n\n<li><a href=\"https://dothewoo.io/woo-feature-request-board-and-woo-plugins-for-sale/#new_tab\">Woo Feature Request Board and WooCommerce Plugins for Sale</a> from <a href=\"https://wppodcasts.com/podcast/do-the-woo-a-woocommerce-podcast/\">Do the Woo – A WooCommerce Podcast</a></li>\n\n\n\n<li><a href=\"https://accessibilitycraft.com/051#new_tab\">Pie Calendar Plugin Accessibility Audit with Alex Stine & Amber Hinds</a> from <a href=\"https://wppodcasts.com/podcast/accessibility-craft/\">Accessibility Craft</a></li>\n\n\n\n<li><a href=\"https://wpbuilds.com/2024/01/30/this-week-in-wordpress-284/#new_tab\">This Week in WordPress #284</a> from <a href=\"https://wppodcasts.com/podcast/wp-builds/\">WP Builds</a></li>\n\n\n\n<li><a href=\"https://poststatus.com/podcasts#new_tab\">Post Status Draft – WordPress: A Deep Dive into Passion and Strife: Special Co-Hosted Episode w/ The WP Minute</a> from <a href=\"https://wppodcasts.com/podcast/post-status-excerpt-podcast/\">Post Status Excerpt Podcast</a></li>\n</ul>\n\n\n\n<p>There are new episodes every single day, so be sure to stop by <a href=\"https://wppodcasts.com\">WPPodcasts.com</a> and search for things that interest you!</p>\n</div></div>\n\n</div></div>\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-6491_ee64b3-32\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n<div class=\"kb-row-layout-wrap kb-row-layout-id6491_c72f38-a9 alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top kb-theme-content-width\">\n\n<div class=\"wp-block-kadence-column kadence-column6491_569c2a-31 inner-column-1\"><div class=\"kt-inside-inner-col\">\n<h2 id=\"wpphotos\" class=\"kt-adv-heading6491_c6e2a3-61 wp-block-kadence-advancedheading\"><a href=\"https://wordpress.org/photos\">WP Photos</a></h2>\n\n\n\n<p>Here are some of the great photos submitted to the <a href=\"https://wordpress.org/photos\">WPPhotos</a> project this week!</p>\n\n\n\n\n<a href=\"https://wordpress.org/photos/photo/3565b94f9b/\"><img width=\"1024\" height=\"768\" src=\"https://heropress.com/wp-content/uploads/2025/02/3565b94f9b57af76.28489349-1024x768.jpeg\" alt=\"A black and white tabby cat sleeping peacefully on its side on a bed.\" class=\"wp-image-6501\" /></a><a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/3565b94f9b/\">photo</a> by <a href=\"https://wordpress.org/photos/author/juliarosia/\">Julia Golomb</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.\n\n\n\n<a href=\"https://wordpress.org/photos/photo/17965bb147/\"><img width=\"768\" height=\"1024\" src=\"https://heropress.com/wp-content/uploads/2025/02/17965bb1472659ef6.21970257-768x1024.jpg\" alt=\"Holding beautiful yellow flowers in hand\" class=\"wp-image-6502\" /></a><a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/17965bb147/\">photo</a> by <a href=\"https://wordpress.org/photos/author/ohidul/\">ohidul</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.\n\n\n\n<a href=\"https://wordpress.org/photos/photo/18665ba486/\"><img width=\"768\" height=\"1024\" src=\"https://heropress.com/wp-content/uploads/2025/02/18665ba486a8f1a03.21528125-768x1024.jpg\" alt=\"An old-style telephone switchboard which would have been used to connect to telephones on a circuit. A thick cord in the photo was used to connect the calls.\" class=\"wp-image-6503\" /></a><a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/18665ba486/\">photo</a> by <a href=\"https://wordpress.org/photos/author/desrosj/\">Jonathan Desrosiers</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.\n\n\n\n<a href=\"https://wordpress.org/photos/photo/34565ba9f3/\"><img width=\"1024\" height=\"576\" src=\"https://heropress.com/wp-content/uploads/2025/02/34565ba9f3fc3bd59.00239509-1024x576.jpg\" alt=\"Olympic Rings statue located in Centennial Olympic Park (Atlanta, Georgia)\" class=\"wp-image-6504\" /></a><a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/34565ba9f3/\">photo</a> by <a href=\"https://wordpress.org/photos/author/jeffpaul/\">Jeffrey Paul</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.\n\n\n\n<a href=\"https://wordpress.org/photos/photo/59365bb11d/\"><img width=\"1024\" height=\"768\" src=\"https://heropress.com/wp-content/uploads/2025/02/59365bb11d95ad345.64730024-1024x768.jpg\" alt=\"A wooden tray filled with a variety of delicious food items.\" class=\"wp-image-6505\" /></a><a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/59365bb11d/\">photo</a> by <a href=\"https://wordpress.org/photos/author/ohidul/\">ohidul</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.\n\n\n\n<a href=\"https://wordpress.org/photos/photo/79265bcb57/\"><img width=\"1024\" height=\"768\" src=\"https://heropress.com/wp-content/uploads/2025/02/79265bcb576e57623.44713719-1024x768.jpg\" alt=\"A row of colorful canoes on a lake surrounded by lush green grass and tall trees.\" class=\"wp-image-6506\" /></a><a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/79265bcb57/\">photo</a> by <a href=\"https://wordpress.org/photos/author/vishnujn/\">Vishnu Jayan</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.\n\n\n\n\n<p>Be sure to check out the <a href=\"https://wordpress.org/photos/\">hundreds of other great photos</a>!</p>\n</div></div>\n\n</div></div>\n\n\n<p></p>\n\n\n\n<p><a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/37265bac28/\">photo</a> by <a href=\"https://wordpress.org/photos/author/josevarghese/\">Jose Varghese</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.</p>\n\n\n\n\n\n\n<p>That’s it for this week! If you’d like to get this post in your email every week, <a href=\"https://heropressnetwork.com/newsletter\">make sure you sign up</a>!</p>\n\n<p>The post <a href=\"https://heropress.com/privilege-is-where-you-leverage-it/\">Privilege Is Where You Leverage It</a> appeared first on <a href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 02 Feb 2024 17:05:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"Do The Woo Community: New Woo Dev Docs, Woo Product Lead in the Wild, and Spelling Ecommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=79015\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://dothewoo.io/new-woo-dev-docs-woo-product-lead-in-the-wild-and-spelling-ecommerce/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:433:\"<p>In WooBits, Woo unveils new dev docs directory, James Kemp takes on as product lead and how do you spell ecommerce?</p>\n<p>>> The post <a href=\"https://dothewoo.io/new-woo-dev-docs-woo-product-lead-in-the-wild-and-spelling-ecommerce/\">New Woo Dev Docs, Woo Product Lead in the Wild, and Spelling Ecommerce</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a> .</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 02 Feb 2024 10:02:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"Do The Woo Community: Welcome our Newest Sponsor Cloudways to the Woo ProductChat Show\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=79019\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://dothewoo.io/welcome-our-newest-sponsor-cloudways-to-the-woo-productchat-show/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:424:\"<p>We welcome Cloudways, managed cloud hosting for WordPress and WooCommerce, as a sponsor of our Woo ProductChat show.</p>\n<p>>> The post <a href=\"https://dothewoo.io/welcome-our-newest-sponsor-cloudways-to-the-woo-productchat-show/\">Welcome our Newest Sponsor Cloudways to the Woo ProductChat Show</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a> .</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 Feb 2024 12:40:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"Do The Woo Community: Database Optimization, Monitoring Tools, and Client Communication with Nenad Conić\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=78982\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://dothewoo.io/database-optimization-monitoring-tools-and-client-communication/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:461:\"<p>Nenad Conić from Maksimer gives tips on scaling WooCommerce, tools for optimizing the database for scalability in high traffic events.</p>\n<p>>> The post <a href=\"https://dothewoo.io/database-optimization-monitoring-tools-and-client-communication/\">Database Optimization, Monitoring Tools, and Client Communication with Nenad Conić</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a> .</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 Feb 2024 10:13:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"Matt: SaaStr Interview\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=111112\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://ma.tt/2024/01/saastr-interview/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:325:\"<p>I was <a href=\"https://www.saastr.com/whats-new-at-automattic-and-wordpress-with-co-founder-and-ceo-matt-mullenweg/\">interviewed by Jason Lemkin of SaaStr</a>, who is one of the most insightful people in the SaaS space and runs great events. Check out our conversation.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 31 Jan 2024 23:26:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"WPTavern: #108 – Mike Auteri on Using GatherPress to Organise WordPress Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=153669\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"https://wptavern.com/podcast/108-mike-auteri-on-using-gatherpress-to-organise-wordpress-events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:50502:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast which is dedicated to all things WordPress, the people, the events, the plugins, the blocks, the themes, and in this case, using the GatherPress plugin for WordPress event organization.</p>\n\n\n\n<p>If you’d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to WPTavern.com forward slash feed forward slash podcast. And you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you’d like us to feature on the podcast, I’m keen to hear from you, and hopefully get you, or your idea featured on the show. Head to WPTavern.com forward slash contact forward slash jukebox and use the form there.</p>\n\n\n\n<p>So on the podcast today, we have Mike Auteri. Mike is an Associate Director of Engineering at Penske Media Corporation, as well as the founder and engineering lead of the GatherPress project. He’s contributed to WordPress Core and Gutenberg, is a WordPress community team supporter, has written plugins, presented at meetups and WordCamps, and is a co-organiser of the WordPress Monclair meetup in New Jersey.</p>\n\n\n\n<p>If you’ve attended a WordPress meetup event, it’s quite likely that you registered for that via the meetup.com platform. It’s become the defacto way for organisers of events to plan their meetups, send out invites, subscribe users, and promote future events.</p>\n\n\n\n<p>A few years ago, Mike decided that it was time for WordPress events to have a WordPress based solution for event management. And so he set to work creating GatherPress, which is the focus of the podcast today.</p>\n\n\n\n<p>Mike talks about the way events are currently managed, and why he thinks it’s time to transition to something more home grown. He thinks that GatherPress represents a significant leap forward in enhancing the event planning and participation experience.</p>\n\n\n\n<p>We talk about the development journey of GatherPress, discussing its current features, and the advantages he feels it offers to the WordPress community.</p>\n\n\n\n<p>We also examine GatherPress’ capacity to enable event coordination, and foster meaningful community engagement. He’s envisioning a future where event management built on top of WordPress is a hallmark of the WordPress event experience.</p>\n\n\n\n<p>We get into the roadmap features that are just around the corner, as well as chatting about the community which has grown up around the plugin, and how that community is looking for people to help out.</p>\n\n\n\n<p>If you’re a WordPress event organizer, or have attended a meetup in the past and are curious about how this could be handled by a freely available plugin, this episode is for you.</p>\n\n\n\n<p>If you’re interested in finding out more, you can find all the links in the show notes by heading to WP Tavern.com forward slash podcast, where you’ll find all the other episodes as well.</p>\n\n\n\n<p>And so, without further delay, I bring you Mike Auteri.</p>\n\n\n\n<p>I am joined on the podcast today by Mike Auteri. How are you doing, Mike?</p>\n\n\n\n<p>[00:03:35] <strong>Mike Auteri:</strong> Hey, how’s it going, Nathan? How are you today?</p>\n\n\n\n<p>[00:03:37] <strong>Nathan Wrigley:</strong> Very well, thank you. Thank you for joining us on the podcast today, really appreciate it. We are going to be talking a little bit today about a plugin, possibly a community, possibly the replacement of a service. Let’s find out.</p>\n\n\n\n<p>We are recording it at the end of January, 2024. In fact, on January the 23rd. This is a significant date, as you’ll hear a little bit later in the podcast. We’re going to be talking about meetups, and WordPress events, and the organisation thereof.</p>\n\n\n\n<p>Mike, before we begin, just to give some context to who you are. You don’t have to go into the weeds of the plugin that we’re going to be talking about, but if you just want to give us a little bit of backstory, tell us your relationship with WordPress.</p>\n\n\n\n<p>[00:04:17] <strong>Mike Auteri:</strong> Sure. Currently I work for a company called Penske Media. I’ve been there for almost nine years, I’m an associate director of engineering there. I got into WordPress years and years and years ago. Maybe not as long as some folks, but I would say around 2008, is when I started dabbling with WordPress, mostly building some people’s sites in WordPress.</p>\n\n\n\n<p>At that time, I was more of a front end developer. And I would say in like 2012, I think, I switched over to working in WordPress professionally, for media companies.</p>\n\n\n\n<p>[00:04:51] <strong>Nathan Wrigley:</strong> Thank you very much. Okay, so the topic under discussion today is something called GatherPress. Now it may be a good idea, right at the top of the show, to ask you to pause, and go to GatherPress.org. It’s exactly as you’d expect it to be spelled, but I’ll do it at anyway. G-A-T-H-E-R-P-R-E-S-S.org GatherPress.org.</p>\n\n\n\n<p>There you will find most of the things that we’re going to talk about today. It is, if you like, it’s a possible replacement for something called Meetup, which is a SaaS service. You can find that at meetup.com. And if you’ve ever attended a WordPress, let’s say not WordCamp necessarily, but a more local meetup event, something like that. It’s quite likely that you have collided with the Meetup platform, because it’s typically how things are organised.</p>\n\n\n\n<p>Now Meetup, coincidentally I think, came into the news over the last few weeks, because they have been acquired by a company. And at the point of acquisition of a company, I think users often question, what’s going on there? What will the future look like for that? But I’m guessing, I have a suspicion, more than a suspicion, that you’ve been thinking about stepping away from Meetup as a solution for organising events for a time, because GatherPress has a history much longer than just the last few weeks.</p>\n\n\n\n<p>So firstly, if, like me, you are not an organiser of events, but you’ve collided with Meetup just as somebody that signs up, so that you can actually register for events, tell us a little bit about it, and why you feel that maybe a plugin for the WordPress ecosystem is possibly a preferred solution to SaaS product.</p>\n\n\n\n<p>[00:06:30] <strong>Mike Auteri:</strong> So that’s a funny question. I’ve been a meetup organiser since 2017, and I really got my foot in the door, and there’s a whole other story of when I changed my career. If you look me up on YouTube, you could probably find a whole talk on that. But Meetup is the reason why I am where I am today, by the networking and finding very, very talented folks, that kind of became cheerleaders for me as I tried to make it in as a software engineer.</p>\n\n\n\n<p>But years ago when I was an organiser, one of the folks that attended said, why don’t we just build something on WordPress? And at that time I thought it was blasphemy, I’m like, that would never work. We need discoverability for a meetup, no one would ever find us, that just can’t work.</p>\n\n\n\n<p>Couple years later, a little thing called the dashboard widget appeared in WordPress, which started promoting meetups and WordCamps. And I’ll tell you like, once that hit WordPress, our numbers went through the roof. People were finding us left and right through the dashboard widget.</p>\n\n\n\n<p>So one of the reasons why I think, for the last couple years, we could have been able to move off of Meetup, or at least been less reliant on it, is because of that dashboard widget. Most of the folks that I speak to, that attend to our meetups, find us through the dashboard widget. Less of them find us through meetup.com.</p>\n\n\n\n<p>I know that’s anecdotal, and I’m sure there is data to back this up that I don’t have, but I’ve spoken to other organisers, and I hear similar stories, that I think we get higher quality folks. And what I mean by that is people that actually show up, that sign up and show up to a meetup from the dashboard widget, than we do from the discoverability of meetup.com.</p>\n\n\n\n<p>[00:08:07] <strong>Nathan Wrigley:</strong> That’s a really credible answer. I don’t know if you’ve got anything more you want to add, but certainly that does help.</p>\n\n\n\n<p>[00:08:12] <strong>Mike Auteri:</strong> Yeah. I’ll stay with that.</p>\n\n\n\n<p>[00:08:13] <strong>Nathan Wrigley:</strong> Yeah, so I guess we should paint some context around that. So Meetup is in no way connected with WordPress, other than the fact that it is used by the WordPress community. You don’t have to have a WordPress event in order to use Meetup. It could be for literally any kind of event. You can sign up as anybody out there, and set up any kind of event. So your local history council, or something like that could be using Meetup.</p>\n\n\n\n<p>And I suppose, back in the day, there was almost like this SEO piece, where you wanted discoverability, you wanted the fact that your local meetup was going to be taking place this Tuesday to be announced globally. And shouting into the void was very hard, and so having people come through a platform where they’ve already signed up, and they’ve already got themselves an account, and the platform knew more about where they lived and all that was quite useful.</p>\n\n\n\n<p>But it sounds like what you are saying is, that because it’s a generic platform, and you could be signed up for all sorts of reasons, people might have signed up to the actual event on Tuesday, or Thursday, or whatever, you know, next month, that actual real world event. But then didn’t kind of follow through, because they really weren’t in the WordPress ecosystem, they just collided with it by accident.</p>\n\n\n\n<p>And then this dashboard widget comes along. Every single instance of WordPress has it, whether it’s visible or not is up to you. But it says, you know, it tells you what’s going on and where. And maybe there’s more of a hot lead feel to those people, because they’re actually interacting with WordPress, not just the platform. Have I encapsulated that about right?</p>\n\n\n\n<p>[00:09:39] <strong>Mike Auteri:</strong> Yeah. I mean, I kind of get in the head of someone that would see the dashboard widget. You think about someone that just started their business, and put up their WordPress site and they’re like, now what? And they’re sitting in the admin, not sure what to do next. And the first thing they see is a meetup that is meeting next week, that’s like a mile away from their house.</p>\n\n\n\n<p>That is powerful. Thinking like, wow, I can get help, because I don’t know what I’m doing here. And we see a lot of folks like that. They come to, especially our help desks, a lot of DIY people. People that are starting businesses. They’re not sure how to get started, but they see that dashboard widget. And that was an incredible addition to WordPress, and to expanding our community.</p>\n\n\n\n<p>[00:10:22] <strong>Nathan Wrigley:</strong> So the Meetup platform has really great uses. You know, this is not an exercise in taking Meetup apart. It’s more an exercise in, well, given that there’s a bunch of software engineers behind the WordPress project, and there’s a plugin architecture, why not explore the options to create it inside of WordPress?</p>\n\n\n\n<p>And so that really is what GatherPress is aiming to do. It’s aiming to give you, dear listener, the opportunity to download a plugin, and organise your meeting within your WordPress admin. And now obviously you could set up a, you know, a unique domain, or you could set up something in a website that you already have.</p>\n\n\n\n<p>But, do you just want to run through, maybe the more philosophical position, the open source position? Why do you feel it’s a good idea to have this as a plugin? What is it that you feel it brings as a plugin, as opposed to the service which we’ve been using until now?</p>\n\n\n\n<p>[00:11:11] <strong>Mike Auteri:</strong> Sure. You know, we’re kind of alluding to it. You know, WordPress is an open source community, and has some incredibly talented folks. And this isn’t really breaking new ground in a lot of ways. There are event management plugins out there, there are plenty of them, and some of them have whole businesses around their event management plugin.</p>\n\n\n\n<p>What I am after though, is one that stays true to the WordPress community’s roadmap of what they would want to see for an event management plugin. Meetup is the odd one out, when you think of the infrastructure that is of the WordPress community. If you look at wordpress.org, wordcamp.org, wordpress.tv, even wordpress.com, they’re all powered by WordPress. They’re all services. They’re all supporting the community using the software that we work on.</p>\n\n\n\n<p>The odd one out is meetup.com, and there was a reason for it originally. And there is still a reason to have it there now, but I think we could start exploring the idea of, what if meetups were powered by WordPress? What are the advantages? And I feel like there are lots of advantages. Think about, you mentioned with meetup.com before is, it’s very general.</p>\n\n\n\n<p>If we’re being more specific with say, a community run multi-site, if you think of like how WordCamps function, a large WordPress multi-site, that.org stands up. If we did the same thing for Meetup, we could promote other meetups within meetups. We can promote WordCamps within meetups, say in sidebars. We can promote learning materials. We have full control over the content, and how it’s placed, and where it’s placed, in order to best educate and help the folks that are landing on this type of meetup page that’s powered by WordPress, and what they know is available.</p>\n\n\n\n<p>I think we’d be able to really draw people into the WordPress community a lot sooner, by using something that’s powered by WordPress, as opposed to something on meetup.com, where they think, maybe, the WordPress community goes as far as their local meetup. They won’t know that like, right off the bat, that WordPress is global, that WordCamps are huge.</p>\n\n\n\n<p>If you’ve ever been to like WordCamp US or WordCamp Europe, these are very, very large. Like especially when people only have a local view, and they’re like, oh yeah, WordCamp US, that’s three hours from my house, I think I’ll go. People are amazed at how large, and how extensive the community is. By being able to do something that’s powered by WordPress, we’d be able to do that a lot sooner for those folks.</p>\n\n\n\n<p>[00:13:43] <strong>Nathan Wrigley:</strong> Has your North Star, whilst you’ve been creating this, been more or less direct replacement for the feature set that Meetup offers? I guess what I’m introducing here is, tell us a little bit about the functionality that you have shipped thus far. We can get onto roadmap features and things like that in the future. I was curious if the intention of the GatherPress plugin and project, is to literally have a replacement for meetups.</p>\n\n\n\n<p>In other words, is the WordPress meetup format the North Star? You know, the intention is it’ll achieve all of those things. But it’s not intended to be a more general plugin for anybody else. You know, it’s specifically created to replicate live events for WordPress. What you’re thinking there, really.</p>\n\n\n\n<p>[00:14:26] <strong>Mike Auteri:</strong> Yeah. I absolutely used meetup.com as an example. They’ve been doing this for years, so I want to make sure that we had the features, especially the important features that matter to the WordPress community as far as I could tell. Because, like I said, I’ve been a WordPress meetup organiser since 2017. Making sure that all those features are there.</p>\n\n\n\n<p>So when I think of myself as a WordPress organiser, I’m like, okay, if I was to do something powered by WordPress, what would this thing need to do, in order for me to be like, yeah, I could use this instead of meetup.com? So I kind of use that as my starting place. And as I mentioned before, like, we started working on this in 2019. And it’s kind of evolved since then. It’s not really the same thing it was when it started. I would say it probably became stable about two years ago of like, okay, this is exactly what we’re building.</p>\n\n\n\n<p>But I’ve had other folks that have jumped onto the project, and giving their insights as well. Some as, you know, people that attended meetups, some people that were also organisers, and trying to build the feature set that we would expect.</p>\n\n\n\n<p>When we started this, blocks were pretty new. Like I said, 2019, so blocks were still pretty new at that point. And I wanted to build this to be very forward thinking, and be like, this is going to leverage all the great stuff that has been coming out of core around blocks, making it easy for folks to come in and use the GatherPress blocks in order to RSVP, see a list of people that have RSVP’d. Add to calendar block, a specific date block for scheduling. All these features.</p>\n\n\n\n<p>I also looked at the event manager plugin, as another idea of that’s a popular, not quite exactly what I was looking at, but still an event management plugin. And seeing the ways they translated these things into WordPress, and took what I thought would be a good user interface. And, you know, between the two of those, started building GatherPress.</p>\n\n\n\n<p>[00:16:24] <strong>Nathan Wrigley:</strong> So you mentioned there, blocks. So, is that the primary interface for interacting? You set up a post, or a page, or whatever it may be, and you’re dragging blocks in, which I guess are adjacent to certain features. So you may drag one in that is a GatherPress block, and it asks you for, you know, when do you want to put this event on? Where exactly is it located? And all that kind of stuff. And then it will present that data on the front end. Have I got that roughly correct?</p>\n\n\n\n<p>[00:16:49] <strong>Mike Auteri:</strong> Yeah, roughly, like we make it a little bit easier with block templates, for the event itself. So, I mean, granted you can, you know, move the blocks around all you want, but it’ll start you off with a block placement that makes sense. So someone that is a little less savvy, will know where to start.</p>\n\n\n\n<p>We also have, in addition to events, we also have the ability to add and create venues, and tie those venues to the events. All of those are post types, venues actually, a mixture of a post type and a taxonomy. I won’t get into the technical aspect of that, but it’s pretty neat.</p>\n\n\n\n<p>We also have various settings within the GatherPress plugin to customise how you want your event to look. And I have to hand it to Patricia, she played a huge role in this, because I came at this from a very American point of view. And she was mentioning to me, I want to change the date format. I’m like, okay.</p>\n\n\n\n<p>So we start building settings for changing date formats and, you know, exploring all the different ways we need to translate the plugin. And we actually translated into a few languages already, which is pretty cool. And a lot of it was helped from her and Javier.</p>\n\n\n\n<p>[00:17:56] <strong>Nathan Wrigley:</strong> So the intention really is for non-technical users to be able to download the plugin, follow some basic data entry, you know, dates, times, map locations, that kind of thing. Perhaps internationalise it in some way, and then click publish and you’re off to the races. You’ll have something on the front end that people can see.</p>\n\n\n\n<p>And I guess you’ve got two markets for this. You’ve got to be thinking about how the people wishing to attend the event are going to be interacting, and what you’ll do with that data. But you’ve also got to make sure it’s nice and straightforward for the people who are organising the event.</p>\n\n\n\n<p>Okay, so let’s talk about those two different roles a little bit. What features do you bring, let’s begin with the, I’m an event organiser. What features do you bring to enable me to do that? You know, you mentioned these blocks, and that you can say what the title of the event is, and bind it to a location, and all of that kind of stuff.</p>\n\n\n\n<p>But does it offer me functionality to, for example, see a list of who’s signed up for this particular event, see a list of who’s cancelled? I don’t know, in some way communicate with them, email the people who have responded, but haven’t got involved in that event yet. All those kind of things that we might see in a dedicated SaaS app.</p>\n\n\n\n<p>[00:19:03] <strong>Mike Auteri:</strong> Sure, yeah. So a few of those features are in their infancy. Like, one of our big things was, what do we need for a minimum viable product for this plugin? So we’ve been focusing on that. So some of this stuff isn’t quite there yet, but a lot of it is.</p>\n\n\n\n<p>We have, so for instance, an RSVP response block. So if you go to the event, and you are logged in, you can click on the RSVP button, and say you’re attending. Once you click on that attending, in real time, it shows you that you are now in the attendance list. Kind of like how Meetup functions, in a lot of ways. So if you go to meetup.com, a new event is there, you say, yeah, I’m going to go, and you click attend, now you’re on the list.</p>\n\n\n\n<p>So everybody can see that you are now attending. You would also change it to be not attending, and you will then be in a list of folks that are not attending, if you change your mind and such.</p>\n\n\n\n<p>Everybody’s able to see that. These are all different blocks that are within the event post type. They also tie in with some, getting a little bit more technical, tie into database tables and such, in order to store that data. So they’re not stored in the block, they’re stored in the database, and are represented in that block.</p>\n\n\n\n<p>We have not added a feature yet to it, but this is in our next release. We’re currently at 0.27. In 0.28, we are working on an admin interface, for an administrator to be able to remove or add people to a list, like automatically from that block. We have not finished that yet, but that is in progress.</p>\n\n\n\n<p>Also adding a feature, so if people can list themselves anonymously that they’re attending. So if they don’t want their name or profile photo to show up, they can be anonymous. They’ll be anonymous to everybody other than administrators, administrators will know who’s showing up.</p>\n\n\n\n<p>That’s not a feature of meetup.com, but that is a feature that folks that I’ve heard from in the WordPress community, actually I think Courtney was one of the ones that mentioned it. Some people want to just show up and not, you know, people to know who they are. And we do have that feature also in WordCamps, for folks that don’t want to be shown as listed, that they’re attending a WordCamp for privacy reasons.</p>\n\n\n\n<p>[00:21:06] <strong>Nathan Wrigley:</strong> When you attend a WordCamp, like WordCamp US, one of the options at the point of purchasing the ticket is to, I guess it’s the same thing. It’s not really anonymous in the same way, but you just don’t appear on the website. You just decline to be on the website.</p>\n\n\n\n<p>[00:21:18] <strong>Mike Auteri:</strong> Yeah. So in GatherPress, and it’s kind of the same way, instead of a display name, it’ll say anonymous. And instead of a photo, it’ll show like a, you know, the generic avatar listed. So it will show that someone is attending, but it won’t show who.</p>\n\n\n\n<p>[00:21:30] <strong>Nathan Wrigley:</strong> Okay. You’re able as the administrator of the event, the organiser of the event, to communicate with these people? Is there a fairly straight forward way?</p>\n\n\n\n<p>[00:21:37] <strong>Mike Auteri:</strong> Yeah. So we do have, and this is, again, still in its infancy, we have the ability to compose messages, and send to people in the community. You can have a couple of check boxes that say, contact all members, people that are attending, people that are on the wait list, we do have a wait list feature, and people that are not attending.</p>\n\n\n\n<p>So between these check boxes, you can click on a button that pulls up a modal in the admin, write your message, hit send, and that’ll send out an email to the designated folks.</p>\n\n\n\n<p>[00:22:07] <strong>Nathan Wrigley:</strong> If you don’t mind me sort of interrupting that point, how are you handling email? Do you have connections with certain SMTP services, or is that just something else you have to handle elsewhere, possibly with a plugin? And do you queue the emails so they go in batches, or, what’s the intention there?</p>\n\n\n\n<p>[00:22:21] <strong>Mike Auteri:</strong> So it’s using wp_mail, which is the, you know, underneath the layer of everything is kind of a generic email. By default you will use PHP mail. You can use the WP SMTP plugin, which we are using on gatherpress.org, to set it up with a certain service in order to have deliverability, what you want it.</p>\n\n\n\n<p>One of the things that I am always thinking about, with this plugin in particular, it’s like we don’t want to do too much. There’s plenty of plugins that do a thing better than we would do it. And we should use those plugins, verses trying to duplicate a feature.</p>\n\n\n\n<p>For instance, one of my other thoughts is like, say BuddyPress. BuddyPress has a lot of community features to it. It would be great to use GatherPress and BuddyPress, and making sure the two play nice together, and integrate well together. And not have things in GatherPress do things that BuddyPress could do better.</p>\n\n\n\n<p>In the same instance, we just want to send emails. And whatever service you want to use, a plugin to handle your service, that’s what you should do. And we’re not going to be too opinionated about that. We will just make sure that we send it through WP Mail.</p>\n\n\n\n<p>[00:23:29] <strong>Nathan Wrigley:</strong> Okay, yeah. But in terms of the administration of the event, do you have options to, I don’t know, recycle events? So you’ve run a very successful event, everything that you’d set up on a previous event checked out, you’re really happy with the way it was. Have you got options to, more or less, duplicate that event, and carry on from there?</p>\n\n\n\n<p>[00:23:44] <strong>Mike Auteri:</strong> Currently that’s on the roadmap. Being able to have a recurring event is, we do have a ticket in our backlog that did not make it into the MVP, because that, as you can imagine, is a bit more complicated. I do have a plan for it. So I do have an architecture and plan that I’m putting together. But it is not in the core plugin yet. Currently, like, for say, our current GatherPress events, I think it’s called Duplicate.</p>\n\n\n\n<p>[00:24:09] <strong>Nathan Wrigley:</strong> Yeah. Duplicate Post, yeah.</p>\n\n\n\n<p>[00:24:11] <strong>Mike Auteri:</strong> Duplicate Post, yeah. I just use that, because we have the same weekly huddle. Every week I just clone it, put in the new date, and publish. So it’s one more step than having something that would be recurring. But it’s not that bad, and that kind of works for now. And that’s kind of what we’re using until that feature is built. And that is definitely on our roadmap though.</p>\n\n\n\n<p>[00:24:32] <strong>Nathan Wrigley:</strong> Lovely. And of course, we know what happened during the last four years or so. Covid came, all the events went away, and we were forced into Zoom and online events. And some of those are still happening, some of the events haven’t come back in the real world. Is there any options in there to, you know, not use the map and to, I don’t know, bind it to a Zoom link and an online event, something along those lines?</p>\n\n\n\n<p>[00:24:51] <strong>Mike Auteri:</strong> Absolutely. So that was absolutely in our MVP, because we were building this during Covid, so that was front and center of our thinking. And a lot of time went into that.</p>\n\n\n\n<p>In our venue options, so if you’re creating an event, an online event is automatically there, since an online event is just an online event, and it doesn’t require a map, it doesn’t require any specifics, it’s just online.</p>\n\n\n\n<p>If you select that, it gives you an option to add, say, a Zoom link, or Google Meet, or Teams, or whatever you’re hosting your online meetup at. A recent feature we put into this is that the online link, or the Zoom link, or whatever it is, will not be available until five minutes before the event starts. So you don’t have people like jumping in there when they’re not supposed to be, and such.</p>\n\n\n\n<p>So that was a feature we added, that’s actually not on Meetup. Meetup, you see that online link. But we added a feature that will kind of hide the event link. And when I mean hide, I mean hide hide, like it’s not in APIs and any of that fun stuff. So it’s pretty well, behind closed doors at that point. But it becomes available once you’re logged in, and five minutes before the event. That’s kind of how we set it for now.</p>\n\n\n\n<p>[00:26:09] <strong>Nathan Wrigley:</strong> So as an admin, all of that makes perfect sense. It sounds really straightforward and simple. There are some videos, by the way, on the GatherPress website. So you can go and check out the UI, and everything we’ve just described is there, visible for you to see, there’s a nice run through.</p>\n\n\n\n<p>And so, from the end user’s point of view, the person who’s attending the event, I guess it’s just a case of discovering the website, going there, entering an email address, and confirming a link, or something like that. And of course, given that your block is showing data, I guess you can, as the admin, you can modify where that’s displayed. And you can pad it with other content with different blocks, you know, if you want to add something before it and after it, you can do all of that.</p>\n\n\n\n<p>But is that basically it? I show up to your website, I enter an email address, and from that point on, I’m expecting email to arrive, and then to attend the event itself. Can that happen online, if it is an online event? Do you have the option to do that? Or, have you got to go your own way there?</p>\n\n\n\n<p>[00:27:01] <strong>Mike Auteri:</strong> The way it would function, from an end user’s point of view, if you came onto the site and you’re not logged in, it will ask you to either log in or register for the site. So one of the things with a GatherPress site, if it’s something that you’re trying to attract the public to, you’ll have to, you know, check the box that says anybody can register for the site. And there is a notification when you install the plugin to say, hey, you might want to do this, you know, turn this on.</p>\n\n\n\n<p>So once that’s turned on, if you, Nathan, were to come to the GatherPress site, you would then register. You know, like I said, we try not to be too opinionated. WordPress allows registration, WordPress allows login, so we’re going to leverage the default behavior of how WordPress functions there.</p>\n\n\n\n<p>Granted, we’re going to look to extend on that, if people want a more, a different kind of look and feel for that. But, at the bare bones, we want people to be able to register and log in, like any other WordPress site.</p>\n\n\n\n<p>So once you’re logged in, it’ll take you back. You know, once you create an account, you can go back to that event. You click RSVP, then you can say, I’m attending this, and you click the attend button. And now you’re on the list of people that are attending, and you’ll, you know, if the organiser sends out an email to those attending, you’ll receive that email.</p>\n\n\n\n<p>[00:28:13] <strong>Nathan Wrigley:</strong> And should I wish to unsubscribe, is there options there? You know, I’m thinking GDPR, and all those kind of things. If I wish to no longer receive the emails, all of that, that’s taken care of, is it?</p>\n\n\n\n<p>[00:28:22] <strong>Mike Auteri:</strong> So that is not. I need to work on that piece. One of the things we were looking to do with integration with BuddyPress was, BuddyPress has those options to turn off notifications. So leveraging that aspect of BuddyPress, but GatherPress will have to do a bare minimum for that too.</p>\n\n\n\n<p>[00:28:38] <strong>Nathan Wrigley:</strong> Yeah. So you have to login to each event’s website. So let’s say, I don’t know, there’s a WordPress meetup in the UK. There might be one in Bristol, there might be one in Brighton, and London, and Manchester, and all these other different places. I would need to go and make an account on each of those websites, should they choose to use GatherPress.</p>\n\n\n\n<p>I guess one of the benefits of meetup.com was that you just had this one sign up, which was kind of nice. I’m wondering around there, do you have any intuitions or thoughts on federating that?</p>\n\n\n\n<p>[00:29:04] <strong>Mike Auteri:</strong> So that’s exactly what our proposal was. So our proposal is, if you think of it how WordCamps function, right? That they’re on a multi-site. So multi-sites use the same user database, right? What we would ideally want folks to use in this is, what they would log into wordpress.org with, so their profile, the wordpress.org profile, and utilise that.</p>\n\n\n\n<p>So if we have a multi-site powered, you know, with the event management powered by GatherPress, if you went to any of those meetups and they’re on that multi-site, it would be the same login for all of them. So then you’d be able to log into all of those different sites, and be able to say, I’m attending this, and it’s all the same user, it’s your WordPress profile.</p>\n\n\n\n<p>[00:29:45] <strong>Nathan Wrigley:</strong> Is that then something you are hoping to put together in terms of infrastructure and maintenance thereof? A multi-site network where you can sign up as an admin, and bag brighton.gatherpress.com, or whatever it might be. And therefore you can federate that account login, and presumably therefore you could distribute, you could create another dashboard widget, which had all of the events that were in that multi-site network, and so on.</p>\n\n\n\n<p>[00:30:08] <strong>Mike Auteri:</strong> Right. So the idea is like, we’ve been talking and working with the meta team already. So like I’ve had conversations with say like Ian Dunn. He seemed pretty into the idea of setting up another network, kind of how we have with WordCamps, but with meetups.</p>\n\n\n\n<p>And setting up that network that would leverage the same sort of infrastructure that we are already kind of used to with wordpress.org and wordcamp.org, and be able to host those meetups in a multi-site, that have opted in to start using this new platform. Then being able to use their WordPress profile to log in.</p>\n\n\n\n<p>You know, there was also kind of some, you know, chat and thought about like, maybe someone should explore a single sign on with Meetup credentials, for people that still find it through Meetup. So if they already have Meetup credentials, maybe they can leverage that as well.</p>\n\n\n\n<p>But trying to remove a lot of the friction, where we can, is a big thing like, you and I both know like, you don’t want a million logins, and I don’t want a million logins to all different meetups. We want to keep that as simple as possible, and as straightforward as possible. Because the success of a project like this relies on people being able to easily create a, like, you know, have an account, or create one account, and be able to go to all those different WordPress meetups in that multi-site.</p>\n\n\n\n<p>[00:31:20] <strong>Nathan Wrigley:</strong> Yeah, I think so. I think there’s something more likely to get off the ground, if there’s just one login. And then you can actually see, I don’t know, you could go as far as putting a map of the world up and, put pins in it based upon the events that are happening in the next month.</p>\n\n\n\n<p>[00:31:33] <strong>Mike Auteri:</strong> The events page already, the events.wordpress, I think it’s events.wordpress.org. I’m blanking right now, but that has like all the different events that are happening. That was put together, I guess a couple months ago. But it was one of the reasons I started pushing forward on this, being like, hey, we are starting to use WordPress infrastructure for our events more seriously. This is a project I’ve been leading for the last couple years to help with that initiative.</p>\n\n\n\n<p>[00:32:01] <strong>Nathan Wrigley:</strong> I’m looking at the documentation page, and helpfully there’s, obviously the documentation on the page itself, but you’ve got some links for users, you know, poeple who just wish to try out the plugin. But also developers, presumably if they wish to extend it.</p>\n\n\n\n<p>There’s also a GitHub repository. All of this will be linked to in the show notes for this podcast. So if you go to wptavern.com, and look for the podcast episode associated with this, you’ll be able to find all of that there.</p>\n\n\n\n<p>But also at the bottom, you’ve got a list of upcoming features. Now, I know that you’ve touched on a few of these, but if you just want list out what’s not been mentioned so far, if you can remember. And yeah, what’s in the roadmap for the near future, I guess?</p>\n\n\n\n<p>[00:32:36] <strong>Mike Auteri:</strong> One of the big things that people, you know, I’ve thought of and people have confirmed, especially moving something like this is like, well, what about all the events I have on meetup.com? Like, how can I migrate those?</p>\n\n\n\n<p>One of the thoughts, like I mentioned, I’m very thoughtful about what goes into the core plugin for GatherPress. And anything that is kind of like, well, that’s specific to this, right? Say, if you’re migrating from meetup.com to GatherPress, you’d want some functionality to be able to do that easily and seamlessly.</p>\n\n\n\n<p>That’s not everybody using GatherPress, so I don’t see that as a core feature of the plugin, but I do see that as a companion plugin. So that’s going to be our first, what we call companion plugin, called GatherPress Meetup Importer. And what that will do is take an API key from meetup.com, and be able to import the meetups that you’ve had already, on Meetup.</p>\n\n\n\n<p>And since, like I mentioned, a lot of the features from meetup.com to GatherPress were close to apples to apples, we’d be able to take that data, and put it in the right spot for GatherPress. And then maybe running an ongoing job, so if you were, say, I want to be able to still use meetup.com to first publish, and have GatherPress ingest it as I go through, like kind of a trial and transition. We want to be able to have folks be able to do that too. And maybe like direct traffic to their GatherPress site, while still maintaining, for at least the time being, their presence on meetup.com.</p>\n\n\n\n<p>That’s one of our first plugins that, you know, we’ve started on. I’ve been testing it, works great. There’s another plugin that does this already, and we’re kind of using that as a model, for building one that’s very specific and very, all the features are specific to GatherPress is kind of what we’re after.</p>\n\n\n\n<p>[00:34:21] <strong>Nathan Wrigley:</strong> Yeah, that’s great. I’ll just list off a couple of other things that are mentioned here. So I’ve got the ability for attendees to be listed anonymously, you mentioned that. Allow attendees to add guests. That’s nice. Import events, that’s the one you’ve just mentioned. Recurring events, so rather than duplicating the posts, there’ll be something built in, different functionality. A calendar block, presumably to show the events in a way that you might look at your Google calendar or something, you see it by date. And this is nice, probably underestimated how important it is, the email notification when the events start. I think that’s really crucial, especially if it’s a live event.</p>\n\n\n\n<p>[00:34:52] <strong>Mike Auteri:</strong> Right now I just compose, and say starting five minutes.</p>\n\n\n\n<p>[00:34:54] <strong>Nathan Wrigley:</strong> Easy to forget though. And you never know how many people you are sort of leaving behind, if that notification fails to go out. So that’s really nice. But also, the bit that I alluded to at the beginning, right at the beginning when I said that the date was the 23rd of January, comes now because, Patricia, that you mentioned, and I’ll link to this in the show notes.</p>\n\n\n\n<p>There is a pilot program, which you launched by pure coincidence, yesterday. So 22nd of Jan 2024. What is the community pilot program? What’s its intention? Who are you trying to get on board? Just tell us a little bit about that.</p>\n\n\n\n<p>[00:35:25] <strong>Mike Auteri:</strong> Sure, yeah. So that is the project that I mentioned about, building something into the wordpress.org infrastructure that powers meetups. So much like, you know, the meta team is behind the wordcamp.org, or wordpress.tv, or just wordpress.org. We want to have another multi-site in that network, for meetup events.</p>\n\n\n\n<p>And we’re pushing for GatherPress to be the community plugin, that does the event management for that particular infrastructure. We have some meetups, and some more that have even responded to the proposal saying like, yeah, we’d love to be part of that pilot program too.</p>\n\n\n\n<p>We have a couple that are in the US, I think five that are in Switzerland, and some in Spain, that would love to be part of this pilot program, where we put this multi-site together. Each site on that multi-site is a meetup group. And then they start using that in tandem with meetup.com, in order to start driving more events around, within this WordPress powered event system. And starting to slowly move off meetup.com, and seeing how it goes. You know, see if something like that would be successful.</p>\n\n\n\n<p>[00:36:37] <strong>Nathan Wrigley:</strong> So you’re after community members. And just before we end the podcast, in a moment, I’ll ask for your contact details, and what have you. If you go to gatherpress.org, the way that I’m seeing about the community program, is because it is the most recent blog post, I’m guessing.</p>\n\n\n\n<p>I’m looking at what looks like an archive of blog posts. But I noticed that the archive of blog posts is probably in some way using GatherPress itself, because I’ve got these RSVP buttons, and if I click into the GatherPress weekly huddle, I notice that I’ve got add to calendar links, and I’ve got an RSVP button, which invokes a modal. Is that GatherPress in action?</p>\n\n\n\n<p>[00:37:08] <strong>Mike Auteri:</strong> That is GatherPress in action. Anybody can join. 11:00 am Eastern Standard Time. We have our GatherPress weekly huddle, and that’s when the team gets together. Any folks that are interested in GatherPress, there’s a Zoom link. It’s an online event. And we have that every week on Fridays. So Friday, 11:00 am, Eastern Time, we have those every week.</p>\n\n\n\n<p>[00:37:30] <strong>Nathan Wrigley:</strong> And if you go to gatherpress.org, you’ll be able to see them, well, as the page currently stands you can see them, and obviously the most recent one in this case rises to the top. So you can just scroll down a little way, and click the button to RSVP, and get yourself set up in that community.</p>\n\n\n\n<p>[00:37:45] <strong>Mike Auteri:</strong> You can click through and see more event details. But, yeah, that is another block that we have for pages, called Event List. That will show various events, whether past or upcoming. So that’s another feature of GatherPress as well.</p>\n\n\n\n<p>[00:37:57] <strong>Nathan Wrigley:</strong> You’ve thought of everything. Brilliant. Okay, just before we knock it on the head then, Mike, I think probably some people listening to this will be in tune with what you’re saying, and hopefully will wish to reach out to you, to find out more about the project.</p>\n\n\n\n<p>Obviously, they could go to the website, that’s a given. If they want to contact you personally, or in more personal way, do you have a social network handle that you hang out on, or an email address that you’re willing to give out?</p>\n\n\n\n<p>[00:38:19] <strong>Mike Auteri:</strong> Twitter’s a good one. It’s M Auteri, M-A-U-T-E-R-I. So my first initial and my last name, you can find us there. If you send me a DM, and we have a GatherPress Slack. We also have a GatherPress Twitter, which we’re starting to use a little bit more, now that we’ve gone a little bit more public with it. And that is just GatherPress. So if you find GatherPress on Twitter, spelled exactly as it is on the website. You can follow us there. You know, we just started using that Twitter account, so I don’t even know if it has any followers.</p>\n\n\n\n<p>[00:38:47] <strong>Nathan Wrigley:</strong> Yeah. There’s also, in the main navigation of the gatherpress.org website, there’s an item entitled Get Involved. And if you click over there, you’ll be able to see a contact form, plus the GatherPress Slack group link is there as well.</p>\n\n\n\n<p>[00:38:59] <strong>Mike Auteri:</strong> Yeah, I think Mervin added that like yesterday, so that all brand new stuff, so.</p>\n\n\n\n<p>[00:39:05] <strong>Nathan Wrigley:</strong> It is all shiny and new, isn’t it? It’s lovely. The feeling that you get from these brand new products is so engaging, and I really hope that you managed to keep the momentum going. It sounds like you’ve got a lot of interest in the community.</p>\n\n\n\n<p>[00:39:16] <strong>Mike Auteri:</strong> Yeah We’ve been keeping that momentum going. Yeah.</p>\n\n\n\n<p>[00:39:19] <strong>Nathan Wrigley:</strong> Yeah. Thank so much for chatting to us about GatherPress today. I really appreciate it.</p>\n\n\n\n<p>[00:39:22] <strong>Mike Auteri:</strong> Thank you for having me. I appreciate it.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://twitter.com/mauteri\">Mike Auteri</a>.</p>\n\n\n\n<p>Mike is an Associate Director of Engineering at Penske Media Corporation, as well as the founder and engineering lead of the <a href=\"https://gatherpress.org/\">GatherPress project</a>. He’s contributed code to WordPress Core and Gutenberg, is a WordPress community team supporter, has written plugins, presented at meetups and WordCamps, and is a co-organiser of the WordPress Montclair Meetup in New Jersey.</p>\n\n\n\n<p>If you’ve attended a WordPress meetup event, it’s quite likely that you registered for that via the meetup.com platform. It’s become the defacto way for organisers of events to plan their meetups, send out invites, subscribe users, and promote future events.</p>\n\n\n\n<p>A few years ago, Mike decided that it was time for WordPress events to have a WordPress based solution for event management, and so he set to work creating GatherPress, which is the focus of the podcast today.</p>\n\n\n\n<p>Mike talks about the way events are currently managed and why he thinks it’s time to transition to something more home-grown. He thinks that GatherPress represents a significant leap forward in enhancing the event planning and participation experience.</p>\n\n\n\n<p>We talk about the development journey of GatherPress, discussing its current features and the advantages he feels it offers to the WordPress community.</p>\n\n\n\n<p>We also examine GatherPress’s capacity to enable event coordination and foster meaningful community engagement. He’s envisioning a future where event management built on top of WordPress is a hallmark of the WordPress event experience.</p>\n\n\n\n<p>We get into the roadmap features that are just around the corner, as well as chatting about the community which has grown up around the plugin, and how that community is looking for people to help out.</p>\n\n\n\n<p>If you’re a WordPress event organiser, or have attended a meetup in the past and are curious about how this could be handled by a freely available plugin, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p><a href=\"https://www.pmc.com/\">Penske Media Corporation</a></p>\n\n\n\n<p><a href=\"https://www.meetup.com/\">meetup.com</a></p>\n\n\n\n<p><a href=\"https://gatherpress.org/\">GatherPress plugin website</a></p>\n\n\n\n<p><a href=\"https://github.com/GatherPress/gatherpress/\">GatherPress GitHub repository</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/community/2024/01/22/proposal-pilot-program-to-test-gatherpress-on-the-wordpress-org-network-as-a-meetup-alternative/\">Proposal: Pilot program to test GatherPress on the WordPress.org network as a Meetup alternative</a></p>\n\n\n\n<p><a href=\"https://twitter.com/mauteri\">Mike’s Twitter</a></p>\n\n\n\n<p><a href=\"https://gatherpress.slack.com/\">GatherPress Slack group</a></p>\n\n\n\n<p><a href=\"https://twitter.com/gatherpress\">GatherPress Twitter</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 31 Jan 2024 15:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"WordPress.org blog: WordPress 6.4.3 – Maintenance and Security release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=16754\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wordpress.org/news/2024/01/wordpress-6-4-3-maintenance-and-security-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7054:\"<p>This security and maintenance release features <a href=\"https://core.trac.wordpress.org/query?status=closed&component=!Bundled+Theme&id=!59828&milestone=6.4.3&group=status&col=id&col=summary&col=component&col=owner&col=type&col=priority&col=version&col=keywords&order=priority\">5 bug fixes on Core</a>, <a href=\"https://github.com/WordPress/wordpress-develop/pull/5698#issuecomment-1909302298\">16 bug fixes for the Block Editor</a>, and 2 security fixes.</p>\n\n\n\n<p><strong>Because this is a security release, it is recommended that you update your sites immediately.</strong> Backports are also available for other major WordPress releases, 4.1 and later.</p>\n\n\n\n<p>You can <a href=\"https://wordpress.org/wordpress-6.4.3.zip\">download WordPress 6.4.3 from WordPress.org</a>, or visit your WordPress Dashboard, click “Updates”, and then click “Update Now”. If you have sites that support automatic background updates, the update process will begin automatically.</p>\n\n\n\n<p>WordPress 6.4.3 is a short-cycle release. The next major release will be <a href=\"https://make.wordpress.org/core/6-5/\">version 6.5</a> planned for 26 March 2024. You can review a summary of the maintenance updates in this release by reading the <a href=\"https://make.wordpress.org/core/2024/01/25/wordpress-6-4-3-rc1-is-now-available/\">Release Candidate announcement</a>. For further information on this release, please <a href=\"https://wordpress.org/support/wordpress-version/version-6-4-3\">visit the HelpHub site</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Security updates included in this release</h2>\n\n\n\n<p>The security team would like to thank the following people for responsibly reporting vulnerabilities, and allowing them to be fixed in this release:</p>\n\n\n\n<ul>\n<li><a href=\"https://hackerone.com/m4tutocs\">m4tuto</a> for finding a PHP File Upload bypass via Plugin Installer (requiring admin privileges).</li>\n\n\n\n<li><a href=\"https://twitter.com/_s_n_t\">@_s_n_t</a> of <a href=\"https://twitter.com/pentestltd\">@pentestltd</a> working with Trend Micro Zero Day Initiative for finding an RCE POP Chains vulnerability.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you to these WordPress contributors</h2>\n\n\n\n<p>This release was led by <a href=\"https://profiles.wordpress.org/mikachan/\">Sarah Norris</a>, <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a>, and <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>.</p>\n\n\n\n<p>WordPress 6.4.3 would not have been possible without the contributions of the following people. Their asynchronous coordination to deliver maintenance and security fixes into a stable release is a testament to the power and capability of the WordPress community.</p>\n\n\n\n<p class=\"is-style-wporg-props-medium\"><a href=\"https://profiles.wordpress.org/wildworks\">Aki Hamano</a>, <a href=\"https://profiles.wordpress.org/xknown\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/ajlende\">Alex Lende</a>, <a href=\"https://profiles.wordpress.org/alexstine\">Alex Stine</a>, <a href=\"https://profiles.wordpress.org/afercia\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andraganescu\">Andrei Draganescu</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/andrewserong\">Andrew Serong</a>, <a href=\"https://profiles.wordpress.org/afragen\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/aristath\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/artemiosans\">Artemio Morales</a>, <a href=\"https://profiles.wordpress.org/benharri\">ben</a>, <a href=\"https://profiles.wordpress.org/bobbingwide\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/cbravobernal\">Carlos Bravo</a>, <a href=\"https://profiles.wordpress.org/poena\">Carolina Nymark</a>, <a href=\"https://profiles.wordpress.org/chesio\">Česlav Przywara</a>, <a href=\"https://profiles.wordpress.org/costdev\">Colin Stewart</a>, <a href=\"https://profiles.wordpress.org/mapumba\">Daniel Käfer</a>, <a href=\"https://profiles.wordpress.org/talldanwp\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/ellatrix\">Ella</a>, <a href=\"https://profiles.wordpress.org/kebbet\">Erik</a>, <a href=\"https://profiles.wordpress.org/mamaduka\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/gziolo\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/isabel_brison\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/joen\">Joen A.</a>, <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/desrosj\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/joppuyo\">joppuyo</a>, <a href=\"https://profiles.wordpress.org/lakshmananphp\">Lax Mariappan</a>, <a href=\"https://profiles.wordpress.org/luisherranz\">luisherranz</a>, <a href=\"https://profiles.wordpress.org/flootr\">Markus</a>, <a href=\"https://profiles.wordpress.org/czapla\">Michal Czaplinski</a>, <a href=\"https://profiles.wordpress.org/mukesh27\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/ntsekouras\">Nik Tsekouras</a>, <a href=\"https://profiles.wordpress.org/dhrupo\">Niluthpal Purkayastha</a>, <a href=\"https://profiles.wordpress.org/noahtallen\">Noah Allen</a>, <a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/ramonopoly\">ramonopoly</a>, <a href=\"https://profiles.wordpress.org/youknowriad\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/SergeyBiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sabernhardt\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/tykoted\">Teddy Patriarca</a>, <a href=\"https://profiles.wordpress.org/hellofromTonya\">Tonya Mork</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">How to contribute</h2>\n\n\n\n<p>To get involved in WordPress core development, head over to Trac, <a href=\"https://core.trac.wordpress.org/report/6\">pick a ticket</a>, and join the conversation in the <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> and <a href=\"https://wordpress.slack.com/archives/C065MBW03EH\">#6-5-release-leads channels</a>. Need help? Check out the <a href=\"https://make.wordpress.org/core/handbook/\">Core Contributor Handbook</a>.</p>\n\n\n\n<p>As a final reminder, The WordPress Security Team will never email you requesting that you install a plugin or theme on your site, and will never ask for an administrator username and password. <a href=\"https://wordpress.org/news/2023/12/alert-wordpress-security-team-impersonation-scams/\">Please stay vigilant against phishing attacks</a>.</p>\n\n\n\n<p><em>Thanks to <a href=\"https://profiles.wordpress.org/angelasjin/\">Angela Jin</a>, <a href=\"https://profiles.wordpress.org/ehtis\">Ehtisham S.</a>, <a href=\"https://profiles.wordpress.org/audrasjb\">Jb Audras,</a> and <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a> for proofreading.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 30 Jan 2024 21:22:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Aaron Jorbin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"Do The Woo Community: The Path for Creating a Premium Plugin Extension with Maarten Belmans\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=78973\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://dothewoo.io/the-path-for-creating-a-premium-plugin-extension/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:429:\"<p>Great tips and insights for WordPress and WooCommerce builders who are creating a plugin that is an extension of an existing plugin.</p>\n<p>>> The post <a href=\"https://dothewoo.io/the-path-for-creating-a-premium-plugin-extension/\">The Path for Creating a Premium Plugin Extension with Maarten Belmans</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a> .</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 30 Jan 2024 10:05:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Matt: Automattic’s Big Re-Org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=110854\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://ma.tt/2024/01/automattics-big-re-org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2316:\"<p>Considering I am going on sabbatical in 83 hours and passing the CEO torch to Toni Schneider until I return in May, it seemed like a perfect time to do a giant re-org! Just kidding. But we did introduce a concept into Automattic that I think will provide a lot of clarity for the teams within Automattic, and hopefully for the broader WordPress ecosystem that works and partners with us.</p>\n\n\n\n<p>The frame is there’s a game, each person gets a card: Be the Host, Help the Host, or Neutral.</p>\n\n\n\n<p>You cannot change cards during the course of your day or week. If you do not feel aligned with your card, you need to change divisions within Automattic.</p>\n\n\n\n<p>If you’re Be the Host, you are hyper-competitive. You are trying to make the case to a customer for why they should host with you and not consider anyone else. This is what everyone assumes all of Automattic is, but it’s actually just one sub-division, which is a minority of our revenue.</p>\n\n\n\n<p>For Help the Hosts, your word is <strong>ecosystem</strong>. You plant the seeds of open source software that grow everywhere. Every WordPress is precious to you, wherever it grew up. You want every host to be as successful as possible, because the real threat is from the Big Proprietary folks outside, who steal all your good ideas and don’t let you touch them again. You want to get to know every WordPress in the world, however it grew up, and help it out by selling it attachments.</p>\n\n\n\n<p>Neutral treats everyone equally, either because they don’t care (Day One, Pocket Casts, et cetera don’t have a horse in this race) or because they are a support function like finance or HR.</p>\n\n\n\n<p>Whenever you meet or talk to an Automattician you can ask what their card is.</p>\n\n\n\n<p>Also, WordPress.com is going to orient itself more towards developers, and have an experience that feels similar to WordPress hosted other places, less Calypso more wp-admin.</p>\n\n\n\n<p>The big tension this surfaced was Woo Express, going forward that team is switching under WP.com, and Woo.com will recommend a variety of hosts (like W.org) to get started with Woo. Now people can meet with Paul Maiorana, who leads Woo, or James Grierson, who leads Jetpack, and know they have Help the Hosts cards as their teleological goal.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 28 Jan 2024 20:08:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"Matt: Freedom Grants\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=110880\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"https://ma.tt/2024/01/freedom-grants/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:729:\"<p>The <a href=\"https://audrey.co/scholars/\">Audrey Scholars program</a> is still getting started, but I wanted to introduce another opportunity: <a href=\"https://audrey.co/freedom-grants/\">Freedom grants</a>. As the page says “If you are an open source contributor, and you feel your current political environment is incompatible with open source values, we would like to offer the opportunity for a grant to help you get set up in a new environment. Please state your case below.”</p>\n\n\n\n<p>I’m not sure exactly how this will work, but we’ll figure it out together. The offer is out there. This is very much inspired by the work of the <a href=\"https://oslofreedomforum.com/\">Oslo Freedom Forum</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 28 Jan 2024 18:37:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Matt: New York!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://ma.tt/2024/01/new-york-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://ma.tt/2024/01/new-york-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:748:\"<img width=\"604\" height=\"453\" src=\"https://i0.wp.com/ma.tt/files/2024/01/img_3684-1024x768.jpg?resize=604%2C453&ssl=1\" alt=\"\" class=\"wp-image-110864\" />\n\n\n\n<p>You tear me apart. The greatest city in the world. (San Francisco has its allure.) I am so drawn to the impeccability excellence of uptown. Just at a baby shower at <a href=\"https://111w57.com/\">111 West 57th</a>… wow! You have never seen a better building, everything is executed to the highest degree par none.</p>\n\n\n\n<p>Yet, I’m so drawn to downtown. The jazz. The creativity, the spark, the drive.</p>\n\n\n\n<p>Automattic’s office at 166 Crosby feels like a creative center. We’ve built something pretty cool there to inspire and delight people in space.</p>\n\n\n\n<p></p>\n\n\n\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 27 Jan 2024 20:33:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"Gutenberg Times: Dynamic Blocks, WordPress for Enterprise and Attachment Templates — Weekend Edition 282\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=27116\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:112:\"https://gutenbergtimes.com/dynamic-blocks-wordpress-for-enterprise-and-attachment-templates-weekend-edition-282/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:15950:\"<p>Howdy, </p>\n\n\n\n<p>Part of life is change and adjustment to new situations, and being adaptive is a skill that needs to be practiced. It’s never easy. For my personal life as well as for web development, when I am entrenched in the minutia of change, and it drags me down, I stop and get to a higher level and reminder myself about <a href=\"https://en.wikipedia.org/wiki/Wabi-sabi\">Wabi Sabi</a> and marvel at the impermanence, the imperfections and the incomplete state of things and of life, really. In other words, nothing is finished, nothing is perfect and nothing lasts. Ever. </p>\n\n\n\n<p>In that sense, we are all learners, and the best way to learn from another is by experimenting, building, using and developing on top of open source. and share learned lessons and processes with others.</p>\n\n\n\n<p>Below you’ll find fabulous links to articles that teach, and share. Enjoy!</p>\n\n\n\n<p>Yours, 💕<br /><em>Birgit</em></p>\n\n\n\n<p></p>\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<ol><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/dynamic-blocks-wordpress-for-enterprise-and-attachment-templates-weekend-edition-282/#0-word-press-release-information\">Developing Gutenberg and WordPress</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/dynamic-blocks-wordpress-for-enterprise-and-attachment-templates-weekend-edition-282/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/dynamic-blocks-wordpress-for-enterprise-and-attachment-templates-weekend-edition-282/#2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/dynamic-blocks-wordpress-for-enterprise-and-attachment-templates-weekend-edition-282/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </a></li></ol>\n</div></div>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p><strong>Anne McCarthy</strong> published another post in the series of C<em>ore Editor Improvement</em> about<a href=\"https://make.wordpress.org/core/2024/01/22/core-editor-improvement-robust-revisions-in-the-site-editor/\"> </a>the <strong><a href=\"https://make.wordpress.org/core/2024/01/22/core-editor-improvement-robust-revisions-in-the-site-editor/\">Robust revisions feature in the Site Editor</a> </strong>coming to WordPress 6.5. Revisions now show a summary of changes, and consistent pagination. They are also available in the context of the Stylebook, and allow for redo and undo functionality. All the features help designers to trust the site editor to build from scratch and not loose designs, just because one changes their minds about things.</p>\n\n\n\n<p class=\"has-accent-color has-light-background-background-color has-text-color has-background has-link-color wp-elements-be0f489534e352b6db8b419a84c4135e\">🎙️ Latest episode: <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-95-gutenberg-17-5-early-testing-of-wordpress-6-5-and-block-themes/\">Gutenberg Changelog #95 – Gutenberg 17.5, Early Testing of WordPress 6.5 and Block Themes</a> with special guest: Carolina Nymark</p>\n\n\n\n<p><strong>Joen Asmussen</strong> shared in his bi-weekly update post a<a href=\"https://make.wordpress.org/design/2024/01/15/design-share-jan-1-jan-12/\"><strong>bout the work by members of the WordPress Design team. </strong></a>There are quite some interesting projects and discussion. </p>\n\n\n\n<ul>\n<li>Data views: \n<ul>\n<li>Adding filters and editing operators</li>\n\n\n\n<li>Bulk edit updates</li>\n\n\n\n<li>Kanban layout</li>\n\n\n\n<li>Grouping</li>\n</ul>\n</li>\n\n\n\n<li>“Missing Fonts”</li>\n\n\n\n<li>States </li>\n\n\n\n<li>WP.org: Learning Pathways</li>\n\n\n\n<li>Openverse Dark Mode</li>\n</ul>\n\n\n\n<p>The early discussion around how states might provide a UI for anything from animation over pseudo states, to perhaps even responsive editing seems to be the one that needs the biggest input from users, designers developers. <a href=\"https://github.com/WordPress/gutenberg/issues/57719\">It’s happening on GitHub </a>and could use your feedback, too. </p>\n\n\n\n<a href=\"https://make.wordpress.org/design/2024/01/15/design-share-jan-1-jan-12/\"><img width=\"652\" height=\"383\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/01/Screenshot-2024-01-27-at-12.43.48.png?resize=652%2C383&ssl=1\" alt=\"\" class=\"wp-image-27161\" /></a>\n\n\n\n<p><strong>Matt Mullenweg</strong> was interviewed by the host of WP Tonic, Jonathan Denwood & Kurt von Ahnen, on Gutenberg, and the state of WordPress Community and open-source. </p>\n\n\n\n<img width=\"652\" height=\"365\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/01/Screenshot-2024-01-27-at-18.56.27.png?resize=652%2C365&ssl=1\" alt=\"\" class=\"wp-image-27181\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p><strong>Nathan Wrigley</strong> discussed in the 106th episode of the Jukebox podcast with <a href=\"https://wptavern.com/podcast/106-anil-gupta-on-the-challenges-posed-by-multi-collaboration-in-wordpress\"><strong>Anil Gupta on the Challenges Posed by Multi Collaboration in WordPress</strong></a>. “Anil talks about how his team at <a href=\"https://www.multidots.com/\"><em>Multidots</em></a> decided to tackle this problem for their plugin, and he explains some of the hurdles they’ve experienced along the way. They’ve taken a cautious approach, developing different features one at a time, working through the technical challenges with commenting, before moving onto real-time editing. ” Listening to this episode is quite fascinating as it brings listeners into the headspace of real-time collaboration and upcoming Phase 3 of the Gutenberg projects. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Chuck Grimmett</strong> redesign his website and walks you through the process in the post <a href=\"https://cagrimmett.com/2024/01/21/2024-redesign/\"><strong>2024 Redesign</strong></a>. Based on a child theme of Twenty-Twenty-four and with the help of the create-block theme plugin, Grimmett went to work to set up template parts, templates, and patterns for this tie. What I found also helpful is the list of resources and inspiration for the next iteration of Grimmett’s website. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Nick Diego</strong> announced the new version of the <a href=\"https://blockvisibilitywp.com/block-visibility-3-2-0-3-3-0-author-controls-and-acf-options-pages/\"><strong>Block Visibility plugin (3.3.0)</strong></a> with a few improvements. Among them, a nod towards the ACF (Advanced Custom Fields) Pro users, as fields stored in options pages are now supported by the plugin. It also offers some Author controls as well a Demo link to load it into a WordPress Playground instance. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><a href=\"https://twitter.com/ARAspinall\"><strong>Alex Aspinall</strong></a>, head of marketing at HumanMade, shared the links to the recording of last week’s <a href=\"https://humanmade.com/wordpress-for-enterprise/replay-wordpress-for-enterprise-event/\"><strong>WordPress for Enterprise event</strong></a>: </p>\n\n\n\n<p>You can also hop on YouTube directly and watch the recordings <a href=\"https://www.youtube.com/playlist?list=PL1H81eN4d97hwVJIQuRAwxcAireL3Qer4\">from the Playlist</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Tammie Lister</strong> started a new site: <a href=\"https://Editortips.com\"><strong>Editortips.com,</strong></a> a site with frequently to do with the WordPress block and site editor. The site already sports information about the Style Book, Style Revisions, how to switch moved and add custom color. If you haven’t worked with the site editor before, bookmark the site or, better yet, add it to your feed reader’s list. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Buddy Boss</strong> has launched <strong><a href=\"https://www.buddyboss.com/buddyboss-reactions/ref/671/\">Reactions Feature,</a> </strong>allowing users to visually interact with the content through various reaction icons. This kind of interactivity is also coming to the block editor with the Interactivity API in WordPress 6.5. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Bjarne Oldrup</strong> posted <a href=\"https://oldrup.dk/en/improve-the-block-editor-ux-with-mrw-simplified-editor/\"><strong>Improve block editor UX with MRW Simplified Editor</strong></a>, using the plugin my <a href=\"https://mrwweb.com/\">Mark Root-Wiley</a> that allows site builders to make the Block Editor user experience better with cleaner options. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><em>The last three news items were brought to you be Davinder Singh Kainth, publisher of the WP We</em>ekly<a href=\"https://thewpweekly.com/\"> newsletter</a>, a must-read for any WordPress professional. </p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p><strong>Justin Tadlock</strong> published <a href=\"https://developer.wordpress.org/news/2024/01/22/building-dynamic-block-based-attachment-templates-in-themes/\"><strong>Building dynamic block-based attachment templates in themes</strong></a>. “Love ‘em or hate ‘em, attachments are a reality of theme development, especially if you are publicly distributing your theme. Just because they are disabled for new installations doesn’t mean that there aren’t millions of WordPress sites that still have them turned on or that new users won’t enable them.” he wrote.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Emily Rapport </strong>wrote about her journey <a href=\"https://alwaysopen.design/from-builder-to-blocks-a-rebuild-experiment/\"><strong>From Builder to Blocks: A Rebuild Experiment</strong></a> on her blog. “Rebuilding in the site editor this year was an opportunity for me to explore (and learn) what might be possible in a block theme on a “real” website. ” she wrote. You’ll learn about her working out the right approach and the tools she used, among those the <a href=\"https://wordpress.org/plugins/create-block-theme/\"><em>Create-Block-Theme</em></a> plugin. Rapport made clear that it took a a major shift in her mental model to be to grasp the difference between writing CSS in a file and using the site editor to store changes to the design in the database. I also found it quite an interesting read to learn, what exactly is still missing from block theme development via the site editor: (current page styling, custom CSS, landmarks and display of custom fields.)</p>\n\n\n\n\n<p><strong> <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">“Keeping up with Gutenberg – Index 2022”</a> </strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test, and Meta team from Jan. 2021 on. Updated by yours truly. <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\"><em>The index 2020 is here</em></a></p>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </h2>\n\n\n\n<p><strong>Brian Coords</strong> published a video and blog post on <a href=\"https://www.briancoords.com/how-to-build-dynamic-php-blocks-in-wordpress/\"><strong>How to Build Dynamic (PHP) Blocks in WordPress</strong></a>. “Along the way we’ll discuss the difference between static and dynamic blocks, when to use them, WP_Query, what ServerSideRender is and what the best approach for performance is.” Coords wrote. </p>\n\n\n\n<p>If you need an additional resource on the difference between static and dynamic blocks, you can also learn about it from Joni Halabi’s post on the Developer Blog <a href=\"https://developer.wordpress.org/news/2023/02/27/static-vs-dynamic-blocks-whats-the-difference/\"><em>Static vs. dynamic blocks: What’s the difference?</em></a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><em>Thomas Roberts</em> shared in his monthly WooCommerce Blocks Extensibility Snaps about the <strong><a href=\"https://developer.woo.com/2024/01/26/woocommerce-blocks-extensibility-snaps-additional-checkout-fields-progress/\">Additional Checkout Fields Progress</a></strong>, and ways to collect and display contact information.</p>\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Require a plugin .zip from Gutenberg’s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n<p class=\"has-text-align-right has-small-font-size\"><em>Questions? Suggestions? Ideas? Don’t hesitate to send <a href=\"mailto:[email protected]\">them via email</a> or send me a message on WordPress Slack or Twitter @bph</em>. </p>\n\n\n\n<p class=\"has-text-align-right has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, send them to <a href=\"mailto:[email protected]\">[email protected]</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p>Featured Image: <a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/44065b3719/\">photo</a> by <a href=\"https://wordpress.org/photos/author/kafleg/\">KafleG</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don’t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button type=\"submit\" class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too, and won’t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 27 Jan 2024 09:31:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:11:\"\n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"HeroPress: Changing WordPress Core By Four Characters\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://heropress.com/?p=6470\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:151:\"https://heropress.com/changing-wordpress-core-by-four-characters/#utm_source=rss&utm_medium=rss&utm_campaign=changing-wordpress-core-by-four-characters\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:11629:\"<img width=\"768\" height=\"1024\" src=\"https://heropress.com/wp-content/uploads/2025/01/65065b3b1fc601de4.31201295-1536x2048-1-768x1024.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"A brown and white Cavalier King Charles Spaniel sleeping on the back of a grey couch.\" /><div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-6470_46a173-c4\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n<div class=\"kb-row-layout-wrap kb-row-layout-id6470_b7187a-f7 alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top kb-theme-content-width\">\n\n<div class=\"wp-block-kadence-column kadence-column6470_3c9bee-ee inner-column-1\"><div class=\"kt-inside-inner-col\">\n<h2 class=\"kt-adv-heading6470_7b7304-0f wp-block-kadence-advancedheading\"><a href=\"https://heropress.com/\">HeroPress.com</a> – <a href=\"https://heropress.com/essays/my-journey-as-an-engineer-with-wordpress/\">My Journey as an Engineer with WordPress – エンジニアとしての WordPress の旅</a></h2>\n\n\n\n\n\n<div class=\"wp-block-image is-style-default\">\n<a href=\"https://heropress.com/essays/my-journey-as-an-engineer-with-wordpress/\"><img width=\"300\" height=\"300\" src=\"https://heropress.com/wp-content/uploads/2024/01/aki_hamano-300x300.jpg\" alt=\"Aki Hamano\" class=\"wp-image-6446\" /></a></div>\n\n\n\n<p>Aki Hamano is from Tokyo, Japan. Several years ago he found a flaw in Gutenberg and submitted a patch for just four characters. Now he is a Gutenberg Core Contributor.</p>\n\n\n\n<p><em>I was so excited to imagine that the code I had written, even though it was just a small change, would become part of WordPress itself and be spread around the world.</em></p>\n\n\n\n<p>Aki’s essay is <a href=\"https://heropress.com/essays/my-journey-as-an-engineer-with-wordpress/\">available</a> on <a href=\"https://heropress.com\">HeroPress.com</a>.</p>\n</div></div>\n\n</div></div>\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-6470_52ba8f-9d\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n<div class=\"kb-row-layout-wrap kb-row-layout-id6470_66cf1f-78 alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top kb-theme-content-width\">\n\n<div class=\"wp-block-kadence-column kadence-column6470_5696f9-6f inner-column-1\"><div class=\"kt-inside-inner-col\">\n<h2 class=\"kt-adv-heading6470_755721-50 wp-block-kadence-advancedheading\"><a href=\"https://hallwaychats.com\">WPPhotos.Info</a></h2>\n\n\n\n\n\n<div class=\"wp-block-image\">\n<img width=\"225\" height=\"300\" src=\"https://heropress.com/wp-content/uploads/2025/01/205659a80d88ec860.47192763-scaled-1-225x300.jpeg\" alt=\"The barn owl(Tyto alba). From Kozhikode, Kerala.\" class=\"wp-image-6476\" /></div>\n\n\n\n<p>This week’s <a href=\"https://wpphotos.info\">WPPhotos Info</a> is called “<a href=\"https://wpphotos.info/free-to-fly/\">Free to fly</a>“. </p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/mbigul/\">Bigul Malayi</a> was able to catch this rare owl at his sister in law’s house, one Sunday in Kerala, India.</p>\n\n\n\n<p>Unlikely, he added, this type of owl is traded in black market – <a href=\"https://wildlifesos.org/chronological-news/wildlife-sos-seizes-barn-owl-in-gujarat-raid/\" target=\"_blank\" rel=\"noreferrer noopener\">https://wildlifesos.org/chronological-news/wildlife-sos-seizes-barn-owl-in-gujarat-raid/</a> </p>\n\n\n\n<p><a href=\"https://wpphotos.info/free-to-fly/\">Read more of the story at WPPhotos.info!</a></p>\n</div></div>\n\n</div></div>\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-6470_a73735-97\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n<div class=\"kb-row-layout-wrap kb-row-layout-id6470_7ea3b4-46 alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top kb-theme-content-width\">\n\n<div class=\"wp-block-kadence-column kadence-column6470_131702-3a inner-column-1\"><div class=\"kt-inside-inner-col\">\n<h2 class=\"kt-adv-heading6470_4acea9-c3 wp-block-kadence-advancedheading\"><a href=\"https://wppodcasts.com\">WP Podcasts</a></h2>\n\n\n\n\n\n\n<a href=\"https://wppodcasts.com\"><img src=\"https://heropressnetwork.com/wp-content/uploads/2024/01/pocket_casts_single_315.png\" alt=\"Pocket Casts image\" class=\"wp-image-4316\" /></a>\n\n\n\n\n<p>There were <em>twenty-six</em> WordPress podcast episodes released this week!</p>\n\n\n\n<ul>\n<li><a href=\"https://potencia.pro/276-los-mejores-plugins-para-desarrolladores-de-wordpress/#new_tab\">Potencia Pro 276: Los mejores plugins para desarrolladores de WordPress</a> from <a href=\"https://wppodcasts.com/podcast/potencia-pro-wordpress-y-cozas/\">Potencia Pro, WordPress y cozas</a></li>\n\n\n\n<li><a href=\"https://wpwatercooler.com/wpwatercooler/ep473-write-it-down-blogging-for-fun-and-making-friends/#new_tab\">EP473 – Write It Down Blogging for Fun and Making Friends</a> from <a href=\"https://wppodcasts.com/podcast/wpwatercooler-weekly-wordpress-talk-show/\">WPwatercooler – Weekly WordPress Talk Show</a></li>\n\n\n\n<li><a href=\"https://wppodcasts.com/supercharging-enterprise-wordpress-with-mecum-auctions/\">Supercharging Enterprise WordPress with Mecum Auctions</a> from <a href=\"https://wppodcasts.com/podcast/the-wordpress-edge/\">The WordPress Edge</a></li>\n\n\n\n<li><a href=\"https://www.wppodcast.cat/podcast/objectius-del-2024/#new_tab\">12. Objectius del 2024</a> from <a href=\"https://wppodcasts.com/podcast/wordpress-podcast-catala/\">WordPress Pòdcast (català)</a></li>\n\n\n\n<li><a href=\"https://podcasters.spotify.com/pod/show/the-sdm-show/episodes/Episode-386-Client-Portals-with-Laura-Elizabeth-e2eqqp2#new_tab\">Episode 386 Client Portals with Laura Elizabeth</a> from <a href=\"https://wppodcasts.com/podcast/the-sdm-show/\">The SDM Show</a></li>\n</ul>\n\n\n\n<p>There are new episodes every single day, so be sure to stop by <a href=\"https://wppodcasts.com\">WPPodcasts.com</a> and search for things that interest you!</p>\n</div></div>\n\n</div></div>\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-6470_b6841e-c9\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n<div class=\"kb-row-layout-wrap kb-row-layout-id6470_1cc895-27 alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top kb-theme-content-width\">\n\n<div class=\"wp-block-kadence-column kadence-column6470_1770ad-7f inner-column-1\"><div class=\"kt-inside-inner-col\">\n<h2 id=\"wpphotos\" class=\"kt-adv-heading6470_7db119-fb wp-block-kadence-advancedheading\"><a href=\"https://wordpress.org/photos\">WP Photos</a></h2>\n\n\n\n<p>Here are some of the great photos submitted to the <a href=\"https://wordpress.org/photos\">WPPhotos</a> project this week!</p>\n\n\n\n\n<a href=\"https://wordpress.org/photos/photo/5065b2ac38/\"><img width=\"768\" height=\"1024\" src=\"https://heropress.com/wp-content/uploads/2024/01/5065b2ac3875f441.77191056-768x1024.jpg\" alt=\"A grey squirrel eating on the railing of a deck.\" class=\"wp-image-6481\" /></a><a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/5065b2ac38/\">photo</a> by <a href=\"https://wordpress.org/photos/author/desrosj/\">Jonathan Desrosiers</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.\n\n\n\n<a href=\"https://wordpress.org/photos/photo/6965b15ced/\"><img width=\"1024\" height=\"768\" src=\"https://heropress.com/wp-content/uploads/2024/01/6965b15ced813cb3.94794038-1024x768.jpg\" alt=\"Sin and Flesh Brook in the woods of Fort Barton in Tiverton, Rhode Island.\" class=\"wp-image-6482\" /></a><a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/6965b15ced/\">photo</a> by <a href=\"https://wordpress.org/photos/author/desrosj/\">Jonathan Desrosiers</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.\n\n\n\n<a href=\"https://wordpress.org/photos/photo/10065b1411/\"><img width=\"1024\" height=\"768\" src=\"https://heropress.com/wp-content/uploads/2024/01/10065b1411dbe2447.94999518-2048x1536-1-1024x768.jpeg\" alt=\"A porcupine laying down and stretching it\'s arms\" class=\"wp-image-6478\" /></a><a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/10065b1411/\">photo</a> by <a href=\"https://wordpress.org/photos/author/codente/\">Jamie VanRaalte</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.\n\n\n\n<a href=\"https://wordpress.org/photos/photo/16665b31b8/\"><img width=\"1024\" height=\"768\" src=\"https://heropress.com/wp-content/uploads/2024/01/16665b31b8e5e4fe6.56360090-1024x768.jpg\" alt=\"Local fish awaiting to be fried.\" class=\"wp-image-6479\" /></a><a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/16665b31b8/\">photo</a> by <a href=\"https://wordpress.org/photos/author/quizzycal/\">quizzycal</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.\n\n\n\n<a href=\"https://heropress.com/wp-content/uploads/2024/01/29465b1287d1ec979.23867727-2048x1536-1.jpg\"><img width=\"1024\" height=\"768\" src=\"https://heropress.com/wp-content/uploads/2024/01/29465b1287d1ec979.23867727-2048x1536-1-1024x768.jpg\" alt=\"Snow piled on picnic tables outside a restaurant.\" class=\"wp-image-6477\" /></a><a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/29465b1287/\">photo</a> by <a href=\"https://wordpress.org/photos/author/topher1kenobe/\">Topher</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.\n\n\n\n<a href=\"https://wordpress.org/photos/photo/70765b2c58/\"><img width=\"683\" height=\"1024\" src=\"https://heropress.com/wp-content/uploads/2024/01/70765b2c58cc3a856.87499092-683x1024.jpeg\" alt=\"A snow man sculpture. From Belvedere Palace, Vienna.\" class=\"wp-image-6480\" /></a><a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/70765b2c58/\">photo</a> by <a href=\"https://wordpress.org/photos/author/mbigul/\">Bigul Malayi</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.\n\n\n\n\n<p>Be sure to check out the <a href=\"https://wordpress.org/photos/\">hundreds of other great photos</a>!</p>\n</div></div>\n\n</div></div>\n\n\n<p></p>\n\n\n\n<p>The header photo for this post is a <a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/165659692d/\">photo</a> by <a href=\"https://wordpress.org/photos/author/mahfuznafi/\">mahfuznafi</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.</p>\n\n\n\n\n\n\n<p>That’s it for this week! If you’d like to get this post in your email every week, <a href=\"https://heropressnetwork.com/newsletter\">make sure you sign up</a>!</p>\n\n<p>The post <a href=\"https://heropress.com/changing-wordpress-core-by-four-characters/\">Changing WordPress Core By Four Characters</a> appeared first on <a href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 26 Jan 2024 17:42:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"Do The Woo Community: Do the Woo is an Official Media Partner at CloudFest 2024\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=78954\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://dothewoo.io/do-the-woo-is-an-official-media-partner-and-cloudfest/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:404:\"<p>Do the Woo will be covering both the hackathon and the conference during CloudFest 2024 at Europa-Park in Germany.</p>\n<p>>> The post <a href=\"https://dothewoo.io/do-the-woo-is-an-official-media-partner-and-cloudfest/\">Do the Woo is an Official Media Partner at CloudFest 2024</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a> .</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 26 Jan 2024 11:36:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"Do The Woo Community: Woo Feature Request Board and WooCommerce Plugins for Sale\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=78945\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://dothewoo.io/woo-feature-request-board-and-woo-plugins-for-sale/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:427:\"<p>In WooBits I amplify a hidden feature request board on Woo.com and 5 WooCommerce premium plugins for sale by our host Katie Keith at Barn2.</p>\n<p>>> The post <a href=\"https://dothewoo.io/woo-feature-request-board-and-woo-plugins-for-sale/\">Woo Feature Request Board and WooCommerce Plugins for Sale</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a> .</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 26 Jan 2024 08:46:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"Do The Woo Community: The Importance of Product Testing in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=78926\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://dothewoo.io/importance-of-product-testing-in-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:390:\"<p>WordPress contributors Pooja, Brian and Anand discuss how product testing is crucial and the learning process behind it. </p>\n<p>>> The post <a href=\"https://dothewoo.io/importance-of-product-testing-in-wordpress/\">The Importance of Product Testing in WordPress</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a> .</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 25 Jan 2024 08:33:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"BuddyPress: BP Classic 1.3.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=332939\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://buddypress.org/2024/01/bp-classic-1-3-0/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2102:\"<p>Dear end users & site owners,</p>\n\n\n\n<p>Please note <a href=\"https://downloads.wordpress.org/plugin/bp-classic.1.3.0.zip\">BP Classic 1.3.0</a> is now available for upgrade/download. 1.3.0 is a maintenance release of the BuddyPress backwards compatibility <a href=\"https://buddypress.org/2023/07/bp-classic-1-0-0/\">Add-on</a> helping you to stay <em>classic</em> so that you can carry on:</p>\n\n\n\n<ul>\n<li>enjoying 3rd party BP plugins / themes that are not ready yet for the <strong>modern</strong> BuddyPress (12.0.0 & up);</li>\n\n\n\n<li>and / or using the deprecated BuddyPress Legacy widgets;</li>\n\n\n\n<li>and / or using the deprecated BP Default theme.</li>\n</ul>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">What about 1.3.0 changes?</h2>\n\n\n\n<p>4 issues have been fixed:</p>\n\n\n\n<ul>\n<li>Switch to BP root blog when migrating directories if necessary (See <a href=\"https://github.com/buddypress/bp-classic/pull/33\">#33</a>).</li>\n\n\n\n<li>Make sure BP Tooltips are used in Legacy widgets (See <a href=\"https://github.com/buddypress/bp-classic/issues/35\">#35</a> & <a href=\"https://github.com/buddypress/bp-classic/issues/39\">#39</a>).</li>\n\n\n\n<li>Use a npm script to get BP Default (See <a href=\"https://github.com/buddypress/bp-classic/issues/37\">#37</a>).</li>\n\n\n\n<li>Improve how we check BP Nouveau is the current BP Template Pack in use (See <a href=\"https://github.com/buddypress/bp-classic/issues/41\">#41</a>)</li>\n</ul>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Please upgrade!</h2>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-1 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://wordpress.org/plugins/bp-classic/\">BP Classic</a></blockquote>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 24 Jan 2024 19:52:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Mathieu Viet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:110:\"WPTavern: #107 – Michelle Frechette on Advocating for Accessibility and Diversity in the WordPress Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=152560\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:124:\"https://wptavern.com/podcast/107-michelle-frechette-on-advocating-for-accessibility-and-diversity-in-the-wordpress-community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:59972:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name. Is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox has a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, advocating for accessibility and diversity in the WordPress community.</p>\n\n\n\n<p>If you’d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to WPTavern.com forward slash feed forward slash podcast. And you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you’d like us to feature on the podcast, I’m keen to hear from you, and hopefully get you, or your idea, featured on the show. Head to WPTavern.com forward slash contact forward slash jukebox, and use the form there.</p>\n\n\n\n<p>So on the podcast today we have Michelle Frechette.</p>\n\n\n\n<p>This is going to sound like a lot, and that’s because it is.</p>\n\n\n\n<p>Michelle Frechette is the director of community engagement for StellarWP at Liquid Web. She was called the busiest woman in WordPress by Matt Mullenweg at WordCamp US 2022. She is also the host of the WP Coffee Talk Podcast, co-founder of Underrepresented in Tech creator of WP Speakers and WP Career Pages, president of the board for Big Orange Heart, Director of Community Relations and contributor at Post Status, co-host of the WP Motivate and Audacity Marketing Podcasts, host of the WP Constellations Podcast, author, and frequent organizer and speaker at WordPress events. Michelle lives outside of Rochester, New York, where she’s an avid nature photographer. You can learn more about Michelle at meetmichelle.online.</p>\n\n\n\n<p>You see, like I said, that’s a lot.</p>\n\n\n\n<p>This willingness to engage in all manner of WordPress projects has given Michelle a voice. And she’s on the podcast today to discuss a topic which is close to her heart. Diversity equity, inclusion and belonging.</p>\n\n\n\n<p>She talks about her experiences at WordPress events, and how they were not always easy for her to attend and be a part of. Michelle uses a scooter to get around, and there have been situations in which she could not enter venues and access all the facilities.</p>\n\n\n\n<p>This frustration made her take action, and, as you’ll hear, effect change at subsequent event she attended.</p>\n\n\n\n<p>It’s not all about events though. Michelle talks about the wider goals of making all aspects of the WordPress community more open and inclusive.</p>\n\n\n\n<p>Being one of the voices promoting this message has not always been easy. And we hear about how Michelle copes with those who disagree with her quest to create change.</p>\n\n\n\n<p>If you’re interested in thinking about inclusivity and how embracing diverse perspectives can impact the WordPress community, this episode is for you.</p>\n\n\n\n<p>If you want to find out more, you can find all of the links in the show notes by heading to WPTavern.com forward slash podcast, where you’ll find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Michelle Frechette.</p>\n\n\n\n<p>I am joined on the podcast by Michelle Frechette. Hello Michelle.</p>\n\n\n\n<p>[00:03:40] <strong>Michelle Frechette:</strong> Hi Nathan, how are you?</p>\n\n\n\n<p>[00:03:41] <strong>Nathan Wrigley:</strong> I am very good. Michelle has been called the busiest woman in WordPress, I think that’s the right wording, by Matt Mullenweg. And if I was to read out her bio, which I’m not going to do, I’ll let Michelle introduce herself. You would have some understanding of why that happened.</p>\n\n\n\n<p>So I’m going to give you an opportunity right at the beginning, you can go as deep as you like, Michelle. Give us your bio, give us your story about your relationship with WordPress, and the different projects that you are in, before we begin our conversation.</p>\n\n\n\n<p>[00:04:09] <strong>Michelle Frechette:</strong> So my day job, I always feel like a superhero when I say that. By day I am the Director of Community Engagement for StellarWP, and all of our plugins and themes, that are part of that company at Liquid Web. And my external projects though, are the ones that I think you are more interested in talking about today, perhaps.</p>\n\n\n\n<p>Which are things like WP Career Pages, WP Speakers, and underrepresentedintech.com. So a lot of the side projects that I do, and the things that I do within the WordPress community, really are community oriented projects that are to help others find their footing and move forward in the work that they want to do within WordPress, and within the WordPress community. So I really enjoy doing those kinds of things.</p>\n\n\n\n<p>[00:04:52] <strong>Nathan Wrigley:</strong> How did you discover WordPress?</p>\n\n\n\n<p>[00:04:55] <strong>Michelle Frechette:</strong> Oh, that’s a good story actually. It has to do with spaghetti. So actually, one of my best friends and I, we had started a nonprofit together. I was working at a massage school, as the director of the massage school. She was a massage therapist, and graduate of the program. And she came to me and she said, after a thousand hours of working in this program, you graduate, you take an exam, and then you’re just on your own spinning in the wind. Because you really have no idea how to build a business, how to get clientele, all of these things. You know how to do massage, but that’s about it.</p>\n\n\n\n<p>And so we started a nonprofit to help massage therapists actually have careers. So we did classes, we had, you know, meetings. We did all of these different things, special education and continuing education, those kinds of things. And so we decided we needed a website, and her husband was a WordPress developer.</p>\n\n\n\n<p>So he created this beautiful website for us. And so we started sending him content. And he’s like, hold up ladies, no. These are your logins, you log in and you put your content in. I built you the frame. Have fun. I was terrified. I like logged in and I thought, what button am I going to press that’s going to make the whole thing come crashing down? And I’m going to have to say to him, I broke this site.</p>\n\n\n\n<p>But of course that doesn’t happen really. So I remember putting information on the homepage, hitting update, and then quickly opening a new tab to see what happened, right? And the fact that there was all of these words that I just wrote, out there for the whole world to see. Nobody saw it, because nobody knew about the site at that particular moment. But the idea that they could, that somebody in Europe could open up this website, and see that I had put words out into the universe, was incredibly intoxicating.</p>\n\n\n\n<p>And so I started doing more and more with that site. I decided I could do this for a living, or at least for a side project. And so I contacted him and I said, okay, I understand how to use WordPress, and I understand how to buy a domain. What I don’t understand is, how do I have hosting in one spot and a domain in the other, and actually put those two things together so that I have a domain on the web?</p>\n\n\n\n<p>He said, Christine’s working almost every night this week, if you come over and make spaghetti for the kids, because they had four kids, I will show you how to do WordPress. And so I went over there, the kids helped me. We made spaghetti, all of the things that go with the dinner like that. The kids cleaned up dinner. We sat down at his dining room table, opened up, and he showed me how to buy a domain, how to buy hosting, and then how to put WordPress on that hosting.</p>\n\n\n\n<p>I wish I still had it. I had a little blue piece of paper that had four steps. The third step I remember was, change the salt keys. We don’t really do any of that anymore, right. But I remember doing that. And so from that, I started building websites for other people. I left higher education at some point and said, I think I could do this as a full-time job. Hung a shingle, figuratively. And within a few weeks I had so many clients that I was doing marketing for, and building websites for. Yeah, it’s kind of like the rest is history.</p>\n\n\n\n<p>[00:07:46] <strong>Nathan Wrigley:</strong> That’s absolutely fascinating. The thing that I’ve noticed about you, apart from the fact that you’ve built websites, is you’re heavily, heavily involved in the WordPress community. And it can be quite a jump, going from WordPress user to WordPress community member. In fact, I’d go as far as saying that, you know, most people that have contact with WordPress, probably have absolutely no idea that there is a community of any description at all.</p>\n\n\n\n<p>So how did that happen? How did it become such an integral part your life? How did you discover the community, events and so on? And how did it become the fulcrum of so much in your life?</p>\n\n\n\n<p>[00:08:20] <strong>Michelle Frechette:</strong> Same person. So, you know, shout out to Christine’s husband, Rob. But he said, hey, you know, we have this meetup in Rochester for WordPress users. And I said, okay. He said, well, this is the next one, this is where it is. And I showed up to that meetup. It was in a darkened room, because they had a slide projector, you know, overhead going so they could show what’s going on with this website.</p>\n\n\n\n<p>The topic that day was Digital Ocean. I had no idea what was happening. And then they showed some CSS, and I was like CS what? And so I was the only woman, in a dark room filled with men, talking about things I had no concept of. And it took me two years to go back.</p>\n\n\n\n<p>After two years, he had also said, look, you got to look at this thing called WordCamps. And so I went to WordCamp Buffalo, and I literally sat there all day learning from people whose names I had heard of but had never been, you know, in their presence. And thought for $25, I think at that time it was $20, I just got so much information, and lunch. You know, it was amazing. And so I thought that’s pretty cool.</p>\n\n\n\n<p>And so the next year, Rob said, I can’t, first of all, he was organising meetups on a whim. Hey, we haven’t had one in a while, is everybody free next Tuesday? My brain can’t operate that way. It’s like, I need structure. So when he said, I can’t run this anymore, does anybody want to step in? I was like, me, I’ll do it, I’ll do it.</p>\n\n\n\n<p>And so we have regular meetups, at the same time every month. Same day, every month. And things got a little organised that way. I went to WordCamp US, and said to Andrea Middleton at the time, yeah, maybe someday we’ll have a Word camp in Rochester. And she said, why not this year? And so I was like, okay. So we had the first WordCamp Rochester.</p>\n\n\n\n<p>I was speaking at that time at different WordCamps all over New York and Canada, actually, eastern part of Canada. And things just kind of started to snowball from there, I guess, where I got asked to speak in more places. My name started to be recognised here and there, and I’m not a developer, so I was constantly surprised that people wanted to hear what I had to say. But that’s where I really started to learn that the majority of our community are WordPress users, not necessarily developers.</p>\n\n\n\n<p>And that it takes everybody in our ecosystem to make WordPress the product that it is today, and that you can be a marketer and contribute to WordPress. You can be an, you know, a community person, contribute to WordPress, and that it really takes everybody. If it was just software, without the rest of us, it would not be nearly what we are today as WordPress, and what we know as WordPress. So, yeah, I don’t know if I answered question.</p>\n\n\n\n<p>[00:10:46] <strong>Nathan Wrigley:</strong> No, that’s really interesting. There’s an awful lot that’s gone on. And you’ve obviously, right from the get go of finding WordPress decided that you wanted to, well, you had that 2 year hiatus, but after that you were in with both feet.</p>\n\n\n\n<p>More recently, I think it’s fair to say that there are some areas of the WordPress community that you’ve taken on as, well, crusade is the wrong word, but you’ve got issues which you think are important. And you’ve made them the focus and the fulcrum of what you do. And we’re going to get into some of these today.</p>\n\n\n\n<p>So let’s, first of all, just introduce the acronym under discussion a lot today, and it’s the acronym DEIB. It may very well be that people have no idea what that means. So first of all, can we unpick that? What do those letters stand for, and how does it in any way go with WordPress and community, and all of that?</p>\n\n\n\n<p>[00:11:33] <strong>Michelle Frechette:</strong> So DEIB, the acronym itself stands for diversity, equity, inclusion and belonging. And so the idea is that there are entire groups of underrepresented folks in any organisation, in any community. And those are going to be the people that are either minority groups of some sort or another, whether it’s racial, ethnic minority, whether it’s ability minority, whether it’s age.</p>\n\n\n\n<p>There’s so many different ways that somebody can be in an underrepresented group, the LGBTQ+ community for example. And so, what DEIB activities try to do is kind of level the play field a little bit, and make sure that everybody has access to whatever the community is. So in our case, of course, WordPress.</p>\n\n\n\n<p>And not just access to WordPress, anybody can download WordPress, as long as you’re in a country that doesn’t restrict access. Of course, we know that that does exist too. But it’s more than just having access to the software, it’s having access to representation within the community.</p>\n\n\n\n<p>And so what we do at Underrepresented in Tech, what I’ve done with some of the other projects that I do, is really seek to make sure that everybody has an opportunity to be heard. Have a voice in the community. And see others like themselves on stages, in podcasts, writing for blogs, and CEO or C-suite positions, things like that.</p>\n\n\n\n<p>So we actually have a better community when it isn’t just one homogeneous group. I don’t know why that never rolls off my tongue right. But we don’t just have one group of people. In our case, you know, white, straight, males, who are running everything.</p>\n\n\n\n<p>It’s important, if we are going to have truly the best product that we could ever have, that different voices, different perspectives, different experiences help shape what that looks like going forward. And so DEIB really does, the DEIB movements and the things that we can do for that, is super important in order for us to have the best product ever.</p>\n\n\n\n<p>A lot of times you’ll hear it referred to just as DEI. A lot of companies have DEI. But the B part of it, that belonging part of it, that brings it from tokenisation to actually inclusion. That inclusive part of it is so important.</p>\n\n\n\n<p>It’s not just enough that a CEO decides that they have a black person on the cover of their website, or on the cover of their brochure, and things like that to show, hey, look at us, we’re with it. We know what this is all about. Anybody can use a stock photo, but what do you really do? How are you really including people and how are you celebrating differences? That’s what’s important.</p>\n\n\n\n<p>[00:13:52] <strong>Nathan Wrigley:</strong> I don’t know what your experience is outside of WordPress in the recent past, but do you feel, do you have an intuition that the WordPress community is actually quite open to these kind of discussions? Do you sense that there’s an acceptance that this is an issue, which needs to be air and talked about?</p>\n\n\n\n<p>Because I can well imagine that in any community, there’s going to be people who think, well, you know what, the core thing is, for example, the code. That’s the thing that counts, so that’s what we should all concentrate on, and all these other things are not for me to worry about, and we don’t need to worry about them.</p>\n\n\n\n<p>I have this intuition that WordPress might be ahead of the curve on these kind of things, and addressing these issues, but, what do you think?</p>\n\n\n\n<p>[00:14:27] <strong>Michelle Frechette:</strong> I think it’s grown over the last few years. So few years back, we had the first, what was originally called the all women’s release squad. And then it was the all women non-binary release. And at that point in time, lots of people got behind it. It was a wonderful thing.</p>\n\n\n\n<p>But there’s always a faction of people who grumble and say it’s not necessary. I think it was Joost de Valk posted in the Advanced WordPress Facebook Group, how exciting it was that this was all happening. And I think by the time they closed that thread, there were over 300 responses to that one post. The majority of which were negative, and then replies to those negative responses.</p>\n\n\n\n<p>And this was what, three years ago? It wasn’t that long ago. And so, to be able to look at that and say, wow, that many people, not just men, but majority men, were against having a release squad that was all women and non-binary folks. Saying that it couldn’t possibly be the best release that it ever could be, because men weren’t involved.</p>\n\n\n\n<p>Assuming that, just because it was women and non-binary folks, that it would not be the best that it could be. And that’s just, that’s just rubbish, to use a British term. It’s rubbish. There are women and non-binary people, who can absolutely code as good as any man, and we can lead, we can do other things.</p>\n\n\n\n<p>And so I think that that really was, perhaps not the beginning, but that was that snowball starting to get some more traction, and build bigger as we came down that hill. Because we had champions behind that, like Josepha, because Matt was behind that kind of movement as well.</p>\n\n\n\n<p>After that, and because my voice started to grow within our community, people would start to approach me and Ali Nimmons and say, we really do want to have like more diversity at this WordCamp, or at this event. Do you know a black person who would be willing to speak? Do you know a woman who would be willing to speak there?</p>\n\n\n\n<p>And we thought, well, how do we respond to this, right? How do we tell people, well, check with this person, check with that person. And so we started to build a spreadsheet for ourselves, of people that we could recommend. And about 20 people into that spreadsheet, and literally two days after we started it, were like this doesn’t feel right.</p>\n\n\n\n<p>Number one, we don’t know everybody, right? Believe it or not, I don’t know every black person in WordPress. I just don’t. I don’t know every disabled person. I don’t know every woman in WordPress. And so for me to only recommend 20 or 30 people, means that the other people aren’t necessarily getting recommended by me.</p>\n\n\n\n<p>And I understand networking, you know who you know. But we started to talk about the fact that we could build something that people could opt into, and others could search without us have to either gatekeep or be the go-between. And so we built Underrepresented in Tech for that reason. There’s a whole database there.</p>\n\n\n\n<p>If you want to find somebody for your podcast, you’re looking to hire somebody, you can go there. You don’t necessarily know why they’re underrepresented, so you might look at something, you might search WordPress and see what looks like a white male. Which you don’t know if he’s sitting in a wheelchair, because you only see his face, or you don’t see anything. You don’t know if he’s part of the LGBTQ+ community.</p>\n\n\n\n<p>Because it’s not our job to out people with what their disability or their gender is, or their sexual preference and orientation, or their abilities, things like that. So that’s not up to us. We do vet everybody that’s in the database. You have to trust that that person is who they say they are, and that we’ve vetted that.</p>\n\n\n\n<p>But we wanted to give an opportunity for people to be found. That grew into what we started as a vlog. Because we were like, well, let’s be cutting edge. Let’s go back, let’s be retro, let’s have a vlog. Which quickly like, all right, we scrapped that idea, and turned it into a podcast. We have over a hundred episodes, over 10,000 downloads of our podcast, which is Underrepresented in Tech, where we talk about those issues.</p>\n\n\n\n<p>We talk about what it’s like to be an underrepresented person in technology. We sometimes bring in guests, so we get their perspectives as well. But the whole idea is that me as a 50 something year old woman, 55 now, but at the time wasn’t right. 50 something year old woman who has a disability, in tech, and a young black queer woman in tech, we kind of ticked a lot of those boxes, right, of what it means to be underrepresented.</p>\n\n\n\n<p>And so we have perspectives, and we have ways that we can engage with people. But also people started listening, and people started learning. And the things that we write, and the things that we say, sometimes come under incredible scrutiny. But more often than not help inform, and also effect change within organisations, and within the community, to be more inclusive, and to at least understand and be aware of the fact that not everybody experiences the world and the WordPress community in the way that the person listening to it does.</p>\n\n\n\n<p>[00:19:06] <strong>Nathan Wrigley:</strong> I wonder if geography has anything to play here. So there’s a whole raft of things that I want to ask you on back of what you’ve just said, but let’s begin there. So, for example, if I live in your part of the world, so you are in North America. The complexion of countries in North America may very well be different to, I don’t know, for example, South America, or the Middle East, or Australia, you know, pick any part of the world.</p>\n\n\n\n<p>Is there anything in that, or do the proclivities of North America, do they spread across the board? So let’s just take two events. Let’s take Word Camp US and Word Camp Asia. If we were to try to apply criteria, would they be the same criteria in your estimation? Or, does geography in any way play a role in how you would want that event to look, based upon where it is?</p>\n\n\n\n<p>[00:19:55] <strong>Michelle Frechette:</strong> It’s definitely going to play a role, because underrepresentation is going to look different ethnically, within different places. It’s not going to change how many women are included. It’s not going to change the LGBTQ+ acceptance, in a particular community. It’s not going to change ability and disabilities.</p>\n\n\n\n<p>So if I go to an event and nobody at all, there’s very few women on stage. Everybody looks the same. Everybody has the same physical abilities. Then I’m not seeing a lot of diversity there. That’s not to say that people aren’t, right? Sometimes you don’t see diversity. You can’t know that somebody is disabled necessarily, because they can walk. I don’t, but other people do, and still are disabled folks.</p>\n\n\n\n<p>And so, yes, you’re not always going to be able to tell just by looking at the lineup, or looking at the room. And certainly, ethnic inclusion around the world is going to look different. After we started Underrepresented in Tech, Nigel Rogers invited me to speak to his meetup, which was, and I’m never going to remember, I never remember where he is. But he is in one of the African nations.</p>\n\n\n\n<p>And so I get online, I’m talking to this group of, it was all men I believe, all black men. And one of them said, we’re not minorities. And I said, I understand that in your community, you are not minorities. I would be the minority in your community.</p>\n\n\n\n<p>However, globally, if you look at the entire WordPress community globally, yes. If you look at all the people who have contributed to core. If you look at all the people who have been part of release squads. If you look at the stages of all of the WordCamps around the world, you are still the minority.</p>\n\n\n\n<p>Your faces do not have equal representation, in the entire community, and all of the different places. And that’s what we’re striving for, is that when we look at a global level, who is holding power? Who are the people who are being uplifted? And, can we make sure that other people have those opportunities too?</p>\n\n\n\n<p>[00:21:43] <strong>Nathan Wrigley:</strong> Yeah, it’s a difficult tightrope to tread that one, isn’t it? Because obviously if you were to, for example, put on an event in, as you just described, say Africa, or in the center of Europe, the makeup of those communities would be different. And so casting the net wider and saying, well, this is about the world, that’s kind of interesting, isn’t it?</p>\n\n\n\n<p>Because we’re really in the first generation of people that have been able to sort of do that really. Because we’ve got, you know, we’ve got instant communication, and things like that. And so we can have this much bigger perspective.</p>\n\n\n\n<p>Okay, so that’s really interesting. If somebody’s putting an event on, and again, we’ll just take those as an example, let’s say Africa, or Europe, or wherever you know, something different from North America. Is there a correct amount of different things that you need to do, to satisfy these DEIB, well, I think criteria is the wrong word, but recommendations is maybe a better word, I’m not sure?</p>\n\n\n\n<p>In other words, do we have to see in the speaker lineup, okay, there needs to be 4 of this thing, and 8 of this thing, and 12 of this thing and, you get what saying? Does need to be so prescriptive, or is it more of, okay, we’ll try our best? We’ll do what we can, and we’ll accept what comes out the other end.</p>\n\n\n\n<p>[00:22:54] <strong>Michelle Frechette:</strong> There’s a little bit of a combination, that’s kind of a spectrum. And somewhere in the middle of those two things that you just said is what I would love to expect. And part of that is, take a look at the, what you’re doing to recruit. If all you do is put it out, and just say anybody, this is what I’ve been told. It’s out there, anybody can apply. I can’t help it if minorities aren’t applying.</p>\n\n\n\n<p>Well, yes and no, because you can invite people to apply. If traditionally your event has had white faces, and mostly male on stage, do people who are not white faces and mostly male, feel encouraged to apply? Do they feel that’s a space that they’re welcomed in? Do they feel that that’s a space where they have a voice?</p>\n\n\n\n<p>What have you done to make sure that those people feel that they could be included, and not excluded, because of what you historically have had on stage, or historically have had as your outreach, or historically have had as your organising team?</p>\n\n\n\n<p>So if you really do want to make a difference going forward, what can we do? We can invite people to speak. Just because we have always had it as the luck of the draw, doesn’t mean it has to be that way. We can say, I want to make sure that I am inviting people to apply.</p>\n\n\n\n<p>And one of the things that I’ve suggested in the past is, don’t just say, Sarah Smith over here, you have a darker face than Michelle does, we want you to speak. And then hope that she’s going to suggest a topic, or apply with a topic that fits. So what I’ve always said is, we really do want you to speak, I want to make sure you’re in our lineup, can you suggest three topics? And then we can make sure that one of those topics fits within everything else.</p>\n\n\n\n<p>So for example, if everybody wants to talk about SEO, unless it’s an SEO conference, that’s not a good lineup, right? So you need to make sure that the topics work too. But if Sarah Smith says, I could talk about SEO, I can talk about building your public persona, and I can talk about outreach to underrepresented communities.</p>\n\n\n\n<p>You’ve given Sarah three different things, and one of those topics is most likely to be able to be in your speaker sessions, in your topics, without overlapping other people’s topics. So there are definite ways that you can increase your diversity on your stage, by making sure that you’re inviting people to speak, at the very least encouraging.</p>\n\n\n\n<p>[00:24:55] <strong>Nathan Wrigley:</strong> So there is a process of, there’s work to be done basically. If you are, let’s say you are putting on an event as described, in the scenario that you are suggesting, merely saying there’s the form, it’s online, everybody can access that form. That’s possibly not going to be enough because of history, really.</p>\n\n\n\n<p>If you’ve been to a WordPress event as me, then all of the pieces of the jigsaw puzzle kind of fit. I should probably say, if you haven’t seen my face before, I am a white male. And so, you know, if I attend any of these events, there’s really no impediment to anything for me.</p>\n\n\n\n<p>But is what you are saying that, if it’s not a situation where you see people on the stage that look like you, think like you, behave like you, it’s unlikely that you are going to make the effort to go in the first place. And so you need to take steps to redress that balance. And those steps have to be proactive, because it’s not going to happen by accident, given what we’ve got in the past, the history of these things.</p>\n\n\n\n<p>[00:25:55] <strong>Michelle Frechette:</strong> And think about the history of a disabled person. Think about the history of a minority person. Think about the history of women. Not only have we not seen ourselves there, but in many cases, we’ve been discouraged and actively barred from access to those kinds of events.</p>\n\n\n\n<p>So, if as a disabled person, I’ve tried to go someplace, there’s no curb cuts, there’s stairs, there’s escalators. I have to go in through the kitchen to have access to an event. I would be discouraged from attending that event. Would I love to be on stage, yeah. But if I can’t actually get on the stage, what good is it, right?</p>\n\n\n\n<p>And that’s just from the perspective of a disabled person. If I walked into a dark room of a meetup, and I’m the only woman, with 10 men in a darkened room, how does that make me feel welcomed? That doesn’t. Because now I’ve put myself in a position where mothers all over the world say, never put yourself in a dark room with a bunch of men, right?</p>\n\n\n\n<p>So there’s just history that comes along with being in an underrepresented group, that says to us, and whether that’s passed on through oral tradition or, you know, our families have taught us, or it’s just our own experiences in the past. We can sense, by looking at something in the history of something, whether or not we would traditionally be included in that event.</p>\n\n\n\n<p>And we have people like me, who just like try to break those barriers open. Because I have broad shoulders and thick skin. I want to make sure that other people behind me feel welcomed, and have the access to those things. So I’m willing to be the person to suffer the slings and arrows, as Shakespeare would say, to make sure that it’s easier for other people to go through.</p>\n\n\n\n<p>I think of myself as that icebreaker ship, that’s going through, you know, the Arctic, making it possible for other ships to follow through in my path. It’s not easy. And sometimes there are sleepless nights involved with some of those things, because you put yourself out there in a way that says, I need to see access for more people.</p>\n\n\n\n<p>And other people who have traditionally held those positions, aren’t necessarily willing to give them up. And I understand that because power is a powerful thing, and we like being in a position of power, traditionally. And so the idea of seeding some of that power to other people, whether that’s a space on a stage, whether that’s in a boardroom, you know, that you bring people on your board, whatever that looks like. It’s not easy to include people that don’t look like us, and might have other ideas than us.</p>\n\n\n\n<p>But that’s truly how we make a better community, and better products. I use this example all the time when I talk about inclusion. Back in the forties and fifties, they marketed vacuum cleaners to men, by showing pictures of vacuum cleaners with women in their pearls, and there are high heels and beautiful smiles, vacuuming their houses. Do you know how we market vacuum cleaners today? It’s how they work.</p>\n\n\n\n<p>You know, we see a picture, a dog is knocked over a plant, and the Roomba, or somebody else is vacuuming it up. Kids spill Cheerios, let’s cut to a picture of that vacuum cleaner picking up the Cheerios. We talk about what the product does, not how pretty the woman looks using it. Because guess how many women actually want a vacuum cleaner for Christmas? Zero. That should not be a gift.</p>\n\n\n\n<p>And so the idea is, more women started to join boardrooms, and more women started to be marketing and ad people, in the seventies and eighties, and we started to see some of that change. Because traditionally, women are the one now buying those kinds of products for the home. Let’s appeal to her, instead of show a man how happy your wife will be if you bring home a vacuum cleaner.</p>\n\n\n\n<p>The same thing is true in every place, is you bring more people who have different experiences into those decision making processes, and you make a better product or a better service, to appeal for more sales. So it’s just good business. For your bottom line, much less, let’s be inclusive and let’s do the right thing.</p>\n\n\n\n<p>[00:29:27] <strong>Nathan Wrigley:</strong> Do you prefer carrot or stick for this? And, is it necessary to sometimes deploy both. My intuition is that you are going to prefer carrot. But maybe the stick has to come out at various times. And I have seen those, I don’t really know what the right word is, but I’ve seen those miniature battles, if you know what I mean, where people have said one thing, and then there’s been people reacting and saying, we don’t need this, and they’re trying to explain it, and what have you.</p>\n\n\n\n<p>So yeah, carrots or stick? Would you rather that we were able to introduce this idea and everybody came on board? Or, do we have to at some point say, look, nope, this is just what’s going to happen, you’ve got to come along for the ride?</p>\n\n\n\n<p>[00:30:05] <strong>Michelle Frechette:</strong> Obviously carrot would be the better thing. If we can show people why inclusion is better, and how they can make their products and services better by bringing in more perspectives, and bringing in more experiences that people have. Those lived experiences are really what enrich the whole product and the whole process.</p>\n\n\n\n<p>Like I said, whether it’s a service or it’s a product. How are people using it? If we only approach things from one perspective, we could only sell to that perspective, plus or minus maybe one standard deviation. But if we can make that bell curve wider instead of narrower, we have an opportunity to do more, and affect good for more people through what it is that we have created.</p>\n\n\n\n<p>In order to do that, we have to understand how more people are using our products and services, or what we intend our products and service to be, so that we can appeal to all of those people.</p>\n\n\n\n<p>[00:30:50] <strong>Nathan Wrigley:</strong> Do you have a sense that during the time that you’ve been in the community, things have changed? Can you, for example, give us an anecdote or a story about something that you know has changed, as a result of something maybe that you said, or somebody else said, which can just deliver the message that, well, everything is not set in stone. Things that were once the way they were can be altered.</p>\n\n\n\n<p>[00:31:09] <strong>Michelle Frechette:</strong> So WordCamp US, the first one after the pandemic had shut everything down, was in San Diego. It was a very small event. They only sold, I think, 650 tickets, including sponsors and speakers. So it was, you know, that’s still a big event, don’t get me wrong, but as a global event, a very, very small.</p>\n\n\n\n<p>I was there with my scooter, and tried to navigate an entire event. And by the end of the second day, I was in tears, because it was so difficult to be there as a disabled person. I got stuck in the bathroom, in the lobby bathroom, not in my hotel room. But in the lobby bathroom, because of the way that the room was built, and the exit was built, and where the trash can was, I couldn’t get close enough to the door to be able to open it, pull it to the side, and then go through the door. I literally had to wait until somebody came through. I would’ve texted somebody, I would’ve called somebody if somebody hadn’t come through, you know, fairly soon.</p>\n\n\n\n<p>But somebody else had to come through that door to let me out. And that’s not, we’d like to be as independent as possible. When you’re a disabled person, you don’t want to have to rely on people to do everything for you. That doesn’t ingratiate you to the community, when you’re constantly begging and asking for assistance.</p>\n\n\n\n<p>But that wasn’t the only problem that I had there. Several of the doors to access buildings didn’t have paddles, so they wouldn’t open themselves. So I had to ask people to help me get in and out of doors. My room, which was tagged as a handicapped accessible room, had a tub that I would’ve had to step over and into, which is dangerous for me. So I wasn’t able to actually take a shower or a bath. I had to, you know, sink bathe for five days.</p>\n\n\n\n<p>And there was just so many things that just were inaccessible for me. And at the end of that, I did talk to people about it, and told them that it was coming. But I wrote an article for Post Status called Five Days Without a Shower. I very unemotionally explained what had happened, and how things were difficult for me. I pointed out what worked, and the people who were very helpful in it. But then I also gave a list of things that I think could be done, looking at future events, to make them more accessible to other people.</p>\n\n\n\n<p>I know that I have a voice in our community. I know that people, you know, I’ve thousands of followers on Twitter, and I speak a lot, and that people know who I am. And so I realised that what I say in the community might be listened to more than people who don’t have that kind of following. And I don’t take that lightly. And I do try to use that for good.</p>\n\n\n\n<p>And so I wrote this article. I gave copies of it to, you know, to Angela Gin, and I sent it to Matt Mullenweg and just, this is the experience, this is what I think we could do better. As a result of that, Wordcamp Asia, which I attended this year, reached out to me and said, we want to make sure, but this is what we’ve put in place and I think that everything is accessible to you. And it was.</p>\n\n\n\n<p>The places that had stairs, they had put temporary ramps, so that I could get to them. The stage I was speaking on, I didn’t have to try to walk up three stairs, they had a ramp there for me. So everything was accessible.</p>\n\n\n\n<p>WordCamp US this year, we had a team specifically for accessibility. You know, Alex was on that team, and he was looking at the accessibility from, no pun intended, looking at the accessibilities from the perspective of blind man.</p>\n\n\n\n<p>But he was looking over the website. He was making sure that there were things in place, that he couldn’t get lost in a space that big if he wasn’t, you know, always having somebody on his side. So we had phone numbers in place where, if he literally couldn’t find his way out, somebody could come to him, and help him navigate.</p>\n\n\n\n<p>We made sure that every place was accessible with wheels. We made sure that people who were neurodivergent, who might need quiet spaces, had the ability to step out and find a space that was just listed as a quiet space. We made sure that there were rooms for nursing mothers, that they could sit and nurse their children, or pump if they needed to. And not have to do that in a bathroom, which is not sanitary.</p>\n\n\n\n<p>That was one of my suggestions, is that we had a person or a committee to look at the venue, to see what needed to change, in order for it to be an accessible event. So that was just one thing. One article that I wrote that was taken seriously, and that there’s a page in the handbook now for WordCamps, to make sure that you’re looking at things like curb cuts, like elevators. That there’s no place that, in a WordCamp, is inaccessible to somebody who can’t walk.</p>\n\n\n\n<p>And so there’s lots of things that I’ve been able to, because I have a voice in this community, put out there, that have then been able to be accommodated. WordCamp Europe was terrified, that because it was old, such an old city, that I would have difficulty.</p>\n\n\n\n<p>But I was in constant contact with Estela Rueda, who made sure that everything that there was, you know, she said, this is where you can go. Some places have stairs, but this is the way to get around that. If you get stuck, here’s my number. Like there was lots of things, there was constant communication, in order to be able to know that not just me, but anybody with, physical disabilities would be accommodated.</p>\n\n\n\n<p>And so, is it easy to put myself out there as the disabled person who needs accommodations all the time? It’s not, right? So nobody likes to say, hey, my legs don’t work. I’m not a perfect person, and I can’t do the things that everybody else does. But by me being able to do that, hopefully means that I’ve, not only opened doors electronically for other folks, but put ramps in place, and given access to people who might not have had access otherwise. And so, yeah, I think there’s things that I’ve been able to say and do that have had an impact, positively, in our community.</p>\n\n\n\n<p>[00:36:13] <strong>Nathan Wrigley:</strong> The curious thing, especially in terms of events, which is what we’ve just been talking about, is it doesn’t lessen the experience for people that don’t require it. You know, if there’s a ramp there, it’s no more difficult for me to use that. And so I think that’s brilliant. That’s such a nice tale of something actually changing, not in a heartbeat, but in a fairly short space of time. And so, well, bravo, firstly for writing the article.</p>\n\n\n\n<p>I guess it does beg the question, do these things get thought about, unless there is somebody like you who has to go through, well, let’s call it the pain or something like that? You know, somebody’s got to go through it, in order to live that experience, so that they can report back on what needs to be fixed.</p>\n\n\n\n<p>Do you sense that there’s still people having to go through pain in the future, or do you think that as a community we are getting better, you know, at a fair pace, so that it’ll be approaching perfect soon? Anything like perfect soon, have we still got a long way to go?</p>\n\n\n\n<p>[00:37:11] <strong>Michelle Frechette:</strong> I think it depends on the location. I think some cities, some countries, it’s not as easy for them to pivot and be as accessible, just because of the history of the city. You know, there are places I said, oh, I’d love to go there. And somebody said, I don’t think you’d be able to. Disabled people in that city have a tremendous difficulty getting around.</p>\n\n\n\n<p>Even in Asia. So, in Thailand, the cars are smaller, so to accommodate, to put me in an Uber, and also my scooter, which does come apart, some of that had to be at my feet and on the seat next to me, because it didn’t all fit in their trunk, for example. And so there are places that it might not be possible.</p>\n\n\n\n<p>Also, like, I was in Phoenix Arizona earlier this year, and I called for an Uber, and I knew exactly what the person looked like, I knew what their car looked like, and I knew what their license plate was because that’s on the app. And this person pulled up, saw me in my scooter and sped away, because they didn’t want to deal with my scooter.</p>\n\n\n\n<p>They canceled it, but they didn’t say, hey, I’m sorry I don’t have room in my trunk. Like they didn’t even communicate with me. They literally just drove away, and that was a terrible experience. And that was here in the United States, where we’re supposedly really accommodating to people with disabilities.</p>\n\n\n\n<p>And so, yeah, it’s not always easy. I don’t think we’re ever going to not have to look at it, and make sure that things are accessible. And I think that there will always be places that are historically more accessible than others.</p>\n\n\n\n<p>They actually, in Athens now you can, with a wheelchair, go up on the Acropolis. I didn’t because my daughter didn’t want to, even though I wanted to. But I was also told that once you get up the top of there, of course it’s just this ruins. And that’s not easy to navigate in wheels either. But they’ve done everything they can, even to make things like the Acropolis accessible.</p>\n\n\n\n<p>And so is everything always going to be accessible? No. There are apartments with only stairs. I will never be able to visit friends who live upstairs, in apartments that have only stairs. But being able to access public spaces, and finding ways to accommodate with temporary ramps, and things like that, I think is super important.</p>\n\n\n\n<p>And I hope that as long as I’m in the community, and I continue to talk about these things, that people will think about them for their events. And make sure that as many people possible can attend.</p>\n\n\n\n<p>[00:39:13] <strong>Nathan Wrigley:</strong> You always seem very jolly, and we would say in the UK, fairly chipper. You know, you’ve got the glass is half full, kind of approach. Or at least that’s the impression that I have. But does this, so we’re going to stray into something maybe personal, you may not wish to reveal this, it’s entirely up to you.</p>\n\n\n\n<p>Do these issues make you angry? Do you get a little bit annoyed on behalf of other people? Is there a bit of you that thinks, this is just not on? You know, it cannot be that events haven’t thought this through. It cannot be that these people aren’t represented. I’m just wondering, what the emotions it stirs in you are.</p>\n\n\n\n<p>[00:39:44] <strong>Michelle Frechette:</strong> I would say frustration more than anger. It’s frustrating to me. Anger would come into place, if people acknowledged it and chose not to act. That’s anger. Not even looking, or not even thinking about it is the frustration. I think, traditionally, if somebody thinks about it, then they will try to be as accommodating as possible.</p>\n\n\n\n<p>But to think about it and then not act, which is to make a deliberate decision not to include others. That’s when anger would come into play. But traditionally, anytime I’ve challenged or I’ve said, hey, have you thought about, most people are like, oh my gosh, I never even thought about that.</p>\n\n\n\n<p>For example, WordCamp Buffalo this year. I was the mentor, I was part of the organising team for that event. And it was in an old school building. And the only way for me to get there was to go in the back of the building, up a little delivery ramp. And, was I angry? No, because I could still get in there. It was an old building that that was the only way to accommodate me, that’s fine.</p>\n\n\n\n<p>If I’m going into a restaurant, I don’t want to come in through the kitchen. To me, that’s anger. They haven’t thought about it. They don’t want to include people in wheelchairs, if there’s no way to get in, when you’re trying to be open to the whole public. There’s ways that you can be accommodating. There’s just lack of understanding, lack of thinking, lack of thought to inclusion, that’s frustration. Deliberately denying access, that’s anger.</p>\n\n\n\n<p>[00:40:59] <strong>Nathan Wrigley:</strong> Are you ever on the receiving end of other people’s frustration and anger? Do the causes that you champion, do sometimes you find that your social media is full of people who disagree with you, and perhaps, maybe disagree as too polite term there? Does it sometimes descend into things that you’d rather didn’t happen? In other words, is it always equanimous, the kind of conversations you have, or does it sometimes get a little bit fraught and frayed?</p>\n\n\n\n<p>[00:41:24] <strong>Michelle Frechette:</strong> It does. A year and a half ago, I think, I wrote an article for a Post Status, called Misogyny In WordPress Is Real. And talked about the fact that women are still denied access, and still undervalued in a lot of places. And, you know, specifically, I pointed to that thread of all those people talking about the all women non-binary release, when Joost had posted about it in Advanced WordPress and Facebook.</p>\n\n\n\n<p>There are other things that I’ve pointed to specifically, some of it tech related, some of it’s specific to WordPress. And the amount of people that attacked me, men, I will say. The number of men who posted replies to that post or comments on that post, completely misogynistic. It’s like, oh, look you’ve proven my point.</p>\n\n\n\n<p>And attacked me openly on, you know, Twitter and things like that. I mean, it irritating, right? But it doesn’t anger me, because I’m like, okay, so you are just set in your misogynistic ways. Block. I will just block you.</p>\n\n\n\n<p>People talk about me all the time. They don’t necessarily say kind things. I can’t own what somebody else thinks of me, that’s on them. So, you know, block them and move on. That’s the best way to be. I could be all angsty and carry it with me in a negative way, but I know that the work that I’m doing in our community, to try to level the playing field, to try to forward inclusion, the DEIB work, means that I’m going to encounter people that don’t agree with me.</p>\n\n\n\n<p>Okay, fine. Move on. I’m going to try to talk to the people who do, who want to learn. If I can educate in a way that helps people learn, and they at least consider, if not actually enact change, I’ve done some good. And if there are people who are absolutely going to stonewall, because they like the way that things are, I can’t move a stonewall. I’m going to move on to the people that I can help. And so those are the kinds of things that I look at.</p>\n\n\n\n<p>And, am I always cheery? No. That is what you’re going to see publicly, of course. But you know, I referenced the fact that, by day two of WordCamp, I was literally bursting into tears, because I was so frustrated by the fact that I couldn’t access things.</p>\n\n\n\n<p>Does it feel good when you get attacked? No, it doesn’t. You know, I challenged WordCamp Europe this past year, because the first couple of, it was three or four I think, announcements of the speaker lineup were less than 20% women.</p>\n\n\n\n<p>It’s always hard to judge ethnicity, and you can never tell by looking at a person that they might not be an ethnic minority. You can’t tell if somebody’s part of the LGBTQ+ community. You don’t know if somebody’s non-binary. I acknowledged all of that, and I said I really hope that we see more of a balance going forward, with the rest of the announcement.</p>\n\n\n\n<p>And that one tweet has almost 30,000 impressions, because people either said, yes, absolutely, we need this, or you don’t understand how it is in Europe, Michelle. It’s not the same as it is in the US. I acknowledge that. But you have women in Europe, right? You do have minorities, you have people of color, you have people with different abilities. You have all of the different things that make up underrepresentation. So to only show us a bunch of white men, really starts to make you wonder, well, what is the rest of the lineup going to look like?</p>\n\n\n\n<p>I say I created controversy, I actually pointed out the controversy. I did not create controversy. The controversy already existed. I was simply the conduit, by which the rest of the world started to notice it. Because we’re so used to seeing so many white men in every lineup, but we need to make sure that that changes.</p>\n\n\n\n<p>And so I had people, I mean, I went to WordCamp Europe. I had people there telling me things like, you don’t understand. I had people sign up on my calendar, just to tell me how wrong I was, and to say that you have a big voice in this community, you need to use it better. And I said, well, I did.</p>\n\n\n\n<p>I’m not always going to be everybody’s favorite person. I actually have a sticker, I will bring one to you next time I see you, Nathan, that says, I’m not everybody’s cup of tea, and I’m okay with that. Because if you’re going to be a change agent, if you’re going to try to help things be better, there will be people who don’t like what you do.</p>\n\n\n\n<p>There will be people who feel challenged by what you’re doing. And there will be people who just flat out disagree with you. And that’s okay. Those are not the people that I’m going to change. The people that you can actually influence, are the people who want to do better, and don’t realise that they haven’t been to that point.</p>\n\n\n\n<p>And so, if you listen to my words and you think, gosh, I could be more accommodating, I could outreach to people who don’t look like me, and really make the speaker lineup more diverse. If those people have listened to me and enact a change, and really think about the way they do things, then I can say my work is done. Or at least you know, part of my work is done, and I will continue to fight the good fight.</p>\n\n\n\n<p>[00:45:46] <strong>Nathan Wrigley:</strong> That’s the perfect segue then to probably round it off. And if I ask you, Michelle, where can people contact you? Should they have those intuitions, and they do wish to speak to you. Where’s the best place? What’s the selection of things that you, are you most frequently using?</p>\n\n\n\n<p>[00:46:01] <strong>Michelle Frechette:</strong> Yeah. So I am still on, I like to call Twitter, but X. You can’t change your name on there, once you have so many links back to you. Yes, you physically can change your name, but I’m still @michelleames on Twitter and X. But if you go to meetmichelle.online, you will find access to all of the different things that I’ve done, my projects, WP Speakers, Underrepresented in Tech, WP Career Pages. All of those things that I’ve done for the community, to try to help people find jobs, help people find speakers, and just make the world a little bit more balanced.</p>\n\n\n\n<p>[00:46:31] <strong>Nathan Wrigley:</strong> I will make sure that every single one of those is listed in the show notes. So if you head to WP Tavern, at the very least, you’ll know that they are there. Michelle Frechette, thank you so much for chatting to me on the podcast today. I really appreciate it.</p>\n\n\n\n<p>[00:46:44] <strong>Michelle Frechette:</strong> It was my pleasure. Thank you for having me.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://meetmichelle.online/\">Michelle Frechette</a>.</p>\n\n\n\n<p>This is going to sound like a lot, and that’s because it is.</p>\n\n\n\n<p>Michelle Frechette is the Director of Community Engagement for StellarWP at Liquid Web. She was called “The busiest woman in WordPress,” by Matt Mullenweg at WCUS 2022. She is also the host of the WP Coffee Talk podcast, co-founder of Underrepresented in Tech, creator of WP Speakers and WP Career Pages, president of the board for Big Orange Heart, Director of Community Relations and contributor at Post Status, co-host of the WP Motivate and Audacity Marketing podcasts, host of the WP Constellations podcast, author, and a frequent organiser and speaker at WordPress events. Michelle lives outside of Rochester, NY where she’s an avid nature photographer. You can learn more about Michelle at meetmichelle.online.</p>\n\n\n\n<p>You see, like I said, that’s a lot.</p>\n\n\n\n<p>This willingness to engage in all manner of WordPress projects has given Michelle a voice, and she’s on the podcast today to discuss a topic which is close to her heart, diversity, equity, inclusion, and belonging.</p>\n\n\n\n<p>She talks about her experiences at WordPress events, and how they were not always easy for her to attend and be a part of. Michelle uses a scooter to get around and there have been situations in which she could not enter venues and access all the facilities. This frustration made her take action and, as you’ll hear, effect change at subsequent events she attended.</p>\n\n\n\n<p>It’s not all about events though. Michelle talks about the wider goals of making all aspects of the WordPress community more opening and inclusive.</p>\n\n\n\n<p>Being one of the voices promoting this message has not always been easy, and we hear about how Michelle copes with those who disagree with her quest to create change.</p>\n\n\n\n<p>If you’re interested in thinking about inclusivity, and how embracing diverse perspectives can impact the WordPress community, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p><a href=\"https://stellarwp.com/\">StellarWP</a></p>\n\n\n\n<p><a href=\"https://www.liquidweb.com/\">Liquid Web</a></p>\n\n\n\n<p><a href=\"https://wpcareerpages.com/\">WP Career Pages</a></p>\n\n\n\n<p><a href=\"https://wpspeakers.com/\">WP Speakers</a></p>\n\n\n\n<p><a href=\"https://www.underrepresentedintech.com/\">Underrepresented in Tech</a></p>\n\n\n\n<p><a href=\"https://poststatus.com/5-days-without-a-shower/\">Five Days Without a Shower</a> article</p>\n\n\n\n<p><a href=\"https://poststatus.com/misogyny-in-wordpress-is-real/\">Misogyny in WordPress is Real</a> article</p>\n\n\n\n<p><a href=\"https://twitter.com/michelleames\">Michelle on Twitter</a></p>\n\n\n\n<p><a href=\"https://meetmichelle.online/\">Michelle’s website</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 24 Jan 2024 15:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"Do The Woo Community: Content Strategies for Woo and WordPress Businesses with Adam and Emma\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=78922\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://dothewoo.io/content-strategies-for-woo-and-wordpress-businesses/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:438:\"<p>Adam and Emma talking about all things content when it comes to building brand recognition and trust for your Woo and WordPress business.</p>\n<p>>> The post <a href=\"https://dothewoo.io/content-strategies-for-woo-and-wordpress-businesses/\">Content Strategies for Woo and WordPress Businesses with Adam and Emma</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a> .</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 24 Jan 2024 10:30:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 14 Feb 2024 13:21:27 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:13:\"last-modified\";s:29:\"Wed, 14 Feb 2024 13:00:30 GMT\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:4:\"gzip\";s:7:\"alt-svc\";s:19:\"h3=\":443\"; ma=86400\";s:4:\"x-nc\";s:9:\"HIT ord 1\";}}s:5:\"build\";s:14:\"20211220193300\";}','no'),(444,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1707960088','no'),(445,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1707916888','no'),(446,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1707960088','no'),(447,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2024/02/wordpress-6-5-beta-1/\'>WordPress 6.5 Beta 1</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2024/02/people-of-wordpress-sunita-rai/\'>People of WordPress: Sunita Rai</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://dothewoo.io/gatherpress-organizing-wordpress-events/\'>Do The Woo Community: GatherPress, Organizing WordPress Events with Mike, Mervin and Patricia</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2024/02/wordpress-6-5-beta-1/\'>WordPress.org blog: WordPress 6.5 Beta 1</a></li><li><a class=\'rsswidget\' href=\'https://dothewoo.io/learn-wordpress-product-marketing-deeply/\'>Do The Woo Community: Learn WordPress Product Marketing Deeply with Noel Tock</a></li></ul></div>','no'),(451,'_site_transient_timeout_theme_roots','1707921542','no'),(452,'_site_transient_theme_roots','a:2:{s:15:\"twentytwentytwo\";s:7:\"/themes\";s:8:\"webspace\";s:7:\"/themes\";}','no'),(453,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1707919742;s:8:\"response\";a:4:{s:30:\"advanced-custom-fields/acf.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:36:\"w.org/plugins/advanced-custom-fields\";s:4:\"slug\";s:22:\"advanced-custom-fields\";s:6:\"plugin\";s:30:\"advanced-custom-fields/acf.php\";s:11:\"new_version\";s:7:\"6.2.6.1\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/advanced-custom-fields/\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/plugin/advanced-custom-fields.6.2.6.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/advanced-custom-fields/assets/icon-256x256.png?rev=1082746\";s:2:\"1x\";s:75:\"https://ps.w.org/advanced-custom-fields/assets/icon-128x128.png?rev=1082746\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/advanced-custom-fields/assets/banner-1544x500.jpg?rev=2892919\";s:2:\"1x\";s:77:\"https://ps.w.org/advanced-custom-fields/assets/banner-772x250.jpg?rev=2892919\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";s:6:\"tested\";s:5:\"6.4.3\";s:12:\"requires_php\";s:3:\"7.0\";}s:25:\"wp-graphql/wp-graphql.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:24:\"w.org/plugins/wp-graphql\";s:4:\"slug\";s:10:\"wp-graphql\";s:6:\"plugin\";s:25:\"wp-graphql/wp-graphql.php\";s:11:\"new_version\";s:6:\"1.21.0\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/wp-graphql/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/wp-graphql.1.21.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/wp-graphql/assets/icon-256x256.png?rev=2482884\";s:2:\"1x\";s:63:\"https://ps.w.org/wp-graphql/assets/icon-128x128.png?rev=2482884\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/wp-graphql/assets/banner-1544x500.png?rev=2482884\";s:2:\"1x\";s:65:\"https://ps.w.org/wp-graphql/assets/banner-772x250.png?rev=2482884\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.4.3\";s:12:\"requires_php\";s:3:\"7.1\";}s:31:\"wpgraphql-acf/wpgraphql-acf.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:27:\"w.org/plugins/wpgraphql-acf\";s:4:\"slug\";s:13:\"wpgraphql-acf\";s:6:\"plugin\";s:31:\"wpgraphql-acf/wpgraphql-acf.php\";s:11:\"new_version\";s:5:\"2.1.1\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wpgraphql-acf/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/wpgraphql-acf.2.1.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/wpgraphql-acf/assets/icon-256x256.png?rev=3012214\";s:2:\"1x\";s:66:\"https://ps.w.org/wpgraphql-acf/assets/icon-128x128.png?rev=3012214\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/wpgraphql-acf/assets/banner-1544x500.png?rev=3012214\";s:2:\"1x\";s:68:\"https://ps.w.org/wpgraphql-acf/assets/banner-772x250.png?rev=3012214\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.9\";s:6:\"tested\";s:5:\"6.4.3\";s:12:\"requires_php\";s:3:\"7.3\";}s:34:\"advanced-custom-fields-pro/acf.php\";O:8:\"stdClass\":11:{s:4:\"slug\";s:26:\"advanced-custom-fields-pro\";s:6:\"plugin\";s:34:\"advanced-custom-fields-pro/acf.php\";s:11:\"new_version\";s:7:\"6.2.6.1\";s:3:\"url\";s:36:\"https://www.advancedcustomfields.com\";s:6:\"tested\";s:5:\"6.4.3\";s:7:\"package\";s:0:\"\";s:5:\"icons\";a:1:{s:7:\"default\";s:63:\"https://ps.w.org/advanced-custom-fields/assets/icon-256x256.png\";}s:7:\"banners\";a:2:{s:3:\"low\";s:77:\"https://ps.w.org/advanced-custom-fields/assets/banner-772x250.jpg?rev=1729102\";s:4:\"high\";s:78:\"https://ps.w.org/advanced-custom-fields/assets/banner-1544x500.jpg?rev=1729099\";}s:8:\"requires\";s:3:\"5.8\";s:12:\"requires_php\";s:3:\"7.0\";s:12:\"release_date\";s:8:\"20240207\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:0:{}s:7:\"checked\";a:4:{s:30:\"advanced-custom-fields/acf.php\";s:6:\"5.10.2\";s:34:\"advanced-custom-fields-pro/acf.php\";s:6:\"5.10.1\";s:25:\"wp-graphql/wp-graphql.php\";s:6:\"1.20.0\";s:31:\"wpgraphql-acf/wpgraphql-acf.php\";s:5:\"2.1.0\";}}','no');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_postmeta`
--
DROP TABLE IF EXISTS `wp_postmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
SET character_set_client = utf8mb4 ;
CREATE TABLE `wp_postmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci,
PRIMARY KEY (`meta_id`),
KEY `post_id` (`post_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=1085 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_postmeta`
--
LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (2,3,'_wp_page_template','default'),(9,9,'_edit_lock','1707394974:1'),(18,38,'_edit_last','1'),(19,38,'_edit_lock','1707233295:1'),(20,39,'_edit_last','1'),(21,39,'_edit_lock','1707233262:1'),(24,41,'_menu_item_type','post_type'),(25,41,'_menu_item_menu_item_parent','0'),(26,41,'_menu_item_object_id','9'),(27,41,'_menu_item_object','page'),(28,41,'_menu_item_target',''),(29,41,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30,41,'_menu_item_xfn',''),(31,41,'_menu_item_url',''),(33,44,'_edit_lock','1703344553:1'),(37,47,'_menu_item_type','post_type'),(38,47,'_menu_item_menu_item_parent','0'),(39,47,'_menu_item_object_id','44'),(40,47,'_menu_item_object','page'),(41,47,'_menu_item_target',''),(42,47,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43,47,'_menu_item_xfn',''),(44,47,'_menu_item_url',''),(46,48,'_menu_item_type','custom'),(47,48,'_menu_item_menu_item_parent','0'),(48,48,'_menu_item_object_id','48'),(49,48,'_menu_item_object','custom'),(50,48,'_menu_item_target',''),(51,48,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(52,48,'_menu_item_xfn',''),(53,48,'_menu_item_url','#'),(116,57,'_edit_last','1'),(117,57,'_edit_lock','1707233253:1'),(118,9,'_edit_last','1'),(119,9,'hero_title','Web Space is creative development studio with a goal to conceptualise & execute creative solutions that meet the unique needs and objectives, helping effectively communicate messages and achieve their creative goals.'),(120,9,'_hero_title','field_6586ec932087b'),(121,9,'what_we_do','2'),(122,9,'_what_we_do','field_6586ecfa0bb25'),(123,9,'showcase_title','Some of the things we’ve brought our minds too.'),(124,9,'_showcase_title','field_6586ed84947a4'),(125,9,'skills_title','Our skills & proficiencies to build to best experience to suit your needs'),(126,9,'_skills_title','field_6586edb48e72b'),(127,9,'approach','4'),(128,9,'_approach','field_6586ee3b00320'),(129,11,'hero_title','Web Space is creative development studio with a goal to conceptualise & execute creative solutions that meet the unique needs and objectives, helping effectively communicate messages and achieve their creative goals.'),(130,11,'_hero_title','field_6586ec932087b'),(131,11,'what_we_do',''),(132,11,'_what_we_do','field_6586ecfa0bb25'),(133,11,'showcase_title',''),(134,11,'_showcase_title','field_6586ed84947a4'),(135,11,'skills_title',''),(136,11,'_skills_title','field_6586edb48e72b'),(137,11,'approach',''),(138,11,'_approach','field_6586ee3b00320'),(139,9,'what_we_do_0_title','Strategy'),(140,9,'_what_we_do_0_title','field_65c263b3a6a4b'),(141,9,'what_we_do_0_service_pills_0_service','Infrastructure'),(142,9,'_what_we_do_0_service_pills_0_service','field_6586ed2b0bb28'),(143,9,'what_we_do_0_service_pills_1_service','Data management'),(144,9,'_what_we_do_0_service_pills_1_service','field_6586ed2b0bb28'),(145,9,'what_we_do_0_service_pills_2_service','Server Strategy'),(146,9,'_what_we_do_0_service_pills_2_service','field_6586ed2b0bb28'),(147,9,'what_we_do_0_service_pills','3'),(148,9,'_what_we_do_0_service_pills','field_6586ed150bb27'),(149,9,'what_we_do_1_title','Strategy'),(150,9,'_what_we_do_1_title','field_65c263b3a6a4b'),(151,9,'what_we_do_1_service_pills_0_service','Infrastructure'),(152,9,'_what_we_do_1_service_pills_0_service','field_6586ed2b0bb28'),(153,9,'what_we_do_1_service_pills_1_service','Data management'),(154,9,'_what_we_do_1_service_pills_1_service','field_6586ed2b0bb28'),(155,9,'what_we_do_1_service_pills_2_service','Server Strategy'),(156,9,'_what_we_do_1_service_pills_2_service','field_6586ed2b0bb28'),(157,9,'what_we_do_1_service_pills','3'),(158,9,'_what_we_do_1_service_pills','field_6586ed150bb27'),(159,9,'what_we_do_2_title','Technical collaboration'),(160,9,'_what_we_do_2_title','field_6586ed0c0bb26'),(161,9,'what_we_do_2_service_pills_0_service','Infrastructure'),(162,9,'_what_we_do_2_service_pills_0_service','field_6586ed2b0bb28'),(163,9,'what_we_do_2_service_pills_1_service','Data management'),(164,9,'_what_we_do_2_service_pills_1_service','field_6586ed2b0bb28'),(165,9,'what_we_do_2_service_pills_2_service','Server Strategy'),(166,9,'_what_we_do_2_service_pills_2_service','field_6586ed2b0bb28'),(167,9,'what_we_do_2_service_pills','3'),(168,9,'_what_we_do_2_service_pills','field_6586ed150bb27'),(169,59,'hero_title','Web Space is creative development studio with a goal to conceptualise & execute creative solutions that meet the unique needs and objectives, helping effectively communicate messages and achieve their creative goals.'),(170,59,'_hero_title','field_6586ec932087b'),(171,59,'what_we_do','3'),(172,59,'_what_we_do','field_6586ecfa0bb25'),(173,59,'showcase_title',''),(174,59,'_showcase_title','field_6586ed84947a4'),(175,59,'skills_title',''),(176,59,'_skills_title','field_6586edb48e72b'),(177,59,'approach',''),(178,59,'_approach','field_6586ee3b00320'),(179,59,'what_we_do_0_title','Strategy'),(180,59,'_what_we_do_0_title','field_6586ed0c0bb26'),(181,59,'what_we_do_0_service_pills_0_service','Infrastructure'),(182,59,'_what_we_do_0_service_pills_0_service','field_6586ed2b0bb28'),(183,59,'what_we_do_0_service_pills_1_service','Data management'),(184,59,'_what_we_do_0_service_pills_1_service','field_6586ed2b0bb28'),(185,59,'what_we_do_0_service_pills_2_service','Server Strategy'),(186,59,'_what_we_do_0_service_pills_2_service','field_6586ed2b0bb28'),(187,59,'what_we_do_0_service_pills','3'),(188,59,'_what_we_do_0_service_pills','field_6586ed150bb27'),(189,59,'what_we_do_1_title','Creative Development'),(190,59,'_what_we_do_1_title','field_6586ed0c0bb26'),(191,59,'what_we_do_1_service_pills_0_service','Infrastructure'),(192,59,'_what_we_do_1_service_pills_0_service','field_6586ed2b0bb28'),(193,59,'what_we_do_1_service_pills_1_service','Data management'),(194,59,'_what_we_do_1_service_pills_1_service','field_6586ed2b0bb28'),(195,59,'what_we_do_1_service_pills_2_service','Server Strategy'),(196,59,'_what_we_do_1_service_pills_2_service','field_6586ed2b0bb28'),(197,59,'what_we_do_1_service_pills','3'),(198,59,'_what_we_do_1_service_pills','field_6586ed150bb27'),(199,59,'what_we_do_2_title','Technical collaboration'),(200,59,'_what_we_do_2_title','field_6586ed0c0bb26'),(201,59,'what_we_do_2_service_pills_0_service','Infrastructure'),(202,59,'_what_we_do_2_service_pills_0_service','field_6586ed2b0bb28'),(203,59,'what_we_do_2_service_pills_1_service','Data management'),(204,59,'_what_we_do_2_service_pills_1_service','field_6586ed2b0bb28'),(205,59,'what_we_do_2_service_pills_2_service','Server Strategy'),(206,59,'_what_we_do_2_service_pills_2_service','field_6586ed2b0bb28'),(207,59,'what_we_do_2_service_pills','3'),(208,59,'_what_we_do_2_service_pills','field_6586ed150bb27'),(209,60,'hero_title','Web Space is creative development studio with a goal to conceptualise & execute creative solutions that meet the unique needs and objectives, helping effectively communicate messages and achieve their creative goals.'),(210,60,'_hero_title','field_6586ec932087b'),(211,60,'what_we_do','3'),(212,60,'_what_we_do','field_6586ecfa0bb25'),(213,60,'showcase_title','Some of the things we’ve brought our minds too.'),(214,60,'_showcase_title','field_6586ed84947a4'),(215,60,'skills_title',''),(216,60,'_skills_title','field_6586edb48e72b'),(217,60,'approach',''),(218,60,'_approach','field_6586ee3b00320'),(219,60,'what_we_do_0_title','Strategy'),(220,60,'_what_we_do_0_title','field_6586ed0c0bb26'),(221,60,'what_we_do_0_service_pills_0_service','Infrastructure'),(222,60,'_what_we_do_0_service_pills_0_service','field_6586ed2b0bb28'),(223,60,'what_we_do_0_service_pills_1_service','Data management'),(224,60,'_what_we_do_0_service_pills_1_service','field_6586ed2b0bb28'),(225,60,'what_we_do_0_service_pills_2_service','Server Strategy'),(226,60,'_what_we_do_0_service_pills_2_service','field_6586ed2b0bb28'),(227,60,'what_we_do_0_service_pills','3'),(228,60,'_what_we_do_0_service_pills','field_6586ed150bb27'),(229,60,'what_we_do_1_title','Creative Development'),(230,60,'_what_we_do_1_title','field_6586ed0c0bb26'),(231,60,'what_we_do_1_service_pills_0_service','Infrastructure'),(232,60,'_what_we_do_1_service_pills_0_service','field_6586ed2b0bb28'),(233,60,'what_we_do_1_service_pills_1_service','Data management'),(234,60,'_what_we_do_1_service_pills_1_service','field_6586ed2b0bb28'),(235,60,'what_we_do_1_service_pills_2_service','Server Strategy'),(236,60,'_what_we_do_1_service_pills_2_service','field_6586ed2b0bb28'),(237,60,'what_we_do_1_service_pills','3'),(238,60,'_what_we_do_1_service_pills','field_6586ed150bb27'),(239,60,'what_we_do_2_title','Technical collaboration'),(240,60,'_what_we_do_2_title','field_6586ed0c0bb26'),(241,60,'what_we_do_2_service_pills_0_service','Infrastructure'),(242,60,'_what_we_do_2_service_pills_0_service','field_6586ed2b0bb28'),(243,60,'what_we_do_2_service_pills_1_service','Data management'),(244,60,'_what_we_do_2_service_pills_1_service','field_6586ed2b0bb28'),(245,60,'what_we_do_2_service_pills_2_service','Server Strategy'),(246,60,'_what_we_do_2_service_pills_2_service','field_6586ed2b0bb28'),(247,60,'what_we_do_2_service_pills','3'),(248,60,'_what_we_do_2_service_pills','field_6586ed150bb27'),(249,9,'approach_0_title','Strategy'),(250,9,'_approach_0_title','field_65c26517a9103'),(251,9,'approach_0_paragraph','We’ll work out the technicalities of your brilliant idea, and bring it to life.'),(252,9,'_approach_0_paragraph','field_65c26521a9104'),(253,61,'hero_title','Web Space is creative development studio with a goal to conceptualise & execute creative solutions that meet the unique needs and objectives, helping effectively communicate messages and achieve their creative goals.'),(254,61,'_hero_title','field_6586ec932087b'),(255,61,'what_we_do','3'),(256,61,'_what_we_do','field_6586ecfa0bb25'),(257,61,'showcase_title','Some of the things we’ve brought our minds too.'),(258,61,'_showcase_title','field_6586ed84947a4'),(259,61,'skills_title','Our skills & proficiencies to build to best experience to suit your needs'),(260,61,'_skills_title','field_6586edb48e72b'),(261,61,'approach','1'),(262,61,'_approach','field_6586ee3b00320'),(263,61,'what_we_do_0_title','Strategy'),(264,61,'_what_we_do_0_title','field_6586ed0c0bb26'),(265,61,'what_we_do_0_service_pills_0_service','Infrastructure'),(266,61,'_what_we_do_0_service_pills_0_service','field_6586ed2b0bb28'),(267,61,'what_we_do_0_service_pills_1_service','Data management'),(268,61,'_what_we_do_0_service_pills_1_service','field_6586ed2b0bb28'),(269,61,'what_we_do_0_service_pills_2_service','Server Strategy'),(270,61,'_what_we_do_0_service_pills_2_service','field_6586ed2b0bb28'),(271,61,'what_we_do_0_service_pills','3'),(272,61,'_what_we_do_0_service_pills','field_6586ed150bb27'),(273,61,'what_we_do_1_title','Creative Development'),(274,61,'_what_we_do_1_title','field_6586ed0c0bb26'),(275,61,'what_we_do_1_service_pills_0_service','Infrastructure'),(276,61,'_what_we_do_1_service_pills_0_service','field_6586ed2b0bb28'),(277,61,'what_we_do_1_service_pills_1_service','Data management'),(278,61,'_what_we_do_1_service_pills_1_service','field_6586ed2b0bb28'),(279,61,'what_we_do_1_service_pills_2_service','Server Strategy'),(280,61,'_what_we_do_1_service_pills_2_service','field_6586ed2b0bb28'),(281,61,'what_we_do_1_service_pills','3'),(282,61,'_what_we_do_1_service_pills','field_6586ed150bb27'),(283,61,'what_we_do_2_title','Technical collaboration'),(284,61,'_what_we_do_2_title','field_6586ed0c0bb26'),(285,61,'what_we_do_2_service_pills_0_service','Infrastructure'),(286,61,'_what_we_do_2_service_pills_0_service','field_6586ed2b0bb28'),(287,61,'what_we_do_2_service_pills_1_service','Data management'),(288,61,'_what_we_do_2_service_pills_1_service','field_6586ed2b0bb28'),(289,61,'what_we_do_2_service_pills_2_service','Server Strategy'),(290,61,'_what_we_do_2_service_pills_2_service','field_6586ed2b0bb28'),(291,61,'what_we_do_2_service_pills','3'),(292,61,'_what_we_do_2_service_pills','field_6586ed150bb27'),(293,61,'approach_0_title',''),(294,61,'_approach_0_title','field_6586ee5000321'),(295,61,'approach_0_paragraph',''),(296,61,'_approach_0_paragraph','field_6586ee5400322'),(297,62,'hero_title','Web Space is creative development studio with a goal to conceptualise & execute creative solutions that meet the unique needs and objectives, helping effectively communicate messages and achieve their creative goals.'),(298,62,'_hero_title','field_6586ec932087b'),(299,62,'what_we_do','3'),(300,62,'_what_we_do','field_6586ecfa0bb25'),(301,62,'showcase_title',''),(302,62,'_showcase_title','field_6586ed84947a4'),(303,62,'skills_title','Our skills & proficiencies to build to best experience to suit your needs'),(304,62,'_skills_title','field_6586edb48e72b'),(305,62,'approach','1'),(306,62,'_approach','field_6586ee3b00320'),(307,62,'what_we_do_0_title','Strategy'),(308,62,'_what_we_do_0_title','field_6586ed0c0bb26'),(309,62,'what_we_do_0_service_pills_0_service','Infrastructure'),(310,62,'_what_we_do_0_service_pills_0_service','field_6586ed2b0bb28'),(311,62,'what_we_do_0_service_pills_1_service','Data management'),(312,62,'_what_we_do_0_service_pills_1_service','field_6586ed2b0bb28'),(313,62,'what_we_do_0_service_pills_2_service','Server Strategy'),(314,62,'_what_we_do_0_service_pills_2_service','field_6586ed2b0bb28'),(315,62,'what_we_do_0_service_pills','3'),(316,62,'_what_we_do_0_service_pills','field_6586ed150bb27'),(317,62,'what_we_do_1_title','Creative Development'),(318,62,'_what_we_do_1_title','field_6586ed0c0bb26'),(319,62,'what_we_do_1_service_pills_0_service','Infrastructure'),(320,62,'_what_we_do_1_service_pills_0_service','field_6586ed2b0bb28'),(321,62,'what_we_do_1_service_pills_1_service','Data management'),(322,62,'_what_we_do_1_service_pills_1_service','field_6586ed2b0bb28'),(323,62,'what_we_do_1_service_pills_2_service','Server Strategy'),(324,62,'_what_we_do_1_service_pills_2_service','field_6586ed2b0bb28'),(325,62,'what_we_do_1_service_pills','3'),(326,62,'_what_we_do_1_service_pills','field_6586ed150bb27'),(327,62,'what_we_do_2_title','Technical collaboration'),(328,62,'_what_we_do_2_title','field_6586ed0c0bb26'),(329,62,'what_we_do_2_service_pills_0_service','Infrastructure'),(330,62,'_what_we_do_2_service_pills_0_service','field_6586ed2b0bb28'),(331,62,'what_we_do_2_service_pills_1_service','Data management'),(332,62,'_what_we_do_2_service_pills_1_service','field_6586ed2b0bb28'),(333,62,'what_we_do_2_service_pills_2_service','Server Strategy'),(334,62,'_what_we_do_2_service_pills_2_service','field_6586ed2b0bb28'),(335,62,'what_we_do_2_service_pills','3'),(336,62,'_what_we_do_2_service_pills','field_6586ed150bb27'),(337,62,'approach_0_title',''),(338,62,'_approach_0_title','field_6586ee5000321'),(339,62,'approach_0_paragraph',''),(340,62,'_approach_0_paragraph','field_6586ee5400322'),(341,63,'hero_title','Web Space is creative development studio with a goal to conceptualise & execute creative solutions that meet the unique needs and objectives, helping effectively communicate messages and achieve their creative goals.'),(342,63,'_hero_title','field_6586ec932087b'),(343,63,'what_we_do','3'),(344,63,'_what_we_do','field_6586ecfa0bb25'),(345,63,'showcase_title','Some of the things we’ve brought our minds too.'),(346,63,'_showcase_title','field_6586ed84947a4'),(347,63,'skills_title','Our skills & proficiencies to build to best experience to suit your needs'),(348,63,'_skills_title','field_6586edb48e72b'),(349,63,'approach','1'),(350,63,'_approach','field_6586ee3b00320'),(351,63,'what_we_do_0_title','Strategy'),(352,63,'_what_we_do_0_title','field_6586ed0c0bb26'),(353,63,'what_we_do_0_service_pills_0_service','Infrastructure'),(354,63,'_what_we_do_0_service_pills_0_service','field_6586ed2b0bb28'),(355,63,'what_we_do_0_service_pills_1_service','Data management'),(356,63,'_what_we_do_0_service_pills_1_service','field_6586ed2b0bb28'),(357,63,'what_we_do_0_service_pills_2_service','Server Strategy'),(358,63,'_what_we_do_0_service_pills_2_service','field_6586ed2b0bb28'),(359,63,'what_we_do_0_service_pills','3'),(360,63,'_what_we_do_0_service_pills','field_6586ed150bb27'),(361,63,'what_we_do_1_title','Creative Development'),(362,63,'_what_we_do_1_title','field_6586ed0c0bb26'),(363,63,'what_we_do_1_service_pills_0_service','Infrastructure'),(364,63,'_what_we_do_1_service_pills_0_service','field_6586ed2b0bb28'),(365,63,'what_we_do_1_service_pills_1_service','Data management'),(366,63,'_what_we_do_1_service_pills_1_service','field_6586ed2b0bb28'),(367,63,'what_we_do_1_service_pills_2_service','Server Strategy'),(368,63,'_what_we_do_1_service_pills_2_service','field_6586ed2b0bb28'),(369,63,'what_we_do_1_service_pills','3'),(370,63,'_what_we_do_1_service_pills','field_6586ed150bb27'),(371,63,'what_we_do_2_title','Technical collaboration'),(372,63,'_what_we_do_2_title','field_6586ed0c0bb26'),(373,63,'what_we_do_2_service_pills_0_service','Infrastructure'),(374,63,'_what_we_do_2_service_pills_0_service','field_6586ed2b0bb28'),(375,63,'what_we_do_2_service_pills_1_service','Data management'),(376,63,'_what_we_do_2_service_pills_1_service','field_6586ed2b0bb28'),(377,63,'what_we_do_2_service_pills_2_service','Server Strategy'),(378,63,'_what_we_do_2_service_pills_2_service','field_6586ed2b0bb28'),(379,63,'what_we_do_2_service_pills','3'),(380,63,'_what_we_do_2_service_pills','field_6586ed150bb27'),(381,63,'approach_0_title',''),(382,63,'_approach_0_title','field_6586ee5000321'),(383,63,'approach_0_paragraph',''),(384,63,'_approach_0_paragraph','field_6586ee5400322'),(385,9,'approach_1_title','Design'),(386,9,'_approach_1_title','field_65c26517a9103'),(387,9,'approach_1_paragraph','We’ll start from mobile and design our way all the way up to the big screens.'),(388,9,'_approach_1_paragraph','field_65c26521a9104'),(389,9,'approach_2_title','Development'),(390,9,'_approach_2_title','field_65c26517a9103'),(391,9,'approach_2_paragraph','We don’t shy away from a challenge, and we’ll always take on a complex project.'),(392,9,'_approach_2_paragraph','field_65c26521a9104'),(393,9,'approach_3_title','Launch'),(394,9,'_approach_3_title','field_65c26517a9103'),(395,9,'approach_3_paragraph','Once we launch it, we’ll give you a login and where you can easily manage your content.'),(396,9,'_approach_3_paragraph','field_65c26521a9104'),(397,64,'hero_title','Web Space is creative development studio with a goal to conceptualise & execute creative solutions that meet the unique needs and objectives, helping effectively communicate messages and achieve their creative goals.'),(398,64,'_hero_title','field_6586ec932087b'),(399,64,'what_we_do','3'),(400,64,'_what_we_do','field_6586ecfa0bb25'),(401,64,'showcase_title','Some of the things we’ve brought our minds too.'),(402,64,'_showcase_title','field_6586ed84947a4'),(403,64,'skills_title','Our skills & proficiencies to build to best experience to suit your needs'),(404,64,'_skills_title','field_6586edb48e72b'),(405,64,'approach','4'),(406,64,'_approach','field_6586ee3b00320'),(407,64,'what_we_do_0_title','Strategy'),(408,64,'_what_we_do_0_title','field_6586ed0c0bb26'),(409,64,'what_we_do_0_service_pills_0_service','Infrastructure'),(410,64,'_what_we_do_0_service_pills_0_service','field_6586ed2b0bb28'),(411,64,'what_we_do_0_service_pills_1_service','Data management'),(412,64,'_what_we_do_0_service_pills_1_service','field_6586ed2b0bb28'),(413,64,'what_we_do_0_service_pills_2_service','Server Strategy'),(414,64,'_what_we_do_0_service_pills_2_service','field_6586ed2b0bb28'),(415,64,'what_we_do_0_service_pills','3'),(416,64,'_what_we_do_0_service_pills','field_6586ed150bb27'),(417,64,'what_we_do_1_title','Creative Development'),(418,64,'_what_we_do_1_title','field_6586ed0c0bb26'),(419,64,'what_we_do_1_service_pills_0_service','Infrastructure'),(420,64,'_what_we_do_1_service_pills_0_service','field_6586ed2b0bb28'),(421,64,'what_we_do_1_service_pills_1_service','Data management'),(422,64,'_what_we_do_1_service_pills_1_service','field_6586ed2b0bb28'),(423,64,'what_we_do_1_service_pills_2_service','Server Strategy'),(424,64,'_what_we_do_1_service_pills_2_service','field_6586ed2b0bb28'),(425,64,'what_we_do_1_service_pills','3'),(426,64,'_what_we_do_1_service_pills','field_6586ed150bb27'),(427,64,'what_we_do_2_title','Technical collaboration'),(428,64,'_what_we_do_2_title','field_6586ed0c0bb26'),(429,64,'what_we_do_2_service_pills_0_service','Infrastructure'),(430,64,'_what_we_do_2_service_pills_0_service','field_6586ed2b0bb28'),(431,64,'what_we_do_2_service_pills_1_service','Data management'),(432,64,'_what_we_do_2_service_pills_1_service','field_6586ed2b0bb28'),(433,64,'what_we_do_2_service_pills_2_service','Server Strategy'),(434,64,'_what_we_do_2_service_pills_2_service','field_6586ed2b0bb28'),(435,64,'what_we_do_2_service_pills','3'),(436,64,'_what_we_do_2_service_pills','field_6586ed150bb27'),(437,64,'approach_0_title','Strategy'),(438,64,'_approach_0_title','field_6586ee5000321'),(439,64,'approach_0_paragraph','We’ll work out the technicalities of your brilliant idea, and bring it to life.'),(440,64,'_approach_0_paragraph','field_6586ee5400322'),(441,64,'approach_1_title','Design'),(442,64,'_approach_1_title','field_6586ee5000321'),(443,64,'approach_1_paragraph','We’ll start from mobile and design our way all the way up to the big screens.'),(444,64,'_approach_1_paragraph','field_6586ee5400322'),(445,64,'approach_2_title','Development'),(446,64,'_approach_2_title','field_6586ee5000321'),(447,64,'approach_2_paragraph','We don’t shy away from a challenge, and we’ll always take on a complex project.'),(448,64,'_approach_2_paragraph','field_6586ee5400322'),(449,64,'approach_3_title','Launch'),(450,64,'_approach_3_title','field_6586ee5000321'),(451,64,'approach_3_paragraph','Once we launch it, we’ll give you a login and where you can easily manage your content.'),(452,64,'_approach_3_paragraph','field_6586ee5400322'),(471,65,'hero_title','Web Space is creative development studio with a goal to conceptualise & execute creative solutions that meet the unique needs and objectives, helping effectively communicate messages and achieve their creative goals.'),(472,65,'_hero_title','field_6586ec932087b'),(473,65,'what_we_do',''),(474,65,'_what_we_do','field_6586ecfa0bb25'),(475,65,'showcase_title','Some of the things we’ve brought our minds too.'),(476,65,'_showcase_title','field_6586ed84947a4'),(477,65,'skills_title','Our skills & proficiencies to build to best experience to suit your needs'),(478,65,'_skills_title','field_6586edb48e72b'),(479,65,'approach','4'),(480,65,'_approach','field_6586ee3b00320'),(481,65,'what_we_do_0_title','Strategy'),(482,65,'_what_we_do_0_title','field_6586ed0c0bb26'),(483,65,'what_we_do_0_service_pills_0_service','Infrastructure'),(484,65,'_what_we_do_0_service_pills_0_service','field_6586ed2b0bb28'),(485,65,'what_we_do_0_service_pills_1_service','Data management'),(486,65,'_what_we_do_0_service_pills_1_service','field_6586ed2b0bb28'),(487,65,'what_we_do_0_service_pills_2_service','Server Strategy'),(488,65,'_what_we_do_0_service_pills_2_service','field_6586ed2b0bb28'),(489,65,'what_we_do_0_service_pills','3'),(490,65,'_what_we_do_0_service_pills','field_6586ed150bb27'),(491,65,'what_we_do_1_title','Creative Development'),(492,65,'_what_we_do_1_title','field_6586ed0c0bb26'),(493,65,'what_we_do_1_service_pills_0_service','Infrastructure'),(494,65,'_what_we_do_1_service_pills_0_service','field_6586ed2b0bb28'),(495,65,'what_we_do_1_service_pills_1_service','Data management'),(496,65,'_what_we_do_1_service_pills_1_service','field_6586ed2b0bb28'),(497,65,'what_we_do_1_service_pills_2_service','Server Strategy'),(498,65,'_what_we_do_1_service_pills_2_service','field_6586ed2b0bb28'),(499,65,'what_we_do_1_service_pills','3'),(500,65,'_what_we_do_1_service_pills','field_6586ed150bb27'),(501,65,'what_we_do_2_title','Technical collaboration'),(502,65,'_what_we_do_2_title','field_6586ed0c0bb26'),(503,65,'what_we_do_2_service_pills_0_service','Infrastructure'),(504,65,'_what_we_do_2_service_pills_0_service','field_6586ed2b0bb28'),(505,65,'what_we_do_2_service_pills_1_service','Data management'),(506,65,'_what_we_do_2_service_pills_1_service','field_6586ed2b0bb28'),(507,65,'what_we_do_2_service_pills_2_service','Server Strategy'),(508,65,'_what_we_do_2_service_pills_2_service','field_6586ed2b0bb28'),(509,65,'what_we_do_2_service_pills','3'),(510,65,'_what_we_do_2_service_pills','field_6586ed150bb27'),(511,65,'approach_0_title','Strategy'),(512,65,'_approach_0_title','field_6586ee5000321'),(513,65,'approach_0_paragraph','We’ll work out the technicalities of your brilliant idea, and bring it to life.'),(514,65,'_approach_0_paragraph','field_6586ee5400322'),(515,65,'approach_1_title','Design'),(516,65,'_approach_1_title','field_6586ee5000321'),(517,65,'approach_1_paragraph','We’ll start from mobile and design our way all the way up to the big screens.'),(518,65,'_approach_1_paragraph','field_6586ee5400322'),(519,65,'approach_2_title','Development'),(520,65,'_approach_2_title','field_6586ee5000321'),(521,65,'approach_2_paragraph','We don’t shy away from a challenge, and we’ll always take on a complex project.'),(522,65,'_approach_2_paragraph','field_6586ee5400322'),(523,65,'approach_3_title','Launch'),(524,65,'_approach_3_title','field_6586ee5000321'),(525,65,'approach_3_paragraph','Once we launch it, we’ll give you a login and where you can easily manage your content.'),(526,65,'_approach_3_paragraph','field_6586ee5400322'),(527,66,'_wp_attached_file','2024/02/elementor.png'),(528,66,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:157;s:6:\"height\";i:157;s:4:\"file\";s:21:\"2024/02/elementor.png\";s:8:\"filesize\";i:3583;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"elementor-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2862;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(529,67,'_wp_attached_file','2024/02/html.png'),(530,67,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:157;s:6:\"height\";i:157;s:4:\"file\";s:16:\"2024/02/html.png\";s:8:\"filesize\";i:4146;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"html-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3423;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(531,68,'_wp_attached_file','2024/02/js.png'),(532,68,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:157;s:6:\"height\";i:157;s:4:\"file\";s:14:\"2024/02/js.png\";s:8:\"filesize\";i:2595;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"js-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1813;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(533,69,'_wp_attached_file','2024/02/php.png'),(534,69,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:157;s:6:\"height\";i:157;s:4:\"file\";s:15:\"2024/02/php.png\";s:8:\"filesize\";i:2792;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"php-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2634;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(535,70,'_wp_attached_file','2024/02/woo.png'),(536,70,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:157;s:6:\"height\";i:157;s:4:\"file\";s:15:\"2024/02/woo.png\";s:8:\"filesize\";i:4355;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"woo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3212;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(537,71,'_wp_attached_file','2024/02/wordpress.png'),(538,71,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:157;s:6:\"height\";i:157;s:4:\"file\";s:21:\"2024/02/wordpress.png\";s:8:\"filesize\";i:9562;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"wordpress-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7569;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(539,72,'_edit_last','1'),(540,72,'_edit_lock','1707233241:1'),(541,72,'_thumbnail_id','66'),(542,57,'_thumbnail_id','69'),(543,39,'_thumbnail_id','71'),(544,74,'_edit_last','1'),(545,74,'_edit_lock','1707233286:1'),(546,74,'_thumbnail_id','70'),(547,38,'_thumbnail_id','68'),(548,75,'_edit_last','1'),(549,75,'_edit_lock','1707233621:1'),(550,75,'_thumbnail_id','67'),(558,77,'_edit_last','1'),(559,77,'_edit_lock','1707919034:1'),(560,78,'_edit_last','1'),(561,78,'_edit_lock','1707238098:1'),(562,77,'stat_1_field','Monthly users'),(563,77,'_stat_1_field','field_65c2531150e51'),(564,77,'stat_1_value','8,000'),(565,77,'_stat_1_value','field_65c2531b50e52'),(566,77,'stat_1',''),(567,77,'_stat_1','field_65c252de50e50'),(568,77,'stat_2_field','Downloads'),(569,77,'_stat_2_field','field_65c2532a50e54'),(570,77,'stat_2_value','64,000'),(571,77,'_stat_2_value','field_65c2532a50e55'),(572,77,'stat_2',''),(573,77,'_stat_2','field_65c2532a50e53'),(574,77,'stat_3_field','Framework'),(575,77,'_stat_3_field','field_65c2533a12b89'),(576,77,'stat_3_value','Next.js'),(577,77,'_stat_3_value','field_65c2533a12b8a'),(578,77,'stat_3',''),(579,77,'_stat_3','field_65c2533a12b88'),(580,77,'content','a:6:{i:0;s:15:\"large_text_area\";i:1;s:9:\"gallery_1\";i:2;s:13:\"the_challenge\";i:3;s:15:\"paragraph_field\";i:4;s:9:\"gallery_2\";i:5;s:15:\"paragraph_field\";}'),(581,77,'_content','field_65c253e0692e6'),(582,112,'_wp_attached_file','2024/02/Rectangle-8.png'),(583,112,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1448;s:6:\"height\";i:768;s:4:\"file\";s:23:\"2024/02/Rectangle-8.png\";s:8:\"filesize\";i:792525;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"Rectangle-8-300x159.png\";s:5:\"width\";i:300;s:6:\"height\";i:159;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:63236;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"Rectangle-8-1024x543.png\";s:5:\"width\";i:1024;s:6:\"height\";i:543;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:456794;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Rectangle-8-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36928;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"Rectangle-8-768x407.png\";s:5:\"width\";i:768;s:6:\"height\";i:407;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:293956;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(584,113,'_wp_attached_file','2024/02/Rectangle-9.png'),(585,113,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:836;s:6:\"height\";i:768;s:4:\"file\";s:23:\"2024/02/Rectangle-9.png\";s:8:\"filesize\";i:799481;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"Rectangle-9-300x276.png\";s:5:\"width\";i:300;s:6:\"height\";i:276;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:112736;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Rectangle-9-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34087;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"Rectangle-9-768x706.png\";s:5:\"width\";i:768;s:6:\"height\";i:706;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:609737;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(586,77,'content_0_large_text_area','Their vision: to bridge the gap between digital innovation and environmental advocacy, creating a captivating narrative about the sea-level rise along the stunning Irish coastline.'),(587,77,'_content_0_large_text_area','field_65c25418692e7'),(588,77,'content_1_gallery_1','a:2:{i:0;s:3:\"112\";i:1;s:3:\"113\";}'),(589,77,'_content_1_gallery_1','field_65c255dac79e0'),(590,119,'_wp_attached_file','2024/02/Rectangle-11.png'),(591,119,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:395;s:6:\"height\";i:794;s:4:\"file\";s:24:\"2024/02/Rectangle-11.png\";s:8:\"filesize\";i:324107;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"Rectangle-11-149x300.png\";s:5:\"width\";i:149;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:60205;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"Rectangle-11-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29989;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(592,120,'_wp_attached_file','2024/02/Rectangle-10.png'),(593,120,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:592;s:6:\"height\";i:768;s:4:\"file\";s:24:\"2024/02/Rectangle-10.png\";s:8:\"filesize\";i:612908;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"Rectangle-10-231x300.png\";s:5:\"width\";i:231;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:99615;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"Rectangle-10-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38750;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(594,77,'content_2_the_challenge_1_0_text','Línte na farraige sought a digital experience that would seamlessly complement their physical installations, a dynamic exploration of the profound impacts of'),(595,77,'_content_2_the_challenge_1_0_text','field_65c25610c79fa'),(596,77,'content_2_the_challenge_1_1_text','sea-level'),(597,77,'_content_2_the_challenge_1_1_text','field_65c257a30f93a'),(598,77,'content_2_the_challenge_1_1_image','119'),(599,77,'_content_2_the_challenge_1_1_image','field_65c257a30f93b'),(600,77,'content_2_the_challenge_1_2_text','rise in Ireland. Their goal was nothing short of visionary - they wanted an'),(601,77,'_content_2_the_challenge_1_2_text','field_65c25610c79fa'),(602,77,'content_2_the_challenge_1_3_text','interactive platform'),(603,77,'_content_2_the_challenge_1_3_text','field_65c257a30f93a'),(604,77,'content_2_the_challenge_1_3_image','120'),(605,77,'_content_2_the_challenge_1_3_image','field_65c257a30f93b'),(606,77,'content_2_the_challenge_1_4_text',' that would not only educate but also raise awareness about the irrefutable reality of climate change in this coastal paradise.'),(607,77,'_content_2_the_challenge_1_4_text','field_65c25610c79fa'),(608,77,'content_2_the_challenge_1','a:5:{i:0;s:4:\"text\";i:1;s:14:\"text_and_image\";i:2;s:4:\"text\";i:3;s:14:\"text_and_image\";i:4;s:4:\"text\";}'),(609,77,'_content_2_the_challenge_1','field_65c25610c79f9'),(610,77,'content_2_dynamic_text_and_image_0_text','Línte na farraige sought a digital experience that would seamlessly complement their physical installations, a dynamic exploration of the profound impacts of'),(611,77,'_content_2_dynamic_text_and_image_0_text','field_65c25610c79fa'),(612,77,'content_2_dynamic_text_and_image_1_text','sea-level'),(613,77,'_content_2_dynamic_text_and_image_1_text','field_65c257a30f93a'),(614,77,'content_2_dynamic_text_and_image_1_image','119'),(615,77,'_content_2_dynamic_text_and_image_1_image','field_65c257a30f93b'),(616,77,'content_2_dynamic_text_and_image_2_text',' rise in Ireland. Their goal was nothing short of visionary - they wanted an'),(617,77,'_content_2_dynamic_text_and_image_2_text','field_65c25610c79fa'),(618,77,'content_2_dynamic_text_and_image_3_text','interactive platform'),(619,77,'_content_2_dynamic_text_and_image_3_text','field_65c257a30f93a'),(620,77,'content_2_dynamic_text_and_image_3_image','120'),(621,77,'_content_2_dynamic_text_and_image_3_image','field_65c257a30f93b'),(622,77,'content_2_dynamic_text_and_image_4_text',' that would not only educate but also raise awareness about the irrefutable reality of climate change in this coastal paradise.'),(623,77,'_content_2_dynamic_text_and_image_4_text','field_65c25610c79fa'),(624,77,'content_2_dynamic_text_and_image','a:5:{i:0;s:4:\"text\";i:1;s:14:\"text_and_image\";i:2;s:4:\"text\";i:3;s:14:\"text_and_image\";i:4;s:4:\"text\";}'),(625,77,'_content_2_dynamic_text_and_image','field_65c25610c79f9'),(626,77,'content_3_paragraph_item','a:3:{i:0;s:5:\"title\";i:1;s:9:\"paragraph\";i:2;s:9:\"paragraph\";}'),(627,77,'_content_3_paragraph_item','field_65c2562dc7a09'),(628,77,'content_3_paragraph_item_0_title','Our Creative Response'),(629,77,'_content_3_paragraph_item_0_title','field_65c2593be15b1'),(630,77,'content_3_paragraph_item_1_paragraph','To craft this digital journey, we embarked on a collaborative odyssey. In partnership with Algorithm, experts in interactive installations, and a dedicated team of climate researchers, we delved into the heart of the challenge. Together, we birthed an immersive website that would tell the ever-evolving story of Ireland\'s coastline, illuminated by LED light installations.'),(631,77,'_content_3_paragraph_item_1_paragraph','field_65c257e0b12ab'),(632,77,'content_4_gallery_2','a:2:{i:0;s:3:\"113\";i:1;s:3:\"120\";}'),(633,77,'_content_4_gallery_2','field_65c25600c79ed'),(634,77,'content_5_paragraph_item_0_title','The challenge'),(635,77,'_content_5_paragraph_item_0_title','field_65c2593be15b1'),(636,77,'content_5_paragraph_item_1_paragraph','In the end, our mission was nothing short of a triumph. We birthed a digital experience that danced harmoniously with Línte na farraige\'s physical installations, amplifying the message of climate change awareness. Partnering with Algorithm and a squad of dedicated researchers, we birthed a living, breathing digital ecosystem, inviting you to immerse yourself in the story of Irish coastlines as they transform before your eyes.'),(637,77,'_content_5_paragraph_item_1_paragraph','field_65c257e0b12ab'),(638,77,'content_5_paragraph_item_2_paragraph','But it doesn\'t stop there. Our website isn\'t just an exhibit; it\'s a conversation starter. It fosters dialogue and encourages all to act. It\'s a testament to what happens when creativity, technology, and data projections merge. A vivid, engaging, and ultimately educational symphony that will resonate in the hearts and minds of all who encounter it.'),(639,77,'_content_5_paragraph_item_2_paragraph','field_65c257e0b12ab'),(640,77,'content_5_paragraph_item_3_large_paragraph','This project stands as a testament to what\'s possible when diverse talents collaborate with one goal in mind – to enlighten, inspire, and ignite change. It\'s a beacon of hope, urging us all to act now for a more sustainable future.'),(641,77,'_content_5_paragraph_item_3_large_paragraph','field_65c257f2b12b0'),(642,77,'content_5_paragraph_item','a:4:{i:0;s:5:\"title\";i:1;s:9:\"paragraph\";i:2;s:9:\"paragraph\";i:3;s:15:\"large_paragraph\";}'),(643,77,'_content_5_paragraph_item','field_65c2562dc7a09'),(644,77,'content_3_paragraph_item_2_paragraph','Our website doesn\'t just inform; it transports. It invites you to venture through the coastal landscapes, each unique location whispering a tale of change. The digital tapestry educates, using research papers and reports as its threads, weaving together the intricate science behind these awe-inspiring physical installations.'),(645,77,'_content_3_paragraph_item_2_paragraph','field_65c257e0b12ab'),(646,122,'_wp_attached_file','2024/02/cover.png'),(647,122,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1512;s:6:\"height\";i:585;s:4:\"file\";s:17:\"2024/02/cover.png\";s:8:\"filesize\";i:664116;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"cover-300x116.png\";s:5:\"width\";i:300;s:6:\"height\";i:116;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43531;}s:5:\"large\";a:5:{s:4:\"file\";s:18:\"cover-1024x396.png\";s:5:\"width\";i:1024;s:6:\"height\";i:396;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:325883;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"cover-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26270;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:17:\"cover-768x297.png\";s:5:\"width\";i:768;s:6:\"height\";i:297;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:208676;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(648,77,'_thumbnail_id','122'),(649,123,'_edit_lock','1707239006:1'),(650,123,'_edit_last','1'),(651,9,'what_we_do_title','Strategy'),(652,9,'_what_we_do_title','field_65c263b3a6a4b'),(653,9,'what_we_do_pills_0_pill_text','Infrastructure'),(654,9,'_what_we_do_pills_0_pill_text','field_65c263c7a6a4d'),(655,9,'what_we_do_pills_1_pill_text','Data management'),(656,9,'_what_we_do_pills_1_pill_text','field_65c263c7a6a4d'),(657,9,'what_we_do_pills_2_pill_text','Server strategy'),(658,9,'_what_we_do_pills_2_pill_text','field_65c263c7a6a4d'),(659,9,'what_we_do_pills','3'),(660,9,'_what_we_do_pills','field_65c263b7a6a4c'),(661,65,'what_we_do_title','Strategy'),(662,65,'_what_we_do_title','field_65c263b3a6a4b'),(663,65,'what_we_do_pills_0_pill_text','Infrastructure'),(664,65,'_what_we_do_pills_0_pill_text','field_65c263c7a6a4d'),(665,65,'what_we_do_pills_1_pill_text','Data management'),(666,65,'_what_we_do_pills_1_pill_text','field_65c263c7a6a4d'),(667,65,'what_we_do_pills_2_pill_text','Server strategy'),(668,65,'_what_we_do_pills_2_pill_text','field_65c263c7a6a4d'),(669,65,'what_we_do_pills','3'),(670,65,'_what_we_do_pills','field_65c263b7a6a4c'),(671,9,'what_we_do_0_pills_0_pill_text','Infrastructure'),(672,9,'_what_we_do_0_pills_0_pill_text','field_65c263c7a6a4d'),(673,9,'what_we_do_0_pills_1_pill_text','Data management'),(674,9,'_what_we_do_0_pills_1_pill_text','field_65c263c7a6a4d'),(675,9,'what_we_do_0_pills_2_pill_text','Server strategy'),(676,9,'_what_we_do_0_pills_2_pill_text','field_65c263c7a6a4d'),(677,9,'what_we_do_0_pills','3'),(678,9,'_what_we_do_0_pills','field_65c263b7a6a4c'),(679,132,'hero_title','Web Space is creative development studio with a goal to conceptualise & execute creative solutions that meet the unique needs and objectives, helping effectively communicate messages and achieve their creative goals.'),(680,132,'_hero_title','field_6586ec932087b'),(681,132,'what_we_do','1'),(682,132,'_what_we_do','field_6586ecfa0bb25'),(683,132,'showcase_title','Some of the things we’ve brought our minds too.'),(684,132,'_showcase_title','field_6586ed84947a4'),(685,132,'skills_title','Our skills & proficiencies to build to best experience to suit your needs'),(686,132,'_skills_title','field_6586edb48e72b'),(687,132,'approach','4'),(688,132,'_approach','field_6586ee3b00320'),(689,132,'what_we_do_0_title','Strategy'),(690,132,'_what_we_do_0_title','field_65c263b3a6a4b'),(691,132,'what_we_do_0_service_pills_0_service','Infrastructure'),(692,132,'_what_we_do_0_service_pills_0_service','field_6586ed2b0bb28'),(693,132,'what_we_do_0_service_pills_1_service','Data management'),(694,132,'_what_we_do_0_service_pills_1_service','field_6586ed2b0bb28'),(695,132,'what_we_do_0_service_pills_2_service','Server Strategy'),(696,132,'_what_we_do_0_service_pills_2_service','field_6586ed2b0bb28'),(697,132,'what_we_do_0_service_pills','3'),(698,132,'_what_we_do_0_service_pills','field_6586ed150bb27'),(699,132,'what_we_do_1_title','Creative Development'),(700,132,'_what_we_do_1_title','field_6586ed0c0bb26'),(701,132,'what_we_do_1_service_pills_0_service','Infrastructure'),(702,132,'_what_we_do_1_service_pills_0_service','field_6586ed2b0bb28'),(703,132,'what_we_do_1_service_pills_1_service','Data management'),(704,132,'_what_we_do_1_service_pills_1_service','field_6586ed2b0bb28'),(705,132,'what_we_do_1_service_pills_2_service','Server Strategy'),(706,132,'_what_we_do_1_service_pills_2_service','field_6586ed2b0bb28'),(707,132,'what_we_do_1_service_pills','3'),(708,132,'_what_we_do_1_service_pills','field_6586ed150bb27'),(709,132,'what_we_do_2_title','Technical collaboration'),(710,132,'_what_we_do_2_title','field_6586ed0c0bb26'),(711,132,'what_we_do_2_service_pills_0_service','Infrastructure'),(712,132,'_what_we_do_2_service_pills_0_service','field_6586ed2b0bb28'),(713,132,'what_we_do_2_service_pills_1_service','Data management'),(714,132,'_what_we_do_2_service_pills_1_service','field_6586ed2b0bb28'),(715,132,'what_we_do_2_service_pills_2_service','Server Strategy'),(716,132,'_what_we_do_2_service_pills_2_service','field_6586ed2b0bb28'),(717,132,'what_we_do_2_service_pills','3'),(718,132,'_what_we_do_2_service_pills','field_6586ed150bb27'),(719,132,'approach_0_title','Strategy'),(720,132,'_approach_0_title','field_6586ee5000321'),(721,132,'approach_0_paragraph','We’ll work out the technicalities of your brilliant idea, and bring it to life.'),(722,132,'_approach_0_paragraph','field_6586ee5400322'),(723,132,'approach_1_title','Design'),(724,132,'_approach_1_title','field_6586ee5000321'),(725,132,'approach_1_paragraph','We’ll start from mobile and design our way all the way up to the big screens.'),(726,132,'_approach_1_paragraph','field_6586ee5400322'),(727,132,'approach_2_title','Development'),(728,132,'_approach_2_title','field_6586ee5000321'),(729,132,'approach_2_paragraph','We don’t shy away from a challenge, and we’ll always take on a complex project.'),(730,132,'_approach_2_paragraph','field_6586ee5400322'),(731,132,'approach_3_title','Launch'),(732,132,'_approach_3_title','field_6586ee5000321'),(733,132,'approach_3_paragraph','Once we launch it, we’ll give you a login and where you can easily manage your content.'),(734,132,'_approach_3_paragraph','field_6586ee5400322'),(735,132,'what_we_do_title','Strategy'),(736,132,'_what_we_do_title','field_65c263b3a6a4b'),(737,132,'what_we_do_pills_0_pill_text','Infrastructure'),(738,132,'_what_we_do_pills_0_pill_text','field_65c263c7a6a4d'),(739,132,'what_we_do_pills_1_pill_text','Data management'),(740,132,'_what_we_do_pills_1_pill_text','field_65c263c7a6a4d'),(741,132,'what_we_do_pills_2_pill_text','Server strategy'),(742,132,'_what_we_do_pills_2_pill_text','field_65c263c7a6a4d'),(743,132,'what_we_do_pills','3'),(744,132,'_what_we_do_pills','field_65c263b7a6a4c'),(745,132,'what_we_do_0_pills_0_pill_text','Infrastructure'),(746,132,'_what_we_do_0_pills_0_pill_text','field_65c263c7a6a4d'),(747,132,'what_we_do_0_pills_1_pill_text','Data management'),(748,132,'_what_we_do_0_pills_1_pill_text','field_65c263c7a6a4d'),(749,132,'what_we_do_0_pills_2_pill_text','Server strategy'),(750,132,'_what_we_do_0_pills_2_pill_text','field_65c263c7a6a4d'),(751,132,'what_we_do_0_pills','3'),(752,132,'_what_we_do_0_pills','field_65c263b7a6a4c'),(753,9,'what_we_do_1_pills_0_pill_text','Infrastructure'),(754,9,'_what_we_do_1_pills_0_pill_text','field_65c263c7a6a4d'),(755,9,'what_we_do_1_pills_1_pill_text','Data management'),(756,9,'_what_we_do_1_pills_1_pill_text','field_65c263c7a6a4d'),(757,9,'what_we_do_1_pills_2_pill_text','Server strategy'),(758,9,'_what_we_do_1_pills_2_pill_text','field_65c263c7a6a4d'),(759,9,'what_we_do_1_pills','3'),(760,9,'_what_we_do_1_pills','field_65c263b7a6a4c'),(761,136,'hero_title','Web Space is creative development studio with a goal to conceptualise & execute creative solutions that meet the unique needs and objectives, helping effectively communicate messages and achieve their creative goals.'),(762,136,'_hero_title','field_6586ec932087b'),(763,136,'what_we_do','2'),(764,136,'_what_we_do','field_6586ecfa0bb25'),(765,136,'showcase_title','Some of the things we’ve brought our minds too.'),(766,136,'_showcase_title','field_6586ed84947a4'),(767,136,'skills_title','Our skills & proficiencies to build to best experience to suit your needs'),(768,136,'_skills_title','field_6586edb48e72b'),(769,136,'approach','4'),(770,136,'_approach','field_6586ee3b00320'),(771,136,'what_we_do_0_title','Strategy'),(772,136,'_what_we_do_0_title','field_65c263b3a6a4b'),(773,136,'what_we_do_0_service_pills_0_service','Infrastructure'),(774,136,'_what_we_do_0_service_pills_0_service','field_6586ed2b0bb28'),(775,136,'what_we_do_0_service_pills_1_service','Data management'),(776,136,'_what_we_do_0_service_pills_1_service','field_6586ed2b0bb28'),(777,136,'what_we_do_0_service_pills_2_service','Server Strategy'),(778,136,'_what_we_do_0_service_pills_2_service','field_6586ed2b0bb28'),(779,136,'what_we_do_0_service_pills','3'),(780,136,'_what_we_do_0_service_pills','field_6586ed150bb27'),(781,136,'what_we_do_1_title','Strategy'),(782,136,'_what_we_do_1_title','field_65c263b3a6a4b'),(783,136,'what_we_do_1_service_pills_0_service','Infrastructure'),(784,136,'_what_we_do_1_service_pills_0_service','field_6586ed2b0bb28'),(785,136,'what_we_do_1_service_pills_1_service','Data management'),(786,136,'_what_we_do_1_service_pills_1_service','field_6586ed2b0bb28'),(787,136,'what_we_do_1_service_pills_2_service','Server Strategy'),(788,136,'_what_we_do_1_service_pills_2_service','field_6586ed2b0bb28'),(789,136,'what_we_do_1_service_pills','3'),(790,136,'_what_we_do_1_service_pills','field_6586ed150bb27'),(791,136,'what_we_do_2_title','Technical collaboration'),(792,136,'_what_we_do_2_title','field_6586ed0c0bb26'),(793,136,'what_we_do_2_service_pills_0_service','Infrastructure'),(794,136,'_what_we_do_2_service_pills_0_service','field_6586ed2b0bb28'),(795,136,'what_we_do_2_service_pills_1_service','Data management'),(796,136,'_what_we_do_2_service_pills_1_service','field_6586ed2b0bb28'),(797,136,'what_we_do_2_service_pills_2_service','Server Strategy'),(798,136,'_what_we_do_2_service_pills_2_service','field_6586ed2b0bb28'),(799,136,'what_we_do_2_service_pills','3'),(800,136,'_what_we_do_2_service_pills','field_6586ed150bb27'),(801,136,'approach_0_title','Strategy'),(802,136,'_approach_0_title','field_6586ee5000321'),(803,136,'approach_0_paragraph','We’ll work out the technicalities of your brilliant idea, and bring it to life.'),(804,136,'_approach_0_paragraph','field_6586ee5400322'),(805,136,'approach_1_title','Design'),(806,136,'_approach_1_title','field_6586ee5000321'),(807,136,'approach_1_paragraph','We’ll start from mobile and design our way all the way up to the big screens.'),(808,136,'_approach_1_paragraph','field_6586ee5400322'),(809,136,'approach_2_title','Development'),(810,136,'_approach_2_title','field_6586ee5000321'),(811,136,'approach_2_paragraph','We don’t shy away from a challenge, and we’ll always take on a complex project.'),(812,136,'_approach_2_paragraph','field_6586ee5400322'),(813,136,'approach_3_title','Launch'),(814,136,'_approach_3_title','field_6586ee5000321'),(815,136,'approach_3_paragraph','Once we launch it, we’ll give you a login and where you can easily manage your content.'),(816,136,'_approach_3_paragraph','field_6586ee5400322'),(817,136,'what_we_do_title','Strategy'),(818,136,'_what_we_do_title','field_65c263b3a6a4b'),(819,136,'what_we_do_pills_0_pill_text','Infrastructure'),(820,136,'_what_we_do_pills_0_pill_text','field_65c263c7a6a4d'),(821,136,'what_we_do_pills_1_pill_text','Data management'),(822,136,'_what_we_do_pills_1_pill_text','field_65c263c7a6a4d'),(823,136,'what_we_do_pills_2_pill_text','Server strategy'),(824,136,'_what_we_do_pills_2_pill_text','field_65c263c7a6a4d'),(825,136,'what_we_do_pills','3'),(826,136,'_what_we_do_pills','field_65c263b7a6a4c'),(827,136,'what_we_do_0_pills_0_pill_text','Infrastructure'),(828,136,'_what_we_do_0_pills_0_pill_text','field_65c263c7a6a4d'),(829,136,'what_we_do_0_pills_1_pill_text','Data management'),(830,136,'_what_we_do_0_pills_1_pill_text','field_65c263c7a6a4d'),(831,136,'what_we_do_0_pills_2_pill_text','Server strategy'),(832,136,'_what_we_do_0_pills_2_pill_text','field_65c263c7a6a4d'),(833,136,'what_we_do_0_pills','3'),(834,136,'_what_we_do_0_pills','field_65c263b7a6a4c'),(835,136,'what_we_do_1_pills_0_pill_text','Infrastructure'),(836,136,'_what_we_do_1_pills_0_pill_text','field_65c263c7a6a4d'),(837,136,'what_we_do_1_pills_1_pill_text','Data management'),(838,136,'_what_we_do_1_pills_1_pill_text','field_65c263c7a6a4d'),(839,136,'what_we_do_1_pills_2_pill_text','Server strategy'),(840,136,'_what_we_do_1_pills_2_pill_text','field_65c263c7a6a4d'),(841,136,'what_we_do_1_pills','3'),(842,136,'_what_we_do_1_pills','field_65c263b7a6a4c'),(843,137,'hero_title','Web Space is creative development studio with a goal to conceptualise & execute creative solutions that meet the unique needs and objectives, helping effectively communicate messages and achieve their creative goals.'),(844,137,'_hero_title','field_6586ec932087b'),(845,137,'what_we_do','2'),(846,137,'_what_we_do','field_6586ecfa0bb25'),(847,137,'showcase_title','Some of the things we’ve brought our minds too.'),(848,137,'_showcase_title','field_6586ed84947a4'),(849,137,'skills_title','Our skills & proficiencies to build to best experience to suit your needs'),(850,137,'_skills_title','field_6586edb48e72b'),(851,137,'approach','4'),(852,137,'_approach','field_6586ee3b00320'),(853,137,'what_we_do_0_title','Strategy'),(854,137,'_what_we_do_0_title','field_65c263b3a6a4b'),(855,137,'what_we_do_0_service_pills_0_service','Infrastructure'),(856,137,'_what_we_do_0_service_pills_0_service','field_6586ed2b0bb28'),(857,137,'what_we_do_0_service_pills_1_service','Data management'),(858,137,'_what_we_do_0_service_pills_1_service','field_6586ed2b0bb28'),(859,137,'what_we_do_0_service_pills_2_service','Server Strategy'),(860,137,'_what_we_do_0_service_pills_2_service','field_6586ed2b0bb28'),(861,137,'what_we_do_0_service_pills','3'),(862,137,'_what_we_do_0_service_pills','field_6586ed150bb27'),(863,137,'what_we_do_1_title','Strategy'),(864,137,'_what_we_do_1_title','field_65c263b3a6a4b'),(865,137,'what_we_do_1_service_pills_0_service','Infrastructure'),(866,137,'_what_we_do_1_service_pills_0_service','field_6586ed2b0bb28'),(867,137,'what_we_do_1_service_pills_1_service','Data management'),(868,137,'_what_we_do_1_service_pills_1_service','field_6586ed2b0bb28'),(869,137,'what_we_do_1_service_pills_2_service','Server Strategy'),(870,137,'_what_we_do_1_service_pills_2_service','field_6586ed2b0bb28'),(871,137,'what_we_do_1_service_pills','3'),(872,137,'_what_we_do_1_service_pills','field_6586ed150bb27'),(873,137,'what_we_do_2_title','Technical collaboration'),(874,137,'_what_we_do_2_title','field_6586ed0c0bb26'),(875,137,'what_we_do_2_service_pills_0_service','Infrastructure'),(876,137,'_what_we_do_2_service_pills_0_service','field_6586ed2b0bb28'),(877,137,'what_we_do_2_service_pills_1_service','Data management'),(878,137,'_what_we_do_2_service_pills_1_service','field_6586ed2b0bb28'),(879,137,'what_we_do_2_service_pills_2_service','Server Strategy'),(880,137,'_what_we_do_2_service_pills_2_service','field_6586ed2b0bb28'),(881,137,'what_we_do_2_service_pills','3'),(882,137,'_what_we_do_2_service_pills','field_6586ed150bb27'),(883,137,'approach_0_title','Strategy'),(884,137,'_approach_0_title','field_6586ee5000321'),(885,137,'approach_0_paragraph','We’ll work out the technicalities of your brilliant idea, and bring it to life.'),(886,137,'_approach_0_paragraph','field_6586ee5400322'),(887,137,'approach_1_title','Design'),(888,137,'_approach_1_title','field_6586ee5000321'),(889,137,'approach_1_paragraph','We’ll start from mobile and design our way all the way up to the big screens.'),(890,137,'_approach_1_paragraph','field_6586ee5400322'),(891,137,'approach_2_title','Development'),(892,137,'_approach_2_title','field_6586ee5000321'),(893,137,'approach_2_paragraph','We don’t shy away from a challenge, and we’ll always take on a complex project.'),(894,137,'_approach_2_paragraph','field_6586ee5400322'),(895,137,'approach_3_title','Launch'),(896,137,'_approach_3_title','field_6586ee5000321'),(897,137,'approach_3_paragraph','Once we launch it, we’ll give you a login and where you can easily manage your content.'),(898,137,'_approach_3_paragraph','field_6586ee5400322'),(899,137,'what_we_do_title','Strategy'),(900,137,'_what_we_do_title','field_65c263b3a6a4b'),(901,137,'what_we_do_pills_0_pill_text','Infrastructure'),(902,137,'_what_we_do_pills_0_pill_text','field_65c263c7a6a4d'),(903,137,'what_we_do_pills_1_pill_text','Data management'),(904,137,'_what_we_do_pills_1_pill_text','field_65c263c7a6a4d'),(905,137,'what_we_do_pills_2_pill_text','Server strategy'),(906,137,'_what_we_do_pills_2_pill_text','field_65c263c7a6a4d'),(907,137,'what_we_do_pills','3'),(908,137,'_what_we_do_pills','field_65c263b7a6a4c'),(909,137,'what_we_do_0_pills_0_pill_text','Infrastructure'),(910,137,'_what_we_do_0_pills_0_pill_text','field_65c263c7a6a4d'),(911,137,'what_we_do_0_pills_1_pill_text','Data management'),(912,137,'_what_we_do_0_pills_1_pill_text','field_65c263c7a6a4d'),(913,137,'what_we_do_0_pills_2_pill_text','Server strategy'),(914,137,'_what_we_do_0_pills_2_pill_text','field_65c263c7a6a4d'),(915,137,'what_we_do_0_pills','3'),(916,137,'_what_we_do_0_pills','field_65c263b7a6a4c'),(917,137,'what_we_do_1_pills_0_pill_text','Infrastructure'),(918,137,'_what_we_do_1_pills_0_pill_text','field_65c263c7a6a4d'),(919,137,'what_we_do_1_pills_1_pill_text','Data management'),(920,137,'_what_we_do_1_pills_1_pill_text','field_65c263c7a6a4d'),(921,137,'what_we_do_1_pills_2_pill_text','Server strategy'),(922,137,'_what_we_do_1_pills_2_pill_text','field_65c263c7a6a4d'),(923,137,'what_we_do_1_pills','3'),(924,137,'_what_we_do_1_pills','field_65c263b7a6a4c'),(925,141,'_wp_attached_file','2024/02/landing.png'),(926,141,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1512;s:6:\"height\";i:982;s:4:\"file\";s:19:\"2024/02/landing.png\";s:8:\"filesize\";i:422494;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"landing-300x195.png\";s:5:\"width\";i:300;s:6:\"height\";i:195;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6224;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"landing-1024x665.png\";s:5:\"width\";i:1024;s:6:\"height\";i:665;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51246;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"landing-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3740;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"landing-768x499.png\";s:5:\"width\";i:768;s:6:\"height\";i:499;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28797;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(927,9,'_thumbnail_id','141'),(928,138,'hero_title','Web Space is creative development studio with a goal to conceptualise & execute creative solutions that meet the unique needs and objectives, helping effectively communicate messages and achieve their creative goals.'),(929,138,'_hero_title','field_6586ec932087b'),(930,138,'what_we_do','2'),(931,138,'_what_we_do','field_6586ecfa0bb25'),(932,138,'showcase_title','Some of the things we’ve brought our minds too.'),(933,138,'_showcase_title','field_6586ed84947a4'),(934,138,'skills_title','Our skills & proficiencies to build to best experience to suit your needs'),(935,138,'_skills_title','field_6586edb48e72b'),(936,138,'approach','4'),(937,138,'_approach','field_6586ee3b00320'),(938,138,'what_we_do_0_title','Strategy'),(939,138,'_what_we_do_0_title','field_65c263b3a6a4b'),(940,138,'what_we_do_0_service_pills_0_service','Infrastructure'),(941,138,'_what_we_do_0_service_pills_0_service','field_6586ed2b0bb28'),(942,138,'what_we_do_0_service_pills_1_service','Data management'),(943,138,'_what_we_do_0_service_pills_1_service','field_6586ed2b0bb28'),(944,138,'what_we_do_0_service_pills_2_service','Server Strategy'),(945,138,'_what_we_do_0_service_pills_2_service','field_6586ed2b0bb28'),(946,138,'what_we_do_0_service_pills','3'),(947,138,'_what_we_do_0_service_pills','field_6586ed150bb27'),(948,138,'what_we_do_1_title','Strategy'),(949,138,'_what_we_do_1_title','field_65c263b3a6a4b'),(950,138,'what_we_do_1_service_pills_0_service','Infrastructure'),(951,138,'_what_we_do_1_service_pills_0_service','field_6586ed2b0bb28'),(952,138,'what_we_do_1_service_pills_1_service','Data management'),(953,138,'_what_we_do_1_service_pills_1_service','field_6586ed2b0bb28'),(954,138,'what_we_do_1_service_pills_2_service','Server Strategy'),(955,138,'_what_we_do_1_service_pills_2_service','field_6586ed2b0bb28'),(956,138,'what_we_do_1_service_pills','3'),(957,138,'_what_we_do_1_service_pills','field_6586ed150bb27'),(958,138,'what_we_do_2_title','Technical collaboration'),(959,138,'_what_we_do_2_title','field_6586ed0c0bb26'),(960,138,'what_we_do_2_service_pills_0_service','Infrastructure'),(961,138,'_what_we_do_2_service_pills_0_service','field_6586ed2b0bb28'),(962,138,'what_we_do_2_service_pills_1_service','Data management'),(963,138,'_what_we_do_2_service_pills_1_service','field_6586ed2b0bb28'),(964,138,'what_we_do_2_service_pills_2_service','Server Strategy'),(965,138,'_what_we_do_2_service_pills_2_service','field_6586ed2b0bb28'),(966,138,'what_we_do_2_service_pills','3'),(967,138,'_what_we_do_2_service_pills','field_6586ed150bb27'),(968,138,'approach_0_title','Strategy'),(969,138,'_approach_0_title','field_65c26517a9103'),(970,138,'approach_0_paragraph','We’ll work out the technicalities of your brilliant idea, and bring it to life.'),(971,138,'_approach_0_paragraph','field_65c26521a9104'),(972,138,'approach_1_title','Design'),(973,138,'_approach_1_title','field_65c26517a9103'),(974,138,'approach_1_paragraph','We’ll start from mobile and design our way all the way up to the big screens.'),(975,138,'_approach_1_paragraph','field_65c26521a9104'),(976,138,'approach_2_title','Development'),(977,138,'_approach_2_title','field_65c26517a9103'),(978,138,'approach_2_paragraph','We don’t shy away from a challenge, and we’ll always take on a complex project.'),(979,138,'_approach_2_paragraph','field_65c26521a9104'),(980,138,'approach_3_title','Launch'),(981,138,'_approach_3_title','field_65c26517a9103'),(982,138,'approach_3_paragraph','Once we launch it, we’ll give you a login and where you can easily manage your content.'),(983,138,'_approach_3_paragraph','field_65c26521a9104'),(984,138,'what_we_do_title','Strategy'),(985,138,'_what_we_do_title','field_65c263b3a6a4b'),(986,138,'what_we_do_pills_0_pill_text','Infrastructure'),(987,138,'_what_we_do_pills_0_pill_text','field_65c263c7a6a4d'),(988,138,'what_we_do_pills_1_pill_text','Data management'),(989,138,'_what_we_do_pills_1_pill_text','field_65c263c7a6a4d'),(990,138,'what_we_do_pills_2_pill_text','Server strategy'),(991,138,'_what_we_do_pills_2_pill_text','field_65c263c7a6a4d'),(992,138,'what_we_do_pills','3'),(993,138,'_what_we_do_pills','field_65c263b7a6a4c'),(994,138,'what_we_do_0_pills_0_pill_text','Infrastructure'),(995,138,'_what_we_do_0_pills_0_pill_text','field_65c263c7a6a4d'),(996,138,'what_we_do_0_pills_1_pill_text','Data management'),(997,138,'_what_we_do_0_pills_1_pill_text','field_65c263c7a6a4d'),(998,138,'what_we_do_0_pills_2_pill_text','Server strategy'),(999,138,'_what_we_do_0_pills_2_pill_text','field_65c263c7a6a4d'),(1000,138,'what_we_do_0_pills','3'),(1001,138,'_what_we_do_0_pills','field_65c263b7a6a4c'),(1002,138,'what_we_do_1_pills_0_pill_text','Infrastructure'),(1003,138,'_what_we_do_1_pills_0_pill_text','field_65c263c7a6a4d'),(1004,138,'what_we_do_1_pills_1_pill_text','Data management'),(1005,138,'_what_we_do_1_pills_1_pill_text','field_65c263c7a6a4d'),(1006,138,'what_we_do_1_pills_2_pill_text','Server strategy'),(1007,138,'_what_we_do_1_pills_2_pill_text','field_65c263c7a6a4d'),(1008,138,'what_we_do_1_pills','3'),(1009,138,'_what_we_do_1_pills','field_65c263b7a6a4c'),(1010,142,'_edit_last','1'),(1011,142,'stat_1_field',''),(1012,142,'_stat_1_field','field_65c2531150e51'),(1013,142,'stat_1_value',''),(1014,142,'_stat_1_value','field_65c2531b50e52'),(1015,142,'stat_1',''),(1016,142,'_stat_1','field_65c252de50e50'),(1017,142,'stat_2_field',''),(1018,142,'_stat_2_field','field_65c2532a50e54'),(1019,142,'stat_2_value',''),(1020,142,'_stat_2_value','field_65c2532a50e55'),(1021,142,'stat_2',''),(1022,142,'_stat_2','field_65c2532a50e53'),(1023,142,'stat_3_field',''),(1024,142,'_stat_3_field','field_65c2533a12b89'),(1025,142,'stat_3_value',''),(1026,142,'_stat_3_value','field_65c2533a12b8a'),(1027,142,'stat_3',''),(1028,142,'_stat_3','field_65c2533a12b88'),(1029,142,'content',''),(1030,142,'_content','field_65c253e0692e6'),(1031,142,'_edit_lock','1707328883:1'),(1032,143,'_edit_last','1'),(1033,143,'stat_1_field',''),(1034,143,'_stat_1_field','field_65c2531150e51'),(1035,143,'stat_1_value',''),(1036,143,'_stat_1_value','field_65c2531b50e52'),(1037,143,'stat_1',''),(1038,143,'_stat_1','field_65c252de50e50'),(1039,143,'stat_2_field',''),(1040,143,'_stat_2_field','field_65c2532a50e54'),(1041,143,'stat_2_value',''),(1042,143,'_stat_2_value','field_65c2532a50e55'),(1043,143,'stat_2',''),(1044,143,'_stat_2','field_65c2532a50e53'),(1045,143,'stat_3_field',''),(1046,143,'_stat_3_field','field_65c2533a12b89'),(1047,143,'stat_3_value',''),(1048,143,'_stat_3_value','field_65c2533a12b8a'),(1049,143,'stat_3',''),(1050,143,'_stat_3','field_65c2533a12b88'),(1051,143,'content',''),(1052,143,'_content','field_65c253e0692e6'),(1053,143,'_edit_lock','1707328080:1'),(1066,150,'_wp_attached_file','2024/02/crown.png'),(1067,150,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1448;s:6:\"height\";i:480;s:4:\"file\";s:17:\"2024/02/crown.png\";s:8:\"filesize\";i:1116948;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"crown-300x99.png\";s:5:\"width\";i:300;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55956;}s:5:\"large\";a:5:{s:4:\"file\";s:18:\"crown-1024x339.png\";s:5:\"width\";i:1024;s:6:\"height\";i:339;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:564202;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"crown-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46439;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:17:\"crown-768x255.png\";s:5:\"width\";i:768;s:6:\"height\";i:255;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:331171;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1068,151,'_wp_attached_file','2024/02/culcuil.png'),(1069,151,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1448;s:6:\"height\";i:480;s:4:\"file\";s:19:\"2024/02/culcuil.png\";s:8:\"filesize\";i:847506;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"culcuil-300x99.png\";s:5:\"width\";i:300;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66238;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"culcuil-1024x339.png\";s:5:\"width\";i:1024;s:6:\"height\";i:339;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:551151;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"culcuil-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51161;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"culcuil-768x255.png\";s:5:\"width\";i:768;s:6:\"height\";i:255;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:345870;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1070,152,'_wp_attached_file','2024/02/frank.png'),(1071,152,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1448;s:6:\"height\";i:480;s:4:\"file\";s:17:\"2024/02/frank.png\";s:8:\"filesize\";i:671253;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"frank-300x99.png\";s:5:\"width\";i:300;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35898;}s:5:\"large\";a:5:{s:4:\"file\";s:18:\"frank-1024x339.png\";s:5:\"width\";i:1024;s:6:\"height\";i:339;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:304721;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"frank-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25804;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:17:\"frank-768x255.png\";s:5:\"width\";i:768;s:6:\"height\";i:255;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:186480;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1072,153,'_wp_attached_file','2024/02/heriage.png'),(1073,153,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1448;s:6:\"height\";i:480;s:4:\"file\";s:19:\"2024/02/heriage.png\";s:8:\"filesize\";i:1388587;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"heriage-300x99.png\";s:5:\"width\";i:300;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59401;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"heriage-1024x339.png\";s:5:\"width\";i:1024;s:6:\"height\";i:339;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:648024;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"heriage-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45180;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"heriage-768x255.png\";s:5:\"width\";i:768;s:6:\"height\";i:255;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:371959;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1076,142,'_thumbnail_id','153'),(1078,150,'_edit_lock','1707328044:1'),(1079,151,'_edit_lock','1707328047:1'),(1080,152,'_edit_lock','1707328050:1'),(1081,153,'_edit_lock','1707328053:1'),(1082,155,'_wp_attached_file','2024/02/ilovecooking.png'),(1083,155,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1448;s:6:\"height\";i:480;s:4:\"file\";s:24:\"2024/02/ilovecooking.png\";s:8:\"filesize\";i:1039811;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"ilovecooking-300x99.png\";s:5:\"width\";i:300;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:62802;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"ilovecooking-1024x339.png\";s:5:\"width\";i:1024;s:6:\"height\";i:339;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:528319;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"ilovecooking-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52553;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"ilovecooking-768x255.png\";s:5:\"width\";i:768;s:6:\"height\";i:255;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:326752;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1084,143,'_thumbnail_id','155');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_posts`
--
DROP TABLE IF EXISTS `wp_posts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
SET character_set_client = utf8mb4 ;
CREATE TABLE `wp_posts` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_author` bigint(20) unsigned NOT NULL DEFAULT '0',
`post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_title` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_excerpt` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
`ping_status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
`post_password` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`post_name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`to_ping` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
`pinged` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content_filtered` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`guid` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`menu_order` int(11) NOT NULL DEFAULT '0',
`post_type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_count` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`),
KEY `post_name` (`post_name`(191)),
KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
KEY `post_parent` (`post_parent`),
KEY `post_author` (`post_author`)
) ENGINE=InnoDB AUTO_INCREMENT=157 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_posts`
--
LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (3,1,'2023-12-23 14:07:32','2023-12-23 14:07:32','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: http://web-space.local.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Comments</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Media</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Cookies</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select "Remember Me", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Embedded content from other websites</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where your data is sent</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph -->','Privacy Policy','','draft','closed','open','','privacy-policy','','','2023-12-23 14:07:32','2023-12-23 14:07:32','',0,'http://web-space.local/?page_id=3',0,'page','',0),(9,1,'2023-12-23 14:19:36','2023-12-23 14:19:36','','Home','','publish','closed','closed','','home','','','2024-02-06 21:22:51','2024-02-06 21:22:51','',0,'http://web-space.local/?page_id=9',0,'page','',0),(10,1,'2023-12-23 14:19:29','2023-12-23 14:19:29','{\"version\": 2, \"isGlobalStylesUserThemeJSON\": true }','Custom Styles','','publish','closed','closed','','wp-global-styles-twentytwentyfour','','','2023-12-23 14:19:29','2023-12-23 14:19:29','',0,'http://web-space.local/wp-global-styles-twentytwentyfour/',0,'wp_global_styles','',0),(11,1,'2023-12-23 14:19:36','2023-12-23 14:19:36','','Home','','inherit','closed','closed','','9-revision-v1','','','2023-12-23 14:19:36','2023-12-23 14:19:36','',9,'http://web-space.local/?p=11',0,'revision','',0),(38,1,'2023-12-23 15:16:27','2023-12-23 15:16:27','','JavaScript','','publish','closed','closed','','javascript','','','2024-02-06 15:35:54','2024-02-06 15:35:54','',0,'http://web-space.local/?post_type=skill&p=38',0,'skill','',0),(39,1,'2023-12-23 15:16:36','2023-12-23 15:16:36','','WordPress','','publish','closed','closed','','wordpress','','','2024-02-06 15:35:54','2024-02-06 15:35:54','',0,'http://web-space.local/?post_type=skill&p=39',0,'skill','',0),(41,1,'2023-12-23 15:18:41','2023-12-23 15:17:48',' ','','','publish','closed','closed','','41','','','2023-12-23 15:18:41','2023-12-23 15:18:41','',0,'http://web-space.local/?p=41',1,'nav_menu_item','',0),(44,1,'2023-12-23 15:18:16','2023-12-23 15:18:16','','Projects','','publish','closed','closed','','projects','','','2023-12-23 15:18:16','2023-12-23 15:18:16','',0,'http://web-space.local/?page_id=44',0,'page','',0),(45,1,'2023-12-23 15:18:16','2023-12-23 15:18:16','','Projects','','inherit','closed','closed','','44-revision-v1','','','2023-12-23 15:18:16','2023-12-23 15:18:16','',44,'http://web-space.local/?p=45',0,'revision','',0),(47,1,'2023-12-23 15:18:41','2023-12-23 15:18:41',' ','','','publish','closed','closed','','47','','','2023-12-23 15:18:41','2023-12-23 15:18:41','',0,'http://web-space.local/?p=47',2,'nav_menu_item','',0),(48,1,'2023-12-23 15:18:41','2023-12-23 15:18:41','','Client space','','publish','closed','closed','','client-space','','','2023-12-23 15:18:41','2023-12-23 15:18:41','',0,'http://web-space.local/?p=48',3,'nav_menu_item','',0),(57,1,'2024-01-09 10:34:43','2024-01-09 10:34:43','','PHP','','publish','closed','closed','','php','','','2024-02-06 15:35:54','2024-02-06 15:35:54','',0,'http://web-space.local/?post_type=skill&p=57',0,'skill','',0),(59,1,'2024-02-06 14:49:29','2024-02-06 14:49:29','','Home','','inherit','closed','closed','','9-revision-v1','','','2024-02-06 14:49:29','2024-02-06 14:49:29','',9,'http://web-space.local/?p=59',0,'revision','',0),(60,1,'2024-02-06 14:50:39','2024-02-06 14:50:39','','Home','','inherit','closed','closed','','9-revision-v1','','','2024-02-06 14:50:39','2024-02-06 14:50:39','',9,'http://web-space.local/?p=60',0,'revision','',0),(61,1,'2024-02-06 14:51:18','2024-02-06 14:51:18','','Home','','inherit','closed','closed','','9-revision-v1','','','2024-02-06 14:51:18','2024-02-06 14:51:18','',9,'http://web-space.local/?p=61',0,'revision','',0),(62,1,'2024-02-06 14:51:27','2024-02-06 14:51:27','','Home','','inherit','closed','closed','','9-revision-v1','','','2024-02-06 14:51:27','2024-02-06 14:51:27','',9,'http://web-space.local/?p=62',0,'revision','',0),(63,1,'2024-02-06 14:51:29','2024-02-06 14:51:29','','Home','','inherit','closed','closed','','9-revision-v1','','','2024-02-06 14:51:29','2024-02-06 14:51:29','',9,'http://web-space.local/?p=63',0,'revision','',0),(64,1,'2024-02-06 14:51:42','2024-02-06 14:51:42','','Home','','inherit','closed','closed','','9-revision-v1','','','2024-02-06 14:51:42','2024-02-06 14:51:42','',9,'http://web-space.local/?p=64',0,'revision','',0),(65,1,'2024-02-06 14:52:51','2024-02-06 14:52:51','','Home','','inherit','closed','closed','','9-revision-v1','','','2024-02-06 14:52:51','2024-02-06 14:52:51','',9,'http://web-space.local/?p=65',0,'revision','',0),(66,1,'2024-02-06 15:29:28','2024-02-06 15:29:28','','elementor','','inherit','open','closed','','elementor','','','2024-02-06 15:29:28','2024-02-06 15:29:28','',0,'http://web-space.local/wp-content/uploads/2024/02/elementor.png',0,'attachment','image/png',0),(67,1,'2024-02-06 15:29:28','2024-02-06 15:29:28','','html','','inherit','open','closed','','html','','','2024-02-06 15:29:28','2024-02-06 15:29:28','',0,'http://web-space.local/wp-content/uploads/2024/02/html.png',0,'attachment','image/png',0),(68,1,'2024-02-06 15:29:28','2024-02-06 15:29:28','','js','','inherit','open','closed','','js','','','2024-02-06 15:29:28','2024-02-06 15:29:28','',0,'http://web-space.local/wp-content/uploads/2024/02/js.png',0,'attachment','image/png',0),(69,1,'2024-02-06 15:29:28','2024-02-06 15:29:28','','php','','inherit','open','closed','','php-2','','','2024-02-06 15:29:28','2024-02-06 15:29:28','',0,'http://web-space.local/wp-content/uploads/2024/02/php.png',0,'attachment','image/png',0),(70,1,'2024-02-06 15:29:28','2024-02-06 15:29:28','','woo','','inherit','open','closed','','woo','','','2024-02-06 15:29:28','2024-02-06 15:29:28','',0,'http://web-space.local/wp-content/uploads/2024/02/woo.png',0,'attachment','image/png',0),(71,1,'2024-02-06 15:29:28','2024-02-06 15:29:28','','wordpress','','inherit','open','closed','','wordpress-2','','','2024-02-06 15:29:28','2024-02-06 15:29:28','',0,'http://web-space.local/wp-content/uploads/2024/02/wordpress.png',0,'attachment','image/png',0),(72,1,'2024-02-06 15:29:44','2024-02-06 15:29:44','','Elementor','','publish','closed','closed','','elementor','','','2024-02-06 15:35:54','2024-02-06 15:35:54','',0,'http://web-space.local/?post_type=skill&p=72',0,'skill','',0),(74,1,'2024-02-06 15:30:30','2024-02-06 15:30:30','','WooCommerce','','publish','closed','closed','','woocommerce','','','2024-02-06 15:35:54','2024-02-06 15:35:54','',0,'http://web-space.local/?post_type=skill&p=74',0,'skill','',0),(75,1,'2024-02-06 15:30:50','2024-02-06 15:30:50','','HTML','','publish','closed','closed','','html','','','2024-02-06 15:35:54','2024-02-06 15:35:54','',0,'http://web-space.local/?post_type=skill&p=75',0,'skill','',0),(77,1,'2024-02-06 15:33:28','2024-02-06 15:33:28','','Línte na farraige','','publish','closed','closed','','linte-na-farraige','','','2024-02-06 16:12:26','2024-02-06 16:12:26','',0,'http://web-space.local/?post_type=project&p=77',0,'project','',0),(78,1,'2024-02-06 15:40:13','2024-02-06 15:40:13','a:7:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:9:\"post_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:7:\"project\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";a:12:{i:0;s:9:\"permalink\";i:1;s:11:\"the_content\";i:2;s:7:\"excerpt\";i:3;s:10:\"discussion\";i:4;s:8:\"comments\";i:5;s:9:\"revisions\";i:6;s:4:\"slug\";i:7;s:6:\"author\";i:8;s:6:\"format\";i:9;s:15:\"page_attributes\";i:10;s:10:\"categories\";i:11;s:15:\"send-trackbacks\";}s:11:\"description\";s:0:\"\";}','Project Fields','project-fields','publish','closed','closed','','group_65c252d362028','','','2024-02-06 16:14:04','2024-02-06 16:14:04','',0,'http://web-space.local/?post_type=acf-field-group&p=78',0,'acf-field-group','',0),(79,1,'2024-02-06 15:41:35','2024-02-06 15:41:35','a:7:{s:4:\"type\";s:5:\"group\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:3:\"row\";s:10:\"sub_fields\";a:0:{}}','Stat 1','stat_1','publish','closed','closed','','field_65c252de50e50','','','2024-02-06 15:41:35','2024-02-06 15:41:35','',78,'http://web-space.local/?post_type=acf-field&p=79',0,'acf-field','',0),(80,1,'2024-02-06 15:41:35','2024-02-06 15:41:35','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Field','field','publish','closed','closed','','field_65c2531150e51','','','2024-02-06 15:41:35','2024-02-06 15:41:35','',79,'http://web-space.local/?post_type=acf-field&p=80',0,'acf-field','',0),(81,1,'2024-02-06 15:41:35','2024-02-06 15:41:35','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Value','value','publish','closed','closed','','field_65c2531b50e52','','','2024-02-06 15:41:35','2024-02-06 15:41:35','',79,'http://web-space.local/?post_type=acf-field&p=81',1,'acf-field','',0),(82,1,'2024-02-06 15:41:35','2024-02-06 15:41:35','a:7:{s:4:\"type\";s:5:\"group\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:3:\"row\";s:10:\"sub_fields\";a:0:{}}','Stat 2','stat_2','publish','closed','closed','','field_65c2532a50e53','','','2024-02-06 15:41:35','2024-02-06 15:41:35','',78,'http://web-space.local/?post_type=acf-field&p=82',1,'acf-field','',0),(83,1,'2024-02-06 15:41:35','2024-02-06 15:41:35','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Field','field','publish','closed','closed','','field_65c2532a50e54','','','2024-02-06 15:41:35','2024-02-06 15:41:35','',82,'http://web-space.local/?post_type=acf-field&p=83',0,'acf-field','',0),(84,1,'2024-02-06 15:41:35','2024-02-06 15:41:35','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Value','value','publish','closed','closed','','field_65c2532a50e55','','','2024-02-06 15:41:35','2024-02-06 15:41:35','',82,'http://web-space.local/?post_type=acf-field&p=84',1,'acf-field','',0),(85,1,'2024-02-06 15:41:49','2024-02-06 15:41:49','a:7:{s:4:\"type\";s:5:\"group\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:3:\"row\";s:10:\"sub_fields\";a:0:{}}','Stat 3','stat_3','publish','closed','closed','','field_65c2533a12b88','','','2024-02-06 15:41:49','2024-02-06 15:41:49','',78,'http://web-space.local/?post_type=acf-field&p=85',2,'acf-field','',0),(86,1,'2024-02-06 15:41:49','2024-02-06 15:41:49','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Field','field','publish','closed','closed','','field_65c2533a12b89','','','2024-02-06 15:41:49','2024-02-06 15:41:49','',85,'http://web-space.local/?post_type=acf-field&p=86',0,'acf-field','',0),(87,1,'2024-02-06 15:41:49','2024-02-06 15:41:49','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Value','value','publish','closed','closed','','field_65c2533a12b8a','','','2024-02-06 15:41:49','2024-02-06 15:41:49','',85,'http://web-space.local/?post_type=acf-field&p=87',1,'acf-field','',0),(88,1,'2024-02-06 15:47:41','2024-02-06 15:47:41','a:9:{s:4:\"type\";s:16:\"flexible_content\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"layouts\";a:5:{s:20:\"layout_65c253f2130cc\";a:6:{s:3:\"key\";s:20:\"layout_65c253f2130cc\";s:5:\"label\";s:15:\"Large Text Area\";s:4:\"name\";s:15:\"large_text_area\";s:7:\"display\";s:3:\"row\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_65c255dac79de\";a:6:{s:3:\"key\";s:20:\"layout_65c255dac79de\";s:5:\"label\";s:9:\"Gallery 1\";s:4:\"name\";s:9:\"gallery_1\";s:7:\"display\";s:3:\"row\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_65c25600c79eb\";a:6:{s:3:\"key\";s:20:\"layout_65c25600c79eb\";s:5:\"label\";s:9:\"Gallery 2\";s:4:\"name\";s:9:\"gallery_2\";s:7:\"display\";s:3:\"row\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_65c25610c79f7\";a:6:{s:3:\"key\";s:20:\"layout_65c25610c79f7\";s:5:\"label\";s:13:\"The Challenge\";s:4:\"name\";s:13:\"the_challenge\";s:7:\"display\";s:3:\"row\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_65c2562cc7a02\";a:6:{s:3:\"key\";s:20:\"layout_65c2562cc7a02\";s:5:\"label\";s:15:\"Paragraph Field\";s:4:\"name\";s:15:\"paragraph_field\";s:7:\"display\";s:3:\"row\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}}s:12:\"button_label\";s:7:\"Add Row\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}','Content','content','publish','closed','closed','','field_65c253e0692e6','','','2024-02-06 16:08:16','2024-02-06 16:08:16','',78,'http://web-space.local/?post_type=acf-field&p=88',3,'acf-field','',0),(89,1,'2024-02-06 15:47:41','2024-02-06 15:47:41','a:11:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_65c253f2130cc\";s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Large Text Area','large_text_area','publish','closed','closed','','field_65c25418692e7','','','2024-02-06 15:47:41','2024-02-06 15:47:41','',88,'http://web-space.local/?post_type=acf-field&p=89',0,'acf-field','',0),(101,1,'2024-02-06 15:54:34','2024-02-06 15:54:34','a:19:{s:4:\"type\";s:7:\"gallery\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_65c255dac79de\";s:13:\"return_format\";s:0:\"\";s:12:\"preview_size\";s:6:\"medium\";s:6:\"insert\";s:6:\"append\";s:7:\"library\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Gallery 1','gallery_1','publish','closed','closed','','field_65c255dac79e0','','','2024-02-06 15:54:34','2024-02-06 15:54:34','',88,'http://web-space.local/?post_type=acf-field&p=101',0,'acf-field','',0),(102,1,'2024-02-06 15:54:34','2024-02-06 15:54:34','a:19:{s:4:\"type\";s:7:\"gallery\";s:12:\"instructions\";s:12:\"Max 2 Images\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_65c25600c79eb\";s:13:\"return_format\";s:0:\"\";s:12:\"preview_size\";s:6:\"medium\";s:6:\"insert\";s:6:\"append\";s:7:\"library\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Gallery 2','gallery_2','publish','closed','closed','','field_65c25600c79ed','','','2024-02-06 15:54:34','2024-02-06 15:54:34','',88,'http://web-space.local/?post_type=acf-field&p=102',0,'acf-field','',0),(103,1,'2024-02-06 15:54:34','2024-02-06 15:54:34','a:10:{s:4:\"type\";s:16:\"flexible_content\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_65c25610c79f7\";s:7:\"layouts\";a:2:{s:20:\"layout_65c2546b8c2ed\";a:6:{s:3:\"key\";s:20:\"layout_65c2546b8c2ed\";s:5:\"label\";s:4:\"Text\";s:4:\"name\";s:4:\"text\";s:7:\"display\";s:3:\"row\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_65c257a30f937\";a:6:{s:3:\"key\";s:20:\"layout_65c257a30f937\";s:5:\"label\";s:14:\"Text and Image\";s:4:\"name\";s:14:\"text_and_image\";s:7:\"display\";s:3:\"row\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}}s:12:\"button_label\";s:7:\"Add Row\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}','Dynamic Text and Image','dynamic_text_and_image','publish','closed','closed','','field_65c25610c79f9','','','2024-02-06 16:04:41','2024-02-06 16:04:41','',88,'http://web-space.local/?post_type=acf-field&p=103',0,'acf-field','',0),(104,1,'2024-02-06 15:54:34','2024-02-06 15:54:34','a:11:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_65c2546b8c2ed\";s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Text','text','publish','closed','closed','','field_65c25610c79fa','','','2024-02-06 15:54:34','2024-02-06 15:54:34','',103,'http://web-space.local/?post_type=acf-field&p=104',0,'acf-field','',0),(109,1,'2024-02-06 15:54:34','2024-02-06 15:54:34','a:10:{s:4:\"type\";s:16:\"flexible_content\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_65c2562cc7a02\";s:7:\"layouts\";a:3:{s:20:\"layout_65c259423101d\";a:6:{s:3:\"key\";s:20:\"layout_65c259423101d\";s:5:\"label\";s:5:\"Title\";s:4:\"name\";s:5:\"title\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_65c25950e15b2\";a:6:{s:3:\"key\";s:20:\"layout_65c25950e15b2\";s:5:\"label\";s:9:\"Paragraph\";s:4:\"name\";s:9:\"paragraph\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_65c2595de15b4\";a:6:{s:3:\"key\";s:20:\"layout_65c2595de15b4\";s:5:\"label\";s:15:\"Large Paragraph\";s:4:\"name\";s:15:\"large_paragraph\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}}s:12:\"button_label\";s:7:\"Add Row\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}','Paragraph Item','paragraph_item','publish','closed','closed','','field_65c2562dc7a09','','','2024-02-06 16:09:51','2024-02-06 16:09:51','',88,'http://web-space.local/?post_type=acf-field&p=109',0,'acf-field','',0),(112,1,'2024-02-06 15:56:00','2024-02-06 15:56:00','','Rectangle 8','','inherit','open','closed','','rectangle-8','','','2024-02-06 15:57:59','2024-02-06 15:57:59','',77,'http://web-space.local/wp-content/uploads/2024/02/Rectangle-8.png',0,'attachment','image/png',0),(113,1,'2024-02-06 15:58:33','2024-02-06 15:58:33','','Rectangle 9','','inherit','open','closed','','rectangle-9','','','2024-02-06 15:58:39','2024-02-06 15:58:39','',77,'http://web-space.local/wp-content/uploads/2024/02/Rectangle-9.png',0,'attachment','image/png',0),(115,1,'2024-02-06 16:00:52','2024-02-06 16:00:52','a:11:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_65c257a30f937\";s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Text','text','publish','closed','closed','','field_65c257a30f93a','','','2024-02-06 16:01:16','2024-02-06 16:01:16','',103,'http://web-space.local/?post_type=acf-field&p=115',0,'acf-field','',0),(116,1,'2024-02-06 16:00:52','2024-02-06 16:00:52','a:16:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_65c257a30f937\";s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Image','image','publish','closed','closed','','field_65c257a30f93b','','','2024-02-06 16:01:16','2024-02-06 16:01:16','',103,'http://web-space.local/?post_type=acf-field&p=116',1,'acf-field','',0),(117,1,'2024-02-06 16:02:15','2024-02-06 16:02:15','a:11:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_65c25950e15b2\";s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','Paragraph','paragraph','publish','closed','closed','','field_65c257e0b12ab','','','2024-02-06 16:10:36','2024-02-06 16:10:36','',109,'http://web-space.local/?post_type=acf-field&p=117',0,'acf-field','',0),(118,1,'2024-02-06 16:02:15','2024-02-06 16:02:15','a:11:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_65c2595de15b4\";s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','Large Paragraph','large_paragraph','publish','closed','closed','','field_65c257f2b12b0','','','2024-02-06 16:10:36','2024-02-06 16:10:36','',109,'http://web-space.local/?post_type=acf-field&p=118',0,'acf-field','',0),(119,1,'2024-02-06 16:03:31','2024-02-06 16:03:31','','Rectangle 11','','inherit','open','closed','','rectangle-11','','','2024-02-06 16:03:31','2024-02-06 16:03:31','',77,'http://web-space.local/wp-content/uploads/2024/02/Rectangle-11.png',0,'attachment','image/png',0),(120,1,'2024-02-06 16:03:34','2024-02-06 16:03:34','','Rectangle 10','','inherit','open','closed','','rectangle-10','','','2024-02-06 16:11:03','2024-02-06 16:11:03','',77,'http://web-space.local/wp-content/uploads/2024/02/Rectangle-10.png',0,'attachment','image/png',0),(121,1,'2024-02-06 16:08:16','2024-02-06 16:08:16','a:11:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_65c259423101d\";s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Title','title','publish','closed','closed','','field_65c2593be15b1','','','2024-02-06 16:08:16','2024-02-06 16:08:16','',109,'http://web-space.local/?post_type=acf-field&p=121',0,'acf-field','',0),(122,1,'2024-02-06 16:12:16','2024-02-06 16:12:16','','cover','','inherit','open','closed','','cover','','','2024-02-06 16:12:16','2024-02-06 16:12:16','',77,'http://web-space.local/wp-content/uploads/2024/02/cover.png',0,'attachment','image/png',0),(123,1,'2024-02-06 16:13:54','2024-02-06 16:13:54','a:11:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:4:\"page\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"9\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";a:13:{i:0;s:9:\"permalink\";i:1;s:11:\"the_content\";i:2;s:7:\"excerpt\";i:3;s:10:\"discussion\";i:4;s:8:\"comments\";i:5;s:9:\"revisions\";i:6;s:4:\"slug\";i:7;s:6:\"author\";i:8;s:6:\"format\";i:9;s:15:\"page_attributes\";i:10;s:10:\"categories\";i:11;s:4:\"tags\";i:12;s:15:\"send-trackbacks\";}s:11:\"description\";s:0:\"\";s:15:\"show_in_graphql\";i:1;s:18:\"graphql_field_name\";s:10:\"homeFields\";s:37:\"map_graphql_types_from_location_rules\";i:0;s:13:\"graphql_types\";s:0:\"\";}','Home Fields','home-fields','publish','closed','closed','','home-fields','','','2024-02-06 17:05:49','2024-02-06 17:05:49','',0,'http://web-space.local/?p=123',0,'acf-field-group','',0),(124,1,'2024-02-06 16:13:54','2024-02-06 16:13:54','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','Hero Title','hero_title','publish','closed','closed','','field_6586ec932087b','','','2024-02-06 16:13:54','2024-02-06 16:13:54','',123,'http://web-space.local/?post_type=acf-field&p=124',0,'acf-field','',0),(125,1,'2024-02-06 16:13:54','2024-02-06 16:13:54','a:14:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:15:\"show_in_graphql\";i:1;s:19:\"graphql_description\";s:0:\"\";s:18:\"graphql_field_name\";s:8:\"whatWeDo\";s:16:\"graphql_non_null\";i:0;s:9:\"collapsed\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:6:\"layout\";s:5:\"table\";s:12:\"button_label\";s:0:\"\";}','What We Do','what_we_do','publish','closed','closed','','field_6586ecfa0bb25','','','2024-02-06 16:55:05','2024-02-06 16:55:05','',123,'http://web-space.local/?post_type=acf-field&p=125',1,'acf-field','',0),(126,1,'2024-02-06 16:13:54','2024-02-06 16:13:54','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Showcase Title','showcase_title','publish','closed','closed','','field_6586ed84947a4','','','2024-02-06 16:13:54','2024-02-06 16:13:54','',123,'http://web-space.local/?post_type=acf-field&p=126',2,'acf-field','',0),(127,1,'2024-02-06 16:13:54','2024-02-06 16:13:54','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Skills Title','skills_title','publish','closed','closed','','field_6586edb48e72b','','','2024-02-06 16:13:54','2024-02-06 16:13:54','',123,'http://web-space.local/?post_type=acf-field&p=127',3,'acf-field','',0),(128,1,'2024-02-06 16:13:54','2024-02-06 16:13:54','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:6:\"layout\";s:5:\"table\";s:12:\"button_label\";s:0:\"\";}','Approach','approach','publish','closed','closed','','field_6586ee3b00320','','','2024-02-06 16:13:54','2024-02-06 16:13:54','',123,'http://web-space.local/?post_type=acf-field&p=128',4,'acf-field','',0),(129,1,'2024-02-06 16:52:36','2024-02-06 16:52:36','a:14:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:15:\"show_in_graphql\";i:1;s:19:\"graphql_description\";s:0:\"\";s:18:\"graphql_field_name\";s:5:\"title\";s:16:\"graphql_non_null\";i:0;s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Title','title','publish','closed','closed','','field_65c263b3a6a4b','','','2024-02-06 16:52:36','2024-02-06 16:52:36','',125,'http://web-space.local/?post_type=acf-field&p=129',0,'acf-field','',0),(130,1,'2024-02-06 16:52:36','2024-02-06 16:52:36','a:14:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:15:\"show_in_graphql\";i:1;s:19:\"graphql_description\";s:0:\"\";s:18:\"graphql_field_name\";s:5:\"pills\";s:16:\"graphql_non_null\";i:0;s:9:\"collapsed\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:6:\"layout\";s:5:\"table\";s:12:\"button_label\";s:0:\"\";}','Pills','pills','publish','closed','closed','','field_65c263b7a6a4c','','','2024-02-06 16:55:32','2024-02-06 16:55:32','',125,'http://web-space.local/?post_type=acf-field&p=130',1,'acf-field','',0),(131,1,'2024-02-06 16:52:36','2024-02-06 16:52:36','a:14:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:15:\"show_in_graphql\";i:1;s:19:\"graphql_description\";s:0:\"\";s:18:\"graphql_field_name\";s:8:\"pillText\";s:16:\"graphql_non_null\";i:0;s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Pill Text','pill_text','publish','closed','closed','','field_65c263c7a6a4d','','','2024-02-06 16:52:36','2024-02-06 16:52:36','',130,'http://web-space.local/?post_type=acf-field&p=131',0,'acf-field','',0),(132,1,'2024-02-06 16:53:26','2024-02-06 16:53:26','','Home','','inherit','closed','closed','','9-revision-v1','','','2024-02-06 16:53:26','2024-02-06 16:53:26','',9,'http://web-space.local/?p=132',0,'revision','',0),(136,1,'2024-02-06 16:56:08','2024-02-06 16:56:08','','Home','','inherit','closed','closed','','9-revision-v1','','','2024-02-06 16:56:08','2024-02-06 16:56:08','',9,'http://web-space.local/?p=136',0,'revision','',0),(137,1,'2024-02-06 16:57:18','2024-02-06 16:57:18','','Home','','inherit','closed','closed','','9-revision-v1','','','2024-02-06 16:57:18','2024-02-06 16:57:18','',9,'http://web-space.local/?p=137',0,'revision','',0),(138,1,'2024-02-06 16:57:22','2024-02-06 16:57:22','','Home','','inherit','closed','closed','','9-revision-v1','','','2024-02-06 16:57:22','2024-02-06 16:57:22','',9,'http://web-space.local/?p=138',0,'revision','',0),(139,1,'2024-02-06 16:58:20','2024-02-06 16:58:20','a:14:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:15:\"show_in_graphql\";i:1;s:19:\"graphql_description\";s:0:\"\";s:18:\"graphql_field_name\";s:5:\"title\";s:16:\"graphql_non_null\";i:0;s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Title','title','publish','closed','closed','','field_65c26517a9103','','','2024-02-06 16:58:20','2024-02-06 16:58:20','',128,'http://web-space.local/?post_type=acf-field&p=139',0,'acf-field','',0),(140,1,'2024-02-06 16:58:20','2024-02-06 16:58:20','a:14:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:15:\"show_in_graphql\";i:1;s:19:\"graphql_description\";s:0:\"\";s:18:\"graphql_field_name\";s:9:\"paragraph\";s:16:\"graphql_non_null\";i:0;s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','Paragraph','paragraph','publish','closed','closed','','field_65c26521a9104','','','2024-02-06 16:58:20','2024-02-06 16:58:20','',128,'http://web-space.local/?post_type=acf-field&p=140',1,'acf-field','',0),(141,1,'2024-02-06 21:22:47','2024-02-06 21:22:47','','landing','','inherit','open','closed','','landing','','','2024-02-06 21:22:47','2024-02-06 21:22:47','',9,'http://web-space.local/wp-content/uploads/2024/02/landing.png',0,'attachment','image/png',0),(142,1,'2024-02-07 14:12:56','2024-02-07 14:12:56','','Heritage Ireland','','publish','closed','closed','','heritage-ireland','','','2024-02-07 17:48:58','2024-02-07 17:48:58','',0,'http://web-space.local/?post_type=project&p=142',0,'project','',0),(143,1,'2024-02-07 14:13:04','2024-02-07 14:13:04','','ILoveCooking','','publish','closed','closed','','ilovecooking','','','2024-02-07 17:50:24','2024-02-07 17:50:24','',0,'http://web-space.local/?post_type=project&p=143',0,'project','',0),(150,1,'2024-02-07 17:48:14','2024-02-07 17:48:14','','crown','','inherit','open','closed','','crown','','','2024-02-07 17:48:14','2024-02-07 17:48:14','',0,'http://web-space.local/wp-content/uploads/2024/02/crown.png',0,'attachment','image/png',0),(151,1,'2024-02-07 17:48:16','2024-02-07 17:48:16','','culcuil','','inherit','open','closed','','culcuil','','','2024-02-07 17:48:16','2024-02-07 17:48:16','',0,'http://web-space.local/wp-content/uploads/2024/02/culcuil.png',0,'attachment','image/png',0),(152,1,'2024-02-07 17:48:18','2024-02-07 17:48:18','','frank','','inherit','open','closed','','frank','','','2024-02-07 17:48:18','2024-02-07 17:48:18','',0,'http://web-space.local/wp-content/uploads/2024/02/frank.png',0,'attachment','image/png',0),(153,1,'2024-02-07 17:48:24','2024-02-07 17:48:24','','heriage','','inherit','open','closed','','heriage','','','2024-02-07 17:48:24','2024-02-07 17:48:24','',0,'http://web-space.local/wp-content/uploads/2024/02/heriage.png',0,'attachment','image/png',0),(155,1,'2024-02-07 17:50:06','2024-02-07 17:50:06','','ilovecooking','','inherit','open','closed','','ilovecooking-2','','','2024-02-07 17:50:06','2024-02-07 17:50:06','',0,'http://web-space.local/wp-content/uploads/2024/02/ilovecooking.png',0,'attachment','image/png',0),(156,1,'2024-02-14 13:21:26','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2024-02-14 13:21:26','0000-00-00 00:00:00','',0,'http://web-space.local/?p=156',0,'post','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_term_relationships`
--
DROP TABLE IF EXISTS `wp_term_relationships`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
SET character_set_client = utf8mb4 ;
CREATE TABLE `wp_term_relationships` (
`object_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`term_order` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`object_id`,`term_taxonomy_id`),
KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_term_relationships`
--
LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (10,2,0),(38,1,0),(38,3,0),(39,1,0),(39,3,0),(41,4,0),(47,4,0),(48,4,0),(57,1,0),(57,3,0),(72,1,0),(72,3,0),(74,1,0),(74,3,0),(75,1,0),(75,3,0),(77,11,0),(77,13,0),(77,14,0),(77,15,0),(77,16,0),(123,1,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_term_taxonomy`
--
DROP TABLE IF EXISTS `wp_term_taxonomy`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
SET character_set_client = utf8mb4 ;
CREATE TABLE `wp_term_taxonomy` (
`term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`taxonomy` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`description` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
`parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`count` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`term_taxonomy_id`),
UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_term_taxonomy`
--
LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,0),(2,2,'wp_theme','',0,1),(3,3,'skill_category','',0,6),(4,4,'nav_menu','',0,3),(5,5,'skill_category','',0,0),(10,10,'skill_category','',0,0),(11,11,'project_category','',0,1),(12,12,'project_category','',0,0),(13,13,'post_tag','',0,1),(14,14,'post_tag','',0,1),(15,15,'post_tag','',0,1),(16,16,'post_tag','',0,1);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_termmeta`
--
DROP TABLE IF EXISTS `wp_termmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
SET character_set_client = utf8mb4 ;
CREATE TABLE `wp_termmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci,
PRIMARY KEY (`meta_id`),
KEY `term_id` (`term_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_termmeta`
--
LOCK TABLES `wp_termmeta` WRITE;
/*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_terms`
--
DROP TABLE IF EXISTS `wp_terms`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
SET character_set_client = utf8mb4 ;
CREATE TABLE `wp_terms` (
`term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`slug` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`term_group` bigint(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`term_id`),
KEY `slug` (`slug`(191)),
KEY `name` (`name`(191))
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_terms`
--
LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'twentytwentyfour','twentytwentyfour',0),(3,'Languages','languages',0),(4,'Main Menu','main-menu',0),(5,'Frameworks','frameworks',0),(10,'CMS Systems','cms-systems',0),(11,'Website Development','website-development',0),(12,'Mobile App Development','mobile-app-development',0),(13,'EventBrite','eventbrite',0),(14,'JavaScript','javascript',0),(15,'React','react',0),(16,'WordPress','wordpress',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_usermeta`
--
DROP TABLE IF EXISTS `wp_usermeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
SET character_set_client = utf8mb4 ;
CREATE TABLE `wp_usermeta` (
`umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci,
PRIMARY KEY (`umeta_id`),
KEY `user_id` (`user_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=32 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_usermeta`
--
LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','admin'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','1'),(16,1,'session_tokens','a:2:{s:64:\"8841cbe30fe00e95373d2a6d7b09f92e4ddde912e46216ff8af4bce04d127baa\";a:4:{s:10:\"expiration\";i:1707989653;s:2:\"ip\";s:9:\"127.0.0.1\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36\";s:5:\"login\";i:1707816853;}s:64:\"bb219af3dd47d73632ebe0dff01c40db4c3d75ce2b48b73f3e7efd8da3c0c317\";a:4:{s:10:\"expiration\";i:1708089685;s:2:\"ip\";s:9:\"127.0.0.1\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36\";s:5:\"login\";i:1707916885;}}'),(17,1,'wp_dashboard_quick_press_last_post_id','156'),(18,1,'wp_persisted_preferences','a:2:{s:14:\"core/edit-post\";a:3:{s:26:\"isComplementaryAreaVisible\";b:1;s:12:\"welcomeGuide\";b:0;s:10:\"openPanels\";a:2:{i:0;s:11:\"post-status\";i:1;s:14:\"featured-image\";}}s:9:\"_modified\";s:24:\"2024-02-06T21:29:54.760Z\";}'),(19,1,'meta-box-order_skill','a:4:{s:15:\"acf_after_title\";s:12:\"postimagediv\";s:4:\"side\";s:27:\"submitdiv,skill_categorydiv\";s:6:\"normal\";s:7:\"slugdiv\";s:8:\"advanced\";s:0:\"\";}'),(20,1,'screen_layout_skill','2'),(21,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(22,1,'metaboxhidden_nav-menus','a:3:{i:0;s:19:\"add-post-type-skill\";i:1;s:12:\"add-post_tag\";i:2;s:18:\"add-skill_category\";}'),(23,1,'nav_menu_recently_edited','4'),(24,1,'wp_user-settings','libraryContent=browse'),(25,1,'wp_user-settings-time','1703344945'),(26,1,'closedpostboxes_page','a:0:{}'),(27,1,'metaboxhidden_page','a:0:{}'),(28,1,'meta-box-order_page','a:4:{s:6:\"normal\";s:23:\"acf-group_6586ec51e309d\";s:8:\"advanced\";s:0:\"\";s:4:\"side\";s:0:\"\";s:15:\"acf_after_title\";s:0:\"\";}'),(29,1,'closedpostboxes_project','a:0:{}'),(30,1,'metaboxhidden_project','a:1:{i:0;s:7:\"slugdiv\";}'),(31,1,'wp_media_library_mode','list');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_users`
--
DROP TABLE IF EXISTS `wp_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
SET character_set_client = utf8mb4 ;
CREATE TABLE `wp_users` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_login` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_pass` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_nicename` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_email` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_url` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_activation_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_status` int(11) NOT NULL DEFAULT '0',
`display_name` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
PRIMARY KEY (`ID`),
KEY `user_login_key` (`user_login`),
KEY `user_nicename` (`user_nicename`),
KEY `user_email` (`user_email`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_users`
--
LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'admin','$P$BaAyXUjyxYa9hjcpqscNyO8rMGU.BB/','admin','[email protected]','http://web-space.local','2023-12-23 14:07:32','',0,'admin');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2024-02-14 15:10:10