-
Notifications
You must be signed in to change notification settings - Fork 0
/
wordpress-init.sql
586 lines (535 loc) · 684 KB
/
wordpress-init.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
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
-- MariaDB dump 10.19 Distrib 10.11.6-MariaDB, for Linux (x86_64)
--
-- Host: localhost Database: wordpress
-- ------------------------------------------------------
-- Server version 10.11.6-MariaDB-log
/*!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 */;
/*!40101 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 */;
/*!40101 SET character_set_client = utf8 */;
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) DEFAULT NULL,
`meta_value` longtext DEFAULT NULL,
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 */;
/*!40101 SET character_set_client = utf8 */;
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 NOT NULL,
`comment_author_email` varchar(100) NOT NULL DEFAULT '',
`comment_author_url` varchar(200) NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) 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 NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT 0,
`comment_approved` varchar(20) NOT NULL DEFAULT '1',
`comment_agent` varchar(255) NOT NULL DEFAULT '',
`comment_type` varchar(20) 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 */;
INSERT INTO `wp_comments` VALUES
(1,1,'A WordPress Commenter','wapuu@wordpress.example','https://en-gb.wordpress.org/','','2024-02-27 16:05:33','2024-02-27 16:05:33','Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://en.gravatar.com/\">Gravatar</a>.',0,'1','','comment',0,0);
/*!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 */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_links` (
`link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`link_url` varchar(255) NOT NULL DEFAULT '',
`link_name` varchar(255) NOT NULL DEFAULT '',
`link_image` varchar(255) NOT NULL DEFAULT '',
`link_target` varchar(25) NOT NULL DEFAULT '',
`link_description` varchar(255) NOT NULL DEFAULT '',
`link_visible` varchar(20) 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) NOT NULL DEFAULT '',
`link_notes` mediumtext NOT NULL,
`link_rss` varchar(255) 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 */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_options` (
`option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`option_name` varchar(191) NOT NULL DEFAULT '',
`option_value` longtext NOT NULL,
`autoload` varchar(20) NOT NULL DEFAULT 'yes',
PRIMARY KEY (`option_id`),
UNIQUE KEY `option_name` (`option_name`),
KEY `autoload` (`autoload`)
) ENGINE=InnoDB AUTO_INCREMENT=148 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://localhost:8888','yes'),
(2,'home','http://localhost:8888','yes'),
(3,'blogname','wordpress','yes'),
(4,'blogdescription','','yes'),
(5,'users_can_register','0','yes'),
(6,'admin_email','pabloripoll.it@gmail.com','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','login@example.com','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','0','yes'),
(22,'posts_per_page','10','yes'),
(23,'date_format','j F Y','yes'),
(24,'time_format','H:i','yes'),
(25,'links_updated_date_format','j F Y H:i','yes'),
(26,'comment_moderation','0','yes'),
(27,'moderation_notify','1','yes'),
(28,'permalink_structure','','yes'),
(29,'rewrite_rules','','yes'),
(30,'hack_file','0','yes'),
(31,'blog_charset','UTF-8','yes'),
(32,'moderation_keys','','no'),
(33,'active_plugins','a:0:{}','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','twentytwentyfour','yes'),
(41,'stylesheet','twentytwentyfour','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','0','yes'),
(50,'default_link_category','2','yes'),
(51,'show_on_front','posts','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','Europe/London','yes'),
(81,'page_for_posts','0','yes'),
(82,'page_on_front','0','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','1724601932','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','1','yes'),
(103,'WPLANG','en_GB','yes'),
(104,'user_count','1','no'),
(105,'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'),
(106,'sidebars_widgets','a:4:{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\";}s:13:\"array_version\";i:3;}','yes'),
(107,'cron','a:7:{i:1709049936;a:4:{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;}}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;}}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;}}}i:1709049937;a:1:{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:1709049952;a:3:{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;}}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;}}}i:1709049955;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:1709050012;a:1:{s:28:\"wp_update_comment_type_batch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1709136336;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'),
(108,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(109,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(110,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(111,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(112,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(113,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(114,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(115,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(116,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(117,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(118,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(119,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(120,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(121,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(122,'_transient_wp_core_block_css_files','a:2:{s:7:\"version\";s:5:\"6.4.3\";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,'_transient_doing_cron','1709050741.0608139038085937500000','yes'),
(124,'_site_transient_timeout_available_translations','1709060737','no'),
(125,'_site_transient_available_translations','a:131:{s:2:\"af\";a:8:{s:8:\"language\";s:2:\"af\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-05-13 15:59:22\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/af.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"af\";i:2;s:3:\"afr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Gaan voort\";}}s:2:\"am\";a:8:{s:8:\"language\";s:2:\"am\";s:7:\"version\";s:5:\"6.0.7\";s:7:\"updated\";s:19:\"2022-09-29 20:43:49\";s:12:\"english_name\";s:7:\"Amharic\";s:11:\"native_name\";s:12:\"አማርኛ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.0.7/am.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"am\";i:2;s:3:\"amh\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"ቀጥል\";}}s:3:\"arg\";a:8:{s:8:\"language\";s:3:\"arg\";s:7:\"version\";s:8:\"6.2-beta\";s:7:\"updated\";s:19:\"2022-09-22 16:46:56\";s:12:\"english_name\";s:9:\"Aragonese\";s:11:\"native_name\";s:9:\"Aragonés\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/6.2-beta/arg.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"an\";i:2;s:3:\"arg\";i:3;s:3:\"arg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continar\";}}s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-13 12:49:38\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.3/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"متابعة\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:6:\"4.8.24\";s:7:\"updated\";s:19:\"2017-01-26 15:42:35\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"العربية المغربية\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.24/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"as\";a:8:{s:8:\"language\";s:2:\"as\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2023-10-19 09:22:30\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"অসমীয়া\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.3/as.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"as\";i:2;s:3:\"asm\";i:3;s:3:\"asm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:3:\"azb\";a:8:{s:8:\"language\";s:3:\"azb\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-01-19 08:58:31\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"گؤنئی آذربایجان\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.4.3/azb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-06 00:09:27\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:3:\"bel\";a:8:{s:8:\"language\";s:3:\"bel\";s:7:\"version\";s:6:\"4.9.25\";s:7:\"updated\";s:19:\"2019-10-29 07:54:22\";s:12:\"english_name\";s:10:\"Belarusian\";s:11:\"native_name\";s:29:\"Беларуская мова\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.9.25/bel.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"be\";i:2;s:3:\"bel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Працягнуць\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-07 20:18:03\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Напред\";}}s:5:\"bn_BD\";a:8:{s:8:\"language\";s:5:\"bn_BD\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-20 15:12:22\";s:12:\"english_name\";s:20:\"Bengali (Bangladesh)\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:28:\"চালিয়ে যান\";}}s:2:\"bo\";a:8:{s:8:\"language\";s:2:\"bo\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2020-10-30 03:24:38\";s:12:\"english_name\";s:7:\"Tibetan\";s:11:\"native_name\";s:21:\"བོད་ཡིག\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/bo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bo\";i:2;s:3:\"tib\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:33:\"མུ་མཐུད་དུ།\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"6.2.4\";s:7:\"updated\";s:19:\"2023-02-22 20:45:53\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.4/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-19 20:52:54\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.3/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:3:\"ceb\";a:8:{s:8:\"language\";s:3:\"ceb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-02 17:25:51\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/ceb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}}s:5:\"cs_CZ\";a:8:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-22 18:28:51\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:9:\"Čeština\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/cs_CZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Pokračovat\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-01 14:45:04\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.3/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-11 13:58:40\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsæt\";}}s:5:\"de_AT\";a:8:{s:8:\"language\";s:5:\"de_AT\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-01 07:57:24\";s:12:\"english_name\";s:16:\"German (Austria)\";s:11:\"native_name\";s:21:\"Deutsch (Österreich)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/de_AT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2023-11-08 18:40:24\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2023-11-08 18:40:48\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/translation/core/6.4.3/de_CH_informal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-01-31 19:08:42\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/6.4.3/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-01-31 19:08:22\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:3:\"dsb\";a:8:{s:8:\"language\";s:3:\"dsb\";s:7:\"version\";s:5:\"6.2.4\";s:7:\"updated\";s:19:\"2022-07-16 12:13:09\";s:12:\"english_name\";s:13:\"Lower Sorbian\";s:11:\"native_name\";s:16:\"Dolnoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.4/dsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"dsb\";i:3;s:3:\"dsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Dalej\";}}s:3:\"dzo\";a:8:{s:8:\"language\";s:3:\"dzo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-06-29 08:59:03\";s:12:\"english_name\";s:8:\"Dzongkha\";s:11:\"native_name\";s:18:\"རྫོང་ཁ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/dzo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"dz\";i:2;s:3:\"dzo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-21 12:58:19\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.3/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2023-11-25 14:09:36\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-23 01:49:45\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-01-30 17:36:08\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2023-10-22 02:53:03\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/en_NZ.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2023-08-28 15:58:51\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/en_ZA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2023-09-20 08:57:43\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.3/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-17 18:41:12\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/es_ES.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-18 19:36:30\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/es_AR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CR\";a:8:{s:8:\"language\";s:5:\"es_CR\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2023-11-08 20:42:04\";s:12:\"english_name\";s:20:\"Spanish (Costa Rica)\";s:11:\"native_name\";s:22:\"Español de Costa Rica\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/es_CR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2023-10-16 16:00:04\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/es_VE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_EC\";a:8:{s:8:\"language\";s:5:\"es_EC\";s:7:\"version\";s:5:\"6.2.4\";s:7:\"updated\";s:19:\"2023-04-21 13:32:10\";s:12:\"english_name\";s:17:\"Spanish (Ecuador)\";s:11:\"native_name\";s:19:\"Español de Ecuador\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.4/es_EC.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_DO\";a:8:{s:8:\"language\";s:5:\"es_DO\";s:7:\"version\";s:5:\"5.8.9\";s:7:\"updated\";s:19:\"2021-10-08 14:32:50\";s:12:\"english_name\";s:28:\"Spanish (Dominican Republic)\";s:11:\"native_name\";s:33:\"Español de República Dominicana\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.9/es_DO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"5.8.9\";s:7:\"updated\";s:19:\"2021-10-04 20:53:18\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.9/es_PE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_UY\";a:8:{s:8:\"language\";s:5:\"es_UY\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-31 18:33:26\";s:12:\"english_name\";s:17:\"Spanish (Uruguay)\";s:11:\"native_name\";s:19:\"Español de Uruguay\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/es_UY.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-06-14 16:02:22\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/es_CL.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PR\";a:8:{s:8:\"language\";s:5:\"es_PR\";s:7:\"version\";s:6:\"5.4.15\";s:7:\"updated\";s:19:\"2020-04-29 15:36:59\";s:12:\"english_name\";s:21:\"Spanish (Puerto Rico)\";s:11:\"native_name\";s:23:\"Español de Puerto Rico\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.4.15/es_PR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:6:\"5.2.20\";s:7:\"updated\";s:19:\"2019-03-02 06:35:01\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"Español de Guatemala\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.2.20/es_GT.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-01-31 03:32:51\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/es_CO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-12 14:01:59\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/es_MX.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2023-10-05 10:16:58\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.3/et.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Jätka\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-01-12 17:31:37\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.3/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-15 06:10:53\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"fa_AF\";a:8:{s:8:\"language\";s:5:\"fa_AF\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-23 12:35:28\";s:12:\"english_name\";s:21:\"Persian (Afghanistan)\";s:11:\"native_name\";s:31:\"(فارسی (افغانستان\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/fa_AF.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2023-11-09 09:46:35\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.3/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-01 23:56:53\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/fr_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2023-11-29 13:35:45\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/fr_CA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-16 14:53:49\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:3:\"fur\";a:8:{s:8:\"language\";s:3:\"fur\";s:7:\"version\";s:6:\"4.8.24\";s:7:\"updated\";s:19:\"2023-04-30 13:56:46\";s:12:\"english_name\";s:8:\"Friulian\";s:11:\"native_name\";s:8:\"Friulian\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.24/fur.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"fur\";i:3;s:3:\"fur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"fy\";a:8:{s:8:\"language\";s:2:\"fy\";s:7:\"version\";s:5:\"6.2.4\";s:7:\"updated\";s:19:\"2022-12-25 12:53:23\";s:12:\"english_name\";s:7:\"Frisian\";s:11:\"native_name\";s:5:\"Frysk\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.4/fy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fy\";i:2;s:3:\"fry\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Trochgean\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-08-23 17:41:37\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-13 00:00:51\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"gu\";a:8:{s:8:\"language\";s:2:\"gu\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-16 05:27:26\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"ગુજરાતી\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.3/gu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gu\";i:2;s:3:\"guj\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ચાલુ રાખો\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:6:\"4.4.32\";s:7:\"updated\";s:19:\"2015-12-05 00:59:09\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.4.32/haz.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"6.2.4\";s:7:\"updated\";s:19:\"2023-05-28 22:06:16\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.4/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"המשך\";}}s:5:\"hi_IN\";a:8:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-25 08:05:38\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/hi_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"जारी रखें\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-01-03 21:54:15\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.3/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:3:\"hsb\";a:8:{s:8:\"language\";s:3:\"hsb\";s:7:\"version\";s:5:\"6.2.4\";s:7:\"updated\";s:19:\"2023-02-22 17:37:32\";s:12:\"english_name\";s:13:\"Upper Sorbian\";s:11:\"native_name\";s:17:\"Hornjoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.4/hsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"hsb\";i:3;s:3:\"hsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:4:\"Dale\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-01-22 12:40:26\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Folytatás\";}}s:2:\"hy\";a:8:{s:8:\"language\";s:2:\"hy\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-03 16:21:10\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Հայերեն\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/hy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Շարունակել\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-01 12:30:59\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:6:\"4.9.25\";s:7:\"updated\";s:19:\"2018-12-11 10:40:02\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.25/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-09 18:36:30\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-03 13:53:06\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.3/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"次へ\";}}s:5:\"jv_ID\";a:8:{s:8:\"language\";s:5:\"jv_ID\";s:7:\"version\";s:6:\"4.9.25\";s:7:\"updated\";s:19:\"2019-02-16 23:58:56\";s:12:\"english_name\";s:8:\"Javanese\";s:11:\"native_name\";s:9:\"Basa Jawa\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.25/jv_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"jv\";i:2;s:3:\"jav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Nerusaké\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-23 06:35:46\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/ka_GE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ka\";i:2;s:3:\"kat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"გაგრძელება\";}}s:3:\"kab\";a:8:{s:8:\"language\";s:3:\"kab\";s:7:\"version\";s:5:\"6.2.4\";s:7:\"updated\";s:19:\"2023-07-05 11:40:39\";s:12:\"english_name\";s:6:\"Kabyle\";s:11:\"native_name\";s:9:\"Taqbaylit\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.4/kab.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"kab\";i:3;s:3:\"kab\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Kemmel\";}}s:2:\"kk\";a:8:{s:8:\"language\";s:2:\"kk\";s:7:\"version\";s:6:\"4.9.25\";s:7:\"updated\";s:19:\"2018-07-10 11:35:44\";s:12:\"english_name\";s:6:\"Kazakh\";s:11:\"native_name\";s:19:\"Қазақ тілі\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.25/kk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kk\";i:2;s:3:\"kaz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Жалғастыру\";}}s:2:\"km\";a:8:{s:8:\"language\";s:2:\"km\";s:7:\"version\";s:6:\"5.2.20\";s:7:\"updated\";s:19:\"2019-06-10 16:18:28\";s:12:\"english_name\";s:5:\"Khmer\";s:11:\"native_name\";s:27:\"ភាសាខ្មែរ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2.20/km.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"km\";i:2;s:3:\"khm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"បន្ត\";}}s:2:\"kn\";a:8:{s:8:\"language\";s:2:\"kn\";s:7:\"version\";s:5:\"6.1.5\";s:7:\"updated\";s:19:\"2022-10-20 17:15:28\";s:12:\"english_name\";s:7:\"Kannada\";s:11:\"native_name\";s:15:\"ಕನ್ನಡ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.5/kn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kn\";i:2;s:3:\"kan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"ಮುಂದುವರಿಸು\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2023-10-19 07:05:28\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:3:\"ckb\";a:8:{s:8:\"language\";s:3:\"ckb\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-09 09:24:08\";s:12:\"english_name\";s:16:\"Kurdish (Sorani)\";s:11:\"native_name\";s:13:\"كوردی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.4.3/ckb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ku\";i:3;s:3:\"ckb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"بهردهوام به\";}}s:3:\"kir\";a:8:{s:8:\"language\";s:3:\"kir\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-01-30 17:48:58\";s:12:\"english_name\";s:6:\"Kyrgyz\";s:11:\"native_name\";s:16:\"Кыргызча\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.4.3/kir.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ky\";i:2;s:3:\"kir\";i:3;s:3:\"kir\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Улантуу\";}}s:2:\"lo\";a:8:{s:8:\"language\";s:2:\"lo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 09:59:23\";s:12:\"english_name\";s:3:\"Lao\";s:11:\"native_name\";s:21:\"ພາສາລາວ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/lo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lo\";i:2;s:3:\"lao\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"ຕໍ່ໄປ\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-15 12:14:45\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:2:\"lv\";a:8:{s:8:\"language\";s:2:\"lv\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-19 07:50:47\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.3/lv.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lv\";i:2;s:3:\"lav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Turpināt\";}}s:5:\"mk_MK\";a:8:{s:8:\"language\";s:5:\"mk_MK\";s:7:\"version\";s:5:\"6.0.7\";s:7:\"updated\";s:19:\"2022-10-01 09:23:52\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.0.7/mk_MK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mk\";i:2;s:3:\"mkd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Продолжи\";}}s:5:\"ml_IN\";a:8:{s:8:\"language\";s:5:\"ml_IN\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-23 19:36:11\";s:12:\"english_name\";s:9:\"Malayalam\";s:11:\"native_name\";s:18:\"മലയാളം\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/ml_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ml\";i:2;s:3:\"mal\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"തുടരുക\";}}s:2:\"mn\";a:8:{s:8:\"language\";s:2:\"mn\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-01-28 08:03:35\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:12:\"Монгол\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.3/mn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mn\";i:2;s:3:\"mon\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-19 14:16:42\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.3/mr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mr\";i:2;s:3:\"mar\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"सुरु ठेवा\";}}s:5:\"ms_MY\";a:8:{s:8:\"language\";s:5:\"ms_MY\";s:7:\"version\";s:6:\"5.5.14\";s:7:\"updated\";s:19:\"2022-03-11 13:52:22\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.5.14/ms_MY.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ms\";i:2;s:3:\"msa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Teruskan\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:6:\"4.2.37\";s:7:\"updated\";s:19:\"2017-12-26 11:57:10\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.37/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ဆောင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-18 07:19:21\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"ne_NP\";a:8:{s:8:\"language\";s:5:\"ne_NP\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-24 13:40:33\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"नेपाली\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/ne_NP.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ne\";i:2;s:3:\"nep\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:43:\"जारी राख्नुहोस्\";}}s:5:\"nl_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-07 11:59:14\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/nl_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-01-31 10:24:06\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2023-10-14 13:34:08\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/6.4.3/nl_NL_formal.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-18 10:59:16\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:3:\"oci\";a:8:{s:8:\"language\";s:3:\"oci\";s:7:\"version\";s:6:\"4.8.24\";s:7:\"updated\";s:19:\"2017-08-25 10:03:08\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.24/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pa_IN\";a:8:{s:8:\"language\";s:5:\"pa_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-16 05:19:43\";s:12:\"english_name\";s:15:\"Panjabi (India)\";s:11:\"native_name\";s:18:\"ਪੰਜਾਬੀ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/pa_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pa\";i:2;s:3:\"pan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ਜਾਰੀ ਰੱਖੋ\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-13 19:59:52\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:6:\"4.3.33\";s:7:\"updated\";s:19:\"2015-12-02 21:41:29\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"پښتو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.3.33/ps.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"دوام ورکړه\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-03 14:03:53\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_AO\";a:8:{s:8:\"language\";s:5:\"pt_AO\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2023-08-21 12:17:05\";s:12:\"english_name\";s:19:\"Portuguese (Angola)\";s:11:\"native_name\";s:20:\"Português de Angola\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/pt_AO.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-07 10:22:34\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:10:\"pt_PT_ao90\";a:8:{s:8:\"language\";s:10:\"pt_PT_ao90\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-07 10:24:39\";s:12:\"english_name\";s:27:\"Portuguese (Portugal, AO90)\";s:11:\"native_name\";s:17:\"Português (AO90)\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/translation/core/6.4.3/pt_PT_ao90.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:3:\"rhg\";a:8:{s:8:\"language\";s:3:\"rhg\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-16 13:03:18\";s:12:\"english_name\";s:8:\"Rohingya\";s:11:\"native_name\";s:8:\"Ruáinga\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/rhg.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"rhg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-26 15:24:03\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-01-30 16:39:48\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:3:\"sah\";a:8:{s:8:\"language\";s:3:\"sah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-21 02:06:41\";s:12:\"english_name\";s:5:\"Sakha\";s:11:\"native_name\";s:14:\"Сахалыы\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/sah.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"sah\";i:3;s:3:\"sah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Салҕаа\";}}s:3:\"snd\";a:8:{s:8:\"language\";s:3:\"snd\";s:7:\"version\";s:6:\"5.4.15\";s:7:\"updated\";s:19:\"2020-07-07 01:53:37\";s:12:\"english_name\";s:6:\"Sindhi\";s:11:\"native_name\";s:8:\"سنڌي\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/5.4.15/snd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"sd\";i:2;s:3:\"snd\";i:3;s:3:\"snd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"اڳتي هلو\";}}s:5:\"si_LK\";a:8:{s:8:\"language\";s:5:\"si_LK\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 06:00:52\";s:12:\"english_name\";s:7:\"Sinhala\";s:11:\"native_name\";s:15:\"සිංහල\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/si_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"si\";i:2;s:3:\"sin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:44:\"දිගටම කරගෙන යන්න\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-27 05:57:05\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}}s:3:\"skr\";a:8:{s:8:\"language\";s:3:\"skr\";s:7:\"version\";s:5:\"6.4.2\";s:7:\"updated\";s:19:\"2023-11-12 10:29:16\";s:12:\"english_name\";s:7:\"Saraiki\";s:11:\"native_name\";s:14:\"سرائیکی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.4.2/skr.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"skr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"جاری رکھو\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-14 12:47:33\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Nadaljuj\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-04 19:24:45\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.3/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-01-05 20:51:57\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-16 00:27:26\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:2:\"sw\";a:8:{s:8:\"language\";s:2:\"sw\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-16 11:09:57\";s:12:\"english_name\";s:7:\"Swahili\";s:11:\"native_name\";s:9:\"Kiswahili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.3/sw.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sw\";i:2;s:3:\"swa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Endelea\";}}s:3:\"szl\";a:8:{s:8:\"language\";s:3:\"szl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-24 19:58:14\";s:12:\"english_name\";s:8:\"Silesian\";s:11:\"native_name\";s:17:\"Ślōnskŏ gŏdka\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/szl.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"szl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:13:\"Kōntynuować\";}}s:5:\"ta_IN\";a:8:{s:8:\"language\";s:5:\"ta_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:22:47\";s:12:\"english_name\";s:5:\"Tamil\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ta_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"தொடரவும்\";}}s:5:\"ta_LK\";a:8:{s:8:\"language\";s:5:\"ta_LK\";s:7:\"version\";s:6:\"4.2.37\";s:7:\"updated\";s:19:\"2015-12-03 01:07:44\";s:12:\"english_name\";s:17:\"Tamil (Sri Lanka)\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.37/ta_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"தொடர்க\";}}s:2:\"te\";a:8:{s:8:\"language\";s:2:\"te\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:47:39\";s:12:\"english_name\";s:6:\"Telugu\";s:11:\"native_name\";s:18:\"తెలుగు\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/te.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"te\";i:2;s:3:\"tel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"కొనసాగించు\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:5:\"5.8.9\";s:7:\"updated\";s:19:\"2022-06-08 04:30:30\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.9/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:2:\"tl\";a:8:{s:8:\"language\";s:2:\"tl\";s:7:\"version\";s:6:\"4.8.24\";s:7:\"updated\";s:19:\"2017-09-30 09:04:29\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8.24/tl.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-01-06 00:04:30\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"tt_RU\";a:8:{s:8:\"language\";s:5:\"tt_RU\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-20 20:20:50\";s:12:\"english_name\";s:5:\"Tatar\";s:11:\"native_name\";s:19:\"Татар теле\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/tt_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tt\";i:2;s:3:\"tat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"дәвам итү\";}}s:3:\"tah\";a:8:{s:8:\"language\";s:3:\"tah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-06 18:39:39\";s:12:\"english_name\";s:8:\"Tahitian\";s:11:\"native_name\";s:10:\"Reo Tahiti\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/tah.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ty\";i:2;s:3:\"tah\";i:3;s:3:\"tah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-02-03 03:47:06\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:16:\"ئۇيغۇرچە\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-01-14 12:08:20\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.4.3/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продовжити\";}}s:2:\"ur\";a:8:{s:8:\"language\";s:2:\"ur\";s:7:\"version\";s:6:\"5.4.15\";s:7:\"updated\";s:19:\"2020-04-09 11:17:33\";s:12:\"english_name\";s:4:\"Urdu\";s:11:\"native_name\";s:8:\"اردو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.4.15/ur.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ur\";i:2;s:3:\"urd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"جاری رکھیں\";}}s:5:\"uz_UZ\";a:8:{s:8:\"language\";s:5:\"uz_UZ\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-02-28 12:02:22\";s:12:\"english_name\";s:5:\"Uzbek\";s:11:\"native_name\";s:11:\"O‘zbekcha\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/uz_UZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uz\";i:2;s:3:\"uzb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Davom etish\";}}s:2:\"vi\";a:8:{s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"6.2.4\";s:7:\"updated\";s:19:\"2023-07-15 15:30:50\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.4/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiếp tục\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-01-30 22:23:09\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}}s:5:\"zh_HK\";a:8:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"6.2.4\";s:7:\"updated\";s:19:\"2022-07-15 15:25:03\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:12:\"香港中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.4/zh_HK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"6.4.3\";s:7:\"updated\";s:19:\"2024-01-31 01:18:24\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.4.3/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}}','no'),
(126,'_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:65:\"https://downloads.wordpress.org/release/en_GB/wordpress-6.4.3.zip\";s:6:\"locale\";s:5:\"en_GB\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:65:\"https://downloads.wordpress.org/release/en_GB/wordpress-6.4.3.zip\";s:10:\"no_content\";s:0:\"\";s:11:\"new_bundled\";s:0:\"\";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:1709049953;s:15:\"version_checked\";s:5:\"6.4.3\";s:12:\"translations\";a:0:{}}','no'),
(127,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1709049953;s:8:\"response\";a:0:{}s:12:\"translations\";a:2:{i:0;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:7:\"akismet\";s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"5.3.1\";s:7:\"updated\";s:19:\"2024-01-26 21:28:36\";s:7:\"package\";s:74:\"https://downloads.wordpress.org/translation/plugin/akismet/5.3.1/en_GB.zip\";s:10:\"autoupdate\";b:1;}i:1;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:11:\"hello-dolly\";s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.7.2\";s:7:\"updated\";s:19:\"2018-03-20 19:24:06\";s:7:\"package\";s:78:\"https://downloads.wordpress.org/translation/plugin/hello-dolly/1.7.2/en_GB.zip\";s:10:\"autoupdate\";b:1;}}s:9:\"no_update\";a:2:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"5.3.1\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.5.3.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=2818463\";s:2:\"1x\";s:60:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=2818463\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/akismet/assets/banner-1544x500.png?rev=2900731\";s:2:\"1x\";s:62:\"https://ps.w.org/akismet/assets/banner-772x250.png?rev=2900731\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";}s:9:\"hello.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582\";s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}}}','no'),
(128,'_site_transient_timeout_theme_roots','1709051753','no'),
(129,'_site_transient_theme_roots','a:3:{s:16:\"twentytwentyfour\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no'),
(130,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1709049954;s:7:\"checked\";a:3:{s:16:\"twentytwentyfour\";s:3:\"1.0\";s:17:\"twentytwentythree\";s:3:\"1.3\";s:15:\"twentytwentytwo\";s:3:\"1.6\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:3:{s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.0\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.0.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.3.zip\";s:8:\"requires\";s:3:\"6.1\";s:12:\"requires_php\";s:3:\"5.6\";}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:3:{i:0;a:7:{s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:16:\"twentytwentyfour\";s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:19:\"2023-12-05 16:03:18\";s:7:\"package\";s:80:\"https://downloads.wordpress.org/translation/theme/twentytwentyfour/1.0/en_GB.zip\";s:10:\"autoupdate\";b:1;}i:1;a:7:{s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:17:\"twentytwentythree\";s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:19:\"2023-06-04 17:38:55\";s:7:\"package\";s:81:\"https://downloads.wordpress.org/translation/theme/twentytwentythree/1.3/en_GB.zip\";s:10:\"autoupdate\";b:1;}i:2;a:7:{s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:15:\"twentytwentytwo\";s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:19:\"2023-06-04 23:57:03\";s:7:\"package\";s:79:\"https://downloads.wordpress.org/translation/theme/twentytwentytwo/1.6/en_GB.zip\";s:10:\"autoupdate\";b:1;}}}','no'),
(131,'_site_transient_timeout_browser_383c6d4d4775d6982f77fda8efd3a5ee','1709654754','no'),
(132,'_site_transient_browser_383c6d4d4775d6982f77fda8efd3a5ee','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"122.0.0.0\";s:8:\"platform\";s:5:\"Linux\";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'),
(133,'_site_transient_timeout_php_check_7f423e167c7e7e0a82fea1a6d5318f5f','1709654755','no'),
(134,'_site_transient_php_check_7f423e167c7e7e0a82fea1a6d5318f5f','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'),
(135,'can_compress_scripts','1','yes'),
(136,'_site_transient_timeout_community-events-e945964770a0fd6f0dbbcd9622f2e63f','1709093155','no'),
(137,'_site_transient_community-events-e945964770a0fd6f0dbbcd9622f2e63f','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:10:\"172.30.0.0\";}s:6:\"events\";a:1:{i:0;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:26:\"WordCamp Torrelodones 2024\";s:3:\"url\";s:39:\"https://torrelodones.wordcamp.org/2024/\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2024-03-23 08:45:00\";s:8:\"end_date\";s:19:\"2024-03-24 00:00:00\";s:20:\"start_unix_timestamp\";i:1711179900;s:18:\"end_unix_timestamp\";i:1711234800;s:8:\"location\";a:4:{s:8:\"location\";s:27:\"Torrelodones, Madrid, Spain\";s:7:\"country\";s:2:\"ES\";s:8:\"latitude\";d:40.5679185;s:9:\"longitude\";d:-3.923485;}}}}','no'),
(138,'_transient_timeout_feed_94d0b45cbbe5640144493b43a9e8f566','1709093156','no'),
(139,'_transient_feed_94d0b45cbbe5640144493b43a9e8f566','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:3:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"Blog – WordPress.org English (UK)\";s: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:27:\"https://en-gb.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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s: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:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 19 Feb 2024 12:19: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:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-GB\";s: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-beta2-57697\";s: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:35:\"Blog – WordPress.org English (UK)\";s: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:27:\"https://en-gb.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: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:76:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"WordPress London Meetup\";s: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://en-gb.wordpress.org/2024/02/19/wordpress-london-meetup/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://en-gb.wordpress.org/2024/02/19/wordpress-london-meetup/#respond\";s: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, 19 Feb 2024 12:19: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:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:6:\"London\";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:6:\"Meetup\";s: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://en-gb.wordpress.org/?p=1728\";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:127:\"The WordPress London Meetup is back! You can find all the details at https://www.meetup.com/london-wordpress/events/298932224/.\";s: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:\"Mark Robson\";s: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:208:\"\n<p>The WordPress London Meetup is back! You can find all the details at <a href=\"https://www.meetup.com/london-wordpress/events/298932224/\">https://www.meetup.com/london-wordpress/events/298932224/</a>.</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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://en-gb.wordpress.org/2024/02/19/wordpress-london-meetup/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:76:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"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:88:\"https://en-gb.wordpress.org/2024/01/30/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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://en-gb.wordpress.org/2024/01/30/wordpress-6-4-3-maintenance-and-security-release/#respond\";s: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 22:25: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: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://en-gb.wordpress.org/?p=1724\";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:392:\"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 WordPress.org, or by visiting […]\";s: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:\"Mark Robson\";s: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:7431:\"\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 by visiting your WordPress Dashboard, clicking “Updates”, and then clicking “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><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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://en-gb.wordpress.org/2024/01/30/wordpress-6-4-3-maintenance-and-security-release/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:76:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 6.4.2 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:88:\"https://en-gb.wordpress.org/2023/12/06/wordpress-6-4-2-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://en-gb.wordpress.org/2023/12/06/wordpress-6-4-2-maintenance-and-security-release/#respond\";s: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, 06 Dec 2023 17:26:11 +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://en-gb.wordpress.org/?p=1709\";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:399:\"WordPress 6.4.2 is now available! This minor release features 7 bug fixes in Core. The fixes include a bug fix for an issue causing stylesheet and theme directories to sometimes return incorrect results. This release also features one security fix. Because this is a security release, it is recommended that you update your sites immediately. You can download 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:11:\"Mark Robson\";s: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:6492:\"\n<h2 class=\"wp-block-heading\">WordPress 6.4.2 is now available!</h2>\n\n\n\n<p>This minor release features <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=6.4.2&groupdesc=1&group=resolution&col=id&col=summary&col=status&col=milestone&col=owner&col=type&col=priority&col=keywords&order=priority\">7 bug fixes</a> in Core. The fixes include a bug fix for an issue causing stylesheet and theme directories to sometimes return incorrect results.</p>\n\n\n\n<p>This release also features one security fix. Because this is a security release, <strong>it is recommended that you update your sites immediately</strong><strong>.</strong></p>\n\n\n\n<p>You can <a href=\"https://wordpress.org/wordpress-6.4.2.zip\">download WordPress 6.4.2 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.2 is a short-cycle release. The next major release will be version 6.5 released in early 2024.</p>\n\n\n\n<p>For more information on this release, please visit the <a href=\"https://wordpress.org/documentation/wordpress-version/version-6-4-2/\">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 addressed the following vulnerability in this release.</p>\n\n\n\n<ul>\n<li>A Remote Code Execution vulnerability that is not directly exploitable in core, however the security team feels that there is a potential for high severity when combined with some plugins, especially in multisite installs.</li>\n</ul>\n\n\n\n<p>To help the security team and WordPressers around the world, you are encouraged to <a href=\"https://hackerone.com/wordpress?type=team\">responsibly report vulnerabilities</a>. This allows vulnerabilities to be fixed in future releases.</p>\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/jorbin/\">Aaron Jorbin</a>.</p>\n\n\n\n<p>WordPress 6.4.2 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><a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/wildworks\">Aki Hamano</a>, <a href=\"https://profiles.wordpress.org/atachibana\">Akira Tachibana</a>, <a href=\"https://profiles.wordpress.org/xknown\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/angelasjin\">Angela Jin</a>, <a href=\"https://profiles.wordpress.org/antonvlasenko\">Anton Vlasenko</a>, <a href=\"https://profiles.wordpress.org/barry\">Barry</a>, <a href=\"https://profiles.wordpress.org/Bernhard%20Reiter\">bernhard-reiter</a>, <a href=\"https://profiles.wordpress.org/icaleb\">Caleb Burks</a>, <a href=\"https://profiles.wordpress.org/coreyw\">Corey Worrell</a>, <a href=\"https://profiles.wordpress.org/crstauf\">crstauf</a>, <a href=\"https://profiles.wordpress.org/nerrad\">Darren Ethier (nerrad)</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/dmsnell\">Dennis Snell</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/kebbet\">Erik</a>, <a href=\"https://profiles.wordpress.org/gaambo\">Fabian Todt</a>, <a href=\"https://profiles.wordpress.org/flixos90\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/priethor\">Héctor Prieto</a>, <a href=\"https://profiles.wordpress.org/ironprogrammer\">ironprogrammer</a>, <a href=\"https://profiles.wordpress.org/isabel_brison\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/audrasjb\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jeffpaul\">Jeffrey Paul</a>, <a href=\"https://profiles.wordpress.org/luminuu\">Jessica Lyschik</a>, <a href=\"https://profiles.wordpress.org/joemcgill\">Joe McGill</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/kharisblank\">Kharis Sulistiyono</a>, <a href=\"https://profiles.wordpress.org/krupalpanchal\">Krupal Panchal</a>, <a href=\"https://profiles.wordpress.org/kdowns\">Kylen Downs</a>, <a href=\"https://profiles.wordpress.org/meta4\">meta4</a>, <a href=\"https://profiles.wordpress.org/mikeschroder\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/mukesh27\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/partyfrikadelle\">partyfrikadelle</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/NekoJonez\">Pieterjan Deneys</a>, <a href=\"https://profiles.wordpress.org/rawrly\">rawrly</a>, <a href=\"https://profiles.wordpress.org/rebasaurus\">rebasaurus</a>, <a href=\"https://profiles.wordpress.org/SergeyBiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/hellofromTonya\">Tonya Mork</a>, <a href=\"https://profiles.wordpress.org/vortfu\">vortfu</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>. Need help? Check out the <a href=\"https://make.wordpress.org/core/handbook/tutorials/faq-for-new-contributors/\">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/\">@angelasjin</a> and <a href=\"https://wordpress.slack.com/team/U02SVSW3U\">@desrosj</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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://en-gb.wordpress.org/2023/12/06/wordpress-6-4-2-maintenance-and-security-release/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:76:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 5.9.2 Security and Maintenance 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:88:\"https://en-gb.wordpress.org/2022/03/11/wordpress-5-9-2-security-and-maintenance-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://en-gb.wordpress.org/2022/03/11/wordpress-5-9-2-security-and-maintenance-release/#respond\";s: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, 11 Mar 2022 12:22:33 +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://en-gb.wordpress.org/?p=1558\";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:383:\"WordPress 5.9.2 is now available! This security and maintenance release features one bug fix in addition to three security fixes. Because this is a security release, it is recommended that you update your sites immediately. All versions since WordPress 3.7 have also been updated. WordPress 5.9.2 is a security and maintenance release. The next major release will be […]\";s: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:\"Mark Robson\";s: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:3144:\"\n<p><strong>WordPress 5.9.2 </strong>is now available!</p>\n\n\n\n<p>This security and maintenance release features<a href=\"https://core.trac.wordpress.org/ticket/54578\"> one bug fix</a> in addition to three security fixes. Because this is a <strong>security release</strong>, it is recommended that you update your sites immediately. All versions since WordPress 3.7 have also been updated.</p>\n\n\n\n<p>WordPress 5.9.2 is a security and maintenance release. The next major release will be version <a href=\"https://make.wordpress.org/core/6-0/\">6.0</a>.</p>\n\n\n\n<p>You can <a href=\"https://wordpress.org/wordpress-5.9.2.zip\">download WordPress 5.9.2 from WordPress.org</a>, or by visiting your Dashboard <span aria-hidden=\"true\">→︎</span> Updates and clicking “Update Now”.</p>\n\n\n\n<p>If you have sites that support automatic background updates, they’ve already started the update process.</p>\n\n\n\n<p>For more information, browse the <a href=\"https://core.trac.wordpress.org/query?milestone=5.9.2&group=component&col=id&col=summary&col=owner&col=type&col=status&col=priority&col=milestone&order=priority\">full list of changes</a> on Trac, or check out the <a href=\"https://wordpress.org/support/wordpress-version/version-5-9-2/\">version 5.9.2 HelpHub documentation page</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"thanks-and-props\">Thanks and props!</h2>\n\n\n\n<p>The 5.9.2 release was led by <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, with the help of <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a> on package updates, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a> on mission control, and <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a> on backport commits.</p>\n\n\n\n<p>In addition to the release squad members mentioned above, thank you to everyone who helped make WordPress 5.9.2 happen:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/alanjacobmathew/\">Alan Jacob Mathew</a>, <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/oandregal/\">André</a>, <a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton Vlasenko</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/ehtis/\">ehtis</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/hellofromTonya/\">Tonya Mork</a>, and <a href=\"https://profiles.wordpress.org/ironprogrammer/\">ironprogrammer</a>.</p>\n\n\n\n<p><em>Props <a href=\"https://profiles.wordpress.org/davidbaumwald/\">@davidbaumwald</a> and <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">@sergeybiryukov</a> for peer reviewing.</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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://en-gb.wordpress.org/2022/03/11/wordpress-5-9-2-security-and-maintenance-release/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:73:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 5.9.1 Maintenance 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:75:\"https://en-gb.wordpress.org/2022/02/22/wordpress-5-9-1-maintenance-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://en-gb.wordpress.org/2022/02/22/wordpress-5-9-1-maintenance-release/#respond\";s: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, 22 Feb 2022 16:06:51 +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: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://en-gb.wordpress.org/?p=1554\";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:410:\"WordPress 5.9.1 is now available! This maintenance release features 82 bug fixes in both Core and the block editor. WordPress 5.9.1 is a short-cycle maintenance release. The next major release will be version 6.0. You can download WordPress 5.9.1 from WordPress.org, or by visiting your Dashboard →︎ Updates and clicking “Update Now”. If you have sites that support automatic […]\";s: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:\"Mark Robson\";s: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:7855:\"\n<p>WordPress 5.9.1 is now available!</p>\n\n\n\n<p>This maintenance release features 82 bug fixes in both Core and the block editor.</p>\n\n\n\n<p>WordPress 5.9.1 is a short-cycle maintenance release. The next major release will be version <a href=\"https://make.wordpress.org/core/6.0/\">6.0</a>.</p>\n\n\n\n<p>You can <a href=\"https://wordpress.org/wordpress-5.9.1.zip\">download WordPress 5.9.1 from WordPress.org</a>, or by visiting your Dashboard <span aria-hidden=\"true\">→︎</span> Updates and clicking “Update Now”.</p>\n\n\n\n<p>If you have sites that support automatic background updates, they’ve already started the update process.</p>\n\n\n\n<p>For more information, browse the <a href=\"https://make.wordpress.org/core/2022/02/16/wordpress-5-9-1-rc-1/\">full list of both Trac and GitHub changes in the release candidate post</a>, or check out the <a href=\"https://wordpress.org/support/wordpress-version/version-5-9-1/\">version 5.9.1 HelpHub documentation page</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"thanks-and-props\">Thanks and props!</h2>\n\n\n\n<p>The 5.9.1 release was led by <a href=\"https://profiles.wordpress.org/desrosj/\">Jb Audras</a> and <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>.</p>\n\n\n\n<p>Special props to <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">@sergeybiryukov</a> for running mission control.</p>\n\n\n\n<p>Thank you to everyone who helped make WordPress 5.9.1 happen:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/aljullu/\">Albert Juhé Lluveras</a>, <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a>, <a href=\"https://profiles.wordpress.org/alexstine/\">alexstine</a>, <a href=\"https://profiles.wordpress.org/oandregal/\">André</a>, <a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton Vlasenko</a>, <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/madeinua/\">ArteMa</a>, <a href=\"https://profiles.wordpress.org/scruffian/\">Ben Dwyer</a>, <a href=\"https://profiles.wordpress.org/blogaid/\">BlogAid</a>, <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a>, <a href=\"https://profiles.wordpress.org/critterverse/\">Channing Ritter</a>, <a href=\"https://profiles.wordpress.org/chrisvanpatten/\">Chris Van Patten</a>, <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/davidbinda/\">David Biňovec</a>, <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/eddystile/\">Eddy</a>, <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a>, <a href=\"https://profiles.wordpress.org/kebbet/\">Erik</a>, <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian Kägy</a>, <a href=\"https://profiles.wordpress.org/azouamauriac/\">Flinim Asso</a>, <a href=\"https://profiles.wordpress.org/gadhiyaravi/\">gadhiyaravi</a>, <a href=\"https://profiles.wordpress.org/revgeorge/\">George Hotelling</a>, <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/glendaviesnz/\">glendaviesnz</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/ianatkins/\">ianatkins</a>, <a href=\"https://profiles.wordpress.org/ianbelanger/\">Ian Belanger</a>, <a href=\"https://profiles.wordpress.org/ironprogrammer/\">ironprogrammer</a>, <a href=\"https://profiles.wordpress.org/itsamoreh/\">itsamoreh</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a>, <a href=\"https://profiles.wordpress.org/jeherve/\">Jeremy Herve</a>, <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</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/jorgefilipecosta/\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/kafleg/\">KafleG</a>, <a href=\"https://profiles.wordpress.org/kapilpaul/\">Kapil Paul</a>, <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a>, <a href=\"https://profiles.wordpress.org/linux4me2/\">linux4me2</a>, <a href=\"https://profiles.wordpress.org/pyrobd/\">Lukman Nakib</a>, <a href=\"https://profiles.wordpress.org/manfcarlo/\">manfcarlo</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/mgol/\">mgol</a>, <a href=\"https://profiles.wordpress.org/nidhidhandhukiya/\">nidhidhandhukiya</a>, <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a>, <a href=\"https://profiles.wordpress.org/alshakero/\">Omar Alshaker</a>, <a href=\"https://profiles.wordpress.org/pls78/\">Paolo L. Scala</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/pbearne/\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/malinevskiy/\">Pavlo</a>, <a href=\"https://profiles.wordpress.org/petaryoast/\">Petar Ratković</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/walbo/\">Petter Walbø Johnsgård</a>, <a href=\"https://profiles.wordpress.org/johnstonphilip/\">Phil Johnston</a>, <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a>, <a href=\"https://profiles.wordpress.org/ravipatel/\">ravipatel</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/rolfsiebers/\">Rolf Siebers</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/stacimc/\">stacimc</a>, <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/mahype/\">Sven Wagener</a>, <a href=\"https://profiles.wordpress.org/staatic/\">Team Staatic</a>, <a href=\"https://profiles.wordpress.org/tnolte/\">Tim Nolte</a>, <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a>, <a href=\"https://profiles.wordpress.org/webcommsat/\">webcommsat AbhaNonStopNewsUK</a>, <a href=\"https://profiles.wordpress.org/webmandesign/\">WebMan Design | Oliver Juhas</a>, <a href=\"https://profiles.wordpress.org/antonynz/\">wpcharged</a>, <a href=\"https://profiles.wordpress.org/wpsoul/\">wpsoul</a>, <a href=\"https://profiles.wordpress.org/dolphingg/\">Yunus Ertuğrul</a>, and <a href=\"https://profiles.wordpress.org/rafiahmedd/\">Rafi Ahmed</a>.</p>\n\n\n\n<p>Thanks to <a href=\"https://profiles.wordpress.org/estelaris/\">@estelaris</a>, <a href=\"https://profiles.wordpress.org/pbiron/\">@pbiron</a>, <a href=\"https://profiles.wordpress.org/ironprogrammer/\">@ironprogrammer</a>, <a href=\"https://profiles.wordpress.org/bph/\">@bph</a>, <a href=\"https://profiles.wordpress.org/abhanonstopnewsuk/\">@abhanonstopnewsuk</a>, and <a href=\"https://profiles.wordpress.org/threadi/\">@threadi</a> for their help to test the release package.</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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://en-gb.wordpress.org/2022/02/22/wordpress-5-9-1-maintenance-release/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:73:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"WordPress 5.9 “Joséphine”\";s: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://en-gb.wordpress.org/2022/01/26/wordpress-5-9-josephine/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://en-gb.wordpress.org/2022/01/26/wordpress-5-9-josephine/#respond\";s: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, 26 Jan 2022 12:34:56 +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: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://en-gb.wordpress.org/?p=1542\";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:413:\"Welcome to Joséphine! Introducing 5.9, Joséphine. Named in honour of acclaimed international jazz singer Joséphine Baker, this latest, most versatile WordPress release is here: download it or update it directly from your dashboard.  As a lifelong civil rights campaigner, Joséphine Baker believed that all people could live in harmony together, just as different instruments in a jazz […]\";s: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:\"Mark Robson\";s: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:59441:\"\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https://i1.wp.com/wordpress.org/news/files/2022/01/5-9-inline-v2.png?resize=632%2C428&ssl=1\" alt=\"\" class=\"wp-image-12139\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"welcome-to-josephine\">Welcome to Joséphine!</h2>\n\n\n\n<p>Introducing 5.9, Joséphine. Named in honour of acclaimed international jazz singer Joséphine Baker, this latest, most versatile WordPress release is here: <a href=\"https://wordpress.org/download/\">download it</a> or update it directly from your dashboard. <br><br>As a lifelong civil rights campaigner, Joséphine Baker believed that all people could live in harmony together, just as different instruments in a jazz band blend together to make a whole piece. Turn on a playlist from your favourite music service and enjoy her famous renditions of “You are the greatest love”, “Sans Amour”, and “Love is a Dreamer”, as you discover all the features of this brand-new WordPress release. </p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"full-site-editing-is-here\">Full site editing is here</h2>\n\n\n\n<p>It puts you in control of your whole site, right in the WordPress Admin.</p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-1.png?resize=632%2C474&ssl=1\" alt=\"\" class=\"wp-image-12101\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"say-hello-to-twenty-twenty-two\">Say hello to Twenty Twenty-Two</h3>\n\n\n\n<p>And say hello to the first default block theme in the history of WordPress. This is more than just a new default theme. It’s a brand-new way to work with WordPress themes.</p>\n\n\n\n<p><a href=\"https://wordpress.org/support/article/block-themes/\">Block themes</a> put a wide array of visual choices directly in your hands, from colour schemes and font combinations to page templates and image filters, all from the <a href=\"https://wordpress.org/support/article/site-editor/\">Site Editor</a>. So in one place, you can give Twenty Twenty-Two the same look and feel as your organisation’s other materials – or take your site’s look in another direction.</p>\n\n\n\n<p>You already have the Twenty Twenty-Two theme – it came installed with WordPress 5.9. You will find it with your other installed themes.</p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-2.png?resize=632%2C474&ssl=1\" alt=\"\" class=\"wp-image-12102\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"your-personal-paintbox-awaits\">Your personal paintbox awaits</h3>\n\n\n\n<p>Twenty Twenty-Two is not the only theme built for full site editing. More block themes are in the Themes directory, and the number will grow. </p>\n\n\n\n<p>When you use any of those new themes, you no longer need the Customiser. Instead, you have all the power of the Styles interface inside the Site Editor. Just as in Twenty Twenty-Two, you build your site’s look and feel there, with the tools you need for the job in a fluid interface that practically comes alive in your hands.</p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/01/5-9-release-3.png?resize=632%2C474&ssl=1\" alt=\"\" class=\"wp-image-12103\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"the-navigation-block\">The Navigation block</h3>\n\n\n\n<p>Blocks come to site navigation, the heart of user experience.</p>\n\n\n\n<p>The new Navigation block gives you the power to choose: an always-on responsive menu or one that adapts to your user’s screen size. And your choices are remembered! In 5.9, the block saves menus as custom post types, which get saved to the database.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"more-improvements-and-updates\">More improvements and updates</h2>\n\n\n\n<p>Do you love to blog? New tweaks to the publishing flow help you say more, faster.</p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https://i1.wp.com/wordpress.org/news/files/2022/01/5-9-release-5.png?resize=632%2C474&ssl=1\" alt=\"\" class=\"wp-image-12105\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"better-block-controls\">Better block controls</h3>\n\n\n\n<p>WordPress 5.9 features new typography tools, flexible layout controls, and finer control of details like spacing, borders, and more – to help you get not just the look, but the polish that says you care about details.</p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-4.png?resize=632%2C474&ssl=1\" alt=\"\" class=\"wp-image-12104\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"the-power-of-patterns\">The power of patterns</h3>\n\n\n\n<p>The WordPress Pattern Directory is the home of a wide range of block patterns built to save you time and add to your site’s functionality. And you can edit them as you see fit. Need something different in the header or footer for your theme? Swap it out with a new one in a few clicks.</p>\n\n\n\n<p>With a nearly full-screen view that draws you in to see fine details, the Pattern Explorer makes it easy to compare patterns and choose the one your users need.</p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-6.png?resize=632%2C474&ssl=1\" alt=\"\" class=\"wp-image-12106\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"a-revamped-list-view\">A revamped List View</h3>\n\n\n\n<p>In 5.9, the List View lets you drag and drop your content exactly where you want it. Managing complex documents is easier, too: simple controls let you expand and collapse sections as you build your site – and add HTML anchors to your blocks to help users get around the page.</p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-7.png?resize=632%2C474&ssl=1\" alt=\"\" class=\"wp-image-12107\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"a-better-gallery-block\">A better Gallery block</h3>\n\n\n\n<p>Treat every image in a Gallery Block the same way you would treat it in the Image Block.</p>\n\n\n\n<p>Style every image in your gallery differently, or make them all the same, except for one or two. Or change the layout with drag-and-drop.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"wordpress-5-9-for-developers\">WordPress 5.9 for developers</h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"theme-json-for-child-themes\">Theme.json for child themes</h3>\n\n\n\n<p>In 5.9, theme.json supports child themes. That means your users can build a child theme right in the WordPress Admin, without writing a single line of code. </p>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2022/01/04/block-themes-a-new-way-to-build-themes-in-wordpress-5-9/\">This dev note</a> has all the details. Take a look!</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"block-level-locking\">Block-level locking</h3>\n\n\n\n<p>Now you can lock any block (or a few of them) in a pattern, just by <a href=\"https://make.wordpress.org/core/2022/01/08/locking-blocks-in-wordpress-5-9/\">adding a lock attribute to its settings in block.json</a> – leaving the rest of the pattern free for users to adapt to their content. </p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"multiple-style-sheets-in-a-block\">Multiple style sheets in a block</h3>\n\n\n\n<p>Now you can register more than one style sheet per block, which lets a given block load only the styles its markup requests, and not a whole sheet. Read the details in this <a href=\"https://make.wordpress.org/core/2021/12/15/using-multiple-stylesheets-per-block/\">dev note</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"a-refactored-gallery-block\">A refactored Gallery Block</h3>\n\n\n\n<p>The changes to the Gallery Block listed above are the result of a near-complete refactoring. Have you built a plugin or theme on the Gallery Block functionality? Be sure you read this <a href=\"https://make.wordpress.org/core/2021/08/20/gallery-block-refactor-dev-note/\">dev note</a>. It tells you what you need to do for compatibility.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h3 class=\"wp-block-heading\" id=\"learn-more-about-the-new-features-in-5-9\">Learn more about the new features in 5.9</h3>\n\n\n\n<p>Want to dive into 5.9 but don’t know where to start? Check out this free course about <a href=\"https://learn.wordpress.org/course/simple-site-design-with-full-site-editing/\">Simple Site Design</a> from <a href=\"https://learn.wordpress.org/\">Learn WordPress</a>. There are a variety of learning materials including short how-to video tutorials and resources on new features in WordPress 5.9, with much more planned.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h3 class=\"wp-block-heading\" id=\"check-out-the-field-guide-for-more\">Check out the Field Guide for more!</h3>\n\n\n\n<p>Check out the latest version of the WordPress Field Guide. It has lots of useful information with links to detailed developer notes to support you building in WordPress for everyone you serve. <a href=\"https://make.wordpress.org/core/2022/01/10/wordpress-5-9-field-guide/\">WordPress 5.9 Field Guide</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"the-squad\"><strong>The Squad</strong></h2>\n\n\n\n<p>The WordPress 5.9 release was led by <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a>, and supported by this highly enthusiastic release squad:</p>\n\n\n\n<ul><li>Release Lead: <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a></li><li>Core Tech and Release Coordinator: <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a></li><li>Triage Leads: <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a> and <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Chaion</a></li><li>Editor Tech: <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a> and <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a></li><li>Theme Leads: <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a> and <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a></li><li>Technical Writer: <a href=\"https://profiles.wordpress.org/psykro/\">Jonathan Bossenger</a></li><li>Documentation Leads: <a href=\"https://profiles.wordpress.org/mkaz/\">Marcus Kazmierczak</a> and <a href=\"https://profiles.wordpress.org/milana_cap/\">Milana Cap</a></li><li>Marketing and Communications Leads: <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a>, <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a>, and <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a></li><li>Test Leads: <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a> and <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a></li></ul>\n\n\n\n<p>WordPress 5.9 also reflects the hard work of 624 generous volunteer contributors. Collaboration occurred on <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=5.9&group=component&col=id&col=summary&col=status&col=milestone&col=owner&col=type&col=priority&order=priority\">370 tickets on Trac</a> and more than <a href=\"https://github.com/WordPress/gutenberg/compare/v10.8.0...v11.9.0\">1900 pull requests on GitHub</a>.</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/2linctools/\">2linctools</a>, <a href=\"https://profiles.wordpress.org/aaroncampbell/\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/aaronrobertshaw/\">Aaron Robertshaw</a>, <a href=\"https://profiles.wordpress.org/abesell132/\">abesell132</a>, <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a>, <a href=\"https://profiles.wordpress.org/acosmin/\">acosmin</a>, <a href=\"https://profiles.wordpress.org/wpmudev-support8/\">Adam – WPMU DEV Support</a>, <a href=\"https://profiles.wordpress.org/bosconiandynamics/\">Adam Bosco</a>, <a href=\"https://profiles.wordpress.org/adam3128/\">Adam Morgan</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/zieladam/\">Adam Zielinski</a>, <a href=\"https://profiles.wordpress.org/addiestavlo/\">Addie</a>, <a href=\"https://profiles.wordpress.org/aadilali/\">Adil Ali</a>, <a href=\"https://profiles.wordpress.org/aduth/\">aduth</a>, <a href=\"https://profiles.wordpress.org/aezazshekh/\">Aezaz Shekh</a>, <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Chaion</a>, <a href=\"https://profiles.wordpress.org/ajotka/\">ajotka</a>, <a href=\"https://profiles.wordpress.org/soniakash/\">Akash Soni</a>, <a href=\"https://profiles.wordpress.org/atachibana/\">Akira Tachibana</a>, <a href=\"https://profiles.wordpress.org/schlessera/\">Alain Schlesser</a>, <a href=\"https://profiles.wordpress.org/alanjacobmathew/\">Alan Jacob Mathew</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/alexvorn2/\">Alexandru Vornicescu</a>, <a href=\"https://profiles.wordpress.org/alexeydemidov/\">alexeydemidov</a>, <a href=\"https://profiles.wordpress.org/alexislloyd/\">Alexis Lloyd</a>, <a href=\"https://profiles.wordpress.org/alexstine/\">alexstine</a>, <a href=\"https://profiles.wordpress.org/algala/\">AlGala</a>, <a href=\"https://profiles.wordpress.org/firewatch/\">allilevine</a>, <a href=\"https://profiles.wordpress.org/almendron/\">almendron</a>, <a href=\"https://profiles.wordpress.org/amandariu/\">Amanda Riu</a>, <a href=\"https://profiles.wordpress.org/anandau14/\">Anand Upadhyay</a>, <a href=\"https://profiles.wordpress.org/nosolosw/\">André</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/nacin/\">Andrew Nacin</a>, <a href=\"https://profiles.wordpress.org/anevins/\">Andrew Nevins</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/oandregal/\">André</a>, <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/apeatling/\">Andy Peatling</a>, <a href=\"https://profiles.wordpress.org/andy-schmidt/\">Andy Schmidt</a>, <a href=\"https://profiles.wordpress.org/andynick/\">andynick</a>, <a href=\"https://profiles.wordpress.org/la-geek/\">Angelika Reisiger</a>, <a href=\"https://profiles.wordpress.org/anjanavasan/\">Anjana Vasan</a>, <a href=\"https://profiles.wordpress.org/ankit-k-gupta/\">Ankit K Gupta</a>, <a href=\"https://profiles.wordpress.org/ankitmaru/\">Ankit Panchal</a>, <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a>, <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a>, <a href=\"https://profiles.wordpress.org/anthonyeden/\">Anthony Eden</a>, <a href=\"https://profiles.wordpress.org/paranoia1906/\">Anthony Ledesma</a>, <a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton Vlasenko</a>, <a href=\"https://profiles.wordpress.org/antonisme/\">Antonis Lilis</a>, <a href=\"https://profiles.wordpress.org/arena/\">arena</a>, <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/arthur791004/\">Arthur Chu</a>, <a href=\"https://profiles.wordpress.org/ashfame/\">Ashfame</a>, <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a>, <a href=\"https://profiles.wordpress.org/baelx/\">baelx</a>, <a href=\"https://profiles.wordpress.org/allerune/\">Bartlomiej</a>, <a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a>, <a href=\"https://profiles.wordpress.org/beaulebens/\">Beau Lebens</a>, <a href=\"https://profiles.wordpress.org/bedas/\">Beda</a>, <a href=\"https://profiles.wordpress.org/utz119/\">Benachi</a>, <a href=\"https://profiles.wordpress.org/benitolopez/\">benitolopez</a>, <a href=\"https://profiles.wordpress.org/rainbowgeek/\">Benjamin Denis</a>, <a href=\"https://profiles.wordpress.org/benjamingosset/\">Benjamin Gosset</a>, <a href=\"https://profiles.wordpress.org/benjaminanakena/\">benjamin.anakena</a>, <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernhard Reiter</a>, <a href=\"https://profiles.wordpress.org/bgardner/\">bgardner</a>, <a href=\"https://profiles.wordpress.org/bijayyadav/\">Bijay Yadav</a>, <a href=\"https://profiles.wordpress.org/binarykitten/\">BinaryKitten</a>, <a href=\"https://profiles.wordpress.org/birgire/\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/bobbingwide/\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/bjorsch/\">Brad Jorsch</a>, <a href=\"https://profiles.wordpress.org/bradparbs/\">Brad Parbs</a>, <a href=\"https://profiles.wordpress.org/bradleyt/\">Bradley Taylor</a>, <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/bravokeyl/\">bravokeyl</a>, <a href=\"https://profiles.wordpress.org/bgoewert/\">Brennan Goewert</a>, <a href=\"https://profiles.wordpress.org/rzen/\">Brian Richards</a>, <a href=\"https://profiles.wordpress.org/bronsonquick/\">bronsonquick</a>, <a href=\"https://profiles.wordpress.org/ribaricplusplus/\">Bruno Ribaric</a>, <a href=\"https://profiles.wordpress.org/brylie/\">Brylie Christopher Oxley</a>, <a href=\"https://profiles.wordpress.org/icaleb/\">Caleb Burks</a>, <a href=\"https://profiles.wordpress.org/calebwoodbridge/\">calebwoodbridge</a>, <a href=\"https://profiles.wordpress.org/carepsules/\">carepsules</a>, <a href=\"https://profiles.wordpress.org/carike/\">Carike</a>, <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a>, <a href=\"https://profiles.wordpress.org/vefusion/\">Carlos Garcia</a>, <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a>, <a href=\"https://profiles.wordpress.org/cdyerkes/\">cdyerkes</a>, <a href=\"https://profiles.wordpress.org/ceyhun0/\">Ceyhun Ozugur</a>, <a href=\"https://profiles.wordpress.org/shireling/\">Chad</a>, <a href=\"https://profiles.wordpress.org/chiaki/\">Chiaki</a>, <a href=\"https://profiles.wordpress.org/chintan1896/\">Chintan hingrajiya</a>, <a href=\"https://profiles.wordpress.org/chipsnyder/\">Chip Snyder</a>, <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloe Bringmann</a>, <a href=\"https://profiles.wordpress.org/chouby/\">Chouby</a>, <a href=\"https://profiles.wordpress.org/cklosows/\">Chris Klosowski</a>, <a href=\"https://profiles.wordpress.org/chrisvanpatten/\">Chris Van Patten</a>, <a href=\"https://profiles.wordpress.org/chriscct7/\">chriscct7</a>, <a href=\"https://profiles.wordpress.org/christianztamayo/\">Christian Tamayo</a>, <a href=\"https://profiles.wordpress.org/amethystanswers/\">Christina Workman</a>, <a href=\"https://profiles.wordpress.org/vimes1984/\">Christopher Churchill</a>, <a href=\"https://profiles.wordpress.org/clucasrowlands/\">clucasrowlands</a>, <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a>, <a href=\"https://profiles.wordpress.org/callye/\">Collieth Clarke</a>, <a href=\"https://profiles.wordpress.org/collizo4sky/\">Collins Agbonghama</a>, <a href=\"https://profiles.wordpress.org/copons/\">Copons</a>, <a href=\"https://profiles.wordpress.org/coreyw/\">Corey</a>, <a href=\"https://profiles.wordpress.org/cr0ybot/\">Cory Hughart</a>, <a href=\"https://profiles.wordpress.org/courane01/\">Courtney Robertson</a>, <a href=\"https://profiles.wordpress.org/craigfrancis/\">craigfrancis</a>, <a href=\"https://profiles.wordpress.org/mitogh/\">Crisoforo Gaspar</a>, <a href=\"https://profiles.wordpress.org/critterverse/\">critterverse</a>, <a href=\"https://profiles.wordpress.org/littlebigthing/\">Csaba (LittleBigThings)</a>, <a href=\"https://profiles.wordpress.org/davidszabo/\">Dávid Szabó</a>, <a href=\"https://profiles.wordpress.org/daisyo/\">Daisy Olsen</a>, <a href=\"https://profiles.wordpress.org/colorful-tones/\">Damon Cook</a>, <a href=\"https://profiles.wordpress.org/danfarrow/\">Dan Farrow</a>, <a href=\"https://profiles.wordpress.org/dansoschin/\">Dan Soschin</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a>, <a href=\"https://profiles.wordpress.org/danielpost/\">Daniel Post</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/chthnc/\">Daniel Shaw</a>, <a href=\"https://profiles.wordpress.org/danieldudzic/\">danieldudzic</a>, <a href=\"https://profiles.wordpress.org/mte90/\">Daniele Scasciafratte</a>, <a href=\"https://profiles.wordpress.org/darerodz/\">darerodz</a>, <a href=\"https://profiles.wordpress.org/dariak/\">Daria</a>, <a href=\"https://profiles.wordpress.org/daschmi/\">Daschmi</a>, <a href=\"https://profiles.wordpress.org/datagutten/\">datagutten</a>, <a href=\"https://profiles.wordpress.org/datainterlock/\">datainterlock</a>, <a href=\"https://profiles.wordpress.org/davecpage/\">Dave Page</a>, <a href=\"https://profiles.wordpress.org/davidanderson/\">David Anderson</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/davidbinda/\">David Biňovec</a>, <a href=\"https://profiles.wordpress.org/dpcalhoun/\">David Calhoun</a>, <a href=\"https://profiles.wordpress.org/dgwyer/\">David Gwyer</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/davidkryzaniak/\">David Kryzaniak</a>, <a href=\"https://profiles.wordpress.org/davidmosterd/\">David Mosterd</a>, <a href=\"https://profiles.wordpress.org/daviedr/\">David Rozando</a>, <a href=\"https://profiles.wordpress.org/dryanpress/\">David Ryan</a>, <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a>, <a href=\"https://profiles.wordpress.org/davidwebca/\">davidwebca</a>, <a href=\"https://profiles.wordpress.org/devutpol/\">Deb Nath Utpol</a>, <a href=\"https://profiles.wordpress.org/dkarfa/\">Debabrata Karfa</a>, <a href=\"https://profiles.wordpress.org/deepaklalwani/\">Deepak Lalwani</a>, <a href=\"https://profiles.wordpress.org/denisco/\">Denis Yanchevskiy</a>, <a href=\"https://profiles.wordpress.org/dingo_d/\">Denis Žoljom</a>, <a href=\"https://profiles.wordpress.org/dmsnell/\">Dennis Snell</a>, <a href=\"https://profiles.wordpress.org/dhanendran/\">Dhanendran</a>, <a href=\"https://profiles.wordpress.org/dhusakovic/\">dhusakovic</a>, <a href=\"https://profiles.wordpress.org/diedeexterkate/\">DiedeExterkate</a>, <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/dlt101/\">dlt101</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/donmhico/\">donmhico</a>, <a href=\"https://profiles.wordpress.org/codezen8/\">Donna Botti</a>, <a href=\"https://profiles.wordpress.org/dontgo2sleep/\">dontgo2sleep</a>, <a href=\"https://profiles.wordpress.org/dougwollison/\">Doug Wollison</a>, <a href=\"https://profiles.wordpress.org/dpegasusm/\">dpegasusm</a>, <a href=\"https://profiles.wordpress.org/raubvogel/\">Dr. Ronny Harbich</a>, <a href=\"https://profiles.wordpress.org/dratwas/\">dratwas</a>, <a href=\"https://profiles.wordpress.org/drewapicture/\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/drosmog/\">drosmog</a>, <a href=\"https://profiles.wordpress.org/dustinrue/\">dustinrue</a>, <a href=\"https://profiles.wordpress.org/seedsca/\">ecotechie</a>, <a href=\"https://profiles.wordpress.org/ehtis/\">ehtis</a>, <a href=\"https://profiles.wordpress.org/ekojr/\">EkoJR</a>, <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a>, <a href=\"https://profiles.wordpress.org/manooweb/\">Emmanuel Hesry</a>, <a href=\"https://profiles.wordpress.org/empatogen/\">empatogen</a>, <a href=\"https://profiles.wordpress.org/enchiridion/\">Enchiridion</a>, <a href=\"https://profiles.wordpress.org/enej/\">Enej Bajgorić</a>, <a href=\"https://profiles.wordpress.org/nrqsnchz/\">Enrique Sánchez</a>, <a href=\"https://profiles.wordpress.org/erayalakese/\">erayalakese</a>, <a href=\"https://profiles.wordpress.org/teachlynx/\">Eric Malalel</a>, <a href=\"https://profiles.wordpress.org/ethitter/\">Erick Hitter</a>, <a href=\"https://profiles.wordpress.org/kebbet/\">Erik</a>, <a href=\"https://profiles.wordpress.org/etoledo/\">etoledo</a>, <a href=\"https://profiles.wordpress.org/circlecube/\">Evan Mullins</a>, <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian Kägy</a>, <a href=\"https://profiles.wordpress.org/gaambo/\">Fabian Todt</a>, <a href=\"https://profiles.wordpress.org/faisal03/\">Faisal Alvi</a>, <a href=\"https://profiles.wordpress.org/fedepia/\">fedepia</a>, <a href=\"https://profiles.wordpress.org/felipeelia/\">Felipe Elia</a>, <a href=\"https://profiles.wordpress.org/felipeloureirosantos/\">Felipe Santos</a>, <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/fpcsjames/\">FPCSJames</a>, <a href=\"https://profiles.wordpress.org/piewp/\">fperdaan</a>, <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a>, <a href=\"https://profiles.wordpress.org/fcolombo/\">Francesco</a>, <a href=\"https://profiles.wordpress.org/fullofcaffeine/\">fullofcaffeine</a>, <a href=\"https://profiles.wordpress.org/galbaras/\">Gal Baras</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a>, <a href=\"https://profiles.wordpress.org/garyj/\">Gary Jones</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/gazchap/\">gazchap</a>, <a href=\"https://profiles.wordpress.org/generosus/\">generosus</a>, <a href=\"https://profiles.wordpress.org/soulseekah/\">Gennady Kovshenin</a>, <a href=\"https://profiles.wordpress.org/revgeorge/\">George Hotelling</a>, <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/georgestephanis/\">George Stephanis</a>, <a href=\"https://profiles.wordpress.org/geriux/\">Gerardo Pacheco</a>, <a href=\"https://profiles.wordpress.org/gilbitron/\">Gilbert Pellegrom</a>, <a href=\"https://profiles.wordpress.org/glendaviesnz/\">Glen Davies</a>, <a href=\"https://profiles.wordpress.org/goldsounds/\">goldsounds</a>, <a href=\"https://profiles.wordpress.org/gkloveweb/\">Govind</a>, <a href=\"https://profiles.wordpress.org/grantmkin/\">Grant M. Kinney</a>, <a href=\"https://profiles.wordpress.org/gregrickaby/\">Greg Rickaby</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/guillaumeturpin/\">Guillaume TURPIN</a>, <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a>, <a href=\"https://profiles.wordpress.org/hansjovisyoast/\">Hans-Christiaan Braun</a>, <a href=\"https://profiles.wordpress.org/haosun/\">haosun</a>, <a href=\"https://profiles.wordpress.org/hareesh-pillai/\">Hareesh</a>, <a href=\"https://profiles.wordpress.org/hasanuzzamanshamim/\">Hasanuzzaman</a>, <a href=\"https://profiles.wordpress.org/azhiyadev/\">Hauwa Abashiya</a>, <a href=\"https://profiles.wordpress.org/hazdiego/\">Haz</a>, <a href=\"https://profiles.wordpress.org/henrywright/\">Henry Wright</a>, <a href=\"https://profiles.wordpress.org/herbmiller/\">herbmiller</a>, <a href=\"https://profiles.wordpress.org/hermpheus/\">Herm Martini</a>, <a href=\"https://profiles.wordpress.org/herregroen/\">Herre Groen</a>, <a href=\"https://profiles.wordpress.org/hilayt24/\">hilayt24</a>, <a href=\"https://profiles.wordpress.org/hirofumi2012/\">hirofumi2012</a>, <a href=\"https://profiles.wordpress.org/hitendra-chopda/\">Hitendra Chopda</a>, <a href=\"https://profiles.wordpress.org/h71/\">Hossein Farahani</a>, <a href=\"https://profiles.wordpress.org/htmgarcia/\">htmgarcia</a>, <a href=\"https://profiles.wordpress.org/hudson-atwell/\">Hudson Atwell</a>, <a href=\"https://profiles.wordpress.org/hlashbrooke/\">Hugh Lashbrooke</a>, <a href=\"https://profiles.wordpress.org/hugod/\">hugod</a>, <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ianhayes94/\">ianhayes94</a>, <a href=\"https://profiles.wordpress.org/ianmjones/\">ianmjones</a>, <a href=\"https://profiles.wordpress.org/ignatggeorgiev/\">Ignat Georgiev</a>, <a href=\"https://profiles.wordpress.org/ibenic/\">Igor Benic</a>, <a href=\"https://profiles.wordpress.org/ilovecats7/\">ilovecats7</a>, <a href=\"https://profiles.wordpress.org/infected/\">infected</a>, <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/iluy/\">Isaac</a>, <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/ismaeld/\">ismaeld</a>, <a href=\"https://profiles.wordpress.org/jdgrimes/\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jackreichert/\">Jack Reichert</a>, <a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/jakubtyrcha/\">jakub.tyrcha</a>, <a href=\"https://profiles.wordpress.org/mcjambi/\">Jam Viet</a>, <a href=\"https://profiles.wordpress.org/macmanx/\">James Huff</a>, <a href=\"https://profiles.wordpress.org/jameskoster/\">James Koster</a>, <a href=\"https://profiles.wordpress.org/janthiel/\">Jan Thiel</a>, <a href=\"https://profiles.wordpress.org/janwoostendorp/\">janw.oostendorp</a>, <a href=\"https://profiles.wordpress.org/jsnjohnston/\">Jason Johnston</a>, <a href=\"https://profiles.wordpress.org/evermail/\">Jason R. Johnston</a>, <a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a>, <a href=\"https://profiles.wordpress.org/javiercasares/\">Javier Casares</a>, <a href=\"https://profiles.wordpress.org/jayupadhyay01/\">Jay Upadhyay</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a>, <a href=\"https://profiles.wordpress.org/teucrium/\">Jean-Philippe</a>, <a href=\"https://profiles.wordpress.org/jblz/\">Jeff Bowen</a>, <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a>, <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeffrey Paul</a>, <a href=\"https://profiles.wordpress.org/jdy68/\">Jenny Dupuy</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jeherve/\">Jeremy Herve</a>, <a href=\"https://profiles.wordpress.org/jeremyescott/\">Jeremy Scott</a>, <a href=\"https://profiles.wordpress.org/jeremyyip/\">Jeremy Yip</a>, <a href=\"https://profiles.wordpress.org/amieiro/\">Jesús Amieiro</a>, <a href=\"https://profiles.wordpress.org/engelen/\">Jesper van Engelen</a>, <a href=\"https://profiles.wordpress.org/luminuu/\">Jessica Lyschik</a>, <a href=\"https://profiles.wordpress.org/jigneshnakrani/\">Jignesh Nakrani</a>, <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/joegasper/\">joegasper</a>, <a href=\"https://profiles.wordpress.org/joelcj91/\">Joel James</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnillo/\">John Espiritu</a>, <a href=\"https://profiles.wordpress.org/johnny5/\">John Godley</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/zenithcity/\">john zenith</a>, <a href=\"https://profiles.wordpress.org/lwangaman/\">JohnRDOrazio (CLPTE)</a>, <a href=\"https://profiles.wordpress.org/psykro/\">Jonathan Bossenger</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/jonoaldersonwp/\">Jono Alderson</a>, <a href=\"https://profiles.wordpress.org/joostdevalk/\">Joost de Valk</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/josklever/\">Jos Klever</a>, <a href=\"https://profiles.wordpress.org/josephdickson/\">Joseph Dickson</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden</a>, <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a>, <a href=\"https://profiles.wordpress.org/jsnajdr/\">jsnajdr</a>, <a href=\"https://profiles.wordpress.org/juanruitina/\">Juan Ruitiña</a>, <a href=\"https://profiles.wordpress.org/juanmaguitar/\">JuanMa Garrido</a>, <a href=\"https://profiles.wordpress.org/juhise/\">Juhi Saxena</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/junaidbhura/\">Junaid Bhura</a>, <a href=\"https://profiles.wordpress.org/nukaga/\">Junko Nukaga</a>, <a href=\"https://profiles.wordpress.org/justinahinon/\">Justin Ahinon</a>, <a href=\"https://profiles.wordpress.org/justindocanto/\">Justin DoCanto</a>, <a href=\"https://profiles.wordpress.org/greenshady/\">Justin Tadlock</a>, <a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a>, <a href=\"https://profiles.wordpress.org/kafleg/\">KafleG</a>, <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a>, <a href=\"https://profiles.wordpress.org/kallookoo/\">kallookoo</a>, <a href=\"https://profiles.wordpress.org/akabarikalpesh/\">Kalpesh Akabari</a>, <a href=\"https://profiles.wordpress.org/kaneva/\">kaneva</a>, <a href=\"https://profiles.wordpress.org/kapilpaul/\">Kapil Paul</a>, <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/kellychoffman/\">Kelly Hoffman</a>, <a href=\"https://profiles.wordpress.org/keoshi/\">keoshi</a>, <a href=\"https://profiles.wordpress.org/sourav926/\">Keramot UL Islam</a>, <a href=\"https://profiles.wordpress.org/kingkero/\">kero</a>, <a href=\"https://profiles.wordpress.org/gwwar/\">Kerry Liu</a>, <a href=\"https://profiles.wordpress.org/kevinfodness/\">Kevin Fodness</a>, <a href=\"https://profiles.wordpress.org/keyur5/\">keyur5</a>, <a href=\"https://profiles.wordpress.org/kharisblank/\">Kharis Sulistiyono</a>, <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a>, <a href=\"https://profiles.wordpress.org/knutsp/\">Knut Sparhell</a>, <a href=\"https://profiles.wordpress.org/vdwijngaert/\">Koen Van den Wijngaert</a>, <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/xkon/\">Konstantinos Xenos</a>, <a href=\"https://profiles.wordpress.org/kurudrive/\">kurudrive</a>, <a href=\"https://profiles.wordpress.org/kwisatz/\">kwisatz</a>, <a href=\"https://profiles.wordpress.org/devnel/\">Kyle Nel</a>, <a href=\"https://profiles.wordpress.org/kzeni/\">KZeni</a>, <a href=\"https://profiles.wordpress.org/lalitjalandhar/\">lalitjalandhar</a>, <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a>, <a href=\"https://profiles.wordpress.org/laxman-prajapati/\">Laxman Prajapati</a>, <a href=\"https://profiles.wordpress.org/leemon/\">leemon</a>, <a href=\"https://profiles.wordpress.org/leogermani/\">leogermani</a>, <a href=\"https://profiles.wordpress.org/lgladdy/\">Liam Gladdy</a>, <a href=\"https://profiles.wordpress.org/liammitchell/\">liammitchell</a>, <a href=\"https://profiles.wordpress.org/rudlinkon/\">Linkon Miyan</a>, <a href=\"https://profiles.wordpress.org/linux4me2/\">linux4me2</a>, <a href=\"https://profiles.wordpress.org/webaxones/\">Loïc Antignac</a>, <a href=\"https://profiles.wordpress.org/loranrendel/\">Loran A. Rendel</a>, <a href=\"https://profiles.wordpress.org/karpstrucking/\">Lucas Karpiuk</a>, <a href=\"https://profiles.wordpress.org/lucasw89/\">lucasw89</a>, <a href=\"https://profiles.wordpress.org/lucatume/\">lucatume</a>, <a href=\"https://profiles.wordpress.org/zaguiini/\">Luis Felipe Zaguini</a>, <a href=\"https://profiles.wordpress.org/lukecarbis/\">Luke Carbis</a>, <a href=\"https://profiles.wordpress.org/lukecavanagh/\">Luke Cavanagh</a>, <a href=\"https://profiles.wordpress.org/luovalabs/\">luovalabs</a>, <a href=\"https://profiles.wordpress.org/lynk/\">lynk</a>, <a href=\"https://profiles.wordpress.org/asif2bd/\">M Asif Rahman</a>, <a href=\"https://profiles.wordpress.org/gorby31/\">Madalin Gorbanescu</a>, <a href=\"https://profiles.wordpress.org/aetherunbound/\">Madison</a>, <a href=\"https://profiles.wordpress.org/onemaggie/\">Maggie Cabrera</a>, <a href=\"https://profiles.wordpress.org/mai21/\">Mai</a>, <a href=\"https://profiles.wordpress.org/malae/\">Malae</a>, <a href=\"https://profiles.wordpress.org/malthert/\">malthert</a>, <a href=\"https://profiles.wordpress.org/manfcarlo/\">manfcarlo</a>, <a href=\"https://profiles.wordpress.org/manishamakhija/\">Manisha Makhija</a>, <a href=\"https://profiles.wordpress.org/manzoorwanijk/\">Manzoor Wani</a>, <a href=\"https://profiles.wordpress.org/mciampini/\">Marco Ciampini</a>, <a href=\"https://profiles.wordpress.org/mkaz/\">Marcus Kazmierczak</a>, <a href=\"https://profiles.wordpress.org/marekhrabe/\">Marek Hrabe</a>, <a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/mark-k/\">Mark-k</a>, <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a>, <a href=\"https://profiles.wordpress.org/wetah/\">Mateus Machado Luna</a>, <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a>, <a href=\"https://profiles.wordpress.org/mhuntdesign/\">Matt</a>, <a href=\"https://profiles.wordpress.org/mattchowning/\">Matt Chowning</a>, <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a>, <a href=\"https://profiles.wordpress.org/mattwiebe/\">Matt Wiebe</a>, <a href=\"https://profiles.wordpress.org/mattoakley/\">mattoakley</a>, <a href=\"https://profiles.wordpress.org/wppunk/\">Max</a>, <a href=\"https://profiles.wordpress.org/max-dayala/\">MaxD</a>, <a href=\"https://profiles.wordpress.org/maximeculea/\">Maxime Culea</a>, <a href=\"https://profiles.wordpress.org/mclaurent/\">mclaurent</a>, <a href=\"https://profiles.wordpress.org/medusor/\">MEDUSOR</a>, <a href=\"https://profiles.wordpress.org/megphillips91/\">Meg Phillips</a>, <a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/mgol/\">mgol</a>, <a href=\"https://profiles.wordpress.org/wpscholar/\">Micah Wood</a>, <a href=\"https://profiles.wordpress.org/mdawaffe/\">Michael Adams (mdawaffe)</a>, <a href=\"https://profiles.wordpress.org/tw2113/\">Michael Beckwith</a>, <a href=\"https://profiles.wordpress.org/mburridge/\">Michael Burridge</a>, <a href=\"https://profiles.wordpress.org/mnelson4/\">Michael Nelson</a>, <a href=\"https://profiles.wordpress.org/czapla/\">Michal Czaplinski</a>, <a href=\"https://profiles.wordpress.org/michelwppi/\">Michel – xiligroup dev</a>, <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a>, <a href=\"https://profiles.wordpress.org/mikaelmayer/\">mikaelmayer</a>, <a href=\"https://profiles.wordpress.org/mikejolley/\">Mike Jolley (a11n)</a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/dimadin/\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/milana_cap/\">Milana Cap</a>, <a href=\"https://profiles.wordpress.org/multidots1896/\">Minal Diwan</a>, <a href=\"https://profiles.wordpress.org/0mirka00/\">mirka</a>, <a href=\"https://profiles.wordpress.org/mjaschen/\">mjaschen</a>, <a href=\"https://profiles.wordpress.org/mjulian7/\">mjulian7</a>, <a href=\"https://profiles.wordpress.org/mmxxi/\">mmxxi</a>, <a href=\"https://profiles.wordpress.org/moch11/\">moch11</a>, <a href=\"https://profiles.wordpress.org/opurockey/\">Mohammad Rockeybul Alam</a>, <a href=\"https://profiles.wordpress.org/mt8biz/\">moto hachi</a>, <a href=\"https://profiles.wordpress.org/computerguru/\">mqudsi</a>, <a href=\"https://profiles.wordpress.org/mreishus/\">mreishus</a>, <a href=\"https://profiles.wordpress.org/mrjoeldean/\">mrjoeldean</a>, <a href=\"https://profiles.wordpress.org/mtoensing/\">mtoensing</a>, <a href=\"https://profiles.wordpress.org/wparslan/\">Muhammad Arslan</a>, <a href=\"https://profiles.wordpress.org/muhammadfaizanhaidar/\">Muhammad Faizan Haidar</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/musabshakeel/\">Musab Shakeel</a>, <a href=\"https://profiles.wordpress.org/amustaque97/\">Mustaque Ahmed</a>, <a href=\"https://profiles.wordpress.org/assassinateur/\">Nadir Seghir</a>, <a href=\"https://profiles.wordpress.org/nalininonstopnewsuk/\">Nalini Thakor</a>, <a href=\"https://profiles.wordpress.org/namithjawahar/\">Namith Jawahar</a>, <a href=\"https://profiles.wordpress.org/nao/\">Naoko Takano</a>, <a href=\"https://profiles.wordpress.org/natewr/\">NateWr</a>, <a href=\"https://profiles.wordpress.org/greatislander/\">Ned Zimmerman</a>, <a href=\"https://profiles.wordpress.org/nettsite/\">NettSite</a>, <a href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a>, <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a>, <a href=\"https://profiles.wordpress.org/celloexpressions/\">Nick Halsey</a>, <a href=\"https://profiles.wordpress.org/nickcernis/\">nickcernis</a>, <a href=\"https://profiles.wordpress.org/nico23/\">Nico</a>, <a href=\"https://profiles.wordpress.org/jainnidhi/\">Nidhi Jain</a>, <a href=\"https://profiles.wordpress.org/nielslange/\">Niels Lange</a>, <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a>, <a href=\"https://profiles.wordpress.org/nikschavan/\">Nikhil Chavan</a>, <a href=\"https://profiles.wordpress.org/nlpro/\">nlpro</a>, <a href=\"https://profiles.wordpress.org/ockham/\">ockham</a>, <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a>, <a href=\"https://profiles.wordpress.org/domainsupport/\">Oliver Campion</a>, <a href=\"https://profiles.wordpress.org/alshakero/\">Omar Alshaker</a>, <a href=\"https://profiles.wordpress.org/omarreiss/\">Omar Reiss</a>, <a href=\"https://profiles.wordpress.org/opr18/\">opr18</a>, <a href=\"https://profiles.wordpress.org/ellenbauer/\">Outzen Larkin</a>, <a href=\"https://profiles.wordpress.org/ov3rfly/\">Ov3rfly</a>, <a href=\"https://profiles.wordpress.org/ovann86/\">ovann86</a>, <a href=\"https://profiles.wordpress.org/ovidiul/\">ovidiul</a>, <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a>, <a href=\"https://profiles.wordpress.org/pablohoneyhoney/\">Pablo Honey</a>, <a href=\"https://profiles.wordpress.org/iaaxpage/\">page-carbajal</a>, <a href=\"https://profiles.wordpress.org/palmiak/\">palmiak</a>, <a href=\"https://profiles.wordpress.org/pankajmohale/\">Pankaj Mohale</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/patrick-b/\">Patrick B</a>, <a href=\"https://profiles.wordpress.org/pbearne/\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a>, <a href=\"https://profiles.wordpress.org/pabline/\">Paul Bunkham</a>, <a href=\"https://profiles.wordpress.org/rixeo/\">Paul Kevin</a>, <a href=\"https://profiles.wordpress.org/paulschreiber/\">Paul Schreiber</a>, <a href=\"https://profiles.wordpress.org/pschrottky/\">Paul Von Schrottky</a>, <a href=\"https://profiles.wordpress.org/psrpinto/\">Paulo Pinto</a>, <a href=\"https://profiles.wordpress.org/pbking/\">pbking</a>, <a href=\"https://profiles.wordpress.org/pedromendonca/\">Pedro Mendonça</a>, <a href=\"https://profiles.wordpress.org/pputzer/\">pepe</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/walbo/\">Petter Walbø Johnsgård</a>, <a href=\"https://profiles.wordpress.org/johnstonphilip/\">Phil Johnston</a>, <a href=\"https://profiles.wordpress.org/philipmjackson/\">Philip Jackson</a>, <a href=\"https://profiles.wordpress.org/pierlo/\">Pierre Gordon</a>, <a href=\"https://profiles.wordpress.org/nekojonez/\">Pieterjan Deneys</a>, <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a>, <a href=\"https://profiles.wordpress.org/webtechpooja/\">Pooja Derashri</a>, <a href=\"https://profiles.wordpress.org/powerbuoy/\">powerbuoy</a>, <a href=\"https://profiles.wordpress.org/praem90/\">praem90</a>, <a href=\"https://profiles.wordpress.org/promz/\">Pramod Jodhani</a>, <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/presstoke/\">presstoke</a>, <a href=\"https://profiles.wordpress.org/procodewp/\">procodewp</a>, <a href=\"https://profiles.wordpress.org/psealock/\">psealock</a>, <a href=\"https://profiles.wordpress.org/psufan/\">psufan</a>, <a href=\"https://profiles.wordpress.org/pwtyler/\">pwtyler</a>, <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/radixweb/\">Radixweb</a>, <a href=\"https://profiles.wordpress.org/rtm909/\">Rahul Mehta</a>, <a href=\"https://profiles.wordpress.org/ralucastn/\">ralucastn</a>, <a href=\"https://profiles.wordpress.org/rahmohn/\">Ramon Ahnert</a>, <a href=\"https://profiles.wordpress.org/ramonopoly/\">ramonopoly</a>, <a href=\"https://profiles.wordpress.org/ravipatel/\">ravipatel</a>, <a href=\"https://profiles.wordpress.org/rehanali/\">Rehan Ali</a>, <a href=\"https://profiles.wordpress.org/renathoc/\">Renatho (a11n)</a>, <a href=\"https://profiles.wordpress.org/retrofox/\">retrofox</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/rianrietveld/\">Rian Rietveld</a>, <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a>, <a href=\"https://profiles.wordpress.org/richardfoley/\">Richard Foley</a>, <a href=\"https://profiles.wordpress.org/richards1052/\">richards1052</a>, <a href=\"https://profiles.wordpress.org/rickcurran/\">Rick Curran</a>, <a href=\"https://profiles.wordpress.org/rbrishabh/\">Rishabh Budhiraja</a>, <a href=\"https://profiles.wordpress.org/saju4wordpress/\">Riyadh Ahmed</a>, <a href=\"https://profiles.wordpress.org/rmartinezduque/\">rmartinezduque</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/robertghetau/\">robertght</a>, <a href=\"https://profiles.wordpress.org/robtarr/\">robtarr</a>, <a href=\"https://profiles.wordpress.org/kreppar/\">Rodrigo Arias</a>, <a href=\"https://profiles.wordpress.org/rohan013/\">Rohan Rawat</a>, <a href=\"https://profiles.wordpress.org/rhnsharma/\">Rohan Sharma</a>, <a href=\"https://profiles.wordpress.org/ronakganatra/\">Ronak Ganatra</a>, <a href=\"https://profiles.wordpress.org/rkohilakis/\">Roxy Kohilakis</a>, <a href=\"https://profiles.wordpress.org/russhylov/\">Ruslan</a>, <a href=\"https://profiles.wordpress.org/rviscomi/\">rviscomi</a>, <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/skierpage/\">S Page</a>, <a href=\"https://profiles.wordpress.org/sebastienserre/\">Sébastien SERRE</a>, <a href=\"https://profiles.wordpress.org/soean/\">Sören Wrede</a>, <a href=\"https://profiles.wordpress.org/sabbirshouvo/\">Sabbir Hasan</a>, <a href=\"https://profiles.wordpress.org/sabrib/\">Sabri Bouchaala</a>, <a href=\"https://profiles.wordpress.org/zeo/\">Safirul Alredha</a>, <a href=\"https://profiles.wordpress.org/solarissmoke/\">Samir Shah</a>, <a href=\"https://profiles.wordpress.org/otto42/\">Samuel Wood (Otto)</a>, <a href=\"https://profiles.wordpress.org/sandipmondal/\">Sandip Mondal – a11n</a>, <a href=\"https://profiles.wordpress.org/sanketchodavadiya/\">Sanket Chodavadiya</a>, <a href=\"https://profiles.wordpress.org/mikachan/\">Sarah Norris</a>, <a href=\"https://profiles.wordpress.org/sarayourfriend/\">sarayourfriend</a>, <a href=\"https://profiles.wordpress.org/sathyapulse/\">Sathiyamoorthy V</a>, <a href=\"https://profiles.wordpress.org/savicmarko1985/\">savicmarko1985</a>, <a href=\"https://profiles.wordpress.org/sayedulsayem/\">Sayedul Sayem</a>, <a href=\"https://profiles.wordpress.org/swb1192/\">Scott Buscemi</a>, <a href=\"https://profiles.wordpress.org/scribu/\">scribu</a>, <a href=\"https://profiles.wordpress.org/scruffian/\">scruffian</a>, <a href=\"https://profiles.wordpress.org/seanmcmillan/\">Sean McMillan</a>, <a href=\"https://profiles.wordpress.org/sebastianpisula/\">Sebastian Pisula</a>, <a href=\"https://profiles.wordpress.org/omaeyusuke/\">Segayuu</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sergiocinos/\">Sergio Cinos</a>, <a href=\"https://profiles.wordpress.org/sergioestevao/\">SergioEstevao</a>, <a href=\"https://profiles.wordpress.org/shaharyar10/\">Shaharyar Afzal</a>, <a href=\"https://profiles.wordpress.org/shaunandrews/\">shaunandrews</a>, <a href=\"https://profiles.wordpress.org/shohag121/\">Shazahanul Islam Shohag</a>, <a href=\"https://profiles.wordpress.org/shimon246/\">shimon246</a>, <a href=\"https://profiles.wordpress.org/shital-patel/\">Shital Marakana</a>, <a href=\"https://profiles.wordpress.org/shivapoudel/\">Shiva Poudel</a>, <a href=\"https://profiles.wordpress.org/rsiddharth/\">siddharth</a>, <a href=\"https://profiles.wordpress.org/nomnom99/\">Siddharth Thevaril</a>, <a href=\"https://profiles.wordpress.org/siliconforks/\">siliconforks</a>, <a href=\"https://profiles.wordpress.org/simonhammes/\">simonhammes</a>, <a href=\"https://profiles.wordpress.org/siobhan/\">Siobhan</a>, <a href=\"https://profiles.wordpress.org/siobhyb/\">Siobhan</a>, <a href=\"https://profiles.wordpress.org/sirreal/\">sirreal</a>, <a href=\"https://profiles.wordpress.org/sjlevy/\">sjlevy</a>, <a href=\"https://profiles.wordpress.org/skunkbad/\">skunkbad</a>, <a href=\"https://profiles.wordpress.org/smit08/\">Smit Rathod</a>, <a href=\"https://profiles.wordpress.org/snapfractalpop/\">snapfractalpop</a>, <a href=\"https://profiles.wordpress.org/sourovroy/\">Sourov Roy</a>, <a href=\"https://profiles.wordpress.org/spytzo/\">spytzo</a>, <a href=\"https://profiles.wordpress.org/ssergei/\">ssergei</a>, <a href=\"https://profiles.wordpress.org/stacimc/\">stacimc</a>, <a href=\"https://profiles.wordpress.org/ryokuhi/\">Stefano Minoia</a>, <a href=\"https://profiles.wordpress.org/hypest/\">Stefanos Togoulidis</a>, <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/strider72/\">Stephen Rider</a>, <a href=\"https://profiles.wordpress.org/dufresnesteven/\">Steve Dufresne</a>, <a href=\"https://profiles.wordpress.org/stevehenty/\">Steve Henty</a>, <a href=\"https://profiles.wordpress.org/stevegs/\">stevegs</a>, <a href=\"https://profiles.wordpress.org/stormrockwell/\">Storm Rockwell</a>, <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a>, <a href=\"https://profiles.wordpress.org/synchro/\">Synchro</a>, <a href=\"https://profiles.wordpress.org/szaqal21/\">szaqal21</a>, <a href=\"https://profiles.wordpress.org/tacoverdo/\">Taco Verdonschot</a>, <a href=\"https://profiles.wordpress.org/takahashi_fumiki/\">Takahashi Fumiki</a>, <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/sparklingrobots/\">Tara King</a>, <a href=\"https://profiles.wordpress.org/tareiking/\">Tarei King</a>, <a href=\"https://profiles.wordpress.org/tellyworth/\">Tellyworth</a>, <a href=\"https://profiles.wordpress.org/terraling/\">terraling</a>, <a href=\"https://profiles.wordpress.org/terriann/\">Terri Ann</a>, <a href=\"https://profiles.wordpress.org/wildworks/\">Tetsuaki Hamano</a>, <a href=\"https://profiles.wordpress.org/themiked/\">theMikeD</a>, <a href=\"https://profiles.wordpress.org/tweetythierry/\">Thierry Muller</a>, <a href=\"https://profiles.wordpress.org/thulshof/\">Thijs Hulshof</a>, <a href=\"https://profiles.wordpress.org/thimalw/\">Thimal Wickremage</a>, <a href=\"https://profiles.wordpress.org/thisiswilliam/\">thisiswilliam</a>, <a href=\"https://profiles.wordpress.org/thomasplevy/\">Thomas Patrick Levy</a>, <a href=\"https://profiles.wordpress.org/timlappe/\">timlappe</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/titsmaker/\">titsmaker</a>, <a href=\"https://profiles.wordpress.org/tjcafferkey/\">tjcafferkey</a>, <a href=\"https://profiles.wordpress.org/tmatsuur/\">tmatsuur</a>, <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a>, <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn Fjellner)</a>, <a href=\"https://profiles.wordpress.org/tomalec/\">Tomek</a>, <a href=\"https://profiles.wordpress.org/shimotomoki/\">Tomoki Shimomura</a>, <a href=\"https://profiles.wordpress.org/starbuck/\">Tony G</a>, <a href=\"https://profiles.wordpress.org/ttahmouch/\">Tony Tahmouch</a>, <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a>, <a href=\"https://profiles.wordpress.org/toro_unit/\">Toro_Unit (Hiroshi Urabe)</a>, <a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a>, <a href=\"https://profiles.wordpress.org/sierratr/\">Tracy</a>, <a href=\"https://profiles.wordpress.org/travisnorthcutt/\">Travis Northcutt</a>, <a href=\"https://profiles.wordpress.org/tubys/\">tubys</a>, <a href=\"https://profiles.wordpress.org/dinhtungdu/\">Tung Du</a>, <a href=\"https://profiles.wordpress.org/twstokes/\">twstokes</a>, <a href=\"https://profiles.wordpress.org/desaiuditd/\">Udit Desai</a>, <a href=\"https://profiles.wordpress.org/umesh84/\">umesh84</a>, <a href=\"https://profiles.wordpress.org/webulous/\">Venkat Raj</a>, <a href=\"https://profiles.wordpress.org/versusbassz/\">versusbassz</a>, <a href=\"https://profiles.wordpress.org/bartoszgrzesik/\">verybg</a>, <a href=\"https://profiles.wordpress.org/vcanales/\">Vicente Canales</a>, <a href=\"https://profiles.wordpress.org/szepeviktor/\">Viktor Szépe</a>, <a href=\"https://profiles.wordpress.org/vishitshah/\">Vishit Shah</a>, <a href=\"https://profiles.wordpress.org/vladytimy/\">Vlad T</a>, <a href=\"https://profiles.wordpress.org/vondelphia/\">Vondelphia.com</a>, <a href=\"https://profiles.wordpress.org/vortfu/\">vortfu</a>, <a href=\"https://profiles.wordpress.org/wb1234/\">wb1234</a>, <a href=\"https://profiles.wordpress.org/webmandesign/\">WebMan Design | Oliver Juhas</a>, <a href=\"https://profiles.wordpress.org/west7/\">Wes Theron</a>, <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/wfmattr/\">WFMattR</a>, <a href=\"https://profiles.wordpress.org/skorasaurus/\">Will Skora</a>, <a href=\"https://profiles.wordpress.org/earnjam/\">William Earnhardt</a>, <a href=\"https://profiles.wordpress.org/williampatton/\">williampatton</a>, <a href=\"https://profiles.wordpress.org/wojsmol/\">wojsmol</a>, <a href=\"https://profiles.wordpress.org/woodyhayday/\">woodyhayday</a>, <a href=\"https://profiles.wordpress.org/wp_kc/\">wp_kc</a>, <a href=\"https://profiles.wordpress.org/wpnomad/\">wpnomad a11n</a>, <a href=\"https://profiles.wordpress.org/wpweaver/\">wpweaver</a>, <a href=\"https://profiles.wordpress.org/yagniksangani/\">Yagnik Sangani</a>, <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a>, <a href=\"https://profiles.wordpress.org/yvettesonneveld/\">Yvette Sonneveld</a>, <a href=\"https://profiles.wordpress.org/zebulan/\">Zebulan Stanphill</a>, and <a href=\"https://profiles.wordpress.org/zoiec/\">zoiec</a>.</p>\n\n\n\n<p>By release day, 71 locales had translated 90 percent or more of WordPress 5.9 into their language. Community translators are hard at work ensuring more translations are on their way. Thank you to everyone who helps to make WordPress available in 205 languages.</p>\n\n\n\n<p>Many thanks to all of the community volunteers who contribute in the <a href=\"https://wordpress.org/support/\">support forums</a>. They help to answer questions from people across the world. The success of releases, from the first one in 2003, owes much to the efforts of the support contributors. </p>\n\n\n\n<p><em>If contributing to WordPress appeals to you, it’s easy to learn more and get involved. Discover the different teams that come together on the <a href=\"https://make.wordpress.org/\">Make WordPress</a> website and find out the latest plans on the <a href=\"https://make.wordpress.org/core/\">core development blog</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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://en-gb.wordpress.org/2022/01/26/wordpress-5-9-josephine/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:76:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"WordPress 5.8.3 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:72:\"https://en-gb.wordpress.org/2022/01/07/wordpress-5-8-3-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://en-gb.wordpress.org/2022/01/07/wordpress-5-8-3-security-release/#respond\";s: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, 07 Jan 2022 11:43: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: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://en-gb.wordpress.org/?p=1512\";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:369:\"This security release features four security fixes. Because this is a security release, it is recommended that you update your sites immediately. All versions since WordPress 3.7 have also been updated. WordPress 5.8.3 is a short-cycle security release. The next major release will be version 5.9, which is already in the Release Candidate stage. You can […]\";s: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:\"Mark Robson\";s: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:3818:\"\n<p>This security release features four security fixes. Because this is a security release, it is recommended that you update your sites immediately. All versions since WordPress 3.7 have also been updated.</p>\n\n\n\n<p>WordPress 5.8.3 is a short-cycle security release. The next major release will be version <a href=\"https://make.wordpress.org/core/5-9/\">5.9</a>, which is already in the Release Candidate stage.</p>\n\n\n\n<p>You can update to WordPress 5.8.3 by downloading from WordPress.org or by visiting your Dashboard <span aria-hidden=\"true\">→︎</span> Updates and clicking “Update Now”.</p>\n\n\n\n<p>If you have sites that support automatic background updates, they’ve already started the update process.</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"security-updates\">Security Updates</h3>\n\n\n\n<p>Four security issues affect WordPress versions between 3.7 and 5.8. If you haven’t yet updated to 5.8, all WordPress versions since 3.7 have also been updated to fix the following security issues (except where noted otherwise):</p>\n\n\n\n<ul><li>Props to Karim El Ouerghemmi and Simon Scannell of <a href=\"https://www.sonarsource.com/\">SonarSource</a> for disclosing an issue with stored XSS through post slugs.</li><li>Props to Simon Scannell of <a href=\"https://www.sonarsource.com/\">SonarSource</a> for reporting an issue with Object injection in some multisite installations.</li><li>Props to ngocnb and khuyenn from <a href=\"https://giaohangtietkiem.vn/\">GiaoHangTietKiem JSC</a> for working with <a href=\"https://www.zerodayinitiative.com/\">Trend Micro Zero Day Initiative</a> on reporting a SQL injection vulnerability in WP_Query.</li><li>Props to Ben Bidner from the WordPress security team for reporting a SQL injection vulnerability in WP_Meta_Query (only relevant to versions 4.1-5.8). </li></ul>\n\n\n\n<p>Thank you to all of the reporters above for <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">privately disclosing the vulnerabilities</a>. This gave the security team time to fix the vulnerabilities before WordPress sites could be attacked. Thank you to the members of the WordPress security team for implementing these fixes in WordPress.</p>\n\n\n\n<p>For more information, check out the <a href=\"https://wordpress.org/support/wordpress-version/version-5-8-3/\">5.8.3 HelpHub documentation page</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"thanks-and-props\">Thanks and props!</h3>\n\n\n\n<p>The 5.8.3 release was led by <a href=\"https://profiles.wordpress.org/desrosj/\">@desrosj</a> and <a href=\"https://profiles.wordpress.org/circlecube/\">@circlecube</a>.</p>\n\n\n\n<p>In addition to the security researchers and release squad members mentioned above, thank you to everyone who helped make WordPress 5.8.3 happen:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/ehtis/\">ehtis</a>, <a href=\"https://profiles.wordpress.org/circlecube/\">Evan Mullins</a>, <a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/vortfu/\">vortfu</a>, and <a href=\"https://profiles.wordpress.org/zieladam/\">zieladam</a>.</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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://en-gb.wordpress.org/2022/01/07/wordpress-5-8-3-security-release/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:76:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 5.8.2 Security and Maintenance 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:88:\"https://en-gb.wordpress.org/2021/11/13/wordpress-5-8-2-security-and-maintenance-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://en-gb.wordpress.org/2021/11/13/wordpress-5-8-2-security-and-maintenance-release/#respond\";s: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, 13 Nov 2021 11:13:13 +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://en-gb.wordpress.org/?p=1499\";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:430:\"WordPress 5.8.2 is now available! This security and maintenance release features 2 bug fixes in addition to 1 security fix. Because this is a security release, it is recommended that you update your sites immediately. All versions since WordPress 5.2 have also been updated. WordPress 5.8.2 is a small focus security and maintenance release. The next major release will be version 5.9. […]\";s: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:\"Mark Robson\";s: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:2803:\"\n<p><strong>WordPress 5.8.2 </strong>is now available!</p>\n\n\n\n<p>This security and maintenance release features <a href=\"https://core.trac.wordpress.org/query?id=54129%2C54323%2C54207&milestone=5.8.2&group=component&col=id&col=summary&col=owner&col=type&col=status&col=priority&col=milestone&order=priority\">2 bug</a> fixes in addition to <a href=\"https://core.trac.wordpress.org/ticket/54207\">1 security</a> fix. Because this is a <strong>security release</strong>, it is recommended that you update your sites immediately. All versions since WordPress 5.2 have also been updated.</p>\n\n\n\n<p>WordPress 5.8.2 is a small focus security and maintenance release. The next major release will be version <a href=\"https://make.wordpress.org/core/5-9/\">5.9</a>.</p>\n\n\n\n<p>You can download WordPress 5.8.2 by downloading from WordPress.org, or by visiting your Dashboard <span aria-hidden=\"true\">→︎</span> Updates and clicking “Update Now”. If you have sites that support automatic background updates, they’ve already started the update process.</p>\n\n\n\n<p>For more information, browse the <a href=\"https://core.trac.wordpress.org/query?id=54129%2C54323%2C54207&milestone=5.8.2&group=component&col=id&col=summary&col=owner&col=type&col=status&col=priority&col=milestone&order=priority\">full list of changes</a> on Trac, or check out the <a href=\"https://wordpress.org/support/wordpress-version/version-5-8-2/\">version 5.8.2 HelpHub documentation page</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"thanks-and-props\">Thanks and props!</h2>\n\n\n\n<p>The 5.8.2 release was led by <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a> and <a href=\"https://profiles.wordpress.org/circlecube/\">Evan Mullins</a>.</p>\n\n\n\n<p>In addition to the release squad members mentioned above, thank you to everyone who helped make WordPress 5.8.2 happen: <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/bradleyt/\">Bradley Taylor</a>, <a href=\"https://profiles.wordpress.org/davidwebca/\">davidwebca</a>, <a href=\"https://profiles.wordpress.org/circlecube/\">Evan Mullins</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/shimon246/\">shimon246</a>, and <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a>.</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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://en-gb.wordpress.org/2021/11/13/wordpress-5-8-2-security-and-maintenance-release/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:73:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Introducing Twenty Twenty-Two\";s: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://en-gb.wordpress.org/2021/10/06/introducing-twenty-twenty-two/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://en-gb.wordpress.org/2021/10/06/introducing-twenty-twenty-two/#respond\";s: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, 06 Oct 2021 19:08:56 +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:6:\"Themes\";s: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://en-gb.wordpress.org/?p=1496\";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:236:\"Well, here we are again, it’s that time of the year when we start thinking about the next default WordPress theme. WordPress 5.9 will launch with a new default theme: Twenty Twenty-Two. Find out more in the official announcement post.\";s: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:\"Mark Robson\";s: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:353:\"\n<p>Well, here we are again, it’s that time of the year when we start thinking about the next default WordPress theme.</p>\n\n\n\n<p>WordPress 5.9 will launch with a new default theme: Twenty Twenty-Two.</p>\n\n\n\n<p>Find out more in <a href=\"https://make.wordpress.org/core/2021/10/06/introducing-twenty-twenty-two/\">the official announcement post</a>.</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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://en-gb.wordpress.org/2021/10/06/introducing-twenty-twenty-two/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:76:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 5.8.1 Security and Maintenance 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:88:\"https://en-gb.wordpress.org/2021/09/09/wordpress-5-8-1-security-and-maintenance-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://en-gb.wordpress.org/2021/09/09/wordpress-5-8-1-security-and-maintenance-release/#respond\";s: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, 09 Sep 2021 11:46:43 +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://en-gb.wordpress.org/?p=1490\";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:405:\"WordPress 5.8.1 is now available! This security and maintenance release features 60 bug fixes in addition to 3 security fixes. Because this is a security release, it is recommended that you update your sites immediately. All versions since WordPress 5.4 have also been updated. WordPress 5.8.1 is a short-cycle security and maintenance release. The next major release will be […]\";s: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:\"Mark Robson\";s: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:9410:\"\n<p>WordPress 5.8.1 is now available!</p>\n\n\n\n<p>This security and maintenance release features <a href=\"https://core.trac.wordpress.org/query?milestone=5.8.1&group=component&col=id&col=summary&col=milestone&col=owner&col=type&col=status&col=priority&order=priority\">60 bug</a> <a href=\"https://github.com/WordPress/gutenberg/pull/34393\">fixes</a> in addition to 3 security fixes. Because this is a <strong>security release</strong>, it is recommended that you update your sites immediately. All versions since WordPress 5.4 have also been updated.</p>\n\n\n\n<p>WordPress 5.8.1 is a short-cycle security and maintenance release. The next major release will be version <a href=\"https://make.wordpress.org/core/5-9/\">5.9</a>.</p>\n\n\n\n<p>You can download WordPress 5.8.1 by downloading from WordPress.org, or by visiting your Dashboard <span aria-hidden=\"true\">→︎</span> Updates and clicking “Update Now”.</p>\n\n\n\n<p>If you have sites that support automatic background updates, they’ve already started the update process.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Security Updates</strong></h3>\n\n\n\n<p>Three security issues affect WordPress versions between 5.4 and 5.8. If you haven’t yet updated to 5.8, all WordPress versions since 5.4 have also been updated to fix the following security issues:</p>\n\n\n\n<ul><li>Props to <a href=\"https://profiles.wordpress.org/mdawaffe/\">@mdawaffe</a>, a member of the WordPress Security Team, for their work fixing a data exposure vulnerability within the REST API.</li><li>Props to Michał Bentkowski of Securitum for reporting a XSS vulnerability in the block editor.</li><li>The Lodash library has been updated to version 4.17.21 in each branch to incorporate upstream security fixes.</li></ul>\n\n\n\n<p>In addition to these issues, the security team would like to thank the following people for reporting vulnerabilities during the WordPress 5.8 beta testing period, allowing them to be fixed prior to release:</p>\n\n\n\n<ul><li>Props to <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://evanricafort.com/\">Evan Ricafort</a> for reporting a XSS vulnerability in the block editor discovered during the 5.8 release’s beta period.</li><li>Props to <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://profiles.wordpress.org/stevehenty/\">Steve Henty</a> for reporting a privilege escalation issue in the block editor.</li></ul>\n\n\n\n<p>Thank you to all of the reporters for <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">privately disclosing the vulnerabilities</a>. This gave the WordPress security team time to fix the vulnerabilities before WordPress sites could be attacked.</p>\n\n\n\n<p>For more information, browse the <a href=\"https://core.trac.wordpress.org/query?milestone=5.8.1&group=component&col=id&col=summary&col=milestone&col=owner&col=type&col=status&col=priority&order=priority\">full list of changes</a> on Trac, or check out the <a href=\"https://wordpress.org/support/wordpress-version/version-5-8-1/\">version 5.8.1 HelpHub documentation page</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Thanks and props!</h2>\n\n\n\n<p>The 5.8.1 release was led by <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a> and <a href=\"https://profiles.wordpress.org/circlecube/\">Evan Mullins</a>.</p>\n\n\n\n<p>In addition to the security researchers and release squad members mentioned above, thank you to everyone who helped make WordPress 5.8.1 happen: <a href=\"https://profiles.wordpress.org/2linctools/\">2linctools</a>, <a href=\"https://profiles.wordpress.org/zieladam/\">Adam Zielinski</a>, <a href=\"https://profiles.wordpress.org/schlessera/\">Alain Schlesser</a>, <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a>, <a href=\"https://profiles.wordpress.org/alexstine/\">alexstine</a>, <a href=\"https://profiles.wordpress.org/algala/\">AlGala</a>, <a href=\"https://profiles.wordpress.org/oandregal/\">André</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/ankitmaru/\">Ankit Panchal</a>, <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a>, <a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton Vlasenko</a>, <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/ribaricplusplus/\">Bruno Ribaric</a>, <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a>, <a href=\"https://profiles.wordpress.org/daisyo/\">Daisy Olsen</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/dariak/\">Daria</a>, <a href=\"https://profiles.wordpress.org/davidanderson/\">David Anderson</a>, <a href=\"https://profiles.wordpress.org/davidbinda/\">David Biňovec</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a>, <a href=\"https://profiles.wordpress.org/enchiridion/\">Enchiridion</a>, <a href=\"https://profiles.wordpress.org/circlecube/\">Evan Mullins</a>, <a href=\"https://profiles.wordpress.org/garyj/\">Gary Jones</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/priethor/\">Héctor Prieto</a>, <a href=\"https://profiles.wordpress.org/ianmjones/\">ianmjones</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jblz/\">Jeff Bowen</a>, <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</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/juanmaguitar/\">JuanMa Garrido</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a>, <a href=\"https://profiles.wordpress.org/kapilpaul/\">Kapil Paul</a>, <a href=\"https://profiles.wordpress.org/gwwar/\">Kerry Liu</a>, <a href=\"https://profiles.wordpress.org/kevinfodness/\">Kevin Fodness</a>, <a href=\"https://profiles.wordpress.org/mkaz/\">Marcus Kazmierczak</a>, <a href=\"https://profiles.wordpress.org/mark-k/\">Mark-k</a>, <a href=\"https://profiles.wordpress.org/mhuntdesign/\">Matt</a>, <a href=\"https://profiles.wordpress.org/mdawaffe/\">Michael Adams (mdawaffe)</a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/moch11/\">moch11</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/paaljoachim/\">Paal Joachim Romdahl</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/pbearne/\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/walbo/\">Petter Walbø Johnsgård</a>, <a href=\"https://profiles.wordpress.org/radixweb/\">Radixweb</a>, <a href=\"https://profiles.wordpress.org/rtm909/\">Rahul Mehta</a>, <a href=\"https://profiles.wordpress.org/ramonopoly/\">ramonopoly</a>, <a href=\"https://profiles.wordpress.org/ravipatel/\">ravipatel</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/kreppar/\">Rodrigo Arias</a>, <a href=\"https://profiles.wordpress.org/sanketchodavadiya/\">Sanket Chodavadiya</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/netweb/\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/stevehenty/\">Steve Henty</a>, <a href=\"https://profiles.wordpress.org/terraling/\">terraling</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/tmatsuur/\">tmatsuur</a>, <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a>, <a href=\"https://profiles.wordpress.org/hellofromTonya/\">Tonya Mork</a>, <a href=\"https://profiles.wordpress.org/toro_unit/\">Toro_Unit (Hiroshi Urabe)</a>, <a href=\"https://profiles.wordpress.org/vladytimy/\">Vlad T</a>, <a href=\"https://profiles.wordpress.org/wb1234/\">wb1234</a>, and <a href=\"https://profiles.wordpress.org/wfmattr/\">WFMattR</a>.</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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://en-gb.wordpress.org/2021/09/09/wordpress-5-8-1-security-and-maintenance-release/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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: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:38:\"https://en-gb.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:4:\"type\";i:128;s:7:\"headers\";O:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:11:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 27 Feb 2024 16:05:55 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Mon, 19 Feb 2024 12:19:04 GMT\";s:4:\"link\";s:64:\"<https://en-gb.wordpress.org/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:2:\"br\";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'),
(140,'_transient_timeout_feed_mod_94d0b45cbbe5640144493b43a9e8f566','1709093156','no'),
(141,'_transient_feed_mod_94d0b45cbbe5640144493b43a9e8f566','1709049956','no'),
(142,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1709093157','no'),
(143,'_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:67:\"WPTavern: FSE Outreach Experimental Loses Two Words, Gains New Life\";s: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=154354\";s: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:77:\"https://wptavern.com/fse-outreach-experimental-loses-two-words-gains-new-life\";s: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:7938:\"<p>Sometimes success means having to say goodbye. That’s sort of what happened to the FSE Outreach Program, newly launched as plain <em>Outreach</em>.</p>\n\n\n\n<p>The longtime facilitator of this initiative, Automattic Product Wrangler Anne McCarthy, <a href=\"https://make.wordpress.org/core/2023/09/07/evolving-the-fse-outreach-program/\">announced the upcoming changes</a> in September 2023:</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p><em>What started as an</em> <a href=\"https://make.wordpress.org/core/2020/05/01/an-experimental-outreach-project-for-full-site-editing/\"><em>experimental program in May 2020</em></a><em> with the expectation that the Site Editor would ship in the following 6 or so months turned into nearly 3.5 years of feedback loops, knowledge sharing, and community building. With WordPress 6.3 bringing Phase 2 to completion, it’s time for the FSE Outreach Program to evolve alongside the broader WordPress project and needs.</em></p>\n\n\n\n<p><em>The intention was to “get feedback about pain points to the right people faster and help keep us on track for Phase 2”. We did this! You did this.</em><br /><em>All good things must come to an end–or they need to adapt to continue to stay relevant. </em></p>\n</blockquote>\n\n\n\n<p>It was the culmination of consistent commitment to both expand the scope of testers and to nudge users to experiment with new features:</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p><em>The primary goal is to help improve the Full Site Editing experience by gathering feedback from WordPress site builders […] the program also seeks to grow awareness and ability with full site editing features.</em></p>\n</blockquote>\n\n\n\n<p>As the adoption of the Site Editor (nee FSE, or Full Site Editing)<a href=\"https://wptavern.com/wordpress-2023-survey-block-editor-on-the-rise-positive-feeling-about-contributing-drops\"> continues to grow</a>, it’s time to refocus on discoverability and redefine the program’s goals.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Extending the Test Team</h2>\n\n\n\n<p>The first step—renaming the Making WordPress Slack channel to<a href=\"https://wordpress.slack.com/archives/C015GUFFC00\"> #outreach</a>—has been completed. But as culture has taught us—from William Shakespeare to failed rebranding endeavors—a new name doesn’t change the nature of the object it delineates.</p>\n\n\n\n<p>Birgit Pauli-Haack, leading the new program, sees Outreach as an enablement platform where site builders and extenders collaborate with core developers. With teammates Justin Tadlock and Nick Diego, she’ll coordinate the effort to recalibrate the program to further this partnership and deepen the community’s trust.</p>\n\n\n\n<p>In her <a href=\"https://make.wordpress.org/core/2024/01/29/proposal-whats-next-for-the-outreach-program/\">proposal post on the Core blog</a>, Pauli-Haack listed several use cases for the rebranded channel, aiming to keep it approachable, friendly, and wide-ranged—a destination for WordPress newcomers and professionals alike.</p>\n\n\n\n<p>“The FSE Outreach program made it clear that connecting in this channel facilitated participants’ first contributions and lowered the barrier to connecting with the open-source project,” says Pauli-Haack, clarifying that “because site builders and extenders regularly intersect, the channel’s content will be relevant to both user groups. There’s a lot of overlap of interests and concerns.”</p>\n\n\n\n<p>Outreach will be a place to:</p>\n\n\n\n<ol>\n<li>Connect with Developer Hours and Hallway Hangouts presenters beyond the live event.</li>\n\n\n\n<li>Resurface relevant content from the Dev Chat about upcoming features and call for testing from various teams.</li>\n\n\n\n<li>Collect feedback on breaking changes in future releases and provide answers and workarounds.</li>\n\n\n\n<li>Allow design and engineering teams to tap into this extended user base for input on GitHub issues and Trac tickets.</li>\n\n\n\n<li>Arrange ad hoc working groups for issues raised across social media that are outside the scope of the Support team.</li>\n\n\n\n<li>Provide support and resources to Meetup organizers.</li>\n</ol>\n\n\n\n<p>Rather than a link between support and marketing or even a dedicated end-user-oriented developer advocacy initiative, Pauli-Haack thinks of Outreach as an extension of the Test team: “It is part of the open-source process to build the software and close feedback loops, ideally before the next version is released or to help improve the current functionality. It is part of user testing in a broader sense.”</p>\n\n\n\n<p>A welcome side effect of the original program was the comeback of the Test team, whose members now post regular updates and proactively share testing instructions aimed at non-developers.</p>\n\n\n\n<h2 class=\"wp-block-heading\">No Bug Reports Needed</h2>\n\n\n\n<p>Two comments posted in response to the “What’s next” post echoed a long-standing obstacle, particularly for casual, non-technical contributors: how to encourage them to share feedback while lowering the barrier to entry associated with GitHub.</p>\n\n\n\n<p><strong>How will Outreach address these issues?<br /></strong>“The program is another way for site builders and developers to get comfortable contributing and collaborating on the open-source project. Any constructive and problem-oriented feedback is welcome, especially if it doesn’t fit into the guardrails of a bug report or a feature request. By discussion and collaboration, we discover the next steps to a possible solution.</p>\n\n\n\n<p>It’s also an opportunity for extenders to find an open ear for airing pain points on extending WordPress. Part of the extender Outreach is the Extensibility Issues Triage initiative. Each month, contributors from agencies and extenders go through the project board of identified issues, try to move them forward to get them reviewed and ultimately merged.”</p>\n\n\n\n<h2 class=\"wp-block-heading\">A Group Endeavor</h2>\n\n\n\n<p>In the <a href=\"https://make.wordpress.org/core/2024/02/23/recap-hallway-hangout-whats-next-for-the-outreach-program/\">recap of the Hallway Hangout</a> dedicated to discussing these typical difficulties and possible ways to alleviate them, the team proposed actionable steps:</p>\n\n\n\n<ul>\n<li>Set up a GitHub team that contributors can ping when they want to gather early feedback from users.</li>\n\n\n\n<li>Encourage engineers to use the Outreach channel to request extenders’ feedback on new features earlier in development before they’re merged and shipped.</li>\n\n\n\n<li>Create a wishlist for upcoming releases to get users’ input on priorities. This overlaps with the <a href=\"https://make.wordpress.org/core/2023/11/27/summary-hallway-hangout-triage-extensibility-issue/\">Extensibility Issues Triage</a> initiative.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p><em>The goal is to make the Outreach Program more accessible and sustainable, improve collaboration across teams, and help guide WordPress development through early and ongoing user and contributor input.</em></p>\n</blockquote>\n\n\n\n<p>Coming up with ideas is the easy part—making them happen is the real challenge. As Pauli-Haack mentioned, “This can only be a group endeavor if we want to broaden the reach and be a welcoming place for people interested in particular focuses of the software.“</p>\n\n\n\n<p><strong>How will you ensure that the channel remains focused, and balances sometimes conflicting needs and interests?<br /></strong>“These are ideas that come from knowing that non-contributors need to connect with contributors. We want to ensure an ongoing humming in the channel, letting people know what’s happening. As this is still a young initiative, we will see what will come of it. It’s version one, and we will continue to iterate.”</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, 27 Feb 2024 10:00: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Ronny Shani\";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:95:\"Do The Woo Community: The Collaboration of the Interactivity API with WordPress and WooCommerce\";s: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=79149\";s: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/interactivity-api-collaboration-wordpress-woocommerce/\";s: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:481:\"<p>WordPress and WooCommerce devs Carlos Bravo and Lucio Giannotta discuss the collaboration of WordPress core and Woo with the Interactivity API, a new framework for developers.</p>\n<p>>> The post <a href=\"https://dothewoo.io/interactivity-api-collaboration-wordpress-woocommerce/\">The Collaboration of the Interactivity API with WordPress and WooCommerce</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, 27 Feb 2024 10: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: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:86:\"WPTavern: WordPress Photo Festival 2024, A Five Part Retrospective, Part 1, Organizers\";s: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=154319\";s: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/wordpress-photo-festival-2024-a-five-part-retrospective-part-1-organizers\";s: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:35748:\"<p>This article is available in Video, Audio, and transcribed text.</p>\n\n\n\n\n\n\n\n<p>Audio Edition</p>\n\n\n\n\n\n\n\n<h2 class=\"wp-block-heading\">Transcription</h2>\n\n\n\n<p>[Music] Hello, my name is Topher DeRosia.</p>\n\n\n\n<p>This episode begins a five-part series on the WordPress Photo Festival 2024 that took place February 3 through 10.</p>\n\n\n\n<p>We’ll talk to organizers, volunteers, and participants about how the event went, as well as the community team about how this event is a model for the second generation WordPress events.</p>\n\n\n\n<p>Before we get started, I’d like to provide some background for the event.</p>\n\n\n\n<p>At the State of the Word 2021, Matt announced the WPPhotos project, a project to have the WordPress community submit photos for use by anyone in the world for any purpose.</p>\n\n\n\n<p>As of today, there are over 15,000 photos available in the Photos repository.</p>\n\n\n\n<p>The 2024 Photo Festival was an attempt to both boost the number of submitters as well as the number of photos.</p>\n\n\n\n<p>We begin our story talking with Bigul from Kerala.</p>\n\n\n\n<p>Bigul, can you tell me your full name and where you live?</p>\n\n\n\n<p>Hi, good evening.</p>\n\n\n\n<p>I’m Bigul.</p>\n\n\n\n<p>My full name is Bigul Malayi.</p>\n\n\n\n<p>Malayi is my family name.</p>\n\n\n\n<p>I’m from South India, southern part of India.</p>\n\n\n\n<p>I live in a state called Kerala, and my city name is Kozhikode, Calicut.</p>\n\n\n\n<p>It is one of the old times.</p>\n\n\n\n<p>It is very famous for spices.</p>\n\n\n\n<p>So many European traders came here for trading spices in the past.</p>\n\n\n\n<p>Were those the Portuguese?</p>\n\n\n\n<p>Like, I know the Portuguese came to Goa…</p>\n\n\n\n<p>Yes, exactly.</p>\n\n\n\n<p>He landed here.</p>\n\n\n\n<p>He was then he started the colonialization of India.</p>\n\n\n\n<p>Okay, so the Portuguese came here and before the Portuguese, we were in trade with the Arabs and Chinese traders.</p>\n\n\n\n<p>So my city has been in touch, direct contact with the foreigners, different traders from the world for more than 800 years.</p>\n\n\n\n<p>Wow, that’s really impressive.</p>\n\n\n\n<p>And if you’re here and for the rest of the state, Kerala, he’s in touch with the spice trading and a lot of commodities traded here since the time of Greeks and Romans.</p>\n\n\n\n<p>Maybe you can find the mentions of Kerala Malabar Coast in the Solomon episode of Bible also.</p>\n\n\n\n<p>Oh, yeah, I’ll bet.</p>\n\n\n\n<p>Yeah.</p>\n\n\n\n<p>So we’re here today to talk about the WPPhotos event that happened there.</p>\n\n\n\n<p>Tell me about it.</p>\n\n\n\n<p>What is it for somebody who doesn’t know?</p>\n\n\n\n<p>Okay, what does it tell?</p>\n\n\n\n<p>As everybody knows, we have no way to contribute back to WordPress since last two years.</p>\n\n\n\n<p>And many people are involved in that project.</p>\n\n\n\n<p>Because nowadays, everyone carry good camera or mobile.</p>\n\n\n\n<p>So we were able to click nice shots wherever we go.</p>\n\n\n\n<p>So we have a lot of contributors to the WordPress photo directory, there are 1000s of contributors.</p>\n\n\n\n<p>And from our in Kerala, we have five meetups groups.</p>\n\n\n\n<p>And most of the time we organize the meetups and WordCamps together.</p>\n\n\n\n<p>So we notice many people from our community, we have a we have three active at WordPress group, and we have five meetup groups.</p>\n\n\n\n<p>So from there, we noticed many people in our communities actively contributing to WordPress photo directory, and few of them, their photos were selected in, in our associated newsletters.</p>\n\n\n\n<p>And also some other also some other websites are related to WordPress, especially like Gutenberg Times, HeroPress, etc.</p>\n\n\n\n<p>So as a token of appreciation, people love to contribute more back to the WordPress photos.</p>\n\n\n\n<p>So as per the current status, many WordCamps or WordPress meetup groups are organizing photo walk.</p>\n\n\n\n<p>So we impressed from WordPress Tokyo group, and they, they used to do photo walks very often than other meetup groups.</p>\n\n\n\n<p>So we decided to go something similar to what they did.</p>\n\n\n\n<p>So a few months back, last year, we went to a botanical garden nearby in Calicut, that is hardly 10 kilometers from my native.</p>\n\n\n\n<p>I used to go there in the childhood, because that botanical garden has a lot of plants, varieties, more than thousands of plant varieties, especially they have a garden for ginger and bananas.</p>\n\n\n\n<p>That sounds like an ideal place for a photo walk.</p>\n\n\n\n<p>Yeah, yeah, photo walk.</p>\n\n\n\n<p>So we’ve been there.</p>\n\n\n\n<p>And also they have, they have a very good pond for lotus and water lilies.</p>\n\n\n\n<p>So we went there, and we were able to take a lot of photos there.</p>\n\n\n\n<p>And the funny thing is that actually, we were only allowed to stay there for three hours.</p>\n\n\n\n<p>But that day we went there on a Sunday, and that day was very rainy day.</p>\n\n\n\n<p>And we were not able to walk sometime because of the heavy rain.</p>\n\n\n\n<p>Thankfully, there were some kind of a shed there.</p>\n\n\n\n<p>We could scan, what to say, some kind of a shed hut or roughly shed there.</p>\n\n\n\n<p>So we were able to sit there and we were able to talk about the WordPress and general web development thing.</p>\n\n\n\n<p>So it’s like extended a WordPress day.</p>\n\n\n\n<p>And we were 15 people.</p>\n\n\n\n<p>And then we took more than six hours to rob around.</p>\n\n\n\n<p>Thankfully that day there were a coffee bar nearby.</p>\n\n\n\n<p>There is a coffee bar.</p>\n\n\n\n<p>Actually, they were serving food also in the working days, but Sunday is the only day for them.</p>\n\n\n\n<p>So we were able to only able to drink coffee until four evening.</p>\n\n\n\n<p>So, but the atmosphere was very chilly because it is very cool.</p>\n\n\n\n<p>And the rain was most of the time they were raining and we were able to take very good photos.</p>\n\n\n\n<p>And I think more than 200 photos from that walk is already in the photo directory by different people.</p>\n\n\n\n<p>And a few are still remaining to upload those photos.</p>\n\n\n\n<p>But still it is very nice after seeing that in those years from the and we also created a few reels.</p>\n\n\n\n<p>And sure, it was very successful.</p>\n\n\n\n<p>When we shared it in the our community groups, meetup groups and WhatsApp group, we got a very good response from the people and they want to be part of that.</p>\n\n\n\n<p>But in so we thought that if we are taking 20 or 30 people to a botanical garden because the photos will be similar because there is a limitation.</p>\n\n\n\n<p>There will be many photo duplications.</p>\n\n\n\n<p>There are a lot of chances for that.</p>\n\n\n\n<p>So we started to think about how we can have a photo contributor day and how we can differentiate from a photo worker.</p>\n\n\n\n<p>Then we came with the idea about a half day photo contribution day and we organized it in last year after two, three weeks after the photo walk.</p>\n\n\n\n<p>And it went very well.</p>\n\n\n\n<p>It was in last November and it went very well.</p>\n\n\n\n<p>We were able to contribute another 200 photos from and most of the participants were different part of Kerala.</p>\n\n\n\n<p>So more than 60 people attend that event also.</p>\n\n\n\n<p>So that was a very interesting feedback from the people.</p>\n\n\n\n<p>And but we there were a lot of positive feedbacks.</p>\n\n\n\n<p>And one of the negative feedback was they are not getting much time to contribute the photo as we know, we can only upload five photos at a time and we have to wait for the moderation.</p>\n\n\n\n<p>So we were looking for an option how we can we can make a remedy for this and what will be the exact solution for this when we are organizing a photo walk or photo contributor day.</p>\n\n\n\n<p>So people want to contribute more than 10 or 15 photos and we have to we have to consider it as a part of the event, these photos.</p>\n\n\n\n<p>So we were thinking about different models.</p>\n\n\n\n<p>And finally we came up with the idea that still few people don’t know or what why we should contribute the photos and what are the methods we have to follow, what are the things we have to take care of.</p>\n\n\n\n<p>So we decided to have a different format.</p>\n\n\n\n<p>We plan to organize a photo festival and it’s fully dedicated for the contribution of WordPress Photo Directory and we decided to run it as a one week program.</p>\n\n\n\n<p>On the first day, we organized two orientation, one in the Asian morning time zone and one in the hour evening time.</p>\n\n\n\n<p>So the people from different parts of the globe can attend.</p>\n\n\n\n<p>Even the people from the American side also can attend that because it will be early morning for them.</p>\n\n\n\n<p>So we organized two meetings, one is in the early morning time, hour time and evening time.</p>\n\n\n\n<p>So more than 100 people attended both of the meetings, all in one and they came to know more about how we can contribute to the photo directory and what are the things we have to take care about, what is the relevance of CCO license, etc.</p>\n\n\n\n<p>We had a very interactive discussion on both sessions and people started to contribute.</p>\n\n\n\n<p>And the interesting fact that our goal for this photo festival was 1000 photos to the photo directory in a one week time.</p>\n\n\n\n<p>On the first day itself, there are more than 400 photo submissions.</p>\n\n\n\n<p>And that is the first time the photo directory is facing that much load.</p>\n\n\n\n<p>Actually, the moderators was busy for the next one week.</p>\n\n\n\n<p>Because whenever you look at the photo directory, there will be more than 200 to 250 photos in the queue.</p>\n\n\n\n<p>Even on the last day, there were, we spent a lot of time on Friday, and also Saturday morning.</p>\n\n\n\n<p>And then also there were more than 60 photos submitted for our photo festival.</p>\n\n\n\n<p>So that was an immense response.</p>\n\n\n\n<p>Our goal actually, as like I mentioned before, our goal was 1000 photos, but we were able to, I mean, the people contributed more than 2000 photos.</p>\n\n\n\n<p>But as you know, we can have, there are a few of the photos, 400 plus photos were not up to the mark.</p>\n\n\n\n<p>They were matching our guidelines.</p>\n\n\n\n<p>So it happens.</p>\n\n\n\n<p>So we were, we have to reject those photos, because most of them are not up to the mark because of different issues like clarity, fading, etc.</p>\n\n\n\n<p>So after that also, even we rejected 400 plus photos, there were 1544 photos contributed to the weightless photo directory as a part of that.</p>\n\n\n\n<p>And it is contributed by more than 160 contributors from different parts of the world.</p>\n\n\n\n<p>And that’s just within one week, right?</p>\n\n\n\n<p>Yeah, within one week, actually, the funny thing is that more than 300 people registered for the event, but thankfully only 170 people.</p>\n\n\n\n<p>The city will be a big, big, big, big delay because that to monitor the photos and the moderate the photos, it will take a lot of lot of time, it will not be possible to sort all the things in a one week time.</p>\n\n\n\n<p>So overall, we got a very good feedback.</p>\n\n\n\n<p>And it is it’s a nice way of contributing back to it.</p>\n\n\n\n<p>Yeah, I do know the moderators struggled to keep up because they came in so quickly.</p>\n\n\n\n<p>Yes.</p>\n\n\n\n<p>At one point, there was I think 1000 in the queue.</p>\n\n\n\n<p>Yes, I watch.</p>\n\n\n\n<p>Personally, I watch every photo go by in an RSS feed, just for fun.</p>\n\n\n\n<p>And there’s usually 40 or 50 in a day.</p>\n\n\n\n<p>And I got up over 2000 in my reader before I could start catching up.</p>\n\n\n\n<p>And so that was crazy.</p>\n\n\n\n<p>I personally was ill during that time, so I wasn’t able to moderate or even attend.</p>\n\n\n\n<p>And so and I’m one of the moderators.</p>\n\n\n\n<p>So that put extra weight on some of the others.</p>\n\n\n\n<p>Marcus Burnett is a moderator and he was at a WordCamp.</p>\n\n\n\n<p>And so it was it was a pretty stressful time.</p>\n\n\n\n<p>I don’t think anybody expected that volume.</p>\n\n\n\n<p>Yes, exactly.</p>\n\n\n\n<p>And it was, it was pleasantly international.</p>\n\n\n\n<p>You know, it was India heavy, but that’s okay.</p>\n\n\n\n<p>It’s that was, that’s your home, your home base.</p>\n\n\n\n<p>But I saw people from all over the world, contributing.</p>\n\n\n\n<p>And that was very encouraging.</p>\n\n\n\n<p>I’m excited to see other cities, other states around the world, pick up the mantle and do something similar.</p>\n\n\n\n<p>Sort of like the Olympics, you know, where it’s international, but it’s really about the city.</p>\n\n\n\n<p>Yes, you know, yes, we can consider because after this, when we can conclude the photo festival, most of the participants were checking when will be the next event.</p>\n\n\n\n<p>So, of course, we have to think about a bigger vision, maybe next year, in a bigger manner.</p>\n\n\n\n<p>Yep.</p>\n\n\n\n<p>Tell me about the future.</p>\n\n\n\n<p>Have you have you already thought about doing another one yourself?</p>\n\n\n\n<p>Have you thought about or has anybody approached you and said, hey, we’d like to do this also?</p>\n\n\n\n<p>Yeah, we got a very good feedback from the community, we have community because few approach, I mean, few community organizers in touch with us, they told us that we they will be doing something similar as a part of their weight gain, not in a bigger, bigger manner, but a kind of a smaller version of this.</p>\n\n\n\n<p>So, I hope it will be followed by many other communities.</p>\n\n\n\n<p>And people want a bigger version of this.</p>\n\n\n\n<p>So, maybe next year, we can we can plan a bigger one.</p>\n\n\n\n<p>Yeah, I in sense what I mean that actually that many people contributed more than 30 photos, and they want to contribute more.</p>\n\n\n\n<p>And also the thing is that they were not getting enough time to contribute as they they weren’t, because many participants conducted us through different social media channels, even few of them contacted us directly directly because they have our phone numbers or WhatsApp numbers.</p>\n\n\n\n<p>So, they picked me directly and say, why am I put to spending Q4 last two days?</p>\n\n\n\n<p>I have tons of photos with me, I want to contribute, I want to contribute what, well, when you will be moderators.</p>\n\n\n\n<p>Okay, so that’s, that speaks to some of the logistics that we need to take care of.</p>\n\n\n\n<p>Yeah, particularly around moderators.</p>\n\n\n\n<p>Yeah.</p>\n\n\n\n<p>So, yes, please carry on.</p>\n\n\n\n<p>But we have enough moderators for daily submissions.</p>\n\n\n\n<p>It’s working fine.</p>\n\n\n\n<p>Yes, exactly.</p>\n\n\n\n<p>But so that’s not going to scale.</p>\n\n\n\n<p>So, yeah, points that out.</p>\n\n\n\n<p>This is a good stress test for the for the system.</p>\n\n\n\n<p>Yes, exactly.</p>\n\n\n\n<p>So, what we can do that we can, we can in touch with moderators in advance.</p>\n\n\n\n<p>In this time, we only ping them just around two weeks before the event.</p>\n\n\n\n<p>Next time, we can make a long plan.</p>\n\n\n\n<p>And we can ping them in advance two, three months advance so they can be ready.</p>\n\n\n\n<p>They can devote some time on that particular two, three weeks.</p>\n\n\n\n<p>And we can give people more than a week for 10 days or 15 days for contributing to the weightless photo directory.</p>\n\n\n\n<p>So, everybody will get enough time to contribute their good photos to the photo directory.</p>\n\n\n\n<p>And also, so there will not be any hurry.</p>\n\n\n\n<p>So, we will get enough submission also and also, as a moderator, we will get enough time to moderate it.</p>\n\n\n\n<p>And for for us, it will get enough time to sort out the photos and announce the winners rather than doing in a one or two days.</p>\n\n\n\n<p>So, that is our plan.</p>\n\n\n\n<p>And also, many people will be discussed in person multiple times.</p>\n\n\n\n<p>Many people want to contribute to the weightless photo directory, but they are not willing to create an accord in weightless.org or they are submitting the photos one by one.</p>\n\n\n\n<p>And when we when we were sharing this group with in a few of the professional photographers, we know and they shared it in their WhatsApp group about this.</p>\n\n\n\n<p>So, immediate response is that is it possible to send the photos, send the photos via email?</p>\n\n\n\n<p>So, that is the normal practice.</p>\n\n\n\n<p>Yeah, not all practice here.</p>\n\n\n\n<p>Some when online media or a regular media conduct the event for the photo festival like this.</p>\n\n\n\n<p>For example, nature photo festival or wildlife photograph festival, there are a few photo festivals happens here most of the time by conducted by some organizations or online agencies like that.</p>\n\n\n\n<p>They will only ask them to send the photos via mail.</p>\n\n\n\n<p>So, they were expecting the same parameters.</p>\n\n\n\n<p>So, we expect few professional photographers’ participations.</p>\n\n\n\n<p>But unfortunately, we only get less than 10 from our state because of this.</p>\n\n\n\n<p>So, next time we will pick a way to include them also.</p>\n\n\n\n<p>So, we have to work on that.</p>\n\n\n\n<p>We need if we get one or two volunteer to monitor this, we will surely consider this.</p>\n\n\n\n<p>Yeah, I know that there are professional developers in the world who became professional developers because of WordPress.</p>\n\n\n\n<p>I’m going to be really curious to see if we get professional photographers grow out of this program.</p>\n\n\n\n<p>Yes, exactly.</p>\n\n\n\n<p>That would be really great.</p>\n\n\n\n<p>Yeah, we are hoping for that also.</p>\n\n\n\n<p>But there is also another problem is that they are ready to share.</p>\n\n\n\n<p>Few of them are ready to share, but they are not willing to share in a license.</p>\n\n\n\n<p>Right.</p>\n\n\n\n<p>Yes.</p>\n\n\n\n<p>That is a difficulty.</p>\n\n\n\n<p>Yeah, that’s a difficulty.</p>\n\n\n\n<p>So, at least we missed the few great photos because of that.</p>\n\n\n\n<p>But we can compromise with that because that’s one of the most important things in our guidelines.</p>\n\n\n\n<p>Sure.</p>\n\n\n\n<p>Yeah.</p>\n\n\n\n<p>I’ve given some thoughts to that.</p>\n\n\n\n<p>And I think we as a community need to do a better job of communicating why it’s worthwhile for a professional to submit some photos under the CC0 license.</p>\n\n\n\n<p>They never want to give anything away.</p>\n\n\n\n<p>It makes sense.</p>\n\n\n\n<p>It’s their culture.</p>\n\n\n\n<p>But I think we can convince them that it’s worth it in some ways.</p>\n\n\n\n<p>So, that’s something we can learn from this project.</p>\n\n\n\n<p>And also a few of the promotional photos submitted in our event as a part of this event.</p>\n\n\n\n<p>We can get wider recognition.</p>\n\n\n\n<p>One of them is selected as the 15,000 photo.</p>\n\n\n\n<p>Yeah.</p>\n\n\n\n<p>There was a tweet from the Twitter handle about 15,000 photos and one of the promotional photos submitted as a part of the event is selected for that.</p>\n\n\n\n<p>Ah, that’s great.</p>\n\n\n\n<p>The one, maybe you remember the blue one of Kingfisher, blue Kingfisher.</p>\n\n\n\n<p>Yes, I do.</p>\n\n\n\n<p>It’s selected as one of the best photos of our photo festival.</p>\n\n\n\n<p>Ah, that’s great.</p>\n\n\n\n<p>I’d like to talk to you for a few minutes about organizers.</p>\n\n\n\n<p>I noticed you have a lot of them.</p>\n\n\n\n<p>My local WordCamp usually had four.</p>\n\n\n\n<p>What did you have, 20 or something like that?</p>\n\n\n\n<p>Yeah, I actually, as I told you before, we conducted, I mean, we organized this event as a, on the banner of Waitress Kerala community.</p>\n\n\n\n<p>We have four community, waitress active community here.</p>\n\n\n\n<p>So all these organizers from that group.</p>\n\n\n\n<p>Okay.</p>\n\n\n\n<p>And they are part of our last two, three WordCamps also.</p>\n\n\n\n<p>And we worked as a team since we started.</p>\n\n\n\n<p>So all of them were part of this event in a different, different way.</p>\n\n\n\n<p>So what kinds of different things did they do?</p>\n\n\n\n<p>I mean, okay, so it’s not a, it’s not a WordCamp.</p>\n\n\n\n<p>So you’re not getting a venue, you’re not, you know, all that stuff.</p>\n\n\n\n<p>What, what did they do for this event?</p>\n\n\n\n<p>Actually, most of us were in the part of, in the initial process itself.</p>\n\n\n\n<p>So as I described before, few minutes before, we started it as a photo walk in the first, then we organized as a photo direct, I mean, a photo contributor after contributor dates.</p>\n\n\n\n<p>Then we decided to go for a photo festival.</p>\n\n\n\n<p>So all this idea came when we sit together in different Zoom calls.</p>\n\n\n\n<p>So all of them have their own suggestions.</p>\n\n\n\n<p>And discussing about the day.</p>\n\n\n\n<p>So it took three, four meetings that evolved from a photo walk to photo festival.</p>\n\n\n\n<p>So everyone was part of the discussion.</p>\n\n\n\n<p>And they were sharing their idea in our group.</p>\n\n\n\n<p>So we have a WhatsApp group and Telegram group for this.</p>\n\n\n\n<p>And also we have a Slack group.</p>\n\n\n\n<p>So we were discussing a lot of things, how to, how to execute in a better manner.</p>\n\n\n\n<p>So a lot of suggestions came from all of these people.</p>\n\n\n\n<p>And also they shared about this event in their all of our all possible ways, like they’re in between their friends and family, in between their colleagues, okay, in a different way.</p>\n\n\n\n<p>So that is why we get a wider spread of this event in a short time.</p>\n\n\n\n<p>Actually, as a part of a budget, there was $250 allocated for online campaign, especially for the Instagram ads.</p>\n\n\n\n<p>But on the first day, our plan was to execute it on after we, we organized the first orientation, the first day orientation, and to wait for the response, how will be the response.</p>\n\n\n\n<p>And thankfully, we got a very good response on the first day itself, because of this in direct collaboration with the people like friends, family, colleagues, etc.</p>\n\n\n\n<p>So that helped, that helped a lot.</p>\n\n\n\n<p>So we were able to do the promotions in a very short, short time because of this wider base.</p>\n\n\n\n<p>Right.</p>\n\n\n\n<p>I really liked that.</p>\n\n\n\n<p>I’m accustomed to a lead organizer deciding what the tasks are, and then assigning them to as many contributors as needed, which might be four or five or whatever for an event or a very large event, maybe, you know, a dozen or so.</p>\n\n\n\n<p>But I really liked the idea of people coming to the meeting and saying, I think we should do this, and I’m willing to do the work.</p>\n\n\n\n<p>And so now I’m an organizer, you know, that’s very, very open source.</p>\n\n\n\n<p>You know, come to the group and say, I’m going to do this work for this project.</p>\n\n\n\n<p>Actually, we always tell one thing, we always tell one thing here.</p>\n\n\n\n<p>We are trying to execute that, like, there is a famous verse from three musketeers, one for all, all for one.</p>\n\n\n\n<p>Yes.</p>\n\n\n\n<p>Yeah, that’s really great.</p>\n\n\n\n<p>Okay.</p>\n\n\n\n<p>And also, the important thing is that we also get very good support from other Indian community.</p>\n\n\n\n<p>Like, for example, maybe you have noticed that Sadie has created a Sadie, Sadie also pinned us to join us a volunteer.</p>\n\n\n\n<p>So she created, she created an article, she wrote an article in our event, event site about how to contribute to WordPress photo directory with a good video.</p>\n\n\n\n<p>So people were able to, if a person reading that article, he or she will be able to get a clear understanding of how to contribute to WordPress photo directory.</p>\n\n\n\n<p>That was translated too as well, right?</p>\n\n\n\n<p>Yeah, yeah, yeah.</p>\n\n\n\n<p>So we conducted, so in our internal discussion, this idea came that we can translate this, the article to different Indian languages.</p>\n\n\n\n<p>Then we conducted some of our, I mean, most of our community here, and we were able to translate it to multiple languages like Tamil, Canada, Hindi, Marathi, Gujarati, Bengali, Nepali.</p>\n\n\n\n<p>Okay.</p>\n\n\n\n<p>We have translated this must languages.</p>\n\n\n\n<p>So yeah, so it, it gave it, it could help us to get a wider recognition, even in the community.</p>\n\n\n\n<p>And people were able to read, read the article in their languages, and they were able to contribute to the photo directory without much hustles.</p>\n\n\n\n<p>So it helped a lot.</p>\n\n\n\n<p>Yeah, that’s, that’s pretty cool.</p>\n\n\n\n<p>I interviewed Sadie and in a couple of days, you’ll be able to watch the interview about her making that video.</p>\n\n\n\n<p>Okay.</p>\n\n\n\n<p>I think that’s it for today.</p>\n\n\n\n<p>Okay.</p>\n\n\n\n<p>I really appreciate your time.</p>\n\n\n\n<p>Okay.</p>\n\n\n\n<p>Thank you very much.</p>\n\n\n\n<p>You’ve been very patient throughout the entire interview process.</p>\n\n\n\n<p>It’s been a journey for both of us.</p>\n\n\n\n<p>It’s a pleasure to be talking with you because you are one of our members in the photo.</p>\n\n\n\n<p>Thank you very much.</p>\n\n\n\n<p>Actually, actually, we started to contribute after seeing the efforts you have taken for the photo directory, especially you, Michelle and Marcus.</p>\n\n\n\n<p>Well, thank you very much.</p>\n\n\n\n<p>We really appreciate that.</p>\n\n\n\n<p>It’s nice to be here.</p>\n\n\n\n<p>Okay.</p>\n\n\n\n<p>Thank you very much.</p>\n\n\n\n<p>Bigul was not the only organizer by a long shot.</p>\n\n\n\n<p>There were quite a few.</p>\n\n\n\n<p>I also interviewed Ajith.</p>\n\n\n\n<p>So tell me your whole name and where you’re from.</p>\n\n\n\n<p>Yeah.</p>\n\n\n\n<p>My name is Ajith R N.</p>\n\n\n\n<p>So I’m from Kochi, Kerala.</p>\n\n\n\n<p>It’s a southern state of India.</p>\n\n\n\n<p>So basically I live near the middle of the sea and the mountains.</p>\n\n\n\n<p>Yeah.</p>\n\n\n\n<p>It’s on the western shoreline, right?</p>\n\n\n\n<p>Yeah.</p>\n\n\n\n<p>That’s right.</p>\n\n\n\n<p>I kind of keep track of things by their relation to Mumbai.</p>\n\n\n\n<p>And I know Mumbai is about halfway down on the west.</p>\n\n\n\n<p>And so you guys are halfway between the bottom and Mumbai, right?</p>\n\n\n\n<p>No, no, actually we are way below that.</p>\n\n\n\n<p>So we are the bottom part of India on the left side.</p>\n\n\n\n<p>Okay.</p>\n\n\n\n<p>If you see.</p>\n\n\n\n<p>Yeah.</p>\n\n\n\n<p>The hot part.</p>\n\n\n\n<p>Yeah.</p>\n\n\n\n<p>[Laughter]</p>\n\n\n\n<p>So tell me what you did with the WPPhotos event that happened recently.</p>\n\n\n\n<p>Okay.</p>\n\n\n\n<p>Basically my role was to take care of all the website and all the same side of things.</p>\n\n\n\n<p>So I did most of the website and all the, facilitated all the things for the registration.</p>\n\n\n\n<p>And also we did some small apps to display the live feed of the photos.</p>\n\n\n\n<p>Oh nice.</p>\n\n\n\n<p>Yeah.</p>\n\n\n\n<p>Right.</p>\n\n\n\n<p>Yeah.</p>\n\n\n\n<p>Also we got some leaderboard too.</p>\n\n\n\n<p>So anyway, since the event is over, I think that’s finalized.</p>\n\n\n\n<p>So yeah.</p>\n\n\n\n<p>Okay.</p>\n\n\n\n<p>Basically my role was to mostly doing all the technical stuff, I guess.</p>\n\n\n\n<p>So yeah.</p>\n\n\n\n<p>Your title was organizer.</p>\n\n\n\n<p>Yeah.</p>\n\n\n\n<p>Yeah.</p>\n\n\n\n<p>That’s right.</p>\n\n\n\n<p>I was surprised.</p>\n\n\n\n<p>There are quite a few organizers.</p>\n\n\n\n<p>What was it like 10 or something like that?</p>\n\n\n\n<p>Yeah.</p>\n\n\n\n<p>Yeah.</p>\n\n\n\n<p>Just something like that.</p>\n\n\n\n<p>So we basically, we are a group of organizers.</p>\n\n\n\n<p>So whenever there is a meeting and everyone will input, we will do their parts.</p>\n\n\n\n<p>So that’s it.</p>\n\n\n\n<p>Yeah.</p>\n\n\n\n<p>Since this was, we didn’t get enough time to prepare for the event.</p>\n\n\n\n<p>So like we just got approval and in the next one week or one and a half week, we just, there’s only a short amount of window.</p>\n\n\n\n<p>So most of us didn’t have free enough time to go through the whole process.</p>\n\n\n\n<p>So a bunch of us came together and we did.</p>\n\n\n\n<p>And yeah, that’s basically.</p>\n\n\n\n<p>Okay.</p>\n\n\n\n<p>Bigot mentioned he was the main point of contact.</p>\n\n\n\n<p>Well, okay. so I asked him if he was lead organizer and he did not say yes.</p>\n\n\n\n<p>He said it was main point of contact.</p>\n\n\n\n<p>Was there a lead organizer?</p>\n\n\n\n<p>Was there one person or was it just like main point of contact was by default?</p>\n\n\n\n<p>Yeah, actually he was, yeah, actually we didn’t specify any lead organizers.</p>\n\n\n\n<p>So because actually initially he came up with this idea.</p>\n\n\n\n<p>So we communicate through him and he really, yeah.</p>\n\n\n\n<p>If you say, if he can’t say who is the lead organizer, I think it’s, we can’t tell it was people.</p>\n\n\n\n<p>So yeah, that’s right.</p>\n\n\n\n<p>Anyway, we didn’t came to that conclusion.</p>\n\n\n\n<p>So we work as a group.</p>\n\n\n\n<p>All right.</p>\n\n\n\n<p>That makes sense.</p>\n\n\n\n<p>Have you organized, been on the organizing team for a WordCamp before?</p>\n\n\n\n<p>Yes, I did.</p>\n\n\n\n<p>So actually I was part of the two editions of WordCamp and one edition of WordCamp.</p>\n\n\n\n<p>So my question related to that is how is this different from an organizer standpoint?</p>\n\n\n\n<p>Yeah, since this is a purely online event, so there is no interaction with people physically.</p>\n\n\n\n<p>So basically that was a challenge in some way, or maybe we can say we, we can cut out few of our teams.</p>\n\n\n\n<p>Like we don’t need to organize a venue and all things related to that.</p>\n\n\n\n<p>So basically, yeah.</p>\n\n\n\n<p>So anyway, the reason we choose to go for an online event, because since it was basically a contributing photos to the photo directory, and if we do it on one day, we may not have get enough photo contributions.</p>\n\n\n\n<p>So if it was a longer event or an online event, then everyone can participate.</p>\n\n\n\n<p>So with their own time.</p>\n\n\n\n<p>Okay.</p>\n\n\n\n<p>So would you say it’s easier, harder or just different?</p>\n\n\n\n<p>I think it’s just different.</p>\n\n\n\n<p>So it’s not an easy part.</p>\n\n\n\n<p>So yeah.</p>\n\n\n\n<p>So I can imagine some parts would be easier and some parts would be harder.</p>\n\n\n\n<p>Yeah, some parts would be harder.</p>\n\n\n\n<p>So the organizing their talks and all the things, the interaction between the attendees.</p>\n\n\n\n<p>So that was a bit different from an in-person event.</p>\n\n\n\n<p>So I’m not sure if we get enough networking experience or networking opportunities with these online events.</p>\n\n\n\n<p>So yeah, that’s an issue.</p>\n\n\n\n<p>But the easy part is, like I mentioned before, we don’t need to worry about the venue and the core setup for the speakers and all sorts of things related to that.</p>\n\n\n\n<p>So that’s…</p>\n\n\n\n<p>That makes sense.</p>\n\n\n\n<p>Yeah.</p>\n\n\n\n<p>Let’s talk about the future a little bit.</p>\n\n\n\n<p>Specifically for a photos event, not just virtual, but specifically for a photos event.</p>\n\n\n\n<p>What would you do differently in the future, especially from your standpoint as the tech guy?</p>\n\n\n\n<p>What would you build differently?</p>\n\n\n\n<p>How would you come at it?</p>\n\n\n\n<p>So I think the easiest way is to, we can build an efficient system to, I mean, display the photos one.</p>\n\n\n\n<p>So currently we have some limitations with the API, how we get the photos and display them.</p>\n\n\n\n<p>So sometimes it’s harder to get all the info we need in one go or something like that.</p>\n\n\n\n<p>And the other thing we might need to change is if we can accept more photos from a user.</p>\n\n\n\n<p>But that’s…</p>\n\n\n\n<p>I think it’s different.</p>\n\n\n\n<p>So if we get more photos from one person, I think it’s a bit harder to moderate.</p>\n\n\n\n<p>So I think the other thing, the one thing I would do differently is if we can serve first, maybe we can approve the photos of the person who submitted it first.</p>\n\n\n\n<p>So maybe that way everyone will get a decent chance.</p>\n\n\n\n<p>So something like that.</p>\n\n\n\n<p>So yeah, I think I know some of the photos from the users.</p>\n\n\n\n<p>So since the queue in the admin is random, so maybe some of the photos from a user will come to us to moderate regularly.</p>\n\n\n\n<p>So yeah.</p>\n\n\n\n<p>Anyway, I think also in the recent update they fixed the sorting issue with the date.</p>\n\n\n\n<p>So maybe that will help in the future.</p>\n\n\n\n<p>So, and the other thing, maybe we can, this time I think we didn’t get enough time to plan things perfectly.</p>\n\n\n\n<p>So we did in the short amount of time we got.</p>\n\n\n\n<p>And so maybe next year if we are planning to do this kind of event, mostly I think this is a hybrid kind of event.</p>\n\n\n\n<p>Maybe some, if anyone can, anyone wanted to attend the event in person, they can.</p>\n\n\n\n<p>And also if it’s going to be a longer event like this, maybe one week or something like that.</p>\n\n\n\n<p>So yeah, maybe the initial day we can just gather like a regular webcam and we all have the talk and all the opportunity to do the networking and all sorts of things.</p>\n\n\n\n<p>So you mentioned more time to prepare.</p>\n\n\n\n<p>How much did you take?</p>\n\n\n\n<p>How much did you have?</p>\n\n\n\n<p>Just one week or two?</p>\n\n\n\n<p>I think less than two weeks.</p>\n\n\n\n<p>So that’s okay.</p>\n\n\n\n<p>So if I wanted to do one of these myself, I should plan on three or four weeks preparation.</p>\n\n\n\n<p>Yeah, that would be perfect.</p>\n\n\n\n<p>So I think the main reason is we need to prepare the site and the contents.</p>\n\n\n\n<p>So once it’s ready, I think the rest is spreading the information around the community.</p>\n\n\n\n<p>So what we did was we just reach out to all our friends in the community and they share the update or the social media post.</p>\n\n\n\n<p>So that’s how we get all the attendees.</p>\n\n\n\n<p>So we didn’t do any like a promotion or social media advertisement or anything like that.</p>\n\n\n\n<p>So it’s mostly word of mouth.</p>\n\n\n\n<p>So yeah, that’s it.</p>\n\n\n\n<p>Yeah, that was very impressive.</p>\n\n\n\n<p>And it worked well.</p>\n\n\n\n<p>It got me.</p>\n\n\n\n<p>That’s why I was there.</p>\n\n\n\n<p>So pretty great.</p>\n\n\n\n<p>Okay.</p>\n\n\n\n<p>The other thing we did differently is we translate the how to post in different local languages.</p>\n\n\n\n<p>So that way we will get more inclusion from different parts of the region.</p>\n\n\n\n<p>So in India, there is officially 26 or 30 or something like that language is in this standard.</p>\n\n\n\n<p>Right.</p>\n\n\n\n<p>You personally translated all of them, right?</p>\n\n\n\n<p>No, no, no, no.</p>\n\n\n\n<p>I think I only can read one or two of the languages.</p>\n\n\n\n<p>Some I can understand and some I can speak.</p>\n\n\n\n<p>So maybe only I can read and write.</p>\n\n\n\n<p>So yeah.</p>\n\n\n\n<p>What are those two that you know really well?</p>\n\n\n\n<p>Actually, my mother tongue is Malayalam.</p>\n\n\n\n<p>So, okay.</p>\n\n\n\n<p>Yeah.</p>\n\n\n\n<p>Yeah.</p>\n\n\n\n<p>So the other I can talk in English.</p>\n\n\n\n<p>So it’s not an official language in India anyway.</p>\n\n\n\n<p>But we all speak communicate in English since everyone knows it.</p>\n\n\n\n<p>The other two languages I speak Tamil.</p>\n\n\n\n<p>So yeah.</p>\n\n\n\n<p>And the nearby Hindi.</p>\n\n\n\n<p>Yes.</p>\n\n\n\n<p>Also Hindi.</p>\n\n\n\n<p>So I know a little bit of Hindi.</p>\n\n\n\n<p>And also I know some Canada or something like that.</p>\n\n\n\n<p>I have my translation badge on WordPress.org.</p>\n\n\n\n<p>I have translated WordPress into Canadian, Australian and British.</p>\n\n\n\n<p>Okay.</p>\n\n\n\n<p>That’s how far I’m multilingual.</p>\n\n\n\n<p>Okay.</p>\n\n\n\n<p>So I mean, I’ve translated to Malayalam.</p>\n\n\n\n<p>So from English.</p>\n\n\n\n<p>Yeah.</p>\n\n\n\n<p>Yeah.</p>\n\n\n\n<p>Well, thank you very much for your time.</p>\n\n\n\n<p>I appreciate it.</p>\n\n\n\n<p>Okay.</p>\n\n\n\n<p>And I look forward to talking to you again.</p>\n\n\n\n<p>Okay.</p>\n\n\n\n<p>Thank you.</p>\n\n\n\n<p>Bye.</p>\n\n\n\n<p>Bye.</p>\n\n\n\n<p>And that’s our story for today.</p>\n\n\n\n<p>I hope you enjoyed it.</p>\n\n\n\n<p>Be sure to stop by tomorrow.</p>\n\n\n\n<p>We’re going to talk to some volunteers from the event and find out what it’s like to work at an event where you don’t really interact with the attendees or the organizers or anyone else.</p>\n\n\n\n<p>What’s it like to run not just a virtual event, but a photo walk like this.</p>\n\n\n\n<p>I’ll see you tomorrow.</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, 26 Feb 2024 19:40:31 +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:\"Topher DeRosia\";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:87:\"WPTavern: WordCamp Canada (WCEH) Announces Call for Speakers, Sponsors & Volunteers\";s: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=154309\";s: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://wptavern.com/wordcamp-canada-wceh-announces-call-for-speakers-sponsors-volunteers\";s: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:6294:\"<div class=\"wp-block-group has-neutral-100-background-color has-background is-layout-constrained wp-container-core-group-is-layout-1 wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading\">tl;dr</h2>\n\n\n\n<p>The first-ever <a href=\"https://canada.wordcamp.org/2024/\"><strong>WordCamp Canada</strong></a> is callin’ out for Speakers, Sponsors, and Volunteers, ready to bring the community together, post-pandemic style. It’s a beaut chance for all us Canadians to showcase what makes us unique, from our love for poutine to our bilingual chats, all while diving deep into WordPress, inclusivity, and Indigenous perspectives. So, grab your toque and let’s make it a good one, buddy!</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n</div>\n\n\n\n<p>Neighbour. </p>\n\n\n\n<p>You have no idea how good it feels to drop that little ‘u’ in there. It’s also a great word to lead into a conversation about the first-ever <a href=\"https://canada.wordcamp.org/2024/\">WordCamp Canada</a> launching its Calls for Speakers, Sponsors, and Volunteers.</p>\n\n\n\n<p>Post-COVID many local meetup groups and WordCamps are facing headwinds as the habits of getting together must be re-learned. Facing such headwinds, a group of Canadians has decided that the best way to reboot the community across the country is to host a national WordCamp.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p><em>“Many meetups fell dormant during the pandemic and we couldn’t keep up. This is an opportunity for those existing communities, as well as those communities yet to come to come together and maybe find their people.[sic]”</em></p>\n<cite>Shanta, WCEH Organizer</cite></blockquote>\n\n\n\n<p>As a fellow Canadian who loves <a href=\"https://www.britannica.com/topic/poutine\">poutine</a>, wears a <a href=\"https://www.thecanadianencyclopedia.ca/en/article/tuque\">toque</a> outside in the winter and has often been described as <a href=\"https://www.bbc.com/travel/article/20150311-can-canada-teach-the-rest-of-us-to-be-nicer\">nice</a>, I’m excited to see us celebrating our national identity and inviting others to participate.</p>\n\n\n\n<p>With WordCamp US a regular event, you may be wondering why the Canadians felt the need to have something similar. After all, they’re right next to each other and it’s not difficult to travel between the two countries. </p>\n\n\n\n<p>Welcome to the conundrum that is being Canadian. Because we are different. It is different here and how we view the world, technology and our role in all of it is also different. </p>\n\n\n\n<p><a href=\"https://www.queensu.ca/strathy/sites/stratwww/files/uploaded_files/publications/volume8/Barr-Gillberry-Wp8.pdf\">Sorry</a>.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p><em>“Many think we’re the same, but we face some very different challenges, including those challenges because we are so close to the US. [WCEH] gives Canadians and Canadian companies the chance to shine. When many of those companies would get swept up at places like WCUS, they can shine at WCEH!”</em></p>\n<cite>Shanta, WCEH Organizer</cite></blockquote>\n\n\n\n<p>Our roads are bumpier and we drink milk from bags. We’re an officially bilingual country where the <a href=\"https://www12.statcan.gc.ca/census-recensement/2021/as-sa/98-200-X/2021013/98-200-X2021013-eng.cfm\">majority speak one language</a>. We’re open to immigration in ways that might intimidate other countries (humble brag). </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Stunned by the size of these giant milk bags sold in supermarkets in <a href=\"https://twitter.com/hashtag/Canada?src=hash&ref_src=twsrc%5Etfw\">#Canada</a>! <a href=\"https://twitter.com/hashtag/milk?src=hash&ref_src=twsrc%5Etfw\">#milk</a> <a href=\"https://twitter.com/hashtag/travel?src=hash&ref_src=twsrc%5Etfw\">#travel</a> <a href=\"https://t.co/HDVKVDicqo\">pic.twitter.com/HDVKVDicqo</a></p>— Carol C (@carolchan9394) <a href=\"https://twitter.com/carolchan9394/status/911077079382462465?ref_src=twsrc%5Etfw\">September 22, 2017</a></blockquote>\n</div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p>While many outside of Canada view it as a <a href=\"https://www.cbc.ca/news/canada/montreal/maple-syrup-vault-tour-1.6279797\">maple syrup-hoarding</a> place of multiculturalism and inclusivity, we’re also reckoning with our colonial past and our treatment of Indigenous Peoples and <a href=\"https://www.thecanadianencyclopedia.ca/en/article/racialized-minorities\">racialized Canadians</a>.</p>\n\n\n\n<p>To keep this national conversation at the forefront, the <a href=\"https://canada.wordcamp.org/2024/call-for-speakers/\">Call for Speakers</a> at WordCamp Canada has placed particular emphasis on topics related to accessibility, underrepresented voices, multilingualism and indigenous communities.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p><em>“[There] exists an increasing acknowledgement of the need for conscious efforts towards “<a href=\"https://www.rcaanc-cirnac.gc.ca/eng/1450124405592/1529106060525\">a renewed nation-to-nation relationship with Indigenous Peoples based on recognition of rights, respect, cooperation and partnership.”</a> This has informed our desire to focus on indigenous empowerment and perspectives, as well as accessibility, inclusivity, and underrepresented communities in general.”</em></p>\n<cite>Paul & Gina, WCEH Organizers</cite></blockquote>\n\n\n\n<p>The organizing team also expressed their interest in exploring how Open Source and WordPress ideals intersect with Indigenous principles. I’m personally excited to see a WordCamp place particular emphasis on these kinds of topics, it feels very, um, Canadian. Perhaps that’s the point.</p>\n\n\n\n<p>So <a href=\"https://foreignlingo.com/canadian-slang-for-friend/\">buddy</a>, if you’re looking for a WordCamp to put on your calendar, join me and my fellow <a href=\"https://www.yukon-news.com/letters-opinions/a-beginners-guide-to-moose-herding-6967796\">moose-herding</a> canucks in my hometown of Ottawa, Canada this July 11-13 for the inaugural WordCamp Canada.</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, 26 Feb 2024 15:36:15 +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:\"James Giroux\";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:134:\"Gutenberg Times: Gutenberg Changelog #96 – Gutenberg plugins versions 17.6 and 17.7, Mega Menus, Interactivity API and WordPress 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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://gutenbergtimes.com/?post_type=podcast&p=27679\";s: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:58:\"https://gutenbergtimes.com/podcast/gutenberg-changelog-96/\";s: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:3895:\"<p>In this episode, Tammie Lister and Birgit Pauli-Haack discuss Gutenberg Changelog #96 – Gutenberg plugins versions 17.6 and 17.7, Mega Menus, Interactivity API and WordPress 6.5</p>\n\n\n\n<p><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-96/#shownotes\">Show Notes</a> / <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-96/#transcript\">Transcript</a></p>\n\n\n\n<ul>\n<li>Music: <a href=\"https://soundcloud.com/xirclebox\">Homer Gaines</a></li>\n\n\n\n<li>Editor: <a href=\"https://www.linkedin.com/in/sandy-reed/\">Sandy Reed</a></li>\n\n\n\n<li>Logo: <a href=\"https://markuraine.com/\">Mark Uraine</a></li>\n\n\n\n<li>Production: <a href=\"https://icodeforapurpose.com\">Birgit Pauli-Haack</a></li>\n</ul>\n\n\n\n<p class=\"has-larger-font-size\" id=\"shownotes\"><strong>Show Notes</strong></p>\n\n\n\n<h2 class=\"wp-block-heading\">Special Guest: Tammie Lister</h2>\n\n\n\n<ul>\n<li>@karmatosed on Twitter, WordPress, GitHub</li>\n\n\n\n<li>WP Product Talk podcast, <a href=\"https://twitter.com/WPProductTalk/status/1760349021175259185\"><strong>Designing for the Future of WordPress</strong></a><br /></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Community Contributions</h2>\n\n\n\n<ul>\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/58773\">Proposal for Core Blocks in the Directory</a></li>\n\n\n\n<li><a href=\"https://nomad.blog/2024/02/16/overlapping-problems/\">Overlapping problems</a> by Anne McCarthy</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/02/19/hallway-hangout-lets-chat-about-overlapping-problems-in-the-site-editor/\"> Hallway Hangout: Let’s chat about overlapping problems in the Site Editor</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">What’s Released: </h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2024/02/wordpress-6-5-beta-1/\">WordPress 6.5 Beta 1</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2024/02/wordpress-6-5-beta-2/\">WordPress 6.5 Beta 2</a></li>\n\n\n\n<li><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></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/02/14/whats-new-in-gutenberg-17-7-14th-february/\">What’s new in Gutenberg 17.7? (14th February)</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2024/02/episode-73-inside-the-interactivity-api/\">Episode 73: Inside the Interactivity API</a></li>\n\n\n\n<li><a href=\"https://nickdiego.com/experimenting-with-block-based-mega-menus/\">Experimenting with block-based mega menus</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">What’s in active development or discussed</h2>\n\n\n\n<p><a href=\"https://github.com/WordPress/gutenberg/issues/57537\">Section Styling, Colorways, and Typesets for WP 6.6</a></p>\n\n\n\n<p>Meetup: <a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/298634463/\" target=\"_blank\" rel=\"noreferrer noopener\">How to build modern web layouts with WordPress blocks</a></p>\n\n\n\n<p class=\"has-large-font-size\">Stay in Touch</p>\n\n\n\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow\">\n<ul>\n<li>Did you like this episode? <a href=\"https://lovethepodcast.com/gutenbergchangelog\"><strong>Please write us a review </strong></a></li>\n\n\n\n<li>Ping us on Twitter or send DMs with questions. <a href=\"https://twitter.com/gutenbergtimes\">@gutenbergtimes </a>and <a href=\"https://twitter.com/bph\">@bph</a>.</li>\n\n\n\n<li><em>If you have questions or suggestions, or news you want us to include, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. </em></li>\n\n\n\n<li><em>Please write us a review on iTunes! <a href=\"https://gutenbergtimes.com/itunes/\">(Click here to learn how)</a></em></li>\n</ul>\n</div></div>\n\n\n\n<p class=\"has-large-font-size\" id=\"transcript\"><strong>Transcript</strong></p>\n\n\n\n<p>The transcript is in the works. </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, 26 Feb 2024 14:35:01 +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:19:\"Gutenberg Changelog\";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:62:\"Do The Woo Community: Hear From 13 WordCamp Asia 2024 Speakers\";s: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=79142\";s: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/hear-from-13-wordcamp-asia-2024-speakers/\";s: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:382:\"<p>In anticipation of WordCamp Asia 2024, listen to thirteen speakers share what they will be talking about in their session.</p>\n<p>>> The post <a href=\"https://dothewoo.io/hear-from-13-wordcamp-asia-2024-speakers/\">Hear From 13 WordCamp Asia 2024 Speakers</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:\"Mon, 26 Feb 2024 06: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:6;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: On the Reddit IPO\";s: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=111742\";s: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/on-the-reddit-ipo/\";s: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:1423:\"<p>I’m looking forward to <a href=\"https://www.sec.gov/Archives/edgar/data/1713445/000162828024006294/reddits-1q423.htm\">the Reddit IPO</a>, and I think it’s awesome that they opened up a top-tier IPO tranche to their community. <a href=\"https://www.theverge.com/2024/2/22/24079978/reddit-ipo-public-offering-shares-power-users\">People with 200,000 karma points or 5,000 moderator actions on Reddit will get access</a> to something that has previously been reserved for the most elite allies of financial institutions. Wow! </p>\n\n\n\n<p>I’m sure this was not easy to do so Reddit users should understand that at this very important juncture in the company’s history it has gone above and beyond to include you. I’m mostly a lurker on Reddit so my 958 karma doesn’t qualify so I’ll get access with the rest of the normal folks.</p>\n\n\n\n<p>If I ever IPO something from Automattic, it will include the same for people who have contributed to WordPress. And every supporting open-source project underneath it. (<a href=\"https://en.wikipedia.org/wiki/Turtles_all_the_way_down\">It’s turtles all the way down</a>.)</p>\n\n\n\n<p>My only fear is that code contributions are structured in a way that is easily legible, so is anything that happens on <a href=\"https://w.org/\">w.org</a>, but we may miss including people who have contributed to the growth of WordPress in non-legible ways.</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, 25 Feb 2024 22:42: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: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:99:\"Gutenberg Times: Block Bindings, Layouts, Font Library, Mega Menus and more — Weekend Edition 286\";s: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=27510\";s: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:62:\"https://gutenbergtimes.com/block-bindings-weekend-edition-286/\";s: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:25485:\"<p>Howdy, </p>\n\n\n\n<p>Next week, I’ll be heading out to Taipei, ahead of WordCamp Asia, to acclimate and do some sightseeing. If you are in the area, <a href=\"https://calendly.com/pauli-haack/wcasia\">you can double-check my calendar so we can meet</a>. Getting meeting times and places sorted ahead of time, makes it more likely that the conversations will happen, and not just between doors or sessions.</p>\n\n\n\n<p>This week, you can get more insights on what is coming with WordPress 6.5 again. Now that Beta 2 has been released, it’s time to test your plugins and themes for compatibility and report issues.</p>\n\n\n\n<p></p>\n\n\n\n<p>I am totally excited about this new release and I wish you fun exploring the new features! </p>\n\n\n\n<p>Yours, 💕<br /><em>Birgit</em></p>\n\n\n\n<p>PS<strong> ICYMI:</strong> </p>\n\n\n\n<ul>\n<li><a href=\"https://wptavern.com/\"><strong>WPTavern</strong></a> is publishing again. Seven writers a showing off their skills in a public trial for two permanent positions. For now, James Giroux, Ronny Shani and Adam Silver have published their articles. Good luck to all of them! </li>\n\n\n\n<li>Also back from a publishing break: <strong>Rae Morey,</strong> editor of <a href=\"https://www.therepository.email/\"><strong>The Repository</strong></a></li>\n</ul>\n\n\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/block-bindings-weekend-edition-286/#0-word-press-release-information\">Developing Gutenberg and WordPress</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/block-bindings-weekend-edition-286/#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/block-bindings-weekend-edition-286/#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/block-bindings-weekend-edition-286/#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><a href=\"https://wordpress.org/news/2024/02/wordpress-6-5-beta-2/\"><strong>WordPress 6.5 Beta 2</strong></a> is now available for testing. The WordPress test team has a few tips for your testing pleasure: <strong><a href=\"https://make.wordpress.org/test/2024/02/15/help-test-wordpress-6-5-beta-1/\">Help test WordPress 6.5</a>.</strong> In <a href=\"https://gutenbergtimes.com/vids-on-data-views-image-aspect-ratio-and-synched-pattern-overrides-modern-js-and-more-weekend-edition-285/#0-word-press-release-information\">last week’s edition</a> I shared tools to set up test sites.</p>\n\n\n\n<p><strong><a href=\"https://profiles.wordpress.org/ironnysh/\">Ronny Shani </a></strong>reported on the release on WPTavern: <a href=\"https://wptavern.com/wordpress-6-5-is-around-the-corner-test-beta-2\"><strong>WordPress 6.5 Is Around the Corner; Test Beta 2</strong></a>. Shani, accumulated quite a collection of links and videos about features already published on the web.</p>\n\n\n\n<p><strong>Bud Kraus</strong> invites you to the Learn WordPress Online Workshop: <strong><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/299175971/\">What’s New In WordPress 6.5</a></strong>? on <strong>April 9, 2024, at 19:00 UTC</strong>. He’ll cover, among other features</p>\n\n\n\n<ul>\n<li>Font Library</li>\n\n\n\n<li>Revisions for Styles, Templates and more</li>\n\n\n\n<li>Synched Pattern Overrides </li>\n</ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Recording the next Gutenberg Changelog episode, <strong>Tammie Lister</strong> and I talked through Gutenberg 14.6 and 17.7 and what comes to WordPress 6.5 and other community initiatives and discussions. The episode will arrive at your favorite pods app over the weekend. </p>\n\n\n\n<a href=\"https://gutenbergtimes.com/podcast\"><img width=\"652\" height=\"183\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/02/Screenshot-2024-02-24-at-10.29.42.png?resize=652%2C183&ssl=1\" alt=\"\" class=\"wp-image-27649\" /></a>\n\n\n\n<p class=\"has-accent-color has-light-background-background-color has-text-color has-background has-link-color wp-elements-69cab3cf77ae7eea1b9e89a501b514a4\">🎙️ Latest episode: <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-96/\">Gutenberg Changelog #96 – Gutenberg plugins versions 17.6 and 17.7, Mega Menus, Interactivity API and WordPress 6.5</a> with special guest Tammie Lister </p>\n\n\n\n<p>In their post, <a href=\"https://nomad.blog/2024/02/16/overlapping-problems/\"><strong>Overlapping problems</strong></a>, <strong>Anne McCarthy </strong>addresses the complexity that arises when multiple issues co-exist and interact with one another, complicating their resolution. McCarthy discusses strategies for managing these concerns by prioritizing them and employing a holistic approach to understand and resolve their interconnected nature.</p>\n\n\n\n<p>They also emphasize the psychological effects of facing such issues and the need for adaptive problem-solving techniques. McCarthy included practical examples to illustrate how these concepts are applied in real-world scenarios.</p>\n\n\n\n<p><strong>Brian Coords</strong> kicked off an interconnected <a href=\"https://twitter.com/briancoords/status/1758554370810290354\">Twitter thread</a> , and as a consequence <strong>Anne McCarthy</strong> invites contributors and extenders to a <a href=\"https://make.wordpress.org/core/2024/02/19/hallway-hangout-lets-chat-about-overlapping-problems-in-the-site-editor/\">Hallway Hangout: Let’s chat about overlapping problems in the Site Editor</a> on February 27 at 17:00 UTC.</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><strong>Tammie Lister</strong> published four more Editor Tips: </p>\n\n\n\n<ul>\n<li><a href=\"https://editortips.com/highlight-text/\">Highlight text</a></li>\n\n\n\n<li><a href=\"https://editortips.com/reset-template/\">Reset template</a></li>\n\n\n\n<li><a href=\"https://editortips.com/choose-border-style/\">Choose border style</a></li>\n\n\n\n<li><a href=\"https://editortips.com/lock-a-block/\">Lock a block</a></li>\n</ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Jamie Marsland</strong>, PootlePress recreated <strong><a href=\"https://www.youtube.com/watch?v=-afMM8ykemw\">NASA homepage with WP Blocks in 30 mins!</a> </strong>Follow along as Marsland uses nothing more than WordPress, the default block theme, and core Gutenberg blocks (no plugins, no additional CSS).</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Brian Gardner, </strong>WPEngine<strong> </strong>shows you in his video <a href=\"https://www.youtube.com/watch?v=yc1FHD0DGiM\"><strong>how to disable patterns in the WordPress block inserter and site editor</strong></a> for his <a href=\"https://wordpress.org/themes/powder/\">Powder</a> theme, available in the WordPress Theme repository. His solution: a simple uncheck the pattern category on a settings page, before you turn over the site to a client.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Anne McCarthy</strong> posted a new video: <strong><a href=\"https://www.youtube.com/watch?v=Pnx_nkB-O2E\">No Code, All Fonts thanks to the Font Library in WordPress 6.5</a>.</strong> She wrote in the description:</p>\n\n\n\n<ul>\n<li>The Font Library operates globally, similar to the Media Library, allowing you to easily install, remove, and activate fonts across your entire site. </li>\n\n\n\n<li>Whether a font is installed by you or provided by your theme or plugin, the Font Library provides seamless selection across your editing experience. </li>\n\n\n\n<li>Google Fonts is integrated into the Font Library experience, offering various typography options and quick uploads. </li>\n\n\n\n<li>This new ability empowers you to control a foundational aspect of your site’s design without the need for coding. </li>\n\n\n\n<li>Extenders can provide their font collections and manage permissions, including turning the feature off.</li>\n</ul>\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>Synched 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… <a href=\"https://gutenbergtimes.com/pattern-overrides-an-early-review/\" class=\"ngl-article-read-more\" target=\"_self\">Read more.</a></div> </div>\n </td>\n </tr>\n </table>\n </div>\n \n \n \n\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/block-bindings-and-custom-fields-an-almost-no-code-example/\" target=\"_self\" rel=\"\"><img src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/02/Screenshot-2024-02-21-at-11.06.40.png?w=652&ssl=1\" /></a></div><div class=\"ngl-article-title\"><a href=\"https://gutenbergtimes.com/block-bindings-and-custom-fields-an-almost-no-code-example/\" target=\"_self\" rel=\"\"><span>Block Bindings and Custom Fields – an (almost) no-code example</span></a></div><div class=\"ngl-article-excerpt\">With the upcoming release of version 6.5, WordPress will receive the first iteration of Block Bindings API, a way to bind content of blocks to data stored in custom fields.… <a href=\"https://gutenbergtimes.com/block-bindings-and-custom-fields-an-almost-no-code-example/\" class=\"ngl-article-read-more\" target=\"_self\">Read more.</a></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>Eric Karkovack</strong> set out to <a href=\"https://thewpminute.com/clearing-up-the-confusion-surrounding-block-themes/\"><strong>Clearing Up the Confusion Surrounding Block Themes</strong></a>. “Some users may not know if block themes are suitable for them. Others may have never heard of them at all. And we can’t forget the confusing comparisons with classic themes.” he wrote. Karkovack lists quite a few reasons why one would use a Block theme over a conventional theme. </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/andersnoren\">Anders Noren</a></strong>, theme builder from <s>Norway</s> Sweden and early adopter of block themes, just <a href=\"https://twitter.com/andersnoren/status/1760746342350213127\">announced</a> a new block theme: “<a href=\"https://wordpress.org/themes/norrsken/\">Norrsken</a> is a simple blog theme inspired by the Aurora Borealis.” <strong><a href=\"https://andersnoren.se/introducing-norrsken/\">Introducing Norrsken</a></strong>. Fun fact: it is Noren’s 30th theme in the WordPress Repository!</p>\n\n\n\n<p>Noren published his first theme, <a href=\"https://wordpress.org/themes/lingonberry/\">Lingonberry</a>, in 2013. His first block theme, <a href=\"https://wordpress.org/themes/tove/\">Tove</a>, made its debut in September 2021 and <a href=\"https://wordpress.org/themes/norrsken/\">Norrsken</a> is his 9th Block theme in the repository. </p>\n\n\n\n<a href=\"https://wordpress.org/themes/author/anlino/\"><img width=\"652\" height=\"404\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/02/Screenshot-2024-02-23-at-10.25.20.png?resize=652%2C404&ssl=1\" alt=\"\" class=\"wp-image-27634\" /></a>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p><strong>Nick Diego</strong> has been <a href=\"https://nickdiego.com/experimenting-with-block-based-mega-menus/\"><strong>Experimenting with block-based mega menus</strong></a> combining two different extensibility features of the block editor coming to WordPress 6.5: </p>\n\n\n\n<ul>\n<li>Add custom blocks to the Navigation block in WordPress. </li>\n\n\n\n<li>The <a href=\"https://make.wordpress.org/core/2024/02/19/merge-announcement-interactivity-api/\">Interactivity API</a> </li>\n</ul>\n\n\n\n<p>Diego shared <a href=\"https://github.com/ndiego/mega-menu-block\">his code on GitHub</a>. He is also working on a tutorial for the WordPress Developer Blog.</p>\n\n\n\n<p><strong>Jamie Marsland</strong> was inspired to try it out, and created a few examples. In his video <a href=\"https://www.youtube.com/watch?v=HbLOzce43Iw\"><strong>WordPress Gutenberg Mega Menus – Sneak peek!</strong></a> he shares his knowledge and shows you how you can use it, too.</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><a href=\"https://twitter.com/ASKDesign2\"><strong>Anne Katzeff</strong></a>, graphic designer, theme builder, artists and fellow WordPress meetup organizer, ventured on the journey of <strong><a href=\"https://www.askdesign.biz/blog/2024/01/building-my-first-wordpress-block-theme-part-1/\">building her first Block theme</a></strong> and shares her progress and pain points. Her blog posts are rich with screenshots and other illustrations. She really takes you along her design process and how she gets things done. </p>\n\n\n\n<ul>\n<li><a href=\"https://www.askdesign.biz/blog/2024/01/building-my-first-wordpress-block-theme-part-1/\">In part one</a>, she covers setting the stage, with fonts, using the new font library and Global settings for color, dimensions, and layouts. </li>\n\n\n\n<li><a href=\"https://www.askdesign.biz/blog/2024/02/building-my-first-wordpress-block-theme-part-2-navigation/\">In part two</a>, Katzeff tackled navigation, menu, and header template part. </li>\n</ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Next <strong>Tuesday, Feb 27 at 16:00 UTC</strong>, <strong>Justin Tadlock</strong> and <strong>Ryan Welcher</strong> will host the next Developer Hours session on building complex layouts with blocks. Nick Diego <a href=\"https://twitter.com/nickmdiego/status/1760650662910800239\">likes</a> to call this the art of “block composition” and you won’t want to miss this. You can RSVP via Meetup:<strong> <a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/298634463/\" target=\"_blank\" rel=\"noreferrer noopener\">How to build modern web layouts with WordPress blocks</a></strong></p>\n\n\n\n<a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/298634463/\"><img width=\"600\" height=\"338\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/02/Feb-27-Dev-Hours.webp?resize=600%2C338&ssl=1\" alt=\"How to create modern layouts with WordPress\" class=\"wp-image-27437\" /></a>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n\n<p>Hey there! Check out the latest <strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\">“Keeping up with Gutenberg – Index 2024”</a></strong> where you’ll find a fresh, up-to-date list of all the posts from the teams working hard on Gutenberg. We’re talking Design, Theme Review, Core Editor, and more, from January 2024 onwards. I’ve been keeping tabs on everything just for you.</p>\n\n\n\n<p>Want to take a walk down memory lane? No problem! You can revisit the old days with these links: <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\"><strong>2020</strong></a>, <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2021/\"><strong>2021</strong></a>, <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2022/\"><strong>2022</strong></a>, and <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2023\"><strong>2023</strong></a>. Have fun diving in!</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>Are you a PHP developer and hate JavaScript? Well, could be you just need someone like you to explain to you the important bits that are used in WordPress. <strong>Aurooba Ahmad</strong> published: <a href=\"https://aurooba.com/introducing-js-essentials-for-wp-devs/\"><strong>Introducing JS Essentials for WP Devs</strong></a>, a course “with 15 bite-sized lessons delivered daily to help you absorb JavaScript essentials. So you can go from zero to JS development as quickly as possible.” she wrote. The first lesson will come out on March 4, 2024, <a href=\"https://aurooba.com/js-essentials-for-wp-devs/\">you need to sign up, though. </a>The best part? It is free. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Justin Tadlock</strong> introduced the first segment of a tutorial dedicated to the Block Bindings API on the WordPress Developer blog. The article, titled <a href=\"https://developer.wordpress.org/news/2024/02/20/introducing-block-bindings-part-1-connecting-custom-fields/\"><strong>“Introducing Block Bindings, part 1: connecting custom fields,”</strong></a> provides step-by-step instruction and code examples on how to connect custom fields to blocks within the WordPress editor and display on the front end. It serves as a primer to the new API, that helps to streamline the process of binding meta fields to blocks, </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>On the WPTavern site, <strong><a href=\"https://twitter.com/jamesgiroux\">James Giroux</a></strong> reported on <a href=\"https://wptavern.com/interactivity-api-prepares-for-its-official-debut-in-wordpress-6-5\"><strong>Interactivity API Prepares for its Official Debut in WordPress 6.5</strong></a>. “The Interactivity API and how it uses WordPress could be a pivotal moment in the Project’s history. It could create a new way of working with WordPress. ” he wrote. And he might be right. It’s definitely exciting, and I am excited about all the tutorials and case studies that will be written in the upcoming months.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>If you don’t have a lot of time, but are curious about the Interactivity API, you and listen to <strong>Mario Santos</strong>, <strong>Ryan Welcher</strong> and <strong>Josepha Haden Chomphosy</strong> on the 73rd episode of the<strong> <a href=\"https://wordpress.org/news/2024/02/episode-73-inside-the-interactivity-api\">WP Briefing discussing the Interactivity API</a></strong>. “a new foundational tool that helps developers create memorable interactive front-end experiences.” and the show notes lists a ton of resources. </p>\n\n\n\n<a href=\"https://wordpress.org/news/2024/02/episode-73-inside-the-interactivity-api\"><img width=\"652\" height=\"367\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/02/WPBriefingInteractivityAPI.jpeg?resize=652%2C367&ssl=1\" alt=\"\" class=\"wp-image-27606\" /></a>\n\n\n\n<p><em>A couple of weeks ago, I shared about <a href=\"https://gutenbergtimes.com/using-grid-support-pattern-overrides-power-in-the-details-interactions-are-coming-weekend-edition-284/#interactivity-api\"><strong>Buzz around the Interactivity API</strong></a> on the Weekend Edition 284, with links to more documentation and videos. </em></p>\n\n\n\n<p><strong>Ryan Welcher</strong> ran a Live Stream on Twitch and working on converting a <a href=\"https://www.twitch.tv/RyanWelcherCodes\"><strong>React app to do blocks with the Interactivity API in WordPress</strong></a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Leonardo Losoviz</strong> <a href=\"https://gatographql.com/\">Gato GraphQL v2.1</a>, it allows doing GraphQL as Automator, leveraging GraphQL persisted queries to automate data-related and block-related tasks. In his post, <a href=\"https://gatographql.com/blog/automate-your-wordpress-tasks-using-graphql-persisted-queries-with-the-new-gatographql-v210/?aff=g129E\"><strong>Automate your WordPress tasks, with the new Gato GraphQL v2.1</strong></a>, Losoviz added an example how the comments block can be automatically added to the post. “As you can compose the GraphQL persisted queries and automation rules directly within the wp-admin, it takes no time to create a super-customized automation pipeline, tailored to your needs.” Losoviz wrote. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>This week, <strong>Tammie Lister</strong> spoke on the WP Product Talk podcast, where she discussed <strong><a href=\"https://twitter.com/WPProductTalk/status/1760349021175259185\">Designing for the Future of WordPress.</a></strong> You can find the full episode on their website soon, <em><a href=\"https://wpproducttalk.com/podcast/designing-your-products-to-look-native-to-wordpress/\">right here</a></em>.</p>\n\n\n\n<p>During her talk with Amber Hinds and Zack Katz, who both own plugin companies, they talked about how WordPress seems to be both moving too slowly and too quickly at the same time, making it hard for people to keep up. She also encouraged people to speak up more when they find something missing in WordPress.</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 also available via <a href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\">WordPress Playground</a>. There is no need for a test site locally or on a server. Have you been using it? <a href=\"mailto:pauli@gutenbergtimes.com\">Email me </a>with your experience</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-center has-small-font-size\"><em>Questions? Suggestions? Ideas? </em><br /><em>Don’t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or</em><br /><em> send me a message on WordPress Slack or Twitter @bph</em>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"has-text-align-center has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, <br />send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</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://wordpress.org/photos/author/mkrndmane/\">Makarand G. Mane</a> <em>Colorful outdoor wedding stage (mandap)</em> found on WordPress Photos</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 <br />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, 24 Feb 2024 10:37:06 +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: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:78:\"WPTavern: Proposal: Host non-bundled Blocks in Gutenberg’s GitHub Repository\";s: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=154268\";s: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:83:\"https://wptavern.com/proposal-host-3rd-party-blocks-in-gutenbergs-github-repository\";s: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:6234:\"<p>Matias Ventura, Gutenberg’s Lead Architect, <a href=\"https://github.com/WordPress/gutenberg/issues/58773\">recently made a pitch</a> to incorporate some single-block plugins in the Gutenberg GitHub repository:</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p><em>“There’s a growing subset of blocks that we may contemplate creating that are either more niche or—for various reasons—not necessarily an immediate fit for the bundled library in core. This would include blocks that have enough appeal, demand, and where offering an endorsed implementation can significantly help both creators and viewers given best practices can be ascertained.”</em></p>\n</blockquote>\n\n\n\n<p>These plugins won’t just be guests—they’ll become roommates, proudly featured in the <a href=\"https://wordpress.org/documentation/article/block-directory/\">Blocks Directory</a>: “designed, developed, published, and maintained by core contributors in this repository” but available to install as standalone blocks in the directory.</p>\n\n\n\n<img width=\"896\" height=\"503\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2019/12/block-directory.png\" alt=\"\" class=\"wp-image-95958\" /><a href=\"https://make.wordpress.org/design/tag/block-directory/\">Early design prototypes</a> of the Block Directory\n\n\n\n<p>The tension between users’ demand to bundle more functionalities and the maintainers’ inclination toward keeping core as lean as possible won’t be resolved anytime soon. Yet this presents an interesting compromise: if <a href=\"https://gutenstats.blog\">the estimations</a> are accurate, and most websites are built with a combo of Group blocks holding Heading, Paragraph, Image, List, and Button blocks, then having this living arrangement will benefit both segments of the community.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>The History of the Block Directory</strong></h2>\n\n\n\n<p>The Block Directory features a <a href=\"https://wordpress.org/plugins/browse/block/\">subset of single-purpose plugins</a> that users can install right in the editor without leaving the page you’re working on. </p>\n\n\n\n<p>Included <a href=\"https://wptavern.com/wordpress-5-5-eckstine-introduces-block-directory-block-patterns-and-automatic-updates-for-themes-and-plugins\">in the Block Editor since</a> WordPress 5.5, it has been the topic of several public debates since Matt Mullenweg prioritized it as an upcoming focus area in 2018.</p>\n\n\n\n<p>As <a href=\"https://wptavern.com/wordpress-explores-proposal-for-new-block-directory-to-host-single-block-plugins\">reported on WP Tavern</a>, the original proposal was to host small, JavaScript-based blocks that users could easily install via searchable in-editor UI. The critical responses to the technical limitations, the divergence from the native UX, and the potential performance toll it would entail didn’t prevent the final implementation from being almost identical to the initial version (although a few <a href=\"https://make.wordpress.org/design/tag/block-directory/\">early design prototypes</a> did address the UX issue).</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>The Evolution of Gutenberg</strong></h2>\n\n\n\n<p>No matter where they’re hosted, Blocks are plugins. And plugin developers are the jelly in WordPress’ sandwich.</p>\n\n\n\n<p>Treating these smaller-scoped blocks as standard plugins that must adhere to the platform’s Plugin guidelines regarding monetization, along with the introduction of a set of <a href=\"https://make.wordpress.org/plugins/2020/07/11/you-can-now-add-your-own-plugins-to-the-block-directory/\">technical restrictions</a>—no Dynamic Blocks, no block extensions, preferably no block collections, and no style Variations—has left many frustrated.</p>\n\n\n\n<p>The same <a href=\"https://wptavern.com/revised-block-directory-guidelines-proposal-updates-wording-but-changes-little-else\">technical and business-related</a> concerns raised during the discussions on the initial proposal remain unresolved in this latest proposal. Still, it does offer a modest promise to share the burden of maintenance and updates and the benefits of the <em>Authored by WordPress.org </em>stamp of approval.</p>\n\n\n\n<p>This time, though, the questions aren’t so much the technical functionality, the UI, or the business aspects; Ventura’s exploratory proposal is an administrative reform, hinting at the evolution of Gutenberg: no longer an experimental add-on that ships an ever-expanding array of specialized blocks but a maturate platform that focuses on fundamental core blocks, treating the former as cherished friends who are welcome to stay over.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Examples mentioned in the proposal</strong></h3>\n\n\n\n<div class=\"wp-block-columns has-neutral-100-background-color has-background 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\">\n<ul>\n<li><a href=\"https://wordpress.org/plugins/abbreviation-button-for-the-block-editor/\">Abbreviation Button for the Block Editor</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/plugins/copyright-block\">Copyright Block</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/plugins/block-catalog\">Block Catalog</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/plugins/block-visibility\">Block Visibility</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/plugins/icon-block\">Icon Block</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<ul>\n<li><a href=\"https://wordpress.org/plugins/lang-attribute\">Lang Attribute for the Block Editor</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/plugins/markdown-comment-block/\">Markdown Comment Block</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/plugins/social-sharing-block/\">Social Sharing Block</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/plugins/superlist-block\">Superlist Block</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/plugins/todo-block\">Todo Block</a></li>\n</ul>\n</div>\n</div>\n\n\n\n<p><em>Update: the term “3rd-party” was removed to avoid confusion with non-core plugin developers. (Ronny Shani, 27.02.2024)</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:\"Fri, 23 Feb 2024 21:15:13 +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:\"Ronny Shani\";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:49:\"BuddyPress: BuddyPress 12.3.0 maintenance 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:32:\"https://buddypress.org/?p=333285\";s: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://buddypress.org/2024/02/buddypress-12-3-0-maintenance-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:1531:\"<p>Immediately available is <a href=\"https://downloads.wordpress.org/plugin/buddypress.12.3.0.zip\">BuddyPress 12.3.0</a>. This maintenance release fixes 7 bugs. The most serious one was happening when a community member requested an email address change from her/his front-end profile: the link to verify the request validity was not generated the right way. <strong>This bug is only concerning versions 12.0.0 to 12.2.0</strong>. It was reported 12 hours ago and we decided to quickly build this maintenance release to fix it as soon as possible.</p>\n\n\n\n<p>For details on all changes, please read the <a href=\"https://codex.buddypress.org/releases/version-12-3-0/\">12.3.0 release notes</a>.</p>\n\n\n\n<p>Update to BuddyPress 12.3.0 today in your WordPress Dashboard, or by <a href=\"https://wordpress.org/plugins/buddypress/\">downloading it from the WordPress.org plugin repository</a>.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Many thanks to 12.3.0 contributors <span class=\"dashicons dashicons-heart\"></span></h2>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/yagniksangani\">yagniksangani</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby\">johnjamesjacoby</a>, <a href=\"https://profiles.wordpress.org/r-a-y\">r-a-y</a>, <a href=\"https://profiles.wordpress.org/vapvarun\">vapvarun</a>, <a href=\"https://profiles.wordpress.org/testovac\">testovac</a>, <a href=\"https://profiles.wordpress.org/emaralive\">emaralive</a> & <a href=\"https://profiles.wordpress.org/imath/\">imath</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, 22 Feb 2024 22:13:09 +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: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:82:\"Gutenberg Times: Block Bindings and Custom Fields – an (almost) no-code example\";s: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=27537\";s: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:86:\"https://gutenbergtimes.com/block-bindings-and-custom-fields-an-almost-no-code-example/\";s: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:10801:\"<p>With the upcoming release of version 6.5, WordPress will receive the first iteration of Block Bindings API, a way to bind content of blocks to data stored in custom fields. Custom fields have been around for a long time. What wasn’t available was a way for content creators / no-code site builders to read out the values of custom fields without using plugins like ACF or Metabox, etc. To include values from Custom fields on Theme templates, you also need a developer to help out.</p>\n\n\n\n<p>This first iteration is mostly for developers. Justin Tadlock published <a href=\"https://developer.wordpress.org/news/2024/02/20/introducing-block-bindings-part-1-connecting-custom-fields/\">Introducing Block Bindings, part 1: connecting custom fields</a>.</p>\n\n\n\n<ul>\n<li>It’s only enabled for heading, buttons, paragraphs, and image blocks.</li>\n\n\n\n<li>The binding sources are either <code>core/patterns</code> or <code>core/post-meta</code>. </li>\n\n\n\n<li>The feature does come with a way to register additional binding sources for your plugin or theme.</li>\n\n\n\n<li>A way to add or edit custom fields via the block editor is missing. </li>\n</ul>\n\n\n\n<p>So you might ask why should I bother? And you’d be right. Whether you are a no-code site builder or site owner, don’t quit just yet.</p>\n\n\n\n<p>As Custom Fields have been part of WordPress since the Stone Age, there is a way to <a href=\"https://wordpress.org/documentation/article/assign-custom-fields/\">add and modify custom fields</a>. The good ol’ meta boxes.</p>\n\n\n\n<p>Block Bindings will open so many possibilities that many users have been longing for since the start of blocks in 2017. I found the feature so intriguing that I wondered if I could make it work now using as little code as possible. And with a minimal squinting in the code editor, you can start using it, too. Even if only as a proof of concept. There is the little warning: Use this in production at your own risk.</p>\n\n\n\n<p>Here is a rundown of my idea:</p>\n\n\n\n<p>Each blog post is part of a logbook, which reports what happened today– including a note about the weather, which then appears above the title of a post.</p>\n\n\n\n<img width=\"652\" height=\"419\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/02/Screenshot-2024-02-21-at-11.10.24.png?resize=652%2C419&ssl=1\" alt=\"\" class=\"wp-image-27547\" />\n\n\n\n<p>Here are the broad steps to accomplish this:</p>\n\n\n\n<ul>\n<li>Use the good ol’ meta box to add a note about today’s weather to the blog post</li>\n\n\n\n<li>Use a block to read the post-meta value, and</li>\n\n\n\n<li>Add the block to the single post template, with some styling and a drop-shadow.</li>\n</ul>\n\n\n\n<p>The middle step is the meat of the matter, and that’s where the squinting skill comes in. If you know how to use meta boxes to create custom fields, you can skip over the <a href=\"https://gutenbergtimes.com/feed/#blockbinding\">next section right to the middle step. </a></p>\n\n\n\n<h2 class=\"wp-block-heading\">How to use Meta boxes to create a Custom Field</h2>\n\n\n\n<p>First, you need to enable Custom Fields for the post editor via the Preference menu . Go to the 3-dot Options menu and select <strong>Preferences</strong>. But before you go there, make sure you saved all your changes to the post. To show the meta boxes below the post, the block editor needs to reload the page, and unsaved content would be removed. </p>\n\n\n\n<p>Here is a short video.</p>\n\n\n\n \n <div class=\"jetpack-videopress-player__wrapper\"> <div class=\"toolbelt-video-wrapper\"></div></div>\n \n \n \n \n\n\n<p>You can add a new custom field called “Weather” to the post and add the value: “Sunny with a chance of rain in the afternoon.”</p>\n\n\n\n \n <div class=\"jetpack-videopress-player__wrapper\"> <div class=\"toolbelt-video-wrapper\"></div></div>\n \n \n \n \n\n\n<p>For subsequent posts you can select the name of the Custom field from the dropdown box and add the value.</p>\n\n\n\n \n <div class=\"jetpack-videopress-player__wrapper\"> <div class=\"toolbelt-video-wrapper\"></div></div>\n \n \n \n \n\n\n<p>That was our short discourse on handling Custom Fields with WordPress. Now we apply your knowledge a bit further. </p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"blockbinding\">Block Binding Block markup</h2>\n\n\n\n<p>The documentation for the Block Bindings shows how you can use the block markup to add information about the meta field (aka Custom field) to the block. </p>\n\n\n\n<p>The template 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>paragraph</span><span> {</span></span>\n<span class=\"line\"><span> </span><span>\"metadata\"</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>\n<span class=\"line\"><span> </span><span>\"source\"</span><span>:</span><span>\"core/post-meta\"</span><span>,</span></span>\n<span class=\"line\"><span> </span><span>\"args\"</span><span>:{</span></span>\n<span class=\"line\"><span> </span><span>\"key\"</span><span>:</span><span>\"Weather\"</span></span>\n<span class=\"line\"><span> }</span></span>\n<span class=\"line\"><span> }</span></span>\n<span class=\"line\"><span> }</span></span>\n<span class=\"line\"><span> }</span></span>\n<span class=\"line\"><span> } </span><span>--></span></span>\n<span class=\"line\"><span><</span><span>p</span><span>></</span><span>p</span><span>></span></span>\n<span class=\"line\"><span><!--</span><span> </span><span>/</span><span>wp:</span><span>paragraph</span><span> </span><span>--></span></span></code></pre></div>\n\n\n\n<p>The <code>source</code> parameter identifies the place where the system looks for the information. Here it says, “core/post-meta.” That’s the space where custom fields and their values are stored. In the <code>args</code> section, it asks for the key of the custom field, that’s the name, which is “Weather” in our case.</p>\n\n\n\n<p>Yes, it can be a bit intimidating. You need to enter the code editor for a minute to add this to your post.</p>\n\n\n\n<p>Now, here comes the hard part for non-coders. </p>\n\n\n\n<ul>\n<li>Use the copy button on the right of the code block to add the content to your clipboard.</li>\n\n\n\n<li>Switch to the code editor via the <strong>Options</strong> menu or use the Keyboard shortcut. </li>\n\n\n\n<li>Then paste the code above into the code editor</li>\n\n\n\n<li>Save everything and exit the code editor. </li>\n\n\n\n<li>When you return to the visual editor, you only see one word in the space where the block went: Weather. Don’t worry, that’s a little downside of this process, there is no preview in the editor. </li>\n\n\n\n<li>Click on the <strong>Preview in new tab</strong>, and you see the post’s value for the custom field “Weather” displayed on the front end.</li>\n</ul>\n\n\n\n<p>Here is a video of the whole process.</p>\n\n\n\n \n <div class=\"jetpack-videopress-player__wrapper\"> <div class=\"toolbelt-video-wrapper\"></div></div>\n \n \n \n \n\n\n<p>Phew! For the first time, that seems like a complicated move. You might not want to do too often, right? Or maybe it gives you a bit more confidence. I’d be happy to help you while you try to figure it out. Just email me at <a href=\"mailto:pauli@gutenbergtimes.com\">pauli@gutenbergtimes.com</a> or ping me in WP Slack as @bph.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Add the block with bindings to the single post template</h2>\n\n\n\n<p>The next and final step is easier. Now that you know how this works, you might want to add the block to the Single Post template. So every time an editor makes a logbook entry and adds the weather to the meta box, it will display on the front end.</p>\n\n\n\n<p>Here is the video of the steps.</p>\n\n\n\n \n <div class=\"jetpack-videopress-player__wrapper\"> <div class=\"toolbelt-video-wrapper\"></div></div>\n \n \n \n \n\n\n<p>From there, you can embellish the weather section of your posts some more. </p>\n\n\n\n<p>After I transformed the block into a column, I added another paragraph to the template section with a drop shadow.</p>\n\n\n\n<img width=\"652\" height=\"372\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/02/Screenshot-2024-02-21-at-17.44.26.png?resize=652%2C372&ssl=1\" alt=\"\" class=\"wp-image-27575\" />\n\n\n\n<h2 class=\"wp-block-heading\">Some things to consider</h2>\n\n\n\n<p>Although it works well when you always remember to add the weather note to every post, there is no reminder, and we know there is no preview. I also see two major issues: </p>\n\n\n\n<ul>\n<li>There is no default option on what to display when the value of the custom field is empty. It will display the empty white box.</li>\n\n\n\n<li>All you can do with custom field in meta boxes is a text input field. There is no select box to make sure only a certain set of values is added, no control of numbers, etc. and shadow just. These issues and a few more are better solved with code.</li>\n</ul>\n\n\n\n<p>In his post, <a href=\"https://developer.wordpress.org/news/2024/02/20/introducing-block-bindings-part-1-connecting-custom-fields/\">Introducing Block Bindings, part 1: connecting custom fields</a>, Justin Tadlock wrote about how to user <code>register_meta()</code> function to add custom fields properly. </p>\n\n\n\n<p>Meta boxes are also a legacy system that doesn’t really fit the block editor way of doing things anymore. The Gutenberg developers are working on the interface to add and edit custom fields as well as make the block show that it’s connected to a custom field.</p>\n\n\n\n<p>If you are interested in the Block Binding API work you can <a href=\"https://github.com/WordPress/gutenberg/issues/54536\">follow along this tracking issue.</a></p>\n\n\n\n<p>Please share in the comments if you run into trouble, and you are welcome to share your ideas and implementations if you followed along. Furthermore, please post your questions so we can answer them.</p>\n\n\n\n<p>On the WordPress Slack space there is also an <a href=\"https://wordpress.slack.com/archives/C015GUFFC00\"><strong>#outreach channel</strong></a> where I and other contributors hang out to answer questions and facilitate discussions about upcoming features. You are more than welcome to join. If you are not on the WordPress Slack yet, you can sign up with your <a href=\"https://login.wordpress.org/register?locale=en_US\">WordPress.org account</a> and then <a href=\"https://make.wordpress.org/chat/\">follow the instructions. </a> <br /></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, 22 Feb 2024 18:31:11 +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: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:46:\"WPTavern: WooCommerce Releases 8.6 & 8.6.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:30:\"https://wptavern.com/?p=154232\";s: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://wptavern.com/woocommerce-releases-8-6-8-6-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:7002:\"<div class=\"wp-block-group has-neutral-100-background-color has-background is-layout-constrained wp-container-core-group-is-layout-2 wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading\">tl;dr</h2>\n\n\n\n<p>WooCommerce 8.6, delayed due to an Order Attribution Tracking issue, has been released. It features a new Product Details block style, six new layouts for the Product Collection block, and a sales column for marketing analytics. </p>\n\n\n\n<p>For developers, it offers improved logging, a notice on Legacy REST API removal, simplified customer history calculation, and 8.6.1 patching four issues. </p>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>After a slight delay, <a href=\"https://developer.woo.com/2024/02/15/woocommerce-8-6-product-blocks-order-attribution-updates/\" target=\"_blank\" rel=\"noreferrer noopener\">WooCommerce 8.6 was released</a> last week. An Order Attribution Tracking issue discovered in 8.5.2 <a href=\"https://developer.woo.com/2024/02/13/woocommerce-8-6-0-delayed/\" target=\"_blank\" rel=\"noreferrer noopener\">prompted the delay</a> so that a fix could be included in the 8.6 release. With 365 commits from 73 contributors, this latest version of WooCommerce introduces some slick new features and enhancements for merchants and developers.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Key Features</h2>\n\n\n\n<img width=\"556\" height=\"206\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2024/02/block-styles-section.png\" alt=\"Product Details Block Styles Section\" class=\"wp-image-154233\" />\n\n\n\n<p><strong>New Block Style for Product Details Block</strong></p>\n\n\n\n<p>WooCommerce 8.6 introduces a new ‘Styles’ area for the Product Details block with two options; Classic and Minimal. By default the Minimal style is selected on new installs with the Classic style being maintained to ensure compatibility with theme-based CSS customizations.</p>\n\n\n\n<p><strong>Product Collection Block Gains Six New Layouts</strong></p>\n\n\n\n<p>Probably the most impactful feature for merchants and marketers is the introduction of six new layouts for the Product Collection block. Now merchants can select between New Arrivals, Top Rated, Best Selling, On Sale, Featured and Product Catalog. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<img width=\"1506\" height=\"1240\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2024/02/product-collection-layouts.png\" alt=\"Screenshot of Product Collection Layouts Interface.\" class=\"wp-image-154234\" />\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>These new layouts can be combined, mixed and matched on a single page to respond better to the needs of merchants. For example, promote your new spring arrivals in a block above your winter sale items that leads into your complete product catalog.</p>\n\n\n\n<p><strong>Sales Column Added to Marketing Page</strong></p>\n\n\n\n<p>For merchants who are using WooCommerce to view and manage their marketing channels (i.e. Google Ad campaigns), a new column in the Sales card provides a quick look at how various campaigns are performing.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Developer Updates</h2>\n\n\n\n<p><strong>Logging System Changes</strong></p>\n\n\n\n<p>Significant improvements have been made to the internal logging system in WooCommerce 8.6. Merchants and developers now have an interface for browsing and viewing log entries that will improve debugging and auditing in the future.</p>\n\n\n\n<p>There is now a log file browser that lets users filter, sort and manage log files. Users can now click individual log files and view them right within their WordPress dashboard. Search has also been improved to enable selecting a group of files to search within, filtering, sorting and linking individual lines in files that contain the search term. Logs have also now been made fully exportable. Users can download individual files or in bulk via a zip file. </p>\n\n\n\n<p><strong>Legacy REST API Removal Notice</strong></p>\n\n\n\n<p>As WooCommerce prepares for the removal of its legacy REST API in 9.0, merchants still using the legacy API will now see a notice of the upcoming change. Given the pace of releases, this means deprecation/removal is about 4 months away.</p>\n\n\n\n<p><strong>Simplified Customer History Calculation</strong></p>\n\n\n\n<p>With Order Attribution Tracking the main cause for the delay in releasing 8.6, a simplified customer history calculation was introduced to mitigate the risk of a calculation resulting in 500 errors (server errors) on larger shops.</p>\n\n\n\n<p><strong>8.6.1 Release Patches 4 Issues</strong></p>\n\n\n\n<p>A patch was released earlier this week that fixes four issues identified with the release of 8.6. These issues were significant enough that this release was issued very quickly. Check out the details on the <a href=\"https://developer.woo.com/2024/02/20/woocommerce-8-6-1-fixes-to-issues-introduced-in-8-6-0/\" target=\"_blank\" rel=\"noreferrer noopener\">WooCommerce Developer blog</a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<div class=\"wp-block-group has-neutral-100-background-color has-background is-layout-constrained wp-block-group-is-layout-constrained\">\n<h3 class=\"wp-block-heading\">w00t Dev Docs</h3>\n\n\n\n<p><em>By Ronny Shani</em></p>\n\n\n\n<p>Shortly before the release, the team <a href=\"https://developer.woo.com/2024/01/31/introducing-new-woocommerce-developer-documentation/\"><strong>launched a brand new</strong></a> documentation website for developers. The <a href=\"https://developer.woo.com/docs/\"><strong>Woo Developer Docs</strong></a> embraces the docs-as-code approach, hosting markdown files in a centralized location: <a href=\"https://github.com/woocommerce/woocommerce/tree/trunk/docs\"><strong>the docs folder of the project’s GitHub monorepo</strong></a>.</p>\n\n\n\n<p>This approach is a win-win:</p>\n\n\n\n<ol>\n<li>It encourages community collaboration and empowers users to contribute to the documentation.</li>\n\n\n\n<li>It enables the plugin’s developers to update docs whenever they modify or update WooCommerce’s codebase.</li>\n</ol>\n\n\n\n<p><a href=\"https://developer.woo.com/roadmap/improving-docs/\"><strong>Improving the developer experience</strong></a> is part of Woo’s roadmap; V1 is a great example of how to do it right.</p>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Progress On New Product Editor</strong></h2>\n\n\n\n<p>Finally, a small tweak to the new Product Editor was introduced, adding the ability to mark a product as Featured. Merchants using the new Product Editor can click an inline star icon in the title field. The new product editor is making steady progress as it reshapes the way merchants interact with WooCommerce in the product creation flow. </p>\n\n\n\n<p>If you have not yet, now is a good time to give the new Product Editor a test drive to see what’s coming and how the interface of WooCommerce is changing.</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, 22 Feb 2024 18:10:09 +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:\"James Giroux\";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:74:\"Do The Woo Community: WordCamp Asia 2024 with Andy Saw & Huanyi Chuang\";s: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=79134\";s: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://dothewoo.io/wordcamp-asia-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:377:\"<p>Volunteers from the organizing team, Andy Saw & Huanyi Chuang cover all the ground for the event coming in Tapai in March.</p>\n<p>>> The post <a href=\"https://dothewoo.io/wordcamp-asia-2024/\">WordCamp Asia 2024 with Andy Saw & Huanyi Chuang</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, 22 Feb 2024 09:56: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: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: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:76:\"WPTavern: Navigating the Nexus: A Chronicle of Recent WordPress Acquisitions\";s: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=154211\";s: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:86:\"https://wptavern.com/navigating-the-nexus-a-chronicle-of-recent-wordpress-acquisitions\";s: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:3440:\"<p>Over the past four months, some exciting developments have been bustling in the dynamic mergers and acquisitions arena of WordPress. To catch everyone up let’s grab a beverage of choice and take a stroll down the calendar of memories.</p>\n\n\n\n<p>Most recently, on February 15th, <a href=\"https://optinmonster.com/optinmonster-acquires-beacon-lead-magnet-creator\">OptinMonster announced</a> its acquisition of Beacon Lead Magnet Creator. Per the press release from OptinMonster “Beacon makes it easy for anyone to create and deliver professional lead magnets, without needing a writer, graphic designer or developer.” This move adds another layer to OptinMonster’s robust toolkit, reinforcing its position as a go-to resource for businesses seeking to optimize their lead-generation strategies. Additionally, the founders of <a href=\"https://beacon.by/\">Beacon.by</a>, brothers Kevin & Eion McGrath will be moving on to other ventures. </p>\n\n\n\n<p>Stepping back two weeks lands us on the date of January 28th when Andrew Wilder at <a href=\"http://nerdpress.net\">NerdPress.net</a> shared the news that they acquired the <a href=\"https://wordpress.org/plugins/rvg-optimize-database/\">Optimize Database After Deleting Revisions Plugin</a>. As Andrew states. “It’s a tool we’ve long relied on — installing it on all our clients’ sites….and less than a day after releasing our first update (patching minor security vulnerabilities), the plugin has already been downloaded nearly 23,000 times”.</p>\n\n\n\n<p>Rolling back the calendar yet another seven weeks we see the calendar shows the date of December 6, 2023, and we once again hear from Andrew Wilder of NerdPress.net. This time the news is a bit more celebratory as it’s about their first acquisition ever! They acquired the social media sharing plugin <a href=\"https://www.nerdpress.net/announcing-hubbub/\">Grow Social from Mediavine</a>. Part of the agreement in the acquisition was to rename the plugin to clear up any confusion between Mediavines properties “Grow Social” and “Grow”, which they have by rebranding the plugin <a href=\"https://morehubbub.com/\">Hubbub</a>. Kudos to Andrew and NerdPress for consistently expanding their offerings and enriching the WordPress community.</p>\n\n\n\n<p>Finally, our trip down memory lane comes to a stop two months earlier on Oct 5, 2023, when Jamie Madden <a href=\"https://twitter.com/dcwhatwhat/status/1710102476396122397\">announced</a> on X/Twitter that his plugin <a href=\"https://licenseserver.io/\">License Server</a> plugin was acquired by <a href=\"https://twitter.com/peter_4sure\">@peter_4sure</a> via <a href=\"https://acquire.com/\">acquiredotcom</a></p>\n\n\n\n<p>As the WordPress world keeps spinning on its axis of innovation, it seems our beloved industry is playing matchmaker, setting up mergers and acquisitions like they’re going out of style. It’s like watching a rom-com where everyone ends up happily ever after, except here, the happy couples are plugins, platforms, and services tying the knot. So, raise your virtual glasses to the lovebirds… here’s to them finding their soulmates in the vast sea of code and content. May these digital unions spark a renaissance in our WordPress universe, bringing us new features, faster sites, and maybe, just maybe, fewer “Error establishing a database connection”</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, 22 Feb 2024 01: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:\"Adam Silver\";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:69:\"Gravatar: Securing Cyber Space: Role of Digital Identity Verification\";s: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:\"http://blog.gravatar.com/?p=1152\";s: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:96:\"https://blog.gravatar.com/2024/02/21/securing-cyber-space-role-of-digital-identity-verification/\";s: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:14701:\"<p>We all have an online identity in all kinds of scenarios, from joining a social media platform, opening a bank account, applying for a loan, and buying services, just to name a few. For each of these to be possible, the person or organization on the other side must be sure that this identity is legit.</p>\n\n\n\n<p>With more than <a href=\"https://www.javelinstrategy.com/2022-Identity-fraud-scams-report\">42 million folks reporting to have been victims of identity fraud just in 2021</a> and just in the USA, everyone must be highly vigilant regarding their digital information. This guide covers why digital identity verification is necessary and the various methods you can use to enable it.</p>\n\n\n\n<p>You’ll also get familiar with a standout solution in digital identity management – <a href=\"https://gravatar.com/\">Gravatar</a>. Our platform simplifies digital identity verification and facilitates more seamless integration for developers creating websites, web apps, or digital stores.</p>\n\n\n\n<p>Let’s jump right into it! </p>\n\n\n\n<h2 class=\"wp-block-heading\">What is digital identity verification?</h2>\n\n\n\n<p>Simply put, this is the process of <strong>authenticating users to confirm their identity is legitimate</strong>, preventing fraud attempts and elevating cybersecurity. </p>\n\n\n\n<p>This involves collecting various <em>types </em>of user data – from personal information like name and date of birth to biometric data such as fingerprints or facial patterns. This data is then carefully analyzed, creating a digital identity that the system uses to assess whether the user is genuinely who they claim to be.</p>\n\n\n\n<p>In sectors such as cybersecurity, online banking, and eCommerce, digital identity verification is essential. Online banking, for instance, can prevent unauthorized access to private accounts, avoiding substantial financial losses. Similarly, in ecommerce, verifying customer identities can deter fraudulent transactions, leading to a safer shopping environment.</p>\n\n\n\n<p>Digital fraud has serious real-life consequences. In 2022 alone, <a href=\"https://www.statista.com/topics/11020/online-fraud-in-the-united-states/#topicOverview\">cybercrime accounted for monetary losses, amassing an astounding 10.3 billion U.S. dollars</a>, making it evident just how critical digital identity verification is.</p>\n\n\n\n<p>Thankfully, with advanced technological strategies, such as multi-factor authentication and AI-powered checks, and by following regulatory mandates such as Know Your Customer (KYC) and Anti-Money Laundering (AML), you can effectively keep cybercriminals at bay and create a secure digital environment where users can interact fearlessly.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Compliance with Know Your Customer and anti-money laundering regulations</h3>\n\n\n\n<p>KYC guidelines require financial businesses to corroborate the identity and suitability of every customer while continuously monitoring their transactions for suspicious activities. Similarly, AML regulations are comprehensive policies designed to combat illicit actions like money laundering or terror financing.</p>\n\n\n\n<p>As you can probably guess, to comply with these regulations, you need to apply different digital identity verification methods; for example – Artificial Intelligence (AI)-aided digital identity verification. Advanced algorithms can quickly detect anomalies in user profiles, enabling faster, more accurate determination of a user’s identity. </p>\n\n\n\n<h3 class=\"wp-block-heading\">Website security</h3>\n\n\n\n<p>Implementing a solid verification process can protect many different website elements from unauthorized access and potential data theft, including user login interfaces, transactional pages, and backend data storage facilities. </p>\n\n\n\n<p>Without a secure verification process, websites become easy targets for cybercriminals and are exposed to threats with potentially catastrophic outcomes – from loss of sensitive user information, identity theft, and damaging brand reputation to great financial losses.</p>\n\n\n\n<p>Thankfully, this can be easily prevented by implementing robust digital identity verification methods and ensuring that all employees and partners know the security protocols. </p>\n\n\n\n<h2 class=\"wp-block-heading\">Advantages of automated identity verification</h2>\n\n\n\n<p>Automated identity verification is a technology-based process that uses algorithms and data analysis to confirm an individual’s identity without human intervention.</p>\n\n\n\n<p>Let’s take a look at how it can benefit identity verification procedures. </p>\n\n\n\n<ul>\n<li><strong>Decrease in human errors: </strong>Typically, manual identity checks are prone to oversights, inconsistencies, and delays. Automated verification eliminates these drawbacks by employing superior algorithms and databases that enhance accuracy and reliability. </li>\n\n\n\n<li><strong>Improved efficiency: </strong>Automation speeds up identity checks, making it faster for users. For instance, if someone wants to make a big online transaction, automated identity checks would greatly reduce the time it takes to verify whether the customer is legitimate, allowing them to proceed with the transaction while providing a hassle-free experience. </li>\n\n\n\n<li><strong>Convenience: </strong>With automated identification, there is no need to go through mountains of documentation or force the customer to be physically present to seal the deal. </li>\n\n\n\n<li><strong>Increased security provisions: </strong>Modern-day systems incorporate a range of sophisticated technologies, including AI and biometrics, adding multiple layers of security. For instance, AI algorithms are designed to adapt and evolve to potential threats, while biometric checks like fingerprint or facial recognition provide an endless series of verifications, preventing nearly all attempts at identity spoofing.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Common methods for digital identity verification</h2>\n\n\n\n<p>There are <strong>six primary techniques for digital authentication</strong> that can be combined or used separately:</p>\n\n\n\n<h3 class=\"wp-block-heading\">ID document verification</h3>\n\n\n\n<img src=\"https://gravatar.files.wordpress.com/2024/02/image-4-edited.png\" alt=\"A diagram showing that OCR can transcribe images, PDFs, and docs into text.\" class=\"wp-image-1157\" />\n\n\n\n<p>Identity Document Verification is used to verify the authenticity of government-issued identification documents such as passports, driver’s licenses, or voter ID cards. </p>\n\n\n\n<p>It uses advanced OCR (Optical Character Recognition) technology to extract data from a document’s text fields. This data is then analyzed and verified against numerous databases and real-time information. </p>\n\n\n\n<p>You can use many tools for ID Document Verification, such as <a href=\"https://ekata.com/\">Ekata</a>, <a href=\"https://onfido.com/use-cases/identity-verification/\">Onfido</a>, or <a href=\"https://www.jumio.com/\">Jumio</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Biometric verification</h3>\n\n\n\n<img src=\"https://gravatar.files.wordpress.com/2024/02/image-5-edited.png\" alt=\"Facial and fingerprint recognition.\" class=\"wp-image-1159\" />\n\n\n\n<p>This method gives businesses a very high level of security as it focuses on fingerprint recognition, iris or retina scanning, and face recognition. It uses the unique biological traits of an individual that are hard to forge or steal instead of relying on what a user knows (like a password) or what a user has (like an ID card) for identification. </p>\n\n\n\n<p>Companies like <a href=\"https://www.apple.com/\">Apple</a> have implemented face and fingerprint recognition techniques for user identification. Their cultivated databases have proven to be instrumental in enhancing user access management, proving crucial in fields beyond consumer electronics like border control and banking. </p>\n\n\n\n<p>Security aside, privacy considerations around biometric data must be addressed keenly with robust data-protection frameworks to prevent misuse.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Liveness detection</h3>\n\n\n\n<img src=\"https://gravatar.files.wordpress.com/2024/02/image-6-edited.png\" alt=\"\" class=\"wp-image-1161\" />\n\n\n\n<p>Liveness detection is an integral component of the digital identity verification landscape. It refers to the technology that authenticates whether the user engaging with a service or application is indeed a ‘live’ human and not a spam bot or an impersonator, significantly fortifying cybersecurity.</p>\n\n\n\n<p>This technology relies on evaluating user interactions for signs of natural human behavior such as eye movement, facial expression changes, and depth perception – traits that bots find challenging to mimic. For example, platforms such as <a href=\"https://www.id.me/\">ID.me</a> and Jumio use methods like optical-based motion analysis to accurately detect living entities and mitigate identity fraud.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Knowledge-Based Authentication (KBA)</h3>\n\n\n\n<img src=\"https://gravatar.files.wordpress.com/2024/02/image-7-edited.png\" alt=\"A form asking, \'What is your childhood pet\'s name?\'\" class=\"wp-image-1163\" />\n\n\n\n<p>Knowledge-based Authentication (KBA) is an identity verification process that uses private information unique to the user for authentication. </p>\n\n\n\n<p>It comes in two forms: </p>\n\n\n\n<ul>\n<li><strong>Static KBA:</strong> Uses pre-set questions like “What is your mother’s maiden name?”.</li>\n\n\n\n<li><strong>Dynamic KBA: </strong>Revolves around public information, with questions such as “Which one of these addresses are associated with you?”.</li>\n</ul>\n\n\n\n<p>However, KBA has its vulnerabilities, such as people often choosing very predictable questions and answers. So, it’s no wonder the cybersecurity industry is gradually tilting towards safer alternatives. Biometric authentication and multi-factor authentication are growing trends, offering a more secure way of verifying digital identities.</p>\n\n\n\n<h3 class=\"wp-block-heading\">What is rel=me?</h3>\n\n\n\n<p>The <a href=\"https://microformats.org/wiki/rel-me\">rel=”me” attribute</a> is a way to <strong>indicate that two different web pages are owned or controlled by the same person or entity</strong>. This can be useful for search engines and other services that try to understand the connections between different parts of your online presence.</p>\n\n\n\n<p>Imagine you have a professional blog and a <a href=\"https://twitter.com/\">Twitter (now X)</a> account. To link these two and establish your authority over both, you can use the following code on your website and affirm ownership of both profiles in the digital space.</p>\n\n\n\n<table><tbody><tr><td><<strong>a</strong> href=”<a href=\"https://twitter.com/yourTwitterHandle”\" rel=\"nofollow\">https://twitter.com/yourTwitterHandle&#8221</a>; rel=”me”>Follow me <strong>on</strong> <strong>Twitter</strong></<strong>a</strong>></td></tr></tbody></table>\n\n\n\n<p><a href=\"https://gravatar.com/\">Gravatar</a>, for example, leverages rel=me to authenticate <a href=\"https://mastodon.social/\">Mastodon</a> accounts, providing credible proof for the influential role of this tag in elevating the digital identity verification process.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Identity providers</h3>\n\n\n\n<p>Identity Providers (IdPs) are trustworthy platforms that authenticate the identity of a user. After confirming the identity, IdPs grant authorization credentials, such as tokens or digital certificates, enabling users to access a website or application without creating unique logins for every site. </p>\n\n\n\n<p>Despite simplifying processes massively, IdPs do not compromise security. They adhere to rigorous security standards like <a href=\"https://openid.net/developers/how-connect-works/\">OpenID Connect</a> and the <a href=\"https://www.oracle.com/security/cloud-security/what-is-saml/\">Security Assertion Markup Language</a> (SAML) to guarantee protection from unauthorized access.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Gravatar: The digital identity verification provider you need</h2>\n\n\n\n<p>Verifying the identity of users who sign up to a website/web store/web app can be a complicated task, but you can make this much easier with a trusted provider such as <a href=\"https://gravatar.com/\">Gravatar</a>. </p>\n\n\n\n<p>Gravatar simplifies the process of digital identity verification by assigning globally recognized avatars. These avatars are linked to users’ email addresses, authored posts, comments, and more, reinforcing a robust and unique digital identifier.</p>\n\n\n\n<p>Simply put, a user is verified when they prove they own the particular service’s login credentials, including <a href=\"https://twitter.com/?lang=en\">Twitter</a>, <a href=\"https://www.instagram.com/\">Instagram</a>, <a href=\"https://www.tiktok.com/\">TikTok</a>, <a href=\"https://github.com/\">GitHub</a>, <a href=\"https://www.twitch.tv/\">Twitch</a>, <a href=\"https://stackoverflow.com/\">Stackoverflow</a>, and many more. The moment an account is added to a profile, it is deemed “verified” and, thereby, securely validated.</p>\n\n\n\n<p>Gravatar profiles are implemented across many platforms, such as <a href=\"https://wordpress.org/\">WordPress</a> and <a href=\"https://openai.com/\">OpenAI</a>, making every digital journey a consistent and streamlined experience. </p>\n\n\n\n<p>This digital verification system stands out with many impressive features, such as: </p>\n\n\n\n<ul>\n<li><strong>Privacy-forward approach: </strong>The complete control over personal data remains with the user. They decide what’s public and what’s private, catering to the needs of privacy-conscious netizens.</li>\n\n\n\n<li><strong>Easy integration: </strong>Integrate with Gravatar in just a few minutes using the <a href=\"https://docs.gravatar.com/general/hash/\">developer API</a>. </li>\n\n\n\n<li><strong>Optimized customer experience:</strong> For instance, new users registering on a blog site would find their Gravatar avatar automatically displayed instead of an impersonal placeholder. This can significantly reduce the number of steps in the profile setup and make the sign-up process quicker and smoother.</li>\n</ul>\n\n\n\n<p>Be it enriching user experiences, simplifying the digital identity verification process, or ensuring avatar consistency, Gravatar proves to be an indispensable tool. So, if you’re a business or an individual who wants to enhance cybersecurity and identity management, <a href=\"https://docs.gravatar.com/\">check out what Gravatar can do for you</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, 21 Feb 2024 20:30:32 +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:\"Ronnie Burt\";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:57:\"WPTavern: WordPress 6.5 Is Around the Corner; Test Beta 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=154192\";s: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:67:\"https://wptavern.com/wordpress-6-5-is-around-the-corner-test-beta-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:11592:\"<p><a href=\"https://wordpress.org/news/2024/02/wordpress-6-5-beta-2/\">WordPress 6.5 Beta 2</a> was released yesterday, featuring exciting capabilities and dozens of updates and bug fixes.</p>\n\n\n\n<p>The first major release of 2024, WordPress 6.5 will <a href=\"https://make.wordpress.org/core/6-5/\">officially launch</a> on March 26, 2024. Now’s the best time to start poking around, see what’s new, make sure your project(s) are ready, and <a href=\"https://make.wordpress.org/test/2024/02/15/help-test-wordpress-6-5-beta-1/\">help test the system</a> so the team can get to the finish line with as few bugs as possible.</p>\n\n\n\n<p class=\"has-text-align-center has-neutral-100-background-color has-background\">To experiment with the latest beta, try <strong>WordPress Playground</strong>; this no-code browser-based WordPress instance comes pre-installed with extra plugins and test content.<br /><a href=\"https://playground.wordpress.net/#%7B%20%22preferredVersions%22:%20%7B%20%22php%22:%20%228.0%22,%20%22wp%22:%20%22beta%22%20%7D,%20%22features%22:%20%7B%20%22networking%22:%20true%20%7D,%20%22steps%22:%20%5B%20%7B%20%22step%22:%20%22login%22,%20%22username%22:%20%22admin%22,%20%22password%22:%20%22password%22%20%7D,%20%7B%20%22step%22:%20%22importFile%22,%20%22file%22:%20%7B%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%7D%20%7D,%20%7B%20%22step%22:%20%22importFile%22,%20%22file%22:%20%7B%20%22resource%22:%20%22url%22,%20%22url%22:%20%22https://raw.githubusercontent.com/WordPress/theme-test-data/master/themeunittestdata.wordpress.xml%22%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22query-monitor%22%20%7D,%20%22options%22:%20%7B%20%22activate%22:%20false%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22create-block-theme%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22debug-bar%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22health-check%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22test-reports%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D,%20%7B%20%22step%22:%20%22installPlugin%22,%20%22pluginZipFile%22:%20%7B%20%22resource%22:%20%22wordpress.org/plugins%22,%20%22slug%22:%20%22user-switching%22%20%7D,%20%22progress%22:%20%7B%20%22weight%22:%202%20%7D%20%7D%20%5D%20%7D\" target=\"_blank\" rel=\"noreferrer noopener\">Click here to open a standalone Beta 2 window in a new tab</a>.</p>\n\n\n\n<p>Let’s see what’s new:</p>\n\n\n\n<h2 class=\"wp-block-heading\">Improvements and Bug Fixes</h2>\n\n\n\n<p>The <a href=\"https://wptavern.com/wordpress-2023-survey-block-editor-on-the-rise-positive-feeling-about-contributing-drops\">results of the WordPress 2023 Survey</a> revealed that users already rank performance and accessibility among their favorite things about the platform but would like to see even more done to enhance both. Ask, and you shall receive.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Performance and Accessibility</h3>\n\n\n\n<p>According to <a href=\"https://wordpress.org/news/2024/02/wordpress-6-5-beta-1/\">the announcement post</a>, the upcoming version “contains more than 110 performance-related updates”, including <a href=\"https://github.com/WordPress/gutenberg/issues/57935\">improved loading speeds</a> across the Post and Site Editor:</p>\n\n\n\n<table><thead><tr><th>Item</th><th>WP 6.4</th><th>WP 6.5</th><th>Speed<br />Increase</th></tr></thead><tbody><tr><td>Typing</td><td>60ms</td><td>15ms</td><td>4x</td></tr><tr><td>First block load</td><td>20s</td><td>8.4s</td><td>> 2x</td></tr><tr><td>Patterns load</td><td>2s</td><td>1.5s</td><td>1.33x</td></tr><tr><td>Site editor first block load</td><td>7s</td><td>4.6s</td><td>1.5x</td></tr></tbody></table>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p><em>The loading time for translated sites gets a boost due to </em><a href=\"https://make.wordpress.org/core/2023/11/08/merging-performant-translations-into-core/\"><em>merging Performant Translations into Core</em></a><em>. 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.</em></p>\n</blockquote>\n\n\n\n<p>As an open-source software whose mission is to democratize publishing, WordPress adopted a set of <a href=\"https://developer.wordpress.org/coding-standards/wordpress-coding-standards/accessibility/\">Accessibility Coding Standards</a>. These apply to the project’s core and official plugins, complemented by its long-term goal of <a href=\"https://wordpress.org/about/accessibility/\">achieving Authoring Tool Accessibility Guidelines (ATAG) 2.0 compliance</a>.</p>\n\n\n\n<p>To deliver on this promise, version 6.5 ships with over 65 accessibility improvements, including “fixes to contrast settings, cursor focus, submenus, positioning of elements, and more.”</p>\n\n\n\n<h2 class=\"wp-block-heading\">Design and Customization</h2>\n\n\n\n<p>Since you can never have too much of a good thing, 6.5 comes packed with design, UI, and UX:</p>\n\n\n\n<ul>\n<li>Background images in Group blocks get <code>backgroundSize</code> and <code>backgroundRepeat</code> support.</li>\n\n\n\n<li>The Cover block gets <code>aspectRatio</code> support.</li>\n\n\n\n<li>The Column, Columns, Image, and Button blocks get box-shadow support.</li>\n\n\n\n<li>Rename blocks in List View. The name will appear as metadata. For example, <code><!-- wp:paragraph {\"metadata\":{\"name\":\"p2\"}} --></code>.</li>\n\n\n\n<li>Overriding default right-click behavior to allow custom WordPress contextual menus.</li>\n\n\n\n<li>Better drag-and-drop experience—in List View and throughout the Editor</li>\n\n\n\n<li><a href=\"https://gutenbergtimes.com/pattern-overrides-an-early-review/\">Synced Patterns override</a> (formerly Reusable Blocks) for the Paragraph, Image, Heading, and Button blocks.</li>\n\n\n\n<li><a href=\"https://www.youtube.com/watch?v=4aLngyrXuVc\">New Meta Views</a> in the Site Editor, supporting Grid layouts, sorting, and smart filters.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/01/22/core-editor-improvement-robust-revisions-in-the-site-editor/\">Better Revisions</a> in the Site Editor’s Styles and Style Book sidebar.</li>\n</ul>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>Editor Triage Co-Lead <strong>Anne McCarthy</strong> demonstrates the new Meta Views in WordPress 6.5\n\n\n\n<h2 class=\"wp-block-heading\">Shiny New Features</h2>\n\n\n\n<p>If you clicked the Synced Patterns link above and visited the Gutenberg Times, you might have spotted the word bindings popping up <a href=\"https://gutenbergtimes.com/pattern-overrides-an-early-review/#a-look-behind-the-scene-of-the-pattern-block-markup\">at the end of Birgit Pauli-Haack’s post</a>. An obvious segue into one of the most transformative features of 6.5: the Block Bindings API.</p>\n\n\n\n<h3 class=\"wp-block-heading\">The Block Bindings API</h3>\n\n\n\n<p>Automattic’s Mario Santos <a href=\"https://github.com/WordPress/gutenberg/issues/54536\">described the goal</a> of the new API:</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>“<em>This API aims to connect block attributes to values, obtained from different sources, that might vary depending on the context. For example, a value like post_author that changes depending on the current post.</em></p>\n\n\n\n<p><em>This will expand the capabilities of existing blocks […] For example, having a Heading block with the content of the Post Author without needing a new Post Author block.</em>“</p>\n</blockquote>\n\n\n\n<p>The API already powers the Synced Patterns and the much-anticipated ability to connect custom fields to block attributes. The list of supported blocks and attributes is short, but that’s only the beginning:</p>\n\n\n\n<ul>\n<li><strong>Paragraph:</strong> content</li>\n\n\n\n<li><strong>Heading:</strong> content</li>\n\n\n\n<li><strong>Image:</strong> URL, alt, title</li>\n\n\n\n<li><strong>Button: </strong>text, URL, linkTarget, rel.</li>\n</ul>\n\n\n\n<p>Custom fields have been neglected in the Block Editor, hidden behind the Preferences window like a lost treasure. Let’s hope this is the first sign of their comeback. If you’re interested in what you can build with this powerful combo, <a href=\"https://developer.wordpress.org/news/2024/02/20/introducing-block-bindings-part-1-connecting-custom-fields/\">check out Justin Tadlock’s tutorial</a> on the WordPress Developer Blog.</p>\n\n\n\n<h3 class=\"wp-block-heading\">The Font Library</h3>\n\n\n\n<p>Next on the <em><a href=\"https://wptavern.com/wordpress-6-4-font-library-feature-punted-to-6-5-release\">finally</a></em> list is the Font Library, aka the WordPress font manager. </p>\n\n\n\n<p>Soon, you won’t need to write any code or install any plugins—from now on, you can do it yourself, regardless of your active theme. The fonts are stored under /wp-content/fonts which makes it as theme-agnostic as the Media Library.</p>\n\n\n\n<img width=\"1500\" height=\"991\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2024/02/Font-Library.png\" alt=\"A screenshot of the new Font Library (WP 6.5 Beta 2)\" class=\"wp-image-154203\" />\n\n\n\n<p>To access the Library, open the Styles sidebar, click on Typography, and click the icon next to FONTS. Try to upload, install from Google Fonts, activate, and, well, manage your fonts. Once installed, use it across the Editor, wherever the blocks’ Typography attribute is enabled.</p>\n\n\n\n<p>Developers can access the Font Library programmatically, create custom Font Collections for their users, or disable it altogether. <a href=\"https://github.com/WordPress/gutenberg/pull/54477\">Take a peak at the still-WIP documentation</a> for instructions.</p>\n\n\n\n<h3 class=\"wp-block-heading\">The Interactivity API</h3>\n\n\n\n<p>The grand finale of this impressive lineup is the Interactivity API. <a href=\"https://wptavern.com/interactivity-api-prepares-for-its-official-debut-in-wordpress-6-5\">James Giroux covered it here on the Tavern</a> earlier this week, so we’ll only give you a taste of <a href=\"https://wpmovies.dev/\">WP Movies Demo</a>:</p>\n\n\n\nA walkthrough of <strong>WP Movies</strong>, a demo project that features the Interactivity API (<a href=\"https://github.com/wordpress/wp-movies-demo\">Source</a>)\n\n\n\n<p>If you’re a developer interested in the nitty-gritty details and want to try what’s already possible, visit the <a href=\"https://github.com/wordpress/wp-movies-demo\">WP Movies GitHub repository</a>, where you’ll find a getting started tutorial.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-tavern-separator\" />\n\n\n\n<p><em>That Playground link is tempting, so go experiment, and then come back to tell us which feature you’re most excited about. Have you tried the new APIs? Did you find (and file) any bugs?</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:\"Wed, 21 Feb 2024 20:23:47 +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:\"Ronny Shani\";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:66:\"Akismet: What is a Spambot? How to Identify and Stop Them Using 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:28:\"http://akismet.com/?p=283763\";s: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:43:\"https://akismet.com/blog/what-is-a-spambot/\";s: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:22802:\"<p>Anyone who has interacted online with others through comment sections, social media posts, or discussion forums is probably familiar with spambots. These annoying automated computer programs generate unwanted, unrelated comments that are sprinkled among legitimate ones in an effort to sell products or services or attract clicks that can spread scams or malware. </p>\n\n\n<p>In fact, according to <a href=\"https://securitytoday.com/articles/2023/05/17/report-47-percent-of-internet-traffic-is-from-bots.aspx\" target=\"_blank\" rel=\"noreferrer noopener\">Security Today</a>, more than 30% of all internet traffic is generated by malicious bots.</p>\n\n<p>Today, we’re going to learn about spambots, how they work, common types of spambots used, signs of spambot activity, and how to stop them. Finally, we’ll see how <a href=\"https://akismet.com/features/\">Akismet’s top‑rated AI‑driven anti‑spam solution</a> is successfully leading the charge of blocking spambots on the internet.</p>\n\n\n<span id=\"more-283763\"></span>\n\n\n<h2 class=\"wp-block-heading\">What is a spambot?</h2>\n\n<p>A spambot is a computerized program that repetitively sends spam throughout the internet. It is often used to post irrelevant messages in places where people interact with one another, including comment sections of websites, social media messaging platforms, or online discussion forums.</p>\n\n<h2 class=\"wp-block-heading\">How do spambots work?</h2>\n\n<p>Most spambots begin their nefarious activity by automatically setting up fake accounts on social media, email hosts, or forums, which typically only require basic information such as a name and email address.</p>\n\n<p>Once spambots gain access to their target websites, they can begin posting spam messages based on a specific set of rules. Email spambots might scan, scrape, and save email addresses or phone numbers on the web to fuel future spam activities.</p>\n\n\n<img width=\"1082\" height=\"396\" src=\"https://akismet455732288.files.wordpress.com/2024/02/image-7.png\" alt=\"example of a spam comment on a website4\" class=\"wp-image-283765\" />\n\n\n<h2 class=\"wp-block-heading\">What are common types of spam caused by spambots?</h2>\n\n<p>Spambots can be extremely agile and used in a wide variety of places on a website. Here are a few of the most common ways you might encounter spambots:</p>\n\n\n<ul><li><strong>Contact form spam</strong>. spambots can be programmed to automatically fill out contact forms online. This allows them to gain access to a particular website or admin who receives the form submissions. Sophisticated bots may be able to implement SQL injection attacks as well.</li></ul>\n\n\n\n<ul><li><strong>Comment spam</strong>. Many websites offer comment sections where users can post questions, share ideas, or express opinions. spambots may automatically insert a spam comment in these areas, advertising unwanted products or services or tempting users to interact with them. The malicious actors can then cause those users to fall for scams or insert malware onto their devices.</li></ul>\n\n\n\n<ul><li><strong>Fake account registrations.</strong> Imposter accounts can be automatically generated, especially if websites ask for only a few basic pieces of information like a name and email address. These accounts allow spambots to gain access to websites for future spamming activities such as posting negative reviews or wasting the time of a sales team focused on non‑existent customers.</li></ul>\n\n\n\n<ul><li><strong>Forum spam</strong>. Online forums are great places for people to discuss just about anything they are interested in. spambots pollute these spaces by posting unrelated information among legitimate comments and discussions. Forums that allow anonymous posting can be especially vulnerable.</li></ul>\n\n\n\n<ul><li><strong>Email spam</strong>. Gaining access to a large number of email addresses can fuel spam activity. Some spambots can scrape the web, access email lists, and save them to a database, which can then be used by cybercriminals to spread malware, run phishing attacks, or set up future scams.</li></ul>\n\n\n\n<ul><li><strong>Doxxing</strong>. Doxxing occurs when spambots maliciously publish private information on a public forum. This may include publishing financial details or posting private data that could put people in potential physical harm.</li></ul>\n\n\n<h2 class=\"wp-block-heading\">What are the motivations behind spambots?</h2>\n\n<p>Do you ever wonder why cybercriminals spend time creating spambots and what their ultimate purpose could be? The motivations behind spambots are varied and numerous. Here are a few of the most popular reasons for creating spambots:</p>\n\n\n<ul><li><strong>SEO manipulation</strong>. Some spambots attempt to trick Google’s algorithms into believing that a particular website deserves top ranking by adding backlinks from other sites</li>\n\n<li><strong>Phishing</strong>. Other spambots work to promote phishing scams, hoping that users will give up key account information such as passwords or usernames. These spambots may attempt to gain access to credit card or other financial information. </li>\n\n<li><strong>Malware distribution</strong>. spambots may also be used to distribute malware through the continued sharing of tempting links in comment threads. </li>\n\n<li><strong>Social media manipulation. </strong>Like trying to trick Google Analytics, spambots may be used to manipulate social media activity as well. Spam comments or posts may attempt to sway public opinion or create an illusion that something is more widespread and popular than it actually is.</li>\n\n<li><strong>Advertising and promotion</strong>. Finally, spambots may be used to promote products and services, adult content, or too‑good‑to‑be‑true offers in an attempt to attract user interaction.</li></ul>\n\n\n\n<img width=\"1260\" height=\"442\" src=\"https://akismet455732288.files.wordpress.com/2024/02/image-8.png\" alt=\"spam comment that\'s unrelated to the post\" class=\"wp-image-283766\" />\n\n\n<h2 class=\"wp-block-heading\">What are common signs of spambot activity?</h2>\n\n<p>In order to stop spambot activity, it’s important to understand common signs before unwanted posting gets out of hand and your user base is inundated with unwanted email or spam messages. Here are things to look for:</p>\n\n\n<ul><li><strong>A sudden surge in traffic</strong>. From a system perspective, if your IT department suddenly notes a rapid surge in traffic on your website, you may be a target for spambot activity.</li></ul>\n\n\n\n<ul><li><strong>High bounce rates with short session durations</strong>. If you happen to see higher than normal bounce rates with very short session times, you may have spambots visiting your site.</li></ul>\n\n\n\n<ul><li><strong>Inconsistent or patterned user behavior</strong>. spambots that are posting on website forums or in comment sections will display inconsistent and nonsensical user behavior. They won’t respond appropriately to other posts.</li></ul>\n\n\n\n<ul><li><strong>Irrelevance</strong>. In most cases, spambots will post irrelevant advertisements, comments or questions in public forums that don’t follow the existing conversation. If they’re programmed to respond to others, the language used may also seem out of place.</li></ul>\n\n\n\n<ul><li><strong>Activity from known malicious IP lists</strong>. If you keep a list of malicious IP addresses as part of your cybersecurity practices, you may be able to flag anything from the same IP address as potential spambot activities.</li></ul>\n\n\n\n<ul><li><strong>Excessive errors</strong>. Many spambot messages contain a great deal of errors in terms of grammar or spelling. They may not even make sense at all.</li></ul>\n\n\n\n<ul><li><strong>Ridiculous deals</strong>. If a product or service is advertised at prices that sound way too good to be true, they probably exist only to draw clicks to a malicious site or activate malware or phishing attempts.</li></ul>\n\n\n\n<ul><li><strong>Pushing users to click or forward</strong>. spambots designed to spread malware or facilitate phishing attempts need users to click on links or forward them to others on their contact list. Urgent requests to do so should be a red flag for spambot activity.</li></ul>\n\n\n\n<ul><li><strong>Unknown respondents</strong>. If activity is coming from individuals who seem suspicious, in combination with any of these other clues, you may be dealing with spambot activity.</li></ul>\n\n\n<h2 class=\"wp-block-heading\">What are the implications of not blocking spambots?</h2>\n\n\n<p>For a busy website manager or IT department, it can be tempting to ignore spambot activity, at least for the time being if other technical issues are pressing. spambot activity may be seen as merely annoying, but not as dangerous as other cybercriminal activity. </p>\n\n\n<p>However, not blocking spambots can have far‑reaching consequences for your overall business. Here are a few to consider:</p>\n\n\n<ul><li><strong>A bad user experience</strong>. First and foremost, spambots can contribute to a negative user experience. If you are trying to encourage discussion, comments, and questions on a public forum, having random spambot postings throughout can be irritating and annoying to those trying to truly interact with one another.</li></ul>\n\n\n\n<ul><li><strong>A tarnished site reputation</strong>. Not only can you develop a poor site reputation if spambot activity is regularly associated with your website, but some spambot activity may include posting fake negative reviews or the generation of false complaints, which can have negative implications for your business as a whole.</li></ul>\n\n\n\n<ul><li><strong>The risk of penalties from search engines. </strong>Search engine algorithms are constantly being developed to deal with spambots and false optimization attempts. Your site could be penalized for carrying irrelevant links to other sites if they violate search engine rules.</li></ul>\n\n\n\n<ul><li><strong>The risk of site blocklisting</strong>. If dangerous spam becomes a rampant problem on your site, search engines and web browsers may actually blocklist your site or display warnings to potential visitors. This could eliminate the majority of your site traffic in a matter of days.</li></ul>\n\n\n\n<ul><li><strong>Reduced site performance</strong>. It takes time and server resources to process spambot activity. This may slow down the performance of your site for legitimate users.</li></ul>\n\n\n\n<ul><li><strong>Increased server costs</strong>. Some server hosting companies charge based on the resources used. Unwanted spambot activity may increase these costs.</li></ul>\n\n\n\n<ul><li><strong>A waste of time and money</strong>. If spambots operate by generating fake inquiries, your business could waste valuable sales force time trying to follow up or sort through junk leads to get to actual prospects.</li></ul>\n\n\n<h2 class=\"wp-block-heading\">How to stop spambots</h2>\n\n<p>The good news is that there are several tools and solutions to help you stop spambots effectively. Each has advantages and disadvantages, but all of them can help you eliminate unwanted posts, email scraping, and fake account set‑ups.</p>\n\n\n<img width=\"1600\" height=\"695\" src=\"https://akismet455732288.files.wordpress.com/2024/02/image-9.png\" alt=\"Akismet homepage\" class=\"wp-image-283767\" />\n\n\n<h3 class=\"wp-block-heading\">Akismet: The #1 AI‑powered anti‑spam solution</h3>\n\n<p>The top choice to stop spambots is <a href=\"https://akismet.com/features/\">Akismet</a>, which is an AI‑powered anti‑spam solution used by more than 100 million websites today. It uses machine learning technology to identify and get rid of 99.99 percent of all spam.</p>\n\n<h4 class=\"wp-block-heading\">What is Akismet?</h4>\n\n<p>Akismet is a powerful anti‑spam solution built on cutting edge artificial intelligence and machine learning technology. It has been blocking spam for nearly two decades, and its technology is continuously learning to stay ahead every step of the way. It’s successfully removed more than 500 billion pieces of spam across more than 100 million sites.</p>\n\n<h4 class=\"wp-block-heading\">How does Akismet work?</h4>\n\n\n<p>Unlike some other spam blockers, Akismet works completely in the background, so your users experience zero friction on your site. They simply navigate to the areas, discussion boards, and contact forms they want and proceed without so much as a CAPTCHA or box to click. </p>\n\n\n<p>However, spambots are detected with near‑perfect accuracy and are booted from the site or prevented from submitting forms. Depending on your settings, Akismet can even toss comments directly in the trash without you ever having to see them.</p>\n\n\n<img width=\"1280\" height=\"860\" src=\"https://akismet455732288.files.wordpress.com/2024/02/image-10.png\" alt=\"spam settings in WordPress\" class=\"wp-image-283768\" />\n\n\n<h4 class=\"wp-block-heading\">What are the benefits of using Akismet?</h4>\n\n<p>Sites that rely on Akismet reap many benefits. First, since Akismet works in the background without relying on your users to “prove” that they’re not spambots, the user experience is far superior to other prevention methods like CAPTCHA. A faster, less annoying user experience often results in better conversion rates and higher overall visitor satisfaction.</p>\n\n\n<p>Second, since Akismet’s technology learns from every spam it’s removed from more than 100 million websites, you benefit from all this knowledge. Just about everything that’s known about spam is stored in a cloud-based database, ready to inform Askimet’s actions for your specific site. This learning will continue over time, keeping your site nearly free of all new spam — even new spam techniques that have yet to come! </p>\n\n\n<p>Third, because the database is stored in the cloud, you get the benefits of Akismet without any negative effects on speed or storage for your site.</p>\n\n<p>Want to know how it works in real life? Explore <a href=\"https://akismet.com/blog/convertkit-customerstory/\">how ConvertKit is using Akismet</a> to protect entrepreneurs from spam. In this case study, ConvertKit executives walk through their spam challenges, potential negative effects spam has on their business and the entrepreneurs they support, and how Akismet is helping them solve their spambot problem.</p>\n\n\n<img width=\"1600\" height=\"602\" src=\"https://akismet455732288.files.wordpress.com/2024/02/image-11.png\" alt=\"stats about ConvertKit, using Akismet\" class=\"wp-image-283769\" />\n\n\n<h4 class=\"wp-block-heading\">How to get started with Akismet</h4>\n\n\n<p>If you’re ready to eliminate spam without frustrating visitors, you can download <a href=\"https://wordpress.org/plugins/akismet/\">the Akismet plugin for WordPress</a> today. On another platform? Developing a unique app? Learn about the<a href=\"https://akismet.com/developers/\"> flexible Akismet API</a> to integrate it with your project. </p>\n\n\n\n<img width=\"1600\" height=\"699\" src=\"https://akismet455732288.files.wordpress.com/2024/02/image-12.png\" alt=\"Akismet in the WordPress plugin library\" class=\"wp-image-283770\" />\n\n\n\n<p>Enterprise companies can <a href=\"https://akismet.com/enterprise/\">reach out to the Akismet team</a> to get a custom solution just for them. </p>\n\n\n<h3 class=\"wp-block-heading\">Honeypots and reCAPTCHA</h3>\n\n<p>Two other common ways that companies can stop spambots are honeypots and CAPTCHA puzzles.</p>\n\n<p><a href=\"https://akismet.com/blog/what-is-a-honeypot/\">Honeypots</a> are set up like a trap, attempting to lure spambots to complete an invisible, unneeded field so that spam can be quickly identified. While real users do not see the invisible field, spambots are automatically scanning code for fields to complete and fall for the honeypot trap.</p>\n\n<p>Although honeypots are effective at blocking spambots targeting form completion, they do not effectively stop email scraping or other types of spambot activity.</p>\n\n\n<img width=\"1262\" height=\"356\" src=\"https://akismet455732288.files.wordpress.com/2024/02/image-13.png\" alt=\"example of a reCAPTCHA\" class=\"wp-image-283771\" />\n\n\n<p><a href=\"https://akismet.com/blog/do-captcha-and-recaptcha-protect-wordpress-sites-from-bots/\">reCAPTCHA puzzles</a> are familiar to nearly everyone, requiring that the user check certain boxes that contain specific images to prove that they’re human or complete other types of puzzles. CAPTCHA and reCAPTCHA puzzles are often frustrating because images can be difficult to decipher or even understand across cultures.</p>\n\n<p>Although a wide variety of other CAPTCHA alternatives have been developed in an effort to address these issues, they all still require user interaction and can be impossible to complete for those with various impairments.</p>\n\n<p>Since CAPTCHAs are often needed at key points in the customer journey — such as requesting a sales call or checkout points — they can create a negative user experience and significantly diminish conversion rates.</p>\n\n<h3 class=\"wp-block-heading\">Web application firewalls (WAFs)</h3>\n\n<p>Traditional web application firewalls (WAFs) were created to guard against things like SQL injections, cross‑site scripting, and session hijacking. However, they often fail to keep up with the evolution of bad actors, including those using spambots.</p>\n\n<p>While next‑generation firewalls (NGFW) tried to make headway in detecting new applications, they still use basic methods like simply blocking repetitive inquiries, identifying browsers, or blocking specific IP addresses. Many improvements rely on filters to identify malicious activity but are only somewhat effective at blocking threats. As bots advance, these NGFW also have trouble keeping up with more sophisticated activities.</p>\n\n\n<p>In addition, businesses often struggle with managing WAF policies that can be operationally complex, leaving patches undone and resulting in an increased number of vulnerabilities. </p>\n\n\n\n<h3 class=\"wp-block-heading\">IP blocking</h3>\n\n\n<p>Another proven method of stopping spambots is traditional IP blocking. Many IT departments have a list of IP addresses that have generated a great deal of malicious or spam activity in the past and can automatically block any traffic coming from those particular IP addresses.</p>\n\n<p>Although generally effective, this approach does not prevent more sophisticated spambot activity and could potentially block activity from a legitimate source. It’s limited in overall effectiveness and more manual to set up and manage.</p>\n\n<h3 class=\"wp-block-heading\">Confirmed opt‑in (COI) or double opt‑in (DOI)</h3>\n\n<p>Businesses can also use a confirmed opt‑in or a double opt‑in approach to stop spambots that are trying to sign up with fake email addresses. This process requires that new contacts be verified, requiring them to click on a link in an email sent immediately after they submit a form.</p>\n\n\n<img width=\"1420\" height=\"972\" src=\"https://akismet455732288.files.wordpress.com/2024/02/image-14.png\" alt=\"MailPoet email sign-up confirmation\" class=\"wp-image-283772\" />\n\n\n<p>Although this process can be somewhat effective, screening out fake sign‑ups, it only addresses spambots that are setting up false accounts. Other malicious system activity or sophisticated spambots may go undetected.</p>\n\n\n<p>In addition, the DOI process means extending the sign-up process. The more you require of prospects, the more likely some of them will abandon the sign-up process. </p>\n\n\n<p>In addition, the younger generation often doesn’t check email as frequently as older generations, which causes a bottleneck in your engagement or purchase process. Finally, some users may not confirm and therefore slip through the cracks for future marketing outreach.</p>\n\n\n<h3 class=\"wp-block-heading\">Multifactor authentication</h3>\n\n\n\n<p>A wide number of businesses now use multifactor authentication to provide an extra layer of security on their sites. This usually involves a user confirming their identity through more than one method, such as an email account or phone. </p>\n\n\n\n<img width=\"1600\" height=\"976\" src=\"https://akismet455732288.files.wordpress.com/2024/02/image-15.png\" alt=\"setting up two-factor authentication with WordPress.com\" class=\"wp-image-283773\" />\n\n\n<p>Although this can be very effective at ensuring that users are legitimate customers or prospects, it again adds another step in user engagement, potentially causing additional friction that can cause lost leads or abandonment of a checkout process.</p>\n\n<h2 class=\"wp-block-heading\">Akismet: Leading the charge in blocking spambots</h2>\n\n<p>While many solutions exist to help businesses block spambot activity, it’s clear that the number one choice is <a href=\"https://akismet.com/features/\">Akismet</a>. Its years of experience with blocking spam, coupled with powerful artificial intelligence and machine learning technology, make it the clear choice for a comprehensive, effective spambot blocking solution.</p>\n\n<p>More than 100 million websites agree, taking advantage of the cumulative knowledge that Akismet has gathered since 2005. With 99.99 percent effectiveness and an impressive track record of removing more than 500 billion pieces of spam from the internet, it’s hard to argue about the solution’s success.</p>\n\n<p>Most importantly, Akismet completes its job unbeknownst to your users and visitors. Prospects and customers can journey smoothly through your sales funnel without stopping to complete CAPTCHA puzzles or double opt‑in confirmations at inopportune times. This means a smoother engagement process and less friction, leading to happier users and a better reputation.</p>\n\n\n<p>With its advanced technology and comprehensive spam database residing in the cloud, Akismet doesn’t affect processing time, server activity, or loading speeds. This ensures that your site continues to operate quickly and effectively without diverting resources to spambot detection and removal activities. </p>\n\n\n<p>Finally, Akismet will continue learning into the future, which means that, even if spambot creators get more sophisticated, Akismet will be ready with a spambot blocking solution.</p>\n\n\n<p><a href=\"https://akismet.com/talk-to-sales/\">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, 21 Feb 2024 14:15:03 +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: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:65:\"Do The Woo Community: WordPress and WooCommerce 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=79129\";s: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://dothewoo.io/wordpress-and-woocommerce-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:396:\"<p>Hosts Tammie and Jonathan talk about WP Day at CloudFest this year and the increased visibility of WordPress and Woo at the event.</p>\n<p>>> The post <a href=\"https://dothewoo.io/wordpress-and-woocommerce-at-cloudfest-2024/\">WordPress and WooCommerce 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:\"Wed, 21 Feb 2024 10:50:25 +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: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:28:\"BuddyPress: BP Classic 1.4.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=333266\";s: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/02/bp-classic-1-4-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:1574:\"<p>Dear end users & site owners,</p>\n\n\n\n<p>Please note <a href=\"https://downloads.wordpress.org/plugin/bp-classic.1.4.0.zip\">BP Classic 1.4.0</a> is now available for upgrade/download. 1.4.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<p>Only 1 issue has been fixed: the <a href=\"https://wordpress.org/plugins/bbpress/\">bbPress</a> topics/replies pagination should now behave as expected with BuddyPress 12.0 & up (See <a href=\"https://github.com/buddypress/bp-classic/pull/44\">#44</a>)</p>\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, 21 Feb 2024 05:01: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: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: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:48:\"WPTavern: WP Tavern Launches Writer Hunger Games\";s: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=154148\";s: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:58:\"https://wptavern.com/wptavern-launches-writer-hunger-games\";s: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:3923:\"<div class=\"wp-block-group has-neutral-100-background-color has-background is-layout-constrained wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading\">tl;dr</h2>\n\n\n\n<p>Seven folx from the WordPress Community have been selected as finalists for two positions as writers for the Tavern.</p>\n\n\n\n<p>May the odds be ever in your favor.</p>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>If you’ve been around the Tavern for a while you’re probably aware that it has been without a full-time writer or two since December 2023. Back in November, the Tavern’s last standing writer, Sarah Gooding joined her predecessors Jeff Chandler and Justin Tadlock in announcing her departure. </p>\n\n\n\n<p>Matt Mullenweg later put the call out for those interested in becoming full-time writers. Hundreds applied and from that list, earlier this February, seven were chosen to participate in a public trial. </p>\n\n\n\n<p><s>Each travelled by train to a meeting where they were introduced to each other and then dropped into the middle of an arena with the only rule being to survive.</s></p>\n\n\n\n<p>It may feel a bit like the Hunger Games have come to WordPress. But, behind the scenes, it’s a ton of enthusiasm and collaboration. After all, it’s for a platform and community we are all passionate about.</p>\n\n\n\n<p>Hitting publish is stressful (at least for me), but, we’re excited about this chance. We’re eager to bring our unique views to Tavern readers and the wider WordPress community.</p>\n\n\n\n<p>Each person in the trial has two weeks with full access to the Tavern to create content. The trial contributors have not been given any restrictions on how much content they can contribute, the format of that content, or the subject matter of the content. </p>\n\n\n\n<p>Unlike the Hunger Games, we’re each other’s biggest fans and supporters as we go through this process. </p>\n\n\n\n<p>The availability of trial contributors varies so for about a month, each of the seven will have staggered start dates. You’ll see content from each appear over time as they begin their trials. </p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>So what’s it like day-to-day to run the Tavern?</strong></h2>\n\n\n\n<p>It’s everything you would imagine an industry journal would have. We’re collaborating in a private Slack channel, sharing ideas and figuring out how to create the content we’re passionate about. Early on the crew self-organized around a content calendar. </p>\n\n\n\n<p>We’re sharing article drafts for feedback from each other. Giving way to each other when we have similar ideas for articles. Challenging ideas and pushing each other to be better. All to create the best experience for Tavern readers. </p>\n\n\n\n<p>We’re still figuring things out. For example, we need to find the right images to use. We also need to reconnect the X/Twitter account so articles are broadcast from it. And, we need to clean up comments on existing articles. The day-to-day things that keep the Tavern humming along.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>We’re keen to engage with Tavern readers</strong></h2>\n\n\n\n<p>We’d love to hear your thoughts on what we’re creating. All of us are in the Make WordPress Slack so feel free to ping us with your thoughts and feedback. We’re keen to grow and improve throughout this process so if a story resonates with you (or not) we’d love to hear about it.</p>\n\n\n\n<p>This is a unique season for the Tavern. While eventually there will only be two primary voices, for now, there are seven. Seven different perspectives and lived experiences shaped by WordPress. Enjoy it, get stuck in and tell us what you think.</p>\n\n\n\n<p>We haven’t all gone public yet but as our content hits the Tavern’s pages, say hi, tell us <strong>your</strong> story and help us share the awesomeness of WordPress with others.</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, 20 Feb 2024 17:51:17 +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:\"James Giroux\";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:40:\"WordPress.org blog: WordPress 6.5 Beta 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=16955\";s: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-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:7631:\"<p>WordPress 6.5 Beta 2 is now ready for 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, it is recommended you evaluate Beta 2 on a test server and site.</p>\n\n\n\n<p>You can test WordPress 6.5 Beta 2 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-beta2.zip\">Beta 2 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-beta</code>2</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 2 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>. 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 more information.</p>\n\n\n\n<p class=\"is-style-default\"><strong>Catch up on what’s new in WordPress 6.5</strong>: <a href=\"https://wordpress.org/news/2024/02/wordpress-6-5-beta-1/\">Read the Beta 1 announcement</a> for details and highlights.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How to test this release</h2>\n\n\n\n<p>Your help testing the WordPress 6.5 Beta 2 version is key to ensuring everything in the release is the best it can be. While testing the upgrade process is essential, trying out new features is equally important. <a href=\"https://make.wordpress.org/test/2024/02/15/help-test-wordpress-6-5-beta-1/\">This detailed guide</a> will walk you through testing features in WordPress 6.5.</p>\n\n\n\n<p>If you encounter an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> of the support forums or directly to <a href=\"https://core.trac.wordpress.org/newticket\">WordPress Trac</a> if you are comfortable writing a reproducible bug report. 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? 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<h2 class=\"wp-block-heading\">Vulnerability bounty doubles during Beta 2</h2>\n\n\n\n<p>Between Beta 1, released on February 13, and the final Release Candidate (RC) scheduled for March 19, the <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> is doubled. 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\">Beta 2 updates and highlights</h2>\n\n\n\n<p>WordPress 6.5 Beta 2 contains more than 50 updates to the Editor since the Beta 1 release, including 40+ <a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=02%2F14%2F2024..02%2F19%2F2024&milestone=6.5&col=id&col=milestone&col=owner&col=type&col=priority&order=id\">tickets for WordPress core</a>.</p>\n\n\n\n<p>Each beta cycle focuses on bug fixes; more are on the way with your help through testing. You can browse the technical details for all issues addressed since Beta 1 using these links:</p>\n\n\n\n<ul>\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.5?since=2024-02-14&until=2024-02-20\">GitHub commits for 6.5</a> since February 14</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=02%2F14%2F2024..02%2F20%2F2024&milestone=6.5&col=id&col=milestone&col=owner&col=type&col=priority&order=id\">Closed Trac tickets</a> since February 14</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">A Beta 2 haiku</h2>\n\n\n\n<p>Help out with testing<br />Contribute! Make an impact<br />Let’s find all those bugs</p>\n\n\n\n<p><em>Thank you to the following contributors for collaborating on this post: <a href=\"https://profiles.wordpress.org/dansoschin/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>dansoschin</a></em>, <em><a href=\"https://profiles.wordpress.org/huzaifaalmesbah/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>huzaifaalmesbah</a></em>, <em><a href=\"https://profiles.wordpress.org/rajinsharwar/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>rajinsharwar</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>swissspidy</a>, <a href=\"https://profiles.wordpress.org/courane01/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>courane01</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, 20 Feb 2024 17:25: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: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: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:100:\"WPTavern: WordPress 2023 Survey: Block Editor on the Rise, Positive Feeling about Contributing Drops\";s: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=154125\";s: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://wptavern.com/wordpress-2023-survey-block-editor-on-the-rise-positive-feeling-about-contributing-drops\";s: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:7990:\"<p>The results of <a href=\"https://reporting.alchemer.com/r/738278_655bbaa5598b14.93675163\">the 2023 WordPress Annual Survey</a> are in, revealing a steady growth in the adoption of the Block Editor, along with a lukewarm response to upcoming Gutenberg enhancements.</p>\n\n\n\n<p>Automattic-sponsored contributor Dan Soschin <a href=\"https://wordpress.org/news/2024/02/2023-annual-survey-results-and-next-steps/\">posted a breakdown of the results</a>:</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p><em>“Overall, awareness and/or use of block-based features is up year over year, as well as resources such as Learn.WordPress.org. This reflects project-wide efforts to increase utilization of these respectively. However, positive sentiment about WordPress is down modestly, and more so among contributors.</em>“</p>\n</blockquote>\n\n\n\n<p><em>The data collected is used as one of many signals that inform</em> <a href=\"https://wordpress.org/about/roadmap/\"><em>the project’s road map</em></a><em> and areas of focus, both near and long-term.”</em></p>\n\n\n\n<p>A total of 3,922 people completed this year’s survey, an increase of 17% compared to 2022 but still lower than the goal set by the team. Interestingly, a new metric captured this year shows that approximately 11,153 viewed the survey without answering a question (more on that later).</p>\n\n\n\n\n<img width=\"500\" height=\"215\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2024/02/WP-survey-results_age-500x215.png\" alt=\"A chart showing the distribution of answers to question number 3 in the 2023 WordPress Survey, \" />Age distribution\n\n\n\n<img width=\"500\" height=\"215\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2024/02/WP-survey-results_how_many_years-500x215.png\" alt=\"A chart showing the distribution of answers to question number 8 in the 2023 WordPress Survey, \" />How many years have you been using WordPress?\n\n\n\n<img width=\"500\" height=\"215\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2024/02/WP-survey-results_blocks_gutenberg-500x215.png\" alt=\"A chart showing the distribution of answers to question number 9 in the 2023 WordPress Survey, \" for=\"for\" />Block or Classic Editor?\n\n\n\n\n<p>Below are a few interesting findings from the <a href=\"https://wptavern.com/wordpress-2019-survey-results-show-professionals-slow-to-adopt-block-editor-2020-survey-now-open\">slimmer</a>-than-usual <a href=\"https://wordpress.org/news/files/2024/02/2023-WordPress-Annual-Survey-Results-Deck.pdf\">54-page report (PDF)</a>:</p>\n\n\n\n<h2 class=\"wp-block-heading\">Key findings</h2>\n\n\n\n<ul>\n<li><strong>NPS</strong>, measuring responders’ willingness to recommend WordPress, is down, marking a continuous downward trend: 27.9 among contributors and 32 among non-contributors.</li>\n\n\n\n<li>Most responders use WordPress for <strong>business-related</strong> activities: 48.8% offer the service to clients, and 43.1% use it to run their business.</li>\n\n\n\n<li>The majority (39.9%) use the <strong>Block editor or Gutenberg</strong> plugin, 20.2% use the Classic editor, and 19.9% use both. These figures represent a steady rise in the adoption of the Block editor. However, this year, 12.3% of respondents chose the <em>Other</em> category (likely referring to site builders).</li>\n\n\n\n<li>As to their <strong>satisfaction</strong> with the Site Editor, 45.1% said it meets their needs for building websites.</li>\n\n\n\n<li>51.7% built websites for others, and 41.9% created a plugin, theme, style variation, or a block pattern.</li>\n\n\n\n<li>Some activities that saw a significant increase include consuming <strong>learning</strong> materials on <a href=\"https://learn.wordpress.org/\">learn.wordpress.org</a> and various types of <strong>contributions</strong> and involvement with the community: participated in a meetup/WordCamp, contributed to the platform, and joined the Making WordPress Slack.</li>\n\n\n\n<li>Seeing as most responders develop, design, or maintain WordPress websites, it’s good to see that 61.1% say they are <strong>familiar</strong> with Block-based themes and plugins.</li>\n\n\n\n<li>63.3% think <em>WordPress is as good as, or better than, other site builders and CMSs</em>, down from 68% in 2022. Interestingly, many also regularly use <strong>other</strong> blogging and newsletter tools to publish content, mainly Medium, Tumblr, and Blogger. The top reasons respondents preferred WordPress were open-source, familiarity, maturity, and cost.</li>\n\n\n\n<li>The figures above correspond with answers to the question, <em>What’s the best thing about WordPress?</em> where <strong>performance, scalability, and accessibility</strong> registered a huge spike while parameters like ease of use, flexibility, cost, and block themes dropped significantly.</li>\n\n\n\n<li>Ranking “essential plugins” out of the 20 most popular ones provides a glimpse into day-to-day use: Yoast SEO, Classic Editor, and WooCommerce were the top three, with <em>None of the above</em> coming fifth, Elementor Website Builder coming at 8th, and two plugins that enable post and page <strong>duplication</strong> closing the list. Gutenberg is absent.</li>\n\n\n\n<li>On the other hand, too many plugins were the primary cause of <strong>frustration</strong> (133% rise from 2022, with too many themes seeing a 72% rise), followed by dissatisfactory site editing, designing, configuring, and publishing experience. The cost complaints, meanwhile, are directed at <strong>hosting</strong> companies: 7% in 2023 vs. 3% in 2022.</li>\n\n\n\n<li>57.5% see phases 3 and 4 of the WordPress roadmap as beneficial for developers, creators, and publishers alike, with the rest either neutral or disagreeing. Performance, security, and developer resources were the top three areas responders wanted the project to focus on, with <strong>collaborative editing</strong> at the very bottom of the list.</li>\n\n\n\n<li>Finally, many had <strong>poor experiences</strong> when contributing to the community, with fewer people feeling welcome to participate in various ways. Asked <em>what prevents you from contributing more</em>, 35.3% cited bad experiences and not feeling safe, welcome, or appreciated.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Mapping the Road Ahead</h2>\n\n\n\n<p>After reading through the results, one can’t help but notice a certain disconnect between the people who use WordPress and those tasked with maintaining and leading it into the future.</p>\n\n\n\n<p>Responders appear less interested in new features than they are in optimizing core functionality and delivering a stable experience; many still find the Site Editor and blocks-based posts overwhelming, holding on to the Classic Editor plugin; and both audiences—extenders and end-users—crave guidance, training, and support.</p>\n\n\n\n<img width=\"1200\" height=\"515\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2024/02/WP-survey-results_site_editor.png\" alt=\"A chart showing the distribution of answers to question number 10 in the 2023 WordPress Survey, \" for=\"for\" />\n\n\n\n<p>Summarizing the next steps, Soschin mentioned the plan to replace or refine some of the questions “to ensure people continue to provide valuable insight into the project’s trends”.</p>\n\n\n\n<p>One possible way is to <a href=\"https://wptavern.com/one-month-left-to-take-the-2021-wordpress-annual-survey\">bring back open-ended questions that could</a> help the team better understand what matters to people.</p>\n\n\n\n<p>Looking at the high percentage of people who replied “<em>None of the above</em>” to several questions and the comments to <a href=\"https://wptavern.com/wordpress-opens-2023-annual-survey\">the post inviting WP Tavern readers</a> to participate in the survey, community members seem eager to share their opinions; they’re just frustrated with the format.</p>\n\n\n\n<p><strong>Have you participated in the latest annual survey? Share your experience in the comments.</strong></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, 20 Feb 2024 15:37:47 +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:\"Ronny Shani\";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:94:\"Do The Woo Community: From Woo Specialists to Full-Sevice Ecommerce Agency with Cody Landefeld\";s: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=79121\";s: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/from-woo-specialists-to-full-sevice-ecommerce-agency-with-cody-landefeld/\";s: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:442:\"<p>Cody shares insights on customer care, team investment, and the future of online shopping with AI\'s role in ecommerce.</p>\n<p>>> The post <a href=\"https://dothewoo.io/from-woo-specialists-to-full-sevice-ecommerce-agency-with-cody-landefeld/\">From Woo Specialists to Full-Sevice Ecommerce Agency with Cody Landefeld</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, 20 Feb 2024 11:44: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: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:99:\"WPTavern: Freenginx’s Stand Against Corporate Limits: Potentially A New Era for WordPress Hosting\";s: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=154099\";s: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:106:\"https://wptavern.com/freenginxs-stand-against-corporate-limits-potentially-a-new-era-for-wordpress-hosting\";s: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:3006:\"<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>The Latest</strong></h2>\n\n\n\n<p>In a recent development within the world of web servers, the highly regarded service <a href=\"https://en.wikipedia.org/wiki/Nginx\">Nginx</a> has undergone a significant transformation. Russian developer Maxim Dounin has made waves by announcing a new fork of the Nginx web server and caching proxy. The new fork is called <a href=\"https://freenginx.org/\"><strong>freenginx</strong></a>. This move is strategically aimed at steering clear of the corporate control wielded by <a href=\"https://en.wikipedia.org/wiki/F5,_Inc.\">F5</a>, the current owner of Ngnix.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading is-style-default\"><strong>What is Nginx</strong>?</h2>\n\n\n\n<p>For those of us who aren’t overly technical, Nginx is known for its versatility, serves as a robust web server, a reverse proxy, and offers formidable security features. It offers a broad range of applications which has made it a favorite among developers and IT professionals. The decision to fork Nginx comes as a response to concerns about corporate influence and the desire to maintain the open-source ethos that has been pivotal to its success.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>What role does Nginx play in WordPress hosting</strong>:</h2>\n\n\n\n<p>Given that approximately <a href=\"https://w3techs.com/technologies/details/ws-nginx\">34.1% of websites</a> rely on Nginx servers, this fork has potential repercussions, especially in the enterprise space and for those involved in hosting reselling. The future landscape of Nginx will undoubtedly be closely monitored, as the developments in this space could have a cascading impact on the digital infrastructure that supports a significant portion of the internet. </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>What’s next?</strong></h2>\n\n\n\n<p>In speaking with some of my contacts at a variety of WordPress hosting companies, the overall sentiment was both a wait-and-see approach along with some light concern and trepidation. One contact responded with, “If the fork takes and diverges it could make Nginx support a little harder.” Another added, “It will be interesting to see what happens and how the licensing changes. I suspect a lot of commercial hosts are on the commercial version but even that could be shaken up a bit, in the long term, with this Nginx [version] has been so steady for so long though that any change will raise eyebrows.” </p>\n\n\n\n<p>Of course there is the big looming question: How might this shake things up for commercial hosts in the long run? With the usual uncertainty that comes with change, hosting providers, developers, and businesses are keeping a close eye on the outcome. For those working in the web hosting industry, only time will tell to see what happens with this fork in the road. </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, 19 Feb 2024 21: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:11:\"Adam Silver\";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:76:\"WPTavern: Interactivity API Prepares for its Official Debut in WordPress 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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=154092\";s: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:87:\"https://wptavern.com/interactivity-api-prepares-for-its-official-debut-in-wordpress-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:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7120:\"<div class=\"wp-block-group has-neutral-100-background-color has-background is-layout-constrained wp-container-core-group-is-layout-5 wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading\">tl;dr</h2>\n\n\n\n<p>The Interactivity API is merging into WordPress 6.5. It revolutionizes site interactivity by standardizing the development of interactive elements. This makes it easier for developers and enhances user experiences. It enables dynamic interactions like shared data across blocks without reloading pages. This opens up new possibilities for developers, users and businesses alike. It could mark a significant milestone in WordPress’s evolution.</p>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>Today WordPress contributor Carlos Bravo <a href=\"https://make.wordpress.org/core/2024/02/19/merge-announcement-interactivity-api/\" target=\"_blank\" rel=\"noreferrer noopener\">officially announced</a> the merge of the Interactivity API into Core for WordPress 6.5. <a href=\"https://make.wordpress.org/core/2023/03/30/proposal-the-interactivity-api-a-better-developer-experience-in-building-interactive-blocks/\" target=\"_blank\" rel=\"noreferrer noopener\">Introduced last year</a>, the team behind the Interactivity API has been releasing builds through the <a href=\"https://github.com/WordPress/gutenberg/discussions/categories/interactivity-api\" target=\"_blank\" rel=\"noreferrer noopener\">Gutenberg plugin</a> in preparation for this pivotal moment.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>What is the Interactivity API?</strong></h2>\n\n\n\n<p>One of the challenges with interactivity in WordPress right now is that there is no set standard in how developers can approach it. Today, developers pick their tools. They define their approach to integrating with WordPress. They decide on inter-block communication. And, they make choices (and compromises) around frontend performance for every new project they deliver.</p>\n\n\n\n<p>The Interactivity API aims to solve these problems. It provides developers with an opinionated approach that standardizes building interactive elements. The hope is that this will make it easier to focus on <em>what</em> to build and not <em>how</em> to build it.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<img width=\"1084\" height=\"2048\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2024/02/standard-graph-1084x2048-1.png\" alt=\"Visual representation of the decision areas covered by the Interactivity API, for developers.\" class=\"wp-image-154093\" />From the <a href=\"https://make.wordpress.org/core/2023/03/30/proposal-the-interactivity-api-a-better-developer-experience-in-building-interactive-blocks/\">original proposal </a>post on Make WordPress Core..\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\"><strong>What does this mean for users?</strong></h2>\n\n\n\n<p>The team behind the Interactivity API use a movie website in their demo where they showcase some of the functionality that users may soon be able to enjoy. In particular is the way that multiple blocks can work together to share data. In the demo, clicking a heart button on movies in a list makes a heart counter go up. </p>\n\n\n\n<p>All of this is done instantly. It doesn’t reload the page and no developer or engineering team needs to dive deeply into layers of code.</p>\n\n\n\n<p>Imagine building a recipe website. You want a site visitor to build their shopping list with price estimates in their local currency. The Interactivity API would facilitate being able to create all of the dynamic elements using the Block Editor. It lets a list grow and the total cost change as a visitor adds and removes ingredients from their shopping list.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>What are the implications for developers?</strong></h2>\n\n\n\n<p>Beyond the code layer of the API, let’s take the shopping list example a step further. Let’s say the blocks needed to build it have been created by three different developers. The Interactivity API has standardized the way that blocks load and communicate with each other. It creates a consistent, performant user experience.</p>\n\n\n\n<p>The original proposal calls this composability and compatibility. It mentions a future state where interactive blocks can be combined and even nested in structures with defined behaviors.</p>\n\n\n\n<p>Users have a knack for making code do what they want. Not what it was intended for, ask any QA tester right after a launch. In the future, interactive blocks will work together. They won’t be limited by their original developer. Users will be able to create patterns and interactions that go beyond their original purpose.</p>\n\n\n\n<p>The Interactivity API and how it uses WordPress could be a pivotal moment in the Project’s history. It could create a new way of working with WordPress. </p>\n\n\n\n<p>Consider the concept of single-page applications (SPAs). Today SPAs are often complex, expensive and inaccessible to most users. The Interactivity API, once more developed, could lead to a whole new kind of application category built with WordPress. How exciting would it be to unlock these types of patterns for everyday users?</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>What are the implications for WordPress businesses?</strong></h2>\n\n\n\n<p>Everyday users will see the most impact from the Interactivity API. As blocks become more interoperable, the kinds of interactions that users can access will grow. Consequently, demand for more feature-rich or complex interactions may also grow.</p>\n\n\n\n<p>The Interactions API could unlock a whole new product category to monetize. It could lead to new partnerships as product businesses migrate their interactions to the block level. Think of the enterprise user who may be able to work with a suite of approved blocks. They could build performant, secure, and reliable applications in the stack and user interface they already know.</p>\n\n\n\n<p>This is likely only scratching the surface of what could be possible. But it is clear that for WordPress to continue to outpace its rivals, innovations like the Interactivity API will need to continue.</p>\n\n\n\n<div class=\"wp-block-group has-neutral-100-background-color has-background is-layout-constrained wp-container-core-group-is-layout-6 wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading\"><strong>Author’s Note</strong></h2>\n\n\n\n<p>I am not a developer so while I’ve tried my best to capture and communicate the Interactivity API and its implications, I could be wrong. If that’s the case, let me know in the comments and I’ll make the corrections. Also worth a listen is the latest <a href=\"https://wordpress.org/news/2024/02/episode-73-inside-the-interactivity-api/\"><strong>WordPress Briefing</strong> </a>where Josepha, Mario and Ryan discuss the Interactivity API.</p>\n\n\n\n<p>I’m curious about what you think. Am I totally off on this? Am I painting too ambitious a future state? Did I miss something glaringly obvious about the Interactivity API?</p>\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, 19 Feb 2024 19:42: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:12:\"James Giroux\";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:56:\"WPTavern: Look Who’s Back: jQuery 4.0.0 Is Now in Beta\";s: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=154059\";s: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://wptavern.com/look-whos-back-jquery-4-0-0-is-now-in-beta\";s: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:8095:\"<p>We weren’t here to report it in real-time, but on February 6, jQuery Core Team Lead Timmy Willison <a href=\"https://blog.jquery.com/2024/02/06/jquery-4-0-0-beta/\">announced</a> that jQuery 4.0.0 is now available in beta.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p><em>jQuery 4.0.0 has been in the works for a long time, but it is now ready for a beta release! There’s a lot to cover, and the team is excited to see it released. We’ve got bug fixes, performance improvements, and some breaking changes.</em></p>\n\n\n\n<p><em>We’ve trimmed legacy code, removed some previously-deprecated APIs, removed some internal-only parameters to public functions that were never documented, and dropped support for some “magic” behaviors that were overly complicated.</em></p>\n</blockquote>\n\n\n\n<p>The post includes an overview of the changes, starting with the highlight: dropping support for IE10 and older. The team planned to part with IE11 after Microsoft ended support in 2022 but <a href=\"https://github.com/jquery/jquery/pull/5077#issuecomment-1730205609\">eventually decided</a> to push this change to v5 to avoid any more blockers to the v4 release.</p>\n\n\n\n<p>The upcoming release uses ES modules and switches from RequireJS to Rollup for packaging. It also removes 13 deprecated functions that “were either always meant to be internal or ones that now have native equivalents in all supported browsers.”</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>78 Million Websites Use jQuery</strong></h2>\n\n\n\n<p>Adherence to modern browser behavior and specs is a common thread in the announcement post. Indeed, browsers have come a long way since January 2006, when jQuery was launched, Internet Explorer had a 90% market share, and front-end development was a constant struggle.</p>\n\n\n\n<p>Today, with <a href=\"https://caniuse.com/?search=es6\">99.84% browser support</a> for ES6, a slew of well-supported <a href=\"https://developer.mozilla.org/en-US/docs/Web/API\">Web APIs</a>, and robust upgrades to CSS—when we can run a full-blown <a href=\"https://wordpress.github.io/wordpress-playground/\">WordPress instance in the browser</a> using WebAssembly—do we still need <a href=\"https://bundlephobia.com/package/jquery@3.7.0\">an 85.1 kB</a> DOM manipulation library?</p>\n\n\n\n<p>Or, in <a href=\"https://www.reddit.com/r/javascript/comments/1al08pe/comment/kpi131o\">the words of an opinionated Redditor</a>:</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p><em>Look, jQuery was incredible and it changed JS in incredible ways. It made the JS developer experience incredible because it was so inventive. And the JS community and TC39 implemented so many things that jQ did incredible. It was one of the goals of jQ – set standards and improve the JS language. And it worked. And it’s no longer needed.</em></p>\n</blockquote>\n\n\n\n<p>Judging by online statistics, the answer is an unequivocal “YES!”. jQuery might be the uncool kid in the front-end neighborhood, but its market share dwarfs the hipper frameworks.</p>\n\n\n\n<p>Based on NPM, <a href=\"https://www.npmjs.com/package/jquery\">jQuery 3.7.1</a>, released in August 2023, boasts over 9 million weekly downloads and has more than 20k dependent packages.</p>\n\n\n\n<p>BuiltWith <a href=\"https://trends.builtwith.com/websitelist/jQuery\">indicates</a> that over 78 million websites use jQuery, while W3Techs <a href=\"https://w3techs.com/technologies/details/js-jquery\">reports</a> that “jQuery is used by 94.4% of all the websites whose JavaScript library we know. This is 77.1% of all websites.”</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>A Legacy Dependency</strong></h2>\n\n\n\n<p>Among the chief reasons for jQuery’s relentless popularity is being instrumental to the ecosystem. Namely, it’s bundled in WordPress Core and is part of numerous themes and plugins.</p>\n\n\n\n<p>WordPress’ adoption of React-based Gutenberg has lowered its dependency on jQuery. During a Developer Hours session hosted a week after Willison’s announcement, titled <a href=\"https://wordpress.tv/2024/02/13/developer-hours-javascript-for-modern-wordpress-development/\">JavaScript for modern WordPress development</a>, Automattic’s developer advocates Ryan Welcher and Nick Diego spent more than an hour diving into JS tools and techniques to build blocks and editor extensions; they didn’t once mention jQuery.</p>\n\n\n\n<p>In a <a href=\"https://make.wordpress.org/themes/2021/10/04/the-performance-impact-of-using-jquery-in-wordpress-themes/\">post published</a> in October 2021 on the Make Themes blog, core contributor Felix Arntz urged theme developers to move away from jQuery to improve performance.</p>\n\n\n\n<p>Still, a <a href=\"https://core.trac.wordpress.org/ticket/60478\">TRAC ticket opened</a> on the day of Willison’s announcement reported the news and enquired, “Is this something that wp core will be looking to implement?”. Andrew Ozz, Lead Developer at Automattic, replied, “Of course :)”</p>\n\n\n\n<p>With a 43% share of the CMS market, WordPress could be the serum of jQuery’s longevity.</p>\n\n\n\n<img width=\"500\" height=\"122\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2024/02/jQuery-logo-500x122.png\" alt=\"jQuery\'s logo and tagline: write less, do more\" class=\"wp-image-154072\" />\n\n\n\n<p>The last time WP Tavern <a href=\"https://wptavern.com/tag/jquery\">covered jQuery</a> was in 2020, when jQuery Migrate 1.4.1 was removed from WordPress 5.5, causing themes and plugins to fail.</p>\n\n\n\n<p>The WordPress Core team’s <a href=\"https://wordpress.org/plugins/enable-jquery-migrate-helper/\">Enable jQuery Migrate Helper</a> plugin—<a href=\"https://wptavern.com/enable-jquery-migrate-helper-plugin-passes-10k-active-installs\">launched</a> to tackle these problems—is still maintained and has 100k active installs. It also has some glaring reviews about how helpful it is. Why would people building WordPress websites in 2024 need to use a plugin designed “as a temporary solution, enabling the migration script for your site to give your plugin and theme authors some more time to update, and test, their code.”?</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>A Trailblazer that Moves the Web Forward</strong></h2>\n\n\n\n<p>Perhaps the answer lies in an alarming comment found on W3Techs. A third of the websites that use jQuery run a version older than 3.x (3.0.0 was released in June 2016).</p>\n\n\n\n<p>These results correlate with <a href=\"https://openjsf.org/blog/jquery-idc-research\">a smaller-scoped study</a> conducted by the OpenJS Foundation and IDC in November 2023. Out of 509 survey respondents, 89% confirmed they use jQuery, with 56% deploying older versions, some no longer maintained.</p>\n\n\n\n<p>Open-source and standardization expert Tobie Langel, <a href=\"https://www.w3.org/2023/03/secure-the-web-forward/papers.html#jquery\">speaking at</a> the W3C’s Secure the Web Forward workshop, believes “jQuery’s massive reach and longevity” puts it in a unique position: if securing jQuery means securing the web, then “Once again–and against all odds–jQuery can be a trailblazer and help move the web forward.”</p>\n\n\n\n<p>There’s already an ongoing effort: <a href=\"https://openssf.org/blog/2022/10/24/openssf-project-alpha-omega-invests-in-the-openjs-foundation-and-jquery-to-help-secure-the-consumer-web/\">In October 2022</a>, the <a href=\"https://openssf.org/community/alpha-omega/\">Open Source Security Foundation (OpenSSF) Project Alpha-Omega</a> awarded jQuery a $350k grant to “reduce potential security incidents for jQuery by helping modernize its consumers and its code.”</p>\n\n\n\n<p>Backed by industry giants like the Linux Foundation, Microsoft, Google, and Amazon, and part of the OpenJS Foundation supported by GoDaddy, IBM, Joyent, and the Sovereign Tech Fund, jQuery seems like it will get to live to see more than just another day.</p>\n\n\n\n<p><strong>How about you? When was the last time you started a script with </strong><em>$(function()</em><strong>?</strong></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, 19 Feb 2024 17:01:22 +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:\"Ronny Shani\";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:73:\"WordPress.org blog: WP Briefing: Episode 73: Inside the Interactivity API\";s: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=16942\";s: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:75:\"https://wordpress.org/news/2024/02/episode-73-inside-the-interactivity-api/\";s: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:35991:\"<p>In the latest WordPress Briefing, Josepha Haden Chomphosy discusses the Interactivity API, a new foundational tool that helps developers create memorable interactive front-end experiences. She is joined by special guests and sponsored contributors Ryan Welcher and Mario Santos, who share more about this impactful addition to the WordPress developer experience.</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 />Guest: <a href=\"https://profiles.wordpress.org/santosguillamot/\">Mario Santos</a><br />Guest: <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</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://www.npmjs.com/package/@wordpress/create-block-interactive-template\">Create block template for the Interactivity API</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/discussions/52906\">GitHub tracking issue changes in the API</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/tree/trunk/packages/interactivity/docs\">Interactivity API docs</a></li>\n\n\n\n<li><a href=\"https://wpmovies.dev/\">Interactivity API Movies demo</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/discussions/categories/interactivity-api\">Interactivity API GitHub discussions</a></li>\n\n\n\n<li><a href=\"https://www.youtube.com/c/ryanwelchercodes\">Ryan Welcher Codes</a></li>\n\n\n\n<li><strong>Small List of Big Things</strong>\n<ul>\n<li><a href=\"https://make.wordpress.org/docs/2024/02/01/online-monthly-docs-team-contributor-day-february-27-2024/\" target=\"_blank\" rel=\"noreferrer noopener\">Online monthly Docs Team Contributor Day</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2024/01/16/share-your-feedback-about-the-new-wordpress-events-page/\" target=\"_blank\" rel=\"noreferrer noopener\">Share your feedback about the new WordPress Events Page!</a> </li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/02/08/improving-block-development-documentation-2023-recap-and-a-look-ahead/\" target=\"_blank\" rel=\"noreferrer noopener\">Improving block development documentation: 2023 recap and a look ahead</a><br /></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-16942\"></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:29] (Intro music) </p>\n\n\n\n<p>[00:00:40] <strong>Josepha:</strong> I have with me today a couple of guests, Ryan Welcher and Mario Santos, who have joined me to talk about the Interactivity API. This is an API that we’ve been working on for quite a while, and it’s a fascinating thing. It’s really specifically user-facing in its functionality but makes a lot of work streamlined for everyday developers, whether you are building something for yourself, for your family, or for a client. This whole project probably is gonna really speak to you. </p>\n\n\n\n<p>[00:01:10] <strong>Josepha:</strong> Hi, guys, and welcome to the show. First-time guests, both of you. Right?</p>\n\n\n\n<p>[00:01:15] <strong>Ryan:</strong> Yes. First time for me.</p>\n\n\n\n<p>[00:01:17] <strong>Mario:</strong> Thanks for inviting us.</p>\n\n\n\n<p>[00:01:18] <strong>Josepha:</strong> Yeah. Well, why don’t you tell us a little bit about yourself, like your name, what you do with WordPress, how you contribute to the project, something like that?</p>\n\n\n\n<p>[00:01:27] <strong>Ryan:</strong> I can go first. My name is Ryan Welcher. I’m a developer advocate and sponsored by Automattic. Then, I contribute full-time to the WordPress project by creating documentation, doing live streams, creating videos, and just generally trying to be helpful in in the space to help engineers and extenders work with the various APIs in WordPress.</p>\n\n\n\n<p>[00:01:46] <strong>Josepha:</strong> I love the just generally trying to be helpful part. Mario, what about you?</p>\n\n\n\n<p>[00:01:52] <strong>Mario:</strong> He really is. He really does it.</p>\n\n\n\n<p>[00:01:54] <strong>Josepha:</strong> I know. </p>\n\n\n\n<p>[00:01:55] <strong>Mario:</strong> I’m Mario Santos. I’m also a sponsored contributor, and I’m more focused on the project management and developer. I consider myself a mix of both. Right now I’m working on projects that are focused on improving the developer experience especially. That can go from the Block API to the Interactivity API; that is the topic today.</p>\n\n\n\n<p>[00:02:16] <strong>Josepha:</strong> Very nice. Very nice. Just lots of helping that everyone’s trying to do. I think that’s a good thing.</p>\n\n\n\n<p>So, we’re talking about the Interactivity API today. And, Mario, I believe it was almost a year ago that you first put this proposal out into the WordPress project. Do you wanna tell us a little bit about just, like, where the idea of this came from? Like, I know it wasn’t originally called the Interactivity API, but, like, what was you said you do some a bit of product, a bit of development. Like, what was it about this idea that was so important to you?</p>\n\n\n\n<p>[00:02:48] <strong>Mario:</strong> Yeah. Sure. So, basically, well, the proposal came, like, one year ago, but it has been in the works, like, for many years, I would say. Just to give a bit more context, previously, before being a sponsored contributor, I was working at a startup called Frontity Framework, and we were building a React framework to enable rich user experiences on top of WordPress.</p>\n\n\n\n<p>[00:03:13] <strong>Mario:</strong> So basically, it was a framework for headless WordPress. And at some point, we became sponsored contributors, the idea was to bring those user experiences to those rich and cool websites that lead to WordPress. So, you don’t need an external framework to create them, and you can do that directly in WordPress. So that’s where the idea of the Interactivity API comes from. From there, we started exploring different possibilities and tailoring it more to WordPress to ensure it works with its APIs.</p>\n\n\n\n<p>And I think after many many months working on that, the Interactivity API is the result.</p>\n\n\n\n<p>[00:03:54] <strong>Josepha:</strong> I just wanted to note that you started that answer with, like, the proposal was about a year ago, but the work had been happening for a long time. I think that’s generally true, and it’s not something that we always really acknowledge. This happens with patents also. This is going to be a strange tangent, but this is how we do in in my brain. This is how my brain works. So frequently, you’ll see a brand new product, but the patent for it was, like, 30 years beforehand, like, way before you ever see anything. And I think that’s kinda how this works also with software development. Like, the idea, has been going for a long time.</p>\n\n\n\n<p>[00:04:27] <strong>Josepha:</strong> The problem was identified a long time ago. And by the time you see something that helps to solve the problem or bring a new set of features to you, like, you didn’t know, but it had been being worked on for, like, five years or something. And I think that’s such a fascinating thing. That’s always apparent to me, but I think it’s not really apparent for a lot of people in the, in I don’t know, who use software.</p>\n\n\n\n<p>I was gonna say in the space, quote, unquote, but that’s not even it. Like, it’s the people who are using software. We don’t know how long anything’s been under development. We just know that at some point, a magical thing appeared, and we get to use it. </p>\n\n\n\n<p>[00:05:03] <strong>Josepha:</strong> So speaking of the problems that we have identified that we’re trying to solve with this. Like, was there an inherent problem that you all were trying to solve as you were coming up with this idea around the Interactivity API itself?</p>\n\n\n\n<p>[00:05:16] <strong>Mario:</strong> I would say that trying to summarize it, it covers many things, but the main problem was that creating those kinds of interactions in the client was kind of difficult. You had to manage many things many tools, and each developer could come up with different solutions, and maybe they don’t combine well together. So, the idea is to provide an extended way so developers don’t have to take care of many things. They just have to take care of the interactions they wanna create. And ensuring that it works well with the WordPress way, it works well with the block system, and any block created with this Interactivity API can communicate with each other. You can combine those blocks, and you are not gonna encounter any problem. So, I would say that the main issue we were trying to solve is that there wasn’t a standard solution. There were different approaches taken by different developers, and that could create some issues. So, until now, Gutenberg has been mainly focused on the editor side and how blocks are created. And this is a first attempt to to cover the part of the front end, the interactions that users may want to create in the front end.</p>\n\n\n\n<p>[00:06:31] <strong>Ryan:</strong> It solves a ton of problems. But, I mean, coming from someone like, I have a fair amount of agency experience. I’ve been, you know, you’re working on large projects. And every time someone solves a problem, they solve it slightly differently. And that’s problematic because you switch teams or, you know, someone else picks up the code base, and all of a sudden, now they have to learn your custom system that’s slightly different from the one that I built last week and the one that, you know, someone else built two weeks earlier. And this takes the guesswork out. It takes the sort of the plumbing out of the equation. One of the reasons I really loves working with WordPress when I started working with WordPress was that when I was building for clients, I didn’t have to worry about building the CMS. I didn’t have to worry about building a menu system or figuring out how to handle media.</p>\n\n\n\n<p>[00:07:10] <strong>Ryan:</strong> I just had to do the things that that client was paying me to do. Like, I just had to make their site look the way that they wanted it to. And with the Interactivity API, I think there’s a bit of that where I don’t have to worry about figuring out how am I gonna get all these pieces to talk to each other on the front end. It’s all there. I just have to connect the dots, and it makes it very, very simple.</p>\n\n\n\n<p>I’m building the site right now for a workshop that I’m gonna be giving a WordCamp Asia, which is a a shameless plug. Sorry.</p>\n\n\n\n<p>[00:07:33] <strong>Josepha:</strong> Coming up so fast, y’all. WordCamp Asia is, like, two weeks away.</p>\n\n\n\n<p>[00:07:37] <strong>Ryan:</strong> I’m so excited. I have so much work to do.</p>\n\n\n\n<p>But I’ve built an entire voting system on a website where people can pick what we’re going to be talking about in my workshop, and I built it in the Interactivity API, and it took me, you know, probably five hours. And that’s me trying to learn some things and mess around with it. And to do that without the Interactivity API would have probably been an entire React-based, you know, completely outside of WordPress. I would have loaded one thing on the page and had it build out my whole application, and now I’m doing it with blocks and I’m doing it with a block theme. So if I wanna move those blocks around. I can move the blocks around. I can change anything that I wanna change inside of WordPress the way I would normally, and all that in interactivity just still works. And that’s It’s awesome. I just I love it. I can’t like, the Interactivity API, not my website. </p>\n\n\n\n<p>[00:08:26] <strong>Josepha:</strong> But also both. Like, it can be both. </p>\n\n\n\n<p>[00:08:28] <strong>Mario:</strong> I wanted to say that I think it’s a great point. I like to think about it like having the best of both worlds. Right now, we have modern frameworks like React, Vue that are used to create these cool websites.</p>\n\n\n\n<p>And I think the Interactivity API plus WordPress brings everything together. Like, you can create those cool user experiences while keeping the full power of WordPress, its management system, the Block editor, and to be honest, I don’t think there’s anything like that out there. Like having the best of both both worlds because we are still working with blocks, and that’s amazing. </p>\n\n\n\n<p>[00:09:04] <strong>Ryan:</strong> Given that it’s still, it’s not even been released yet. Like, it’s coming very soon. But.</p>\n\n\n\n<p>[00:09:08] <strong>Josepha:</strong> Yeah. This is all still in the Gutenberg plugin. So, like, if you don’t know what we’re talking about, get the Gutenberg plugin.</p>\n\n\n\n<p>[00:09:16] <strong>Ryan:</strong> But just how mature the API is now, considering it is still kind of not even fully released, it’s only gonna get better? I just think it’s awesome.</p>\n\n\n\n<p>So, kudos to Mario and your team for doing all this stuff.</p>\n\n\n\n<p>[00:09:28] <strong>Mario:</strong> Thank you. Kudos to everyone involved.</p>\n\n\n\n<p>[00:09:32] <strong>Josepha:</strong> So, I’ve a question that I think probably, Ryan, you can start with, but then also probably, Mario, you’re gonna have some opinions on also. In this conversation so far, we’ve done a lot of, like, when you want to have these interactions and also when you want to have these cool experiences. For folks who actually do not know what the Interactivity API is yet, and they don’t know what we’re talking about when we say these interactions like, what exactly are we talking about from a user perspective?</p>\n\n\n\n<p>Like, what types of things will users be able to see when they are experiencing the Interactivity API’s features and functionality.</p>\n\n\n\n<p>[00:10:07] <strong>Ryan:</strong> I think it’s a great question. From a user standpoint, it’ll just look like your regular website, I think. Depending on what you’re doing. So, like the interactions that we’re talking about is when you’re in the browser and you wanna click a button and expand something, for example, or you wanna click an image and have the lightbox pop-up, which is in core now, that’s driven by the Interactivity API, but these interactions are basically when a user wants to interact with something, what it does. That’s a really generic way of saying it. </p>\n\n\n\n<p>[00:10:34] <strong>Josepha:</strong> Our current favorite example and, Ryan, it sounds like you also have another example. But our current favorite example is like a movie collection site, you know? And so, like, when we’re talking about what the Interactivity API is going to power, it’s things like, when you favorite a series of movies, and then you can, and it just updates that on the fly, and you’ll be able to in essentially real-time as instant as reasonably possible based on your computer and stuff.</p>\n\n\n\n<p>[00:11:03] <strong>Josepha:</strong> Like, then look at your list of things that you favorited or things like that. Like, for folks who don’t understand interactive site like, all of us know that that, like, if you get on a site, you have interacted with it. But when we’re talking about Interactivity API, we’re talking about types of direct actions users can take. Right? </p>\n\n\n\n<p>[00:11:19] <strong>Mario:</strong> I would say yes.</p>\n\n\n\n<p>They are just only triggered by some actions. It could be scrolling, clicking, or, or whatever. But, it can go from a simple example like drop down or a popover to more complex things like the movies demo, where you can navigate and the page is not reloading, and that allows you to play a trailer. It starts in a pop-up, and you can keep navigating through different pages, and the trailer keeps playing without reloading. Another example could be instant search; like you start typing the search, and it directly updates the list of films, in this case, that are shown, those kinds of things that happen In the browser. </p>\n\n\n\n<p>[00:12:00] <strong>Josepha:</strong> And Ryan said you, you said that you, like, built a whole survey system, A whole polling system. </p>\n\n\n\n<p>[00:12:06] <strong>Ryan:</strong> Yeah, a voting system. So there’s a series of buttons, each one representing a certain topic, and people can vote, and it tallies the amount. So each, I’m calling them recipes, has amount of time associated with it, and then so you vote until you run out of time, at which point, like in its tracking it all, and it’s showing you how much time you voted, how much is left, and once you’ve run out of time it blurs like it disables all of the voting buttons so you can’t add more because you run out of time.</p>\n\n\n\n<p>[00:12:30] <strong>Ryan:</strong> So if you remove one, you can add again. It’s very, very powerful. And, like, before the Interactivity API, you would have to have, I would have built that whole thing in React, and it would have been one single application that just get loaded on a page. And I just think it’s amazing. And, like the, the ability to create what are called, like, single page applications or what have always sort of been called SPAs or single page applications where you’re not reloading the browser every single time you click on a link.</p>\n\n\n\n<p>You have to do some things to make that work, but that’s just available to you and in WordPress. That’s amazing. I just think that’s so neat. I mean, it’s already powering things like the Query Loop block has the ability to move pagination without reloading the page, which is, sounds like a sort of a like a okay, great, like sort of, you know, mundane thing but imagine you had two or three different query loops sitting on your homepage and you wanted to be able to paginate through each one and not refresh the page. That’s a fantastic user experience that now is just enabled and otherwise was not possible prior to the Interactivity API.</p>\n\n\n\n<p>[00:13:28] <strong>Josepha:</strong> I feel like the Query Loop block was, like, a three-year project four years ago. And I had forgotten about it, which is surprising because I was so concerned with it when we were working directly on it all the time. But yeah. Yeah. That’s exactly the kind of example. </p>\n\n\n\n<p>So we’ve talked about kind of the user thing and people who are gonna build stuff for clients. But, like, if you’re a contributor and you want to figure out more about either how to use this or how to expand on what is already there.</p>\n\n\n\n<p>[00:14:01] <strong>Josepha:</strong> We already talked about how it’s in the Gutenberg plugin. It’s kind of experimental over there. But, like, do you all have like, good first bugs? Things that can be worked on in there? Or is there, like, an experiment zone where people can just be like, this is what I tried with the Interactivity API until it broke? How do people work with that?</p>\n\n\n\n<p>[00:14:20] <strong>Mario:</strong> I would like to clarify first, it’s right now, it’s private in, it’s a private API in WordPress core in 6.4, And it’s public in Gutenberg, but it’s gonna be a public API already in WordPress 6.5. So, yes. Anyone can start testing it.</p>\n\n\n\n<p>The best way to get involved is first sharing what interactions you want to see. I mean, everyone has different ideas, and we will love to know the interactions that people want to create using the Interactivity API, so that would be the first step. Then, test it, create your own blocks or site, and send feedback what do you like what you don’t like. Raise issues, and for that, we are mainly using GitHub. We created a new category in GitHub in the Gutenberg plugin discussions, and we try to to keep everything there.</p>\n\n\n\n<p>[00:15:13] <strong>Mario:</strong> So if you have any questions any feedback, you can share it there. You can also find more discussions about the road map, the change log, many things that are going on right now. And, yeah, I would say those are the ways of getting involved, and I can also expect, maybe Ryan can tell you more here, to start working more on tutorials or videos or whatever. And for me, personally, I would love to see the community working on that as well.</p>\n\n\n\n<p>[00:15:43] <strong>Ryan:</strong> Yeah. I can, yeah. I think that from a contributor standpoint, especially those who are trying to get into contributing, because, I mean, it’s not not complicated. Let’s put it that way, like the Interactivity API. And that’s not meaning to be a barrier to anyone, but a great place to start is documentation. A great place to start is going through those docs and making sure they’re up to date and, you know, saying, oh, well, that’s supposed to do this, so let me go try that. And if it works, great. If it doesn’t, you know, file a bug, update the documentation, that’s a great way to get started. It’s gonna familiarize yourself with the code base and what it’s supposed to do. And then, sort of, just through osmosis, you’ll start to pick up more about it. And for anyone starting to contribute to the WordPress project in general, I would say starting with documentation or unit testing is a really, really great way to kinda, dip your toe in the water and not feel too frustrated. And tutorials and demos and show us what you’re building. We wanna see it. I mean, send it to me, and I will show everyone that I know.</p>\n\n\n\n<p>[00:16:40] <strong>Ryan:</strong> I mean, we wanna see what what people are building with it and because, you know, just like WordPress, I always use this example, but, like, people used to hack WordPress until we got a hook added for that particular thing that they were adding. So, if we don’t know what people are building or wanting to build with it, we can’t make those things happen. So knowing what people are building, how they’re building, and what they can’t build, what they’re running into, what issues they’re running into is the best way to contribute. So, so people smarter than me can build it for you. </p>\n\n\n\n<p>[00:17:08] <strong>Josepha:</strong> I love that call out, frankly.</p>\n\n\n\n<p>So there’s, you know, the theory of tech adoption. And for things like the Interactivity API where we’re still kind of in the early adopter phase like, Ryan, you’re an early adopter. You’re doing everything you think you want to be able to do until it breaks. And, like, I love, like, test it till it fails as a concept of how to get involved in something because, like, you’re just experimenting, and we encourage experimentation in open source and in open source software and certainly in WordPress. And so, like, it is an unusual thing to think of, like, the best way that I can give back to this project, that I can contribute to this project and make sure that it continues to succeed long term is by using it until the wheels fall off and then tell people what made the wheels fall off.</p>\n\n\n\n<p>Like, that is a change in thought, But you’re right. Like, it’s a very old school open source idea to just get in there and see where it breaks, and tell us. That’s it. That’s all we need. And I love it.</p>\n\n\n\n<p>[00:18:08] <strong>Josepha:</strong> But I just passed my 9-year anniversary being a sponsored contributor, and I was in WordPress for a little bit before it. And so, like, I’m officially the old guard of us, and so the fact that I’m, like, so excited about the fact that people are gonna come in and break Mario’s stuff. Mario, don’t be scared. It’s how it works. But also, like, I do find that very exciting.</p>\n\n\n\n<p>[00:18:31] <strong>Mario:</strong> I’m willing to see how people break things; that’s what we need. I totally agree with your reasoning.</p>\n\n\n\n<p>[00:18:38] <strong>Josepha:</strong> Exactly. So I do have kind of, just, like, a final question for y’all. If there were one thing that you wanted the people who are listening to the WordPress Briefing to know about the Interactivity API, like a hidden gem, a little secret trick. Like, what would it be?</p>\n\n\n\n<p>[00:18:57] <strong>Mario:</strong> For me, the most exciting part of the Interactivity API is the functionality the client-side navigation enables because there are many, many things there. And I’m sure that there are many things we haven’t thought about yet, and the community will come up with some ideas and that would be amazing.</p>\n\n\n\n<p>[00:19:17] <strong>Ryan:</strong> For me, the thing is, I love how integrated it is with WordPress, and I know a lot of thought has gone into that without getting too into the weeds. The reasons the decisions that were made were made was so all the hooks and filters and all that goodness that we’ve had for 20 years is still gonna work. And with the HTML API, the tag processor stuff that’s going on behind the scenes, it’s just so cool. It works so well with WordPress. It just works and that’s probably it for me.</p>\n\n\n\n<p>When I work with it, I’m not having to do any weird janky filtering or stuff that, like, you know, the things that I want to do are not hindered by the Interactivity API. The rather, I’m able to do more things because of it.</p>\n\n\n\n<p>[00:19:58] <strong>Mario:</strong> I prefer Ryan’s answer.</p>\n\n\n\n<p>[00:20:00] <strong>Mario:</strong> It’s something really important and it’s something we usually take for granted that it just works with WordPress APIs and the Block Editor, but if you think more about it, it’s amazing. Like, It’s what makes it really powerful, I I believe.</p>\n\n\n\n<p>[00:20:15] <strong>Josepha:</strong> For what it’s worth, I think that’s true for a lot of, like, the R&D type things that we’re working on in the project right now. Right? Across Our ecosystem, like WP Playground. It is mind-boggling how progressive that is as a concept, and we currently have, like, you know, 25 ideas about what we could do with it, and we’re currently working on, like, five because we’ve got two and a half developers on it or something.</p>\n\n\n\n<p>But, like, the expectation that it will just work is there for everybody who has, is not part of the R&D process, but for everyone else who’s, like, been watching its development over time, shocking. Shocking that it works at all. Not because it wasn’t supposed to work, but because, like, if someone had asked you five years ago if it was gonna be possible to run WordPress development environments locally and then also just export it and import it into whatever host you want. Like, without a host, without a server, we would all think that you were nuts. </p>\n\n\n\n<p>[00:21:22] <strong>Josepha:</strong> Amazing what’s happening there and, like, some of the things that we’re seeing, people who are, like, researching with AI in the WordPress space doing? Equally shocking. All of these things. Like, had you said anything to me about it five years ago, I’d be like, well, that is a mystery. So, every once in a while, I do have wild ideas about things that I wish we could do with our software. And so yesterday, I went and looked at a prototype for something that someone built based on a wish that I had in 2019. In 2019, I was like, you can play Skyrim on an Amazon Dot using just your voice. So like, why can’t we build a website?</p>\n\n\n\n<p>[00:22:01] <strong>Josepha:</strong> And then in 2021, someone prototyped that for me. It was ridiculous. It was very bad. It was hilarious. But, also, like, it took 35 minutes to create a ‘Hello world’ page, which was ridiculous.</p>\n\n\n\n<p>And now, like, what we’re looking at, the research that I keep seeing from that AI space is people saying, like, I’m gonna put in a plain text prompt. I need a website as a yoga instructor who also makes custom hats. Right? And then, like, poof. You have this thing that kinda looks like a website with your basic functions and features using the blocks that we have created for WordPress. Like it’s fascinating how far it’s come. And that’s in 2021. It was literally impossible the last time that I was talking about it with anyone, equally literally impossible. Everyone’s like, plain language prompts for stuff, like that is just a pipe dream. Get away from us.</p>\n\n\n\n<p>And now I keep seeing, like, these demos of the research, and it’s not as far away as we all thought it was. For all these things, Playground, Interactivity API, The AI research is being done. Like, we’re just a walking R&D group over here in WordPress, and I love it. It’s fascinating. We’re just making the impossible possible every day, and I think that’s really cool.</p>\n\n\n\n<p>[00:23:16] <strong>Ryan:</strong> So cool.</p>\n\n\n\n<p>[00:23:18] <strong>Josepha:</strong> Sorry. I got really sidetracked. Do y’all have anything that you wanted to be sure to share about either the Interactivity API or anything that’s coming up? Something you wanna make that our listeners know? </p>\n\n\n\n<p>[00:23:29] <strong>Mario:</strong> I would just like to emphasize that we love feedback. Please share your feedback. If you test it, yeah, if you think it’s bad feedback, share it with us as well.</p>\n\n\n\n<p>That’s especially the feedback we like. I don’t like this part. That’s great. We we want to know because the idea is that it serves all purposes for this kind of interactions. </p>\n\n\n\n<p>That nothing new, but I would like to emphasize that part.</p>\n\n\n\n<p>[00:23:56] <strong>Josepha:</strong> You know what? There’s nothing new under the sun. It’s fine. You’re good. You should always tell people what you need.</p>\n\n\n\n<p>[00:24:01] <strong>Ryan:</strong> If you’re interested in getting started with the Interactivity API and just don’t have any idea where to begin, there’s actually a pack there. There’s a Create Block template. So the Create Block package allows you to to quickly scaffold blocks.</p>\n\n\n\n<p>And there’s a template that’s part of the Gutenberg repository. It’s been published on it and NPM. And it will scaffold a very simple block out for you and it’ll give you, it’ll show you all the plumbing and how all the pieces work together. So, I think that’s a fantastic place to get started. It’s a very simple block. It just basically shows and hides a message, but it’s all done via the Interactivity API, but it’s a really, really great sort of, like, like, ‘Hello world’ style. I’m gonna shamelessly self-promote myself at WordCamp Asia. I’ll be at WordCamp Asia this year doing a workshop where I will be doing some stuff with your Interactivity API. But, if you’re there and you wanna chat more about the Interactivity API, I am all ears, and I love talking about this stuff.</p>\n\n\n\n<p>[00:24:51] <strong>Josepha:</strong> Cool. Ryan, Mario thank you so much for joining me today. This has been a wonderful conversation.</p>\n\n\n\n<p>[00:24:58] <strong>Ryan:</strong> Thank you.</p>\n\n\n\n<p>[00:24:58] <strong>Mario:</strong> Thank you.</p>\n\n\n\n<p>[00:25:01] <strong>Josepha:</strong> So I hope that you all find that whole project as fascinating as I find it. The Interactivity API is, I know, something that we’ve kind of been talking about for a while. It showed up specifically in State of the Word, and it’s hard to understand how important, how vital that work is going to be until you really get your hands on it.</p>\n\n\n\n<p>So I recommend you get in there. You take a look at it. I think also Ryan has a few live streams that he does, and he’s planning on a couple for the Interactivity API coming up. And so just keep an eye out for all of that as we go. </p>\n\n\n\n<p>[00:25:37] (Music interlude)</p>\n\n\n\n<p>[00:25:49] <strong>Josepha:</strong> Now that brings us to our small list of big things.</p>\n\n\n\n<p>Today, it’s a bunch of feedback and documentation. So, first things first. Did you know that the Documentation Team holds an online monthly Contributor Day on the fourth Tuesday of every month. It’s just an online docs day, and I love it. So, the next one that’s coming up is February 27th. We’re looking for folks to help. So show up, figure out how to get some docs done, and make the WordPress project easier to follow, one bit of documentation at a time. </p>\n\n\n\n<p>[00:26:16] <strong>Josepha:</strong> The next thing that I have is a request for feedback. So, we announced in December that we have a new centralized WordPress events landing page on WordPress.org, and we wanted to give more visibility to all kinds of WordPress events across the globe. But as always, we really could use your feedback about what is useful for you, what you had hoped to see, what you didn’t see. So, leave your comments with any relevant feedback about how you would improve those pages and the text on it. If you’re missing anything relevant, if there are ideas that you have for what could be there, all ideas are welcome. </p>\n\n\n\n<p>And then, the third thing that I have on our list today is another documentation thing. So, over the last year, a group of contributors have been working to improve the block development onboarding experience within the Block Editor handbook. That contains over 400 published pages, and the effort in 2023 to kind of overhaul that and make it easier was just the beginning. So, it’s a daunting task. It’s big. It’s complex, but improving documentation is one of the easiest ways to contribute to the WordPress project, especially If there are just quick fixes like typos or formatting. Feedback on the existing content, such as the new block tutorial, is invaluable. And so, if you have not taken a look at those yet, wander over to the show notes, click a link or two, take a look, get some feedback to us. </p>\n\n\n\n<p>[00:27:41] <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 like 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 WPBriefing@WordPress.org. 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:28:09] (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, 19 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: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:129:\"Gutenberg Times: Vids on data views, image aspect ratio and synched pattern overrides, modern JS and more — Weekend Edition 285\";s: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=27401\";s: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:134:\"https://gutenbergtimes.com/vids-on-data-views-image-aspect-ratio-and-synched-pattern-overrides-modern-js-and-more-weekend-edition-285/\";s: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:20563:\"<p>Hey folks, this edition has scooped up some cool videos for you! No surprise there, since everyone’s buzzing with excitement over the fresh features rolling out in WordPress 6.5 now that Beta 1 has made its grand entrance.</p>\n\n\n\n<p></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/vids-on-data-views-image-aspect-ratio-and-synched-pattern-overrides-modern-js-and-more-weekend-edition-285/#0-word-press-release-information\">Developing Gutenberg and WordPress</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/vids-on-data-views-image-aspect-ratio-and-synched-pattern-overrides-modern-js-and-more-weekend-edition-285/#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/vids-on-data-views-image-aspect-ratio-and-synched-pattern-overrides-modern-js-and-more-weekend-edition-285/#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/vids-on-data-views-image-aspect-ratio-and-synched-pattern-overrides-modern-js-and-more-weekend-edition-285/#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/vids-on-data-views-image-aspect-ratio-and-synched-pattern-overrides-modern-js-and-more-weekend-edition-285/#developer-hours\">Developer Hours</a><ol><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/vids-on-data-views-image-aspect-ratio-and-synched-pattern-overrides-modern-js-and-more-weekend-edition-285/#upcoming-developer-hours\">Upcoming Developer Hours </a></li></ol></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><a href=\"https://wordpress.org/news/2024/02/wordpress-6-5-beta-1/\"><strong>WordPress 6.5 Beta 1</strong></a> is now available for testing. The release post offers four ways to start testing this new version. </p>\n\n\n\n<p><strong><a href=\"https://twitter.com/Glekler\">Olga Gleckler</a></strong> posted for the test team <a href=\"https://make.wordpress.org/test/2024/02/15/help-test-wordpress-6-5-beta-1/\"><strong>Help test WordPress 6.5 Beta 1</strong></a></p>\n\n\n\n<p><strong>Damon Cook</strong> of WPEngine <a href=\"https://twitter.com/dcook/status/1757522542267404749\">tweeted </a>a link to a blueprint you can download and add to your LocalWP instance. More details are available in Cook’s blog post <a href=\"https://wpengine.com/builders/beta-testing-wordpress-local-blueprints/\"><strong>Beta Testing WordPress with Local Blueprints</strong></a></p>\n\n\n\n<p><strong>InstaWP</strong> also <a href=\"https://twitter.com/insta_wp/status/1757693127157051393\">tweeted </a>a link to spin-up a test site with the beta version. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Release lead, Maggie Cabrera, published the release post on <a href=\"https://make.wordpress.org/core/2024/02/14/whats-new-in-gutenberg-17-7-14th-february/\"><strong>What’s new in Gutenberg 17.7? (14th February)</strong></a>. She highlighted: </p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2024/02/14/whats-new-in-gutenberg-17-7-14th-february/#shadow-support\">Shadow support for more blocks</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/02/14/whats-new-in-gutenberg-17-7-14th-february/#data-views\">Data views enhancements </a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/02/14/whats-new-in-gutenberg-17-7-14th-february/#refined-link-control\">Refined Link Control UI </a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2024/02/14/whats-new-in-gutenberg-17-7-14th-february/#font-library\">Making Font Library ready for Core</a></li>\n</ul>\n\n\n\n<p><strong>Tammie Lister</strong> and I will discuss the last two Gutenberg versions 17.6 and 17.7 in our upcoming Gutenberg Changelog recording for episode 96, happening next week. Stay tuned. You want to subscribe to the podcast on your favorite podcast app. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Joen Asmussen</strong> posted a new <a href=\"https://make.wordpress.org/design/2024/02/12/design-share-jan-29-feb-9/\"><strong>Design Share: Jan 29-Feb 9</strong></a> and shows off the work of the WordPress design team: of the last two weeks: </p>\n\n\n\n<ul>\n<li>WordPress.org polished nav</li>\n\n\n\n<li>Font Stacks</li>\n\n\n\n<li>Discussion: <a href=\"https://github.com/WordPress/gutenberg/pull/58685\">Concerning Placeholders</a> – designers among you might have an opinion to share</li>\n\n\n\n<li>Summary polish</li>\n\n\n\n<li>Revoking Google Fonts access</li>\n\n\n\n<li>Openverse dark mode</li>\n</ul>\n\n\n\n<p>Each item’s given a quick rundown so you can jump straight into the conversation spots. Drop your thoughts and join the chat!</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-69cab3cf77ae7eea1b9e89a501b514a4\">🎙️ Latest episode: <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-96/\">Gutenberg Changelog #96 – Gutenberg plugins versions 17.6 and 17.7, Mega Menus, Interactivity API and WordPress 6.5</a> with special guest Tammie Lister </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><strong>Tammie Lister</strong> published again more Editor Tips this week:</p>\n\n\n\n<ul>\n<li><a href=\"https://editortips.com/control-visibility-of-comments-on-a-post-template/\">Control visibility of comments on a post template</a></li>\n\n\n\n<li><a href=\"https://editortips.com/reorder-navigation-in-the-navigation-section-of-the-editor/\">Reorder navigation in the navigation section of the editor</a></li>\n\n\n\n<li><a href=\"https://editortips.com/clear-customizations-on-a-template-party/\">Clear customizations on a template party</a></li>\n\n\n\n<li><a href=\"https://editortips.com/use-black-and-white-duotone/\">Use black and white duotone</a></li>\n\n\n\n<li><a href=\"https://editortips.com/select-multiple-blocks-and-group/\">Select multiple blocks and group</a></li>\n\n\n\n<li><a href=\"https://editortips.com/quick-access-transforms-in-site-editor/\">Quick access transforms in site editor</a></li>\n</ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Anne McCarthy</strong> is on a roll again, creating awesome videos. This week’s video is about the <a href=\"https://www.youtube.com/watch?v=4aLngyrXuVc\"><strong>New powerful views to make your own in WordPress 6.5 (and a taste of phase 3)</strong></a>. The latest updates give you a new and improved way to view and rearrange the different parts of your website, like pages and designs, with ease. Now, with just a few clicks, you can choose how to see everything and decide what details you want to be visible. Think of it as organizing your workspace in a way that’s best for you.</p>\n\n\n\n<p>These new tools are also preparing for more cool features to come in the future. Currently, these changes are only available for the website editing section, kind of like a test run. This allows people to try them out and give their thoughts, which helps decide how to introduce these helpful tools to other parts of the website-building process later on.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Jamie Marsland</strong>, PootlePress, seems <a href=\"https://www.youtube.com/watch?v=QpUz5IIKlpw\"><strong>Something small but HUGE is coming to WordPress 6.5</strong></a>. I would rather not spoil the clickbait :_) </p>\n\n\n\n\n<p class=\"has-small-font-size\">(Click on the arrow next to the word Spoiler to review the big little secret.)</p>\n\n\n\nSpoiler\n<p>Marsland is showing the difference between 6.4 and 6.5 with the handling of background image in the cover block when downsizing to mobile. You can now set the aspect ratio. </p>\n\n\n\n\n\n<p></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Inspired by the article <a href=\"https://gutenbergtimes.com/pattern-overrides-an-early-review/\">Synced Pattern Overrides – an early review</a>, Matt Medeiros posted a video <a href=\"https://www.youtube.com/watch?v=VGw3aNIwTNw\"><strong>New in WordPress 6.5: Synced Pattern Overrides </strong></a>walking his audience through the blog post and zero’d in on the business aspect of it if you are building sites for others. “Synced Pattern Overrides takes using Patterns to a new level, especially when you’re collaborating with others on your WordPress website. Patterns make it easy to design a collection of blocks to use across your website. In WordPress 6.5, you’ll be able to assign individual blocks to allow users to override, when using synced patterns.”, he wrote in the description.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Anne McCarthy</strong> also created a stand-alone video about the Synced Patterns Overrides: <a href=\"https://www.youtube.com/watch?v=q53XXJdZXtY\"><strong>Explore a game changing feature for synced patterns in WordPress 6.5</strong></a>. </p>\n\n\n\n<p>This video goes through a new feature coming to synced patterns in WordPress 6.5 that allows you to set on a block by block basis the ability to customize the content of an individual instance while keeping the overall layout intact. </p>\n\n\n\n<p>Want to modify the layout of every instance? Go for it. Want to reset an individual instance to the original so you can start over? Easy. <br />Currently, this only works with the Heading, Button, Paragraph, and Image blocks. <a href=\"https://www.youtube.com/redirect?event=video_description&redir_token=QUFFLUhqazJFdHItTGVXdDV6R3drWGhjX0lqSXdZUW5LQXxBQ3Jtc0tuM01XVmplSEk2Si1KTU1ZaWpTa1lYdFc2NjkyV2pqZ1JBQmZzZl9JVDV1aTNKaFNBdGktd3F5ZlBlUmt2YTVBMzFFQjliUDRCakpzMTVBblFtdi1vUURka0tIak40b1F2T3lnSzRFNV96R1RwbVZrMA&q=https%3A%2F%2Fgithub.com%2FWordPress%2Fgutenberg%2Fdiscussions%2F57937&v=q53XXJdZXtY\">Join the discussion</a> around how you’d like to see this feature evolve beyond WordPress 6.5</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><a href=\"https://twitter.com/elliottrichmond\">Elliot Richmond</a></strong> recorded a YouTube Video to help fellow developer to understand <a href=\"https://www.youtube.com/watch?v=uR2Q2Pn_zSU\"><strong>Block Theme Development. </strong></a>“Block themes simplify this process allowing developers to create fairly simple HTML themes, lowering the barrier to entry for WordPress enthusiasts, and also adds the benefit of using a block-based approach to building websites through the full site editing experience.” he wrote in the description. </p>\n\n\n\n\n<p>Hey there! Check out the latest <strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\">“Keeping up with Gutenberg – Index 2024”</a></strong> where you’ll find a fresh, up-to-date list of all the posts from the teams working hard on Gutenberg. We’re talking Design, Theme Review, Core Editor, and more, from January 2024 onwards. I’ve been keeping tabs on everything just for you.</p>\n\n\n\n<p>Want to take a walk down memory lane? No problem! You can revisit the old days with these links: <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\"><strong>2020</strong></a>, <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2021/\"><strong>2021</strong></a>, <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2022/\"><strong>2022</strong></a>, and <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2023\"><strong>2023</strong></a>. Have fun diving in!</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 her post <a href=\"https://greyd.io/the-challenges-of-developing-with-wp-blocks-and-gutenberg/\"><strong>Development challenges with WP blocks and Gutenberg</strong></a>, <strong>Anne-Mieke Bovelet</strong> interviewed Jakob Trost about the complexities and learning experiences of dealing with challenges such as unfiltered HTML, the navigation block and global styles.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Woo 8.6 has been released and brings, among other things, <a href=\"https://developer.woo.com/2024/02/15/woocommerce-8-6-product-blocks-order-attribution-updates/\"><strong>Product Blocks & Order Attribution Updates</strong></a>. <em>Nigel Stevenson</em> highlights </p>\n\n\n\n<ul>\n<li>New block style for the Product Details block</li>\n\n\n\n<li>Six new collections added to the Product Collection Block</li>\n\n\n\n<li>Featured products in the New Product Form</li>\n\n\n\n<li>New important notices for Legacy REST API users</li>\n\n\n\n<li>Improvements to debug logging</li>\n\n\n\n<li>Bringing back classic notice templates for classic themes</li>\n</ul>\n\n\n\n<p>On that last item, <strong>Niels Lange </strong>published a <a href=\"https://developer.woo.com/2024/02/16/tutorial-overriding-notice-templates/\"><strong>Tutorial: Overriding notice templates</strong></a> on the Woo Developer Blog. He covers the topic for both, classic themes as well as block themes. </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 video<strong>, </strong><a href=\"https://www.youtube.com/watch?v=80r2ZVIvh_s\"><strong>Using Core Data and Sharing Context across WordPress Blocks</strong></a>, <strong>Brian Coords </strong>covers how to use the WordPress Core Data package to communicate across blocks. “We get pretty deep into the weeds to understand tools like useSelect, useDispatch, block context, block filters, and more.” <a href=\"https://www.briancoords.com/using-core-data-and-sharing-context-across-wordpress-blocks/\">The transcript</a> is available on his website. </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/DeryckOE\"><strong>Deryck Oñate</strong></a> shared in his post <a href=\"https://deryckoe.com/how-to-create-a-dynamic-block-in-wordpress/\"><strong>“How to create a Dynamic Block in WordPress”</strong></a> the steps on creating a custom block to read external information and render it on the front end of a website. He covered how to use the create-block scaffolding tool to start a dynamic block and shared the PHP, CSS, and JavaScript code on how to query an external API and display the results in the editor screen and on the front end. </p>\n\n\n\n<p><strong>Ryan Welcher</strong> has a quick tip for you as YouTube Short: <a href=\"https://www.youtube.com/shorts/QcWQTPSWuzw\"><strong>Creating a plugin with multiple blocks</strong></a>, and tells you how to get this accomplished with the create-block scaffolding tool and wp-scripts package. </p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"developer-hours\">Developer Hours</h3>\n\n\n\n<p>The recording of this week’s Developer Hours on <a href=\"https://www.youtube.com/watch?v=c3Uphamlb3g\"><strong>JavaScript for modern WordPress development</strong></a> is now available on YouTube. In this one-hour session, <strong>Ryan Welcher</strong> and <strong>Nick Diego</strong> explored how JavaScript is used in modern WordPress development. Whether you’re just beginning your WordPress journey, or if you’re already familiar with development and looking to stay updated with the latest techniques, this Developer hours equips you with the knowledge and practical tools to effectively build your own custom blocks and Editor extensions. The shared resources are <a href=\"https://docs.google.com/document/d/14hfp9Pe2bEzRTQLcoYTcmuD5WshIs6BS40O_UeDkqvA/edit#heading=h.a8y4vaifoh0v\">available on this Google Doc.</a></p>\n\n\n\n<a href=\"https://www.youtube.com/watch?v=c3Uphamlb3g\"><img width=\"600\" height=\"338\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/02/Dev-Hrs-Javascript.webp?resize=600%2C338&ssl=1\" alt=\"\" class=\"wp-image-27439\" /></a>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"upcoming-developer-hours\">Upcoming Developer Hours </h4>\n\n\n\n<p>Save the date for the next Developer Hours. Some are still working on but join the WordPress Online Learning Meetup group to receive notifications of newly added events. </p>\n\n\n\n<ul>\n<li><strong>February 27 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></li>\n\n\n\n<li>Save the date:<strong> March 12,</strong> Developer Hours: Interactivity API</li>\n\n\n\n<li>Save the date: <strong>March 26</strong>, Developer Hours: Block Hooks</li>\n</ul>\n\n\n\n<a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/298634463/\"><img width=\"600\" height=\"338\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/02/Feb-27-Dev-Hours.webp?resize=600%2C338&ssl=1\" alt=\"\" class=\"wp-image-27437\" /></a>\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 also available via <a href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\">WordPress Playground</a>. There is no need for a test site locally or on a server. Have you been using it? <a href=\"mailto:pauli@gutenbergtimes.com\">Email me </a>with your experience</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-center has-small-font-size\"><em>Questions? Suggestions? Ideas? </em><br /><em>Don’t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or</em><br /><em> send me a message on WordPress Slack or Twitter @bph</em>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"has-text-align-center has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, <br />send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</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:</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 <br />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, 17 Feb 2024 01: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: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: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:59:\"WPTavern: Bricks 1.9.6.1 Patches Critical RCE Vulnerability\";s: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=153925\";s: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:70:\"https://wptavern.com/bricks-1-9-6-1-patches-critical-rce-vulnerability\";s: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:2782:\"<p>First disclosed by security researcher Calvin Alkan of<a href=\"https://snicco.io/vulnerability-disclosure/bricks/unauthenticated-rce-in-bricks-1-9-6\"> snicco</a>, the vulnerability impacts all versions of Bricks Builder before version 1.9.6.1. Identified as a Remote Code Execution (RCE) flaw, it poses a critical security risk, allowing attackers to potentially gain unauthorized control over websites running on an affected version of Bricks.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What is Bricks?</h2>\n\n\n\n<p><a href=\"https://bricksbuilder.io/\">Bricks</a> or Bricks Builder is a visual site builder that allows users to create web pages on WordPress without using code through their drag-and-drop interface. Unlike other similar products in the WordPress ecosystem which deliver functionality through plugins, the <a href=\"https://wptavern.com/bricks-laying-down-a-foundation-in-the-wordpress-page-builder-market\">Bricks Builder</a> uses the theme functionality as it’s way of delivering features to users.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Understanding RCE Vulnerabilities</h2>\n\n\n\n<p>RCE vulnerabilities are among the most critical types of security flaws. They allow attackers to execute arbitrary code on a website from a remote location, allowing them to control the site, access confidential data, distribute malware, and more.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Timeline of the Patch</h2>\n\n\n\n<p>The vulnerability disclosure timeline is commendable for its efficiency. The flaw was reported to Bricks by security research team snicco on February 10, 2024, marking the start of a swift and effective response. Bricks acknowledged the issue on the same day and, by February 13, had released the patch (1.9.6.1) following snicco’s recommendations. </p>\n\n\n\n<h2 class=\"wp-block-heading\">Update Highly Recommended</h2>\n\n\n\n<p><a href=\"https://www.wordfence.com/threat-intel/vulnerabilities/wordpress-themes/bricks/bricks-196-unauthenticated-remote-code-execution#:~:text=The%20Bricks%20theme%20for%20WordPress,execute%20code%20on%20the%20server.\">Wordfence</a> has labelled the severity of this vulnerability a 9.8 out of 10 while <a href=\"https://patchstack.com/database/vulnerability/bricks/wordpress-bricks-theme-1-9-6-unauthenticated-remote-code-execution-rce-vulnerability\">Patchstack</a> has labelled it a 10 out 10, marking it a critical update for website owners using Bricks. Users are urged to update their installations immediately to protect their sites from potential exploits.</p>\n\n\n\n<p>If you would like to learn more about how this security vulnerability was discovered, <a href=\"https://www.youtube.com/watch?v=Y_0ghjPXh5U\">Calvin Alkan will be joining Remkus de Vries</a> on his show for a discussion on this and other related security topics.</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, 16 Feb 2024 19:52: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:12:\"James Giroux\";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:80:\"WPTavern: EU Regulatory Success Prompts Open-Source CMS Leaders to Form Alliance\";s: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=153912\";s: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:91:\"https://wptavern.com/eu-regulatory-success-prompts-open-source-cms-leaders-to-form-alliance\";s: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:7372:\"<div class=\"wp-block-group has-neutral-100-background-color has-background is-layout-constrained wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading\">tl;dr</h2>\n\n\n\n<p>The Open Web Alliance is a formalization of the more loose Inter-CMS Working Group that recently scored a huge regulatory win by changing the language in the EU’s Cyber Resilience Act. Moving forward, the organization hopes to promote open-source projects and the cause of the open web to legislators around the world. </p>\n\n\n\n<p>For those of us in WordPress, regulatory oversight is probably a future we can anticipate. If we want to remain competitive in the enterprise/government space, we’ll need to figure out how to be more proactive at compliance and security and get better at sharing the positive open-source narrative.</p>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>The regulatory landscape that the WordPress community finds itself in today is vastly different from where we’ve been. Governments are accelerating their regulatory oversight of technology and introducing new legislation regularly to try and catch up with the pace of innovation. </p>\n\n\n\n<p>In Europe recently we’ve seen two landmark pieces of legislation, the Digital Markets Act (DMA) and the proposed Cyber Resilience Act (CRA). While both have created news in technology circles it is the CRA that has been <a href=\"https://wordpress.org/news/2023/08/concerns-over-the-european-unions-cyber-resilience-act-cra/\">of particular concern to the WordPress community</a> and other open-source projects. </p>\n\n\n\n<p>In an <a href=\"https://wordpress.org/news/files/2023/08/Open_Letter_on_the_Significance_of_Free_and_Open_Source_Software_in_the_EU_s_Proposed_Cyber_Resilience_Act.pdf\">open letter to EU legislators in July 2023</a>, the leaders of WordPress, Drupal, Joomla, and TYPO3 highlighted the risks to open-source and began a collaborative effort called the Inter-CMS Working Group to bring about significant change to the wording proposed in the CRA.</p>\n\n\n\n<h2 class=\"wp-block-heading\">The Impact of Collaborative Advocacy</h2>\n\n\n\n<p>In early December, after several months of dialogue, investigation and negotiation, the EU parliament <a href=\"https://data.consilium.europa.eu/doc/document/ST-17000-2023-INIT/EN/pdf\">released an updated draft of the legislation</a> that looks to have resolved many of the primary concerns raised by open-source communities. </p>\n\n\n\n<p>The revised Act makes a concerted effort to ensure that the regulations are practical and do not hinder the collaborative spirit or the ways of working that open-source projects like WordPress rely on.</p>\n\n\n\n<p>With the success of amending the CRA as a foundation to build on, the four open-source communities represented in the Inter-CMS Working Group recently <a href=\"https://www.drupal.org/association/blog/drupal-association-co-founds-the-open-website-alliance\">established the Open Web Alliance</a>.</p>\n\n\n\n<p>This Alliance, <a href=\"https://typo3.org/fileadmin/t3o_common_storage/documents/press_releases/2024-02_Open_Website_Alliance/Open_Website_Alliance_Charter.pdf\">now formalized with a charter</a>, represents a collective commitment to furthering the education about and advocacy of open-source benefits and principles. </p>\n\n\n\n<div class=\"wp-block-group is-layout-constrained wp-container-core-group-is-layout-8 wp-block-group-is-layout-constrained\">\n<img width=\"1880\" height=\"1253\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2024/02/pexels-photo-2871654.jpeg\" alt=\"Reichstag building in Berlin, Germany.\" class=\"wp-image-153916\" />Photo by Federico Orlandi on <a href=\"https://www.pexels.com/photo/white-and-brown-concrete-building-2871654/\" rel=\"nofollow\">Pexels.com</a>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">The Future of the Open Web Alliance</h2>\n\n\n\n<p>The Open Web Alliance aims to promote and defend the rights of open-source projects, aspiring to create a better web. It emphasizes encouraging the use of open-source software, sharing best practices, and supporting third-party open-source projects. </p>\n\n\n\n<p>This collaborative body, while not a legal entity, signifies a structured approach to ensuring open-source software remains a vibrant and integral part of the digital landscape.</p>\n\n\n\n<p>Moving forward, the presence of the Open Web Alliance could be a game-changer in how open-source communities navigate regulatory challenges and advocate for policies that recognize and support the unique nature of open-source development. </p>\n\n\n\n<p>Its charter underscores a commitment to openness, trust, and quality, offering a platform for open-source CMS projects to collaborate more effectively.</p>\n\n\n\n<p>This transition toward a more formalized alliance underscores the WordPress community’s role not just in advocacy, but in shaping a future where open-source principles are acknowledged and protected in the global digital policy arena. </p>\n\n\n\n<p>The Open Web Alliance’s foundation and its charter reflect a mature, strategic approach to ensuring that the ethos of open-source software continues to thrive amidst an evolving regulatory landscape.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Navigating A Regulatory Future: Implications for WordPress Businesses</h2>\n\n\n\n<p>The recent developments around the CRA and the active role of the (now) Open Web Alliance highlight a broader trend: the regulatory landscape impacting open-source software is evolving. </p>\n\n\n\n<p>For WordPress businesses, the amendments to the CRA represent a momentary sigh of relief, but the horizon suggests that regulatory challenges will persist.</p>\n\n\n\n<p>From a business perspective, the future willingness of enterprises and government entities to adopt open-source software may hinge on how effectively the community can navigate these regulations. </p>\n\n\n\n<p>The Open Web Alliance’s efforts to advocate for open-source principles–emphasizing security, reliability, and openness–become crucial in this context. </p>\n\n\n\n<p>It’s also worth considering that the relationship dynamics between government entities, enterprises, and open-source vendors are likely to evolve. A failure to leverage open-source software due to regulatory or compliance concerns could limit innovation and flexibility for governments and businesses alike. </p>\n\n\n\n<p>For the WordPress ecosystem, this underscores the importance of supporting initiatives like the Open Web Alliance, ensuring that open-source software remains a viable, attractive option for all users, regardless of the regulatory climate.</p>\n\n\n\n<p>By focusing on education, advocacy, and the development of compliance tools, the WordPress community can help mitigate potential reservations from enterprise and government sectors. </p>\n\n\n\n<p>This proactive stance not only defends the community’s interests but also promotes the fundamental advantages of open-source software in fostering innovation, security, and a more inclusive digital future.</p>\n\n\n\n<div class=\"wp-block-group has-neutral-100-background-color has-background is-layout-constrained wp-block-group-is-layout-constrained\">\n<p>What do you think? Is this just a dodged bullet of government over-reach or the beginning of a new more regulated future? How do you think businesses and contributors should respond?</p>\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, 16 Feb 2024 16:54:51 +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:\"James Giroux\";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:26:\"Matt: On StellarWP 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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=111567\";s: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:43:\"https://ma.tt/2024/02/on-stellarwp-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:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:574:\"<p>I’m still doing some podcasts as sabbatical-Matt, especially with the WordPress community which for me isn’t really work, it’s building relationships in our community of practice. If you know me, I can wax poetic about WordPress for hours! It’s what I do for fun. <a href=\"https://stellarwp.com/podcast/special-episode-with-matt-mullenweg/\">Here’s my first post-sabbatical interview with Michelle Frechette</a>. Another unusual thing about this interview is I was quarantining with Covid!</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:\"Fri, 16 Feb 2024 16: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: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:74:\"Do The Woo Community: WooBits, a Plethora of WooCommerce Tips and Insights\";s: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=79114\";s: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:54:\"https://dothewoo.io/woobits-woocommerce-builders-tips/\";s: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:377:\"<p>WooBits, a end of the week show that highlights concise and useful WooCommerce tips for builders and businesses.</p>\n<p>>> The post <a href=\"https://dothewoo.io/woobits-woocommerce-builders-tips/\">WooBits, a Plethora of WooCommerce Tips and Insights</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, 16 Feb 2024 10:18: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: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:102:\"Do The Woo Community: Email Marketing for Woo and WordPress Builders and Businesses with Greg Zakowicz\";s: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=79106\";s: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/email-marketing-tips-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:511:\"<p>Discover the latest insights in e-commerce and email marketing with Greg Zakowicz, an Omnisend expert. Learn about automation, AI\'s role, and essential tips for successful engagement on Woo Biz Chat</p>\n<p>>> The post <a href=\"https://dothewoo.io/email-marketing-tips-for-woo-and-wordpress-businesses/\">Email Marketing for Woo and WordPress Builders and Businesses with Greg Zakowicz</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, 15 Feb 2024 10: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: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:61:\"WordPress.org blog: 2023 Annual Survey Results and Next Steps\";s: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=16915\";s: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:77:\"https://wordpress.org/news/2024/02/2023-annual-survey-results-and-next-steps/\";s: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:7753:\"<p>Each year, WordPress seeks to collect high-level data about trends and themes across the vast ecosystem of users, site builders, extenders, and contributors to help inform decision-making and provide valuable feedback on the project’s status. </p>\n\n\n\n<p>For 2023, the survey process was updated to enhance accessibility, usability, analysis, and multilingual support. Additionally, a few questions were replaced or updated to ensure the survey captures relevant data on current and future WordPress topics.</p>\n\n\n\n<p>The data collected is used as one of many signals that inform the project’s road map and areas of focus, both near and long-term.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Highlights from 2023</h2>\n\n\n\n<p>Overall, awareness and/or use of block-based features is up year over year, as well as resources such as Learn.WordPress.org. This reflects project-wide efforts to increase utilization of these respectively. However, positive sentiment about WordPress is down modestly, and more so among contributors. The analysis of the annual survey highlights certain areas that could benefit from increased attention in 2024.</p>\n\n\n\n<p>Here are the highlights split into three parts: logistics, general trends, and contributor sentiment.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Logistics</h3>\n\n\n\n<ul>\n<li>Completions were up 17% in 2023, though short of a goal to double them, despite increased promotion and partnership with some hosting partners.</li>\n\n\n\n<li>The Polyglots team translated the survey from English into 9 different languages, the most ever for the survey.</li>\n\n\n\n<li>Debuted a new platform, Alchemer, for improved accessibility, usability, data collection, administration, and analysis. </li>\n\n\n\n<li>The completion rate increased again from last year’s high of 63% to 79% in 2023, proving that investing some time in the new platform and clarifying wording was well worth it.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">General trends</h3>\n\n\n\n<ul>\n<li>NPS* was 30.1 overall, with contributors at 27.9 and non-contributors at 32. The NPS has trended downward since 2021, when it was 45. </li>\n\n\n\n<li>60% of respondents indicate usage of Gutenberg, 8% are unsure, and 12% use something other than Gutenberg and/or the Classic Editor. This is up from 2022 (54%).</li>\n\n\n\n<li>45% of respondents indicate that the WordPress Site Editor meets their site-building needs, 26% are indifferent, and 29% disagree.</li>\n\n\n\n<li>61% of respondents indicate familiarity with block themes and plugins. While this question was not asked previously, in 2022, 53% said they had used blocks<br />“In the new site editor.”</li>\n\n\n\n<li>Security, performance, and stability were the top three critical areas respondents considered when building their website, plugin, theme, or style variation.</li>\n\n\n\n<li>63% agree that WordPress is as good or better than other CMSs, down from 68% in 2022</li>\n\n\n\n<li>Respondents indicated that the best things about WordPress are that it is open source, has ample plugin options, incorporates good customization, is easy to use, and offers flexibility. This is similar to 2022.</li>\n\n\n\n<li>Limitless configurations, performance, scalability, accessibility, integration, hosting, and support all saw 100% or more increases compared to 2022 regarding favorite things about WordPress.</li>\n\n\n\n<li>Respondents cited “too many plugins,” “the site editing experience,” “security,” and “performance” as the top four worst things about WordPress. Most interestingly, though, 16% indicated that none of the 20 topics were terrible, and there was a 43% decrease in the number of people indicating that “site editing is difficult to learn.”</li>\n\n\n\n<li>Search engines and YouTube continue to be the two most common resources for finding information about WordPress, while those writing about WordPress, in general, saw a sharp decline year over year.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Contributor sentiment</h3>\n\n\n\n<ul>\n<li>58% of self-identified contributors to WordPress said they agree with the project’s roadmap plans for “Phase 3” and “Phase 4” as a good plan to enhance the WordPress experience for developers, creators, and publishers alike.</li>\n\n\n\n<li>While about one-third of respondents indicated they contribute to the WordPress project, only about half knew how to get involved, knew about WordCamps and meetups, understood the difference between WordPress.org and WordPress.com, and knew the benefits of open source. </li>\n\n\n\n<li>Of 22 topics, the distribution of the top three things that WordPress needs to focus on from the perspective of contributors was broad, with only a 13.5% raw percentage point (1350 basis points) difference between performance (18.6%) in first position and collaborative editing (5.1%) in 22nd position. This shows a need for more consensus among contributors regarding where to focus resources and/or illustrates that the project has many essential elements with passionate supporters.</li>\n\n\n\n<li>Fewer contributors had a positive experience in 2023 (55%) versus 2022 (64%).</li>\n\n\n\n<li>Similarly, the feeling of being welcome in the WordPress community among contributors decreased to 57% versus 64% in 2022.</li>\n\n\n\n<li>Furthermore, contributors feel appropriately recognized less in 2023 (46%) than in 2022 (51%).</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Bringing it all together</h2>\n\n\n\n<p>The 2023 annual WordPress survey participation and results highlight the possibility of survey burnout within the WordPress community and some declining overall satisfaction among contributors. There is an opportunity to increase awareness regarding critical initiatives such as WordCamps and other resources for WordPress users and contributors alike and to increase messaging on improvements made within the project to the CMS.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What’s planned for 2024</h2>\n\n\n\n<p>In the next iteration of the survey, the plan is to improve the survey’s questions further to ensure they continue to provide valuable insight into the project’s trends. This means some questions will be replaced while others might be refined.</p>\n\n\n\n<p>Additionally, plans are being explored to distribute and promote the survey at each of the three annual flagship WordCamps (Europe, U.S., and Asia). This would be in contrast to a single yearly survey. More exploration on this topic will take place in the months to come.</p>\n\n\n\n<p><a href=\"https://wordpress.org/news/files/2024/02/2023-WordPress-Annual-Survey-Results-Deck.pdf\">View the 2023 Slide Deck</a></p>\n\n\n\n<p><a href=\"https://reporting.alchemer.com/r/738278_655bbaa5598b14.93675163\">View a web-based version of the results.</a> <em>Note that this link may expire in the future.</em></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>*<a href=\"https://www.surveymonkey.com/mp/net-promoter-score-calculation\">What is NPS?</a> Simply put, NPS is a KPI organizations can use to measure how likely it’s [users, clients, members] are to recommend a product or service. It can serve as a general indicator of brand strength and affinity. Most organizations use NPS, which can be used to benchmark an organization in an industry against a set of peers. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p><em>Thank you to <a href=\"https://profiles.wordpress.org/dansoschin/\">@dansoschin</a> for the analysis and editorial support. Thanks also to <a href=\"https://profiles.wordpress.org/angelasjin\">@angelasjin</a>, <a href=\"https://profiles.wordpress.org/eidolonnight\">@eidolonnight</a>, and <a href=\"https://profiles.wordpress.org/cbringmann\">@cbringmann</a> for their reviews and final edits.</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:\"Wed, 14 Feb 2024 19:46: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:11:\"Dan Soschin\";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: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: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: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:23087:\"<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 <a href=\"https://make.wordpress.org/core/2024/02/14/whats-new-in-gutenberg-17-7-14th-february/\">17.7</a>.</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 your 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>, <a href=\"https://profiles.wordpress.org/ellatrix/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>ellatrix</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: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: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: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: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: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: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:24460:\"<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-69cab3cf77ae7eea1b9e89a501b514a4\">🎙️ Latest episode: <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-96/\">Gutenberg Changelog #96 – Gutenberg plugins versions 17.6 and 17.7, Mega Menus, Interactivity API and WordPress 6.5</a> with special guest Tammie Lister </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>Synched 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:pauli@gutenbergtimes.com\">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:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</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: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: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:40;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/CleanShot-2024-02-09-at-09.50.57@2x-249x300.png\" 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: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: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: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: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:43;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: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: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: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: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: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: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: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: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: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: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: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: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:\"\";}}}}}}}}}}}}}}}}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:\"Tue, 27 Feb 2024 16:05:56 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:13:\"last-modified\";s:29:\"Tue, 27 Feb 2024 15:45:30 GMT\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:2:\"br\";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'),
(144,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1709093157','no'),
(145,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1709049957','no'),
(146,'_transient_timeout_dash_v2_5f25301ca0145abac6dfc3a0899dc43b','1709093157','no'),
(147,'_transient_dash_v2_5f25301ca0145abac6dfc3a0899dc43b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://en-gb.wordpress.org/2024/02/19/wordpress-london-meetup/\'>WordPress London Meetup</a></li><li><a class=\'rsswidget\' href=\'https://en-gb.wordpress.org/2024/01/30/wordpress-6-4-3-maintenance-and-security-release/\'>WordPress 6.4.3 Maintenance and Security Release</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wptavern.com/fse-outreach-experimental-loses-two-words-gains-new-life\'>WPTavern: FSE Outreach Experimental Loses Two Words, Gains New Life</a></li><li><a class=\'rsswidget\' href=\'https://dothewoo.io/interactivity-api-collaboration-wordpress-woocommerce/\'>Do The Woo Community: The Collaboration of the Interactivity API with WordPress and WooCommerce</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/wordpress-photo-festival-2024-a-five-part-retrospective-part-1-organizers\'>WPTavern: WordPress Photo Festival 2024, A Five Part Retrospective, Part 1, Organizers</a></li></ul></div>','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 */;
/*!40101 SET character_set_client = utf8 */;
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) DEFAULT NULL,
`meta_value` longtext DEFAULT NULL,
PRIMARY KEY (`meta_id`),
KEY `post_id` (`post_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=3 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
(1,2,'_wp_page_template','default'),
(2,3,'_wp_page_template','default');
/*!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 */;
/*!40101 SET character_set_client = utf8 */;
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 NOT NULL,
`post_title` text NOT NULL,
`post_excerpt` text NOT NULL,
`post_status` varchar(20) NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) NOT NULL DEFAULT 'open',
`ping_status` varchar(20) NOT NULL DEFAULT 'open',
`post_password` varchar(255) NOT NULL DEFAULT '',
`post_name` varchar(200) NOT NULL DEFAULT '',
`to_ping` text NOT NULL,
`pinged` text 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 NOT NULL,
`post_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
`guid` varchar(255) NOT NULL DEFAULT '',
`menu_order` int(11) NOT NULL DEFAULT 0,
`post_type` varchar(20) NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) 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=5 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
(1,1,'2024-02-27 16:05:33','2024-02-27 16:05:33','<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','Hello world!','','publish','open','open','','hello-world','','','2024-02-27 16:05:33','2024-02-27 16:05:33','',0,'http://localhost:8888/?p=1',0,'post','',1),
(2,1,'2024-02-27 16:05:33','2024-02-27 16:05:33','<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"http://localhost:8888/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','publish','closed','open','','sample-page','','','2024-02-27 16:05:33','2024-02-27 16:05:33','',0,'http://localhost:8888/?page_id=2',0,'page','',0),
(3,1,'2024-02-27 16:05:33','2024-02-27 16:05:33','<!-- 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://localhost:8888.</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 anonymised 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 recognise 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','','','2024-02-27 16:05:33','2024-02-27 16:05:33','',0,'http://localhost:8888/?page_id=3',0,'page','',0),
(4,1,'2024-02-27 16:05:55','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2024-02-27 16:05:55','0000-00-00 00:00:00','',0,'http://localhost:8888/?p=4',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 */;
/*!40101 SET character_set_client = utf8 */;
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
(1,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 */;
/*!40101 SET character_set_client = utf8 */;
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) NOT NULL DEFAULT '',
`description` longtext 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=2 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,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 */;
/*!40101 SET character_set_client = utf8 */;
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) DEFAULT NULL,
`meta_value` longtext DEFAULT NULL,
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 */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_terms` (
`term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(200) NOT NULL DEFAULT '',
`slug` varchar(200) 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=2 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,'Uncategorised','uncategorised',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 */;
/*!40101 SET character_set_client = utf8 */;
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) DEFAULT NULL,
`meta_value` longtext DEFAULT NULL,
PRIMARY KEY (`umeta_id`),
KEY `user_id` (`user_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=19 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:1:{s:64:\"409a0c87389b845869990a48899fb49fa5eef2ad32468764aed0a597b8043188\";a:4:{s:10:\"expiration\";i:1709222752;s:2:\"ip\";s:10:\"172.30.0.1\";s:2:\"ua\";s:101:\"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36\";s:5:\"login\";i:1709049952;}}'),
(17,1,'wp_dashboard_quick_press_last_post_id','4'),
(18,1,'community-events-location','a:1:{s:2:\"ip\";s:10:\"172.30.0.0\";}');
/*!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 */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_users` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_login` varchar(60) NOT NULL DEFAULT '',
`user_pass` varchar(255) NOT NULL DEFAULT '',
`user_nicename` varchar(50) NOT NULL DEFAULT '',
`user_email` varchar(100) NOT NULL DEFAULT '',
`user_url` varchar(100) NOT NULL DEFAULT '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_activation_key` varchar(255) NOT NULL DEFAULT '',
`user_status` int(11) NOT NULL DEFAULT 0,
`display_name` varchar(250) 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$Bm.j8OB9mnKYoz78nYJrqOHpd7.VAh0','admin','pabloripoll.it@gmail.com','http://localhost:8888','2024-02-27 16:05:33','',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-27 16:20:24