-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwp.sql
888 lines (789 loc) · 702 KB
/
wp.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
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
-- phpMyAdmin SQL Dump
-- version 4.8.5
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: May 10, 2019 at 04:53 AM
-- Server version: 10.1.38-MariaDB
-- PHP Version: 7.3.4
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
START TRANSACTION;
SET time_zone = "+00:00";
/*!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 */;
--
-- Database: `wp`
--
-- --------------------------------------------------------
--
-- Table structure for table `wp_commentmeta`
--
CREATE TABLE `wp_commentmeta` (
`meta_id` bigint(20) UNSIGNED NOT NULL,
`comment_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp_comments`
--
CREATE TABLE `wp_comments` (
`comment_ID` bigint(20) UNSIGNED NOT NULL,
`comment_post_ID` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`comment_author` tinytext COLLATE utf8mb4_unicode_ci NOT NULL,
`comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_content` text COLLATE utf8mb4_unicode_ci NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT '0',
`comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
`comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_parent` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`user_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `wp_comments`
--
INSERT INTO `wp_comments` (`comment_ID`, `comment_post_ID`, `comment_author`, `comment_author_email`, `comment_author_url`, `comment_author_IP`, `comment_date`, `comment_date_gmt`, `comment_content`, `comment_karma`, `comment_approved`, `comment_agent`, `comment_type`, `comment_parent`, `user_id`) VALUES
(1, 1, 'Seorang Komentator WordPress', '[email protected]', 'https://wordpress.org/', '', '2019-05-10 09:26:41', '2019-05-10 02:26:41', 'Hai, ini sebuah komentar.\nUntuk mulai memoderasi, mengedit, dan menghapus komentar, silakan kunjungi laman Komentar di dasbor.\nAvatar komentator diambil dari <a href=\"https://gravatar.com\">Gravatar</a>.', 0, '1', '', '', 0, 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp_evf_entries`
--
CREATE TABLE `wp_evf_entries` (
`entry_id` bigint(20) UNSIGNED NOT NULL,
`form_id` bigint(20) UNSIGNED NOT NULL,
`user_id` bigint(20) UNSIGNED NOT NULL,
`user_device` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`user_ip_address` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT '',
`referer` text COLLATE utf8mb4_unicode_ci NOT NULL,
`status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp_evf_entrymeta`
--
CREATE TABLE `wp_evf_entrymeta` (
`meta_id` bigint(20) UNSIGNED NOT NULL,
`entry_id` bigint(20) UNSIGNED NOT NULL,
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp_evf_sessions`
--
CREATE TABLE `wp_evf_sessions` (
`session_id` bigint(20) UNSIGNED NOT NULL,
`session_key` char(32) COLLATE utf8mb4_unicode_ci NOT NULL,
`session_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`session_expiry` bigint(20) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp_links`
--
CREATE TABLE `wp_links` (
`link_id` bigint(20) UNSIGNED NOT NULL,
`link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y',
`link_owner` bigint(20) UNSIGNED NOT NULL DEFAULT '1',
`link_rating` int(11) NOT NULL DEFAULT '0',
`link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
`link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp_options`
--
CREATE TABLE `wp_options` (
`option_id` bigint(20) UNSIGNED NOT NULL,
`option_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `wp_options`
--
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1, 'siteurl', 'http://localhost/wp/K-BESAR', 'yes'),
(2, 'home', 'http://localhost/wp/K-BESAR', 'yes'),
(3, 'blogname', 'K-BESAR', 'yes'),
(4, 'blogdescription', 'KABAR BERITA SARANG || BERITANYA ORANG SARANG REMBANG', 'yes'),
(5, 'users_can_register', '0', 'yes'),
(6, 'admin_email', '[email protected]', 'yes'),
(7, 'start_of_week', '0', 'yes'),
(8, 'use_balanceTags', '0', 'yes'),
(9, 'use_smilies', '1', 'yes'),
(10, 'require_name_email', '1', 'yes'),
(11, 'comments_notify', '1', 'yes'),
(12, 'posts_per_rss', '10', 'yes'),
(13, 'rss_use_excerpt', '0', 'yes'),
(14, 'mailserver_url', 'mail.example.com', 'yes'),
(15, 'mailserver_login', '[email protected]', 'yes'),
(16, 'mailserver_pass', 'password', 'yes'),
(17, 'mailserver_port', '110', 'yes'),
(18, 'default_category', '1', 'yes'),
(19, 'default_comment_status', 'open', 'yes'),
(20, 'default_ping_status', 'open', 'yes'),
(21, 'default_pingback_flag', '0', 'yes'),
(22, 'posts_per_page', '10', 'yes'),
(23, 'date_format', 'j F Y', 'yes'),
(24, 'time_format', 'g:i A', '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', '/%year%/%monthnum%/%day%/%postname%/', 'yes'),
(29, 'rewrite_rules', 'a:89:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}', 'yes'),
(30, 'hack_file', '0', 'yes'),
(31, 'blog_charset', 'UTF-8', 'yes'),
(32, 'moderation_keys', '', 'no'),
(33, 'active_plugins', 'a:2:{i:0;s:31:\"everest-forms/everest-forms.php\";i:1;s:53:\"themegrill-demo-importer/themegrill-demo-importer.php\";}', 'yes'),
(34, 'category_base', '', 'yes'),
(35, 'ping_sites', 'http://rpc.pingomatic.com/', 'yes'),
(36, 'comment_max_links', '2', 'yes'),
(37, 'gmt_offset', '7', 'yes'),
(38, 'default_email_category', '1', 'yes'),
(39, 'recently_edited', '', 'no'),
(40, 'template', 'colormag', 'yes'),
(41, 'stylesheet', 'colormag', 'yes'),
(42, 'comment_whitelist', '1', 'yes'),
(43, 'blacklist_keys', '', 'no'),
(44, 'comment_registration', '0', 'yes'),
(45, 'html_type', 'text/html', 'yes'),
(46, 'use_trackback', '0', 'yes'),
(47, 'default_role', 'subscriber', 'yes'),
(48, 'db_version', '44719', 'yes'),
(49, 'uploads_use_yearmonth_folders', '1', 'yes'),
(50, 'upload_path', '', 'yes'),
(51, 'blog_public', '0', 'yes'),
(52, 'default_link_category', '2', 'yes'),
(53, 'show_on_front', 'posts', 'yes'),
(54, 'tag_base', '', 'yes'),
(55, 'show_avatars', '1', 'yes'),
(56, 'avatar_rating', 'G', 'yes'),
(57, 'upload_url_path', '', 'yes'),
(58, 'thumbnail_size_w', '150', 'yes'),
(59, 'thumbnail_size_h', '150', 'yes'),
(60, 'thumbnail_crop', '1', 'yes'),
(61, 'medium_size_w', '300', 'yes'),
(62, 'medium_size_h', '300', 'yes'),
(63, 'avatar_default', 'mystery', 'yes'),
(64, 'large_size_w', '1024', 'yes'),
(65, 'large_size_h', '1024', 'yes'),
(66, 'image_default_link_type', 'none', 'yes'),
(67, 'image_default_size', '', 'yes'),
(68, 'image_default_align', '', 'yes'),
(69, 'close_comments_for_old_posts', '0', 'yes'),
(70, 'close_comments_days_old', '14', 'yes'),
(71, 'thread_comments', '1', 'yes'),
(72, 'thread_comments_depth', '5', 'yes'),
(73, 'page_comments', '0', 'yes'),
(74, 'comments_per_page', '50', 'yes'),
(75, 'default_comments_page', 'newest', 'yes'),
(76, 'comment_order', 'asc', 'yes'),
(77, 'sticky_posts', 'a:0:{}', 'yes'),
(78, 'widget_categories', 'a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}', 'yes'),
(79, 'widget_text', 'a:6:{i:2;a:2:{s:5:\"title\";s:14:\"Premium Themes\";s:4:\"text\";s:746:\"<ul>\n <li><a href=\"https://themegrill.com/themes/spacious-pro/\">Spacious Pro</a></li>\n <li><a href=\"https://themegrill.com/themes/foodhunt-pro/\">FoodHunt Pro</a></li>\n <li><a href=\"https://themegrill.com/themes/colornews-pro/\">ColorNews Pro</a></li>\n <li><a href=\"https://themegrill.com/themes/accelerate-pro/\">Accelerate Pro</a></li>\n <li><a href=\"https://themegrill.com/themes/esteem-pro/\">Esteem Pro</a></li>\n <li><a href=\"https://http://themegrill.com/themes/radiate-pro/\">Radiate Pro</a></li>\n <li><a href=\"https://themegrill.com/themes/fitclub-pro/\">Fitclub Pro</a></li>\n <li><a href=\"https://themegrill.com/themes/himalayas-pro/\">Himalayas Pro</a></li>\n </ul>\";}i:3;a:2:{s:5:\"title\";s:8:\"About Us\";s:4:\"text\";s:358:\"<a title=\"logo\" href=\"http://localhost/wp/K-BESAR\"><img src=\"http://localhost/wp/K-BESAR/wp-content/themes/colormag/img/colormag-logo.png\" alt=\"Logo\" /></a> <br> We love WordPress and we are here to provide you with professional looking WordPress themes so that you can take your website one step ahead. We focus on simplicity, elegant design and clean code.\";}i:4;a:2:{s:5:\"title\";s:12:\"Useful Links\";s:4:\"text\";s:654:\"<ul>\n <li><a href=\"https://themegrill.com/\">ThemeGrill</a></li>\n <li><a href=\"https://themegrill.com/support-forum/\">Support</a></li>\n <li><a href=\"https://themegrill.com/theme-instruction/colormag/\">Documentation</a></li>\n <li><a href=\"https://themegrill.com/frequently-asked-questions/\">FAQ</a></li>\n <li><a href=\"https://themegrill.com/themes/\">Themes</a></li>\n <li><a href=\"https://themegrill.com/plugins/\">Plugins</a></li>\n <li><a href=\"https://themegrill.com/blog/\">Blog</a></li>\n <li><a href=\"https://themegrill.com/plans-pricing/\">Plans & Pricing</a></li>\n </ul>\";}i:5;a:2:{s:5:\"title\";s:12:\"Other Themes\";s:4:\"text\";s:747:\"<ul>\n <li><a href=\"https://themegrill.com/themes/envince/\">Envince</a></li>\n <li><a href=\"https://themegrill.com/themes/estore/\">eStore</a></li>\n <li><a href=\"https://themegrill.com/themes/ample/\">Ample</a></li>\n <li><a href=\"https://themegrill.com/themes/spacious/\">Spacious</a></li>\n <li><a href=\"https://themegrill.com/themes/accelerate/\">Accelerate</a></li>\n <li><a href=\"https://themegrill.com/themes/radiate/\">Radiate</a></li>\n <li><a href=\"https://themegrill.com/themes/esteem/\">Esteem</a></li>\n <li><a href=\"https://themegrill.com/themes/himalayas/\">Himalayas</a></li>\n <li><a href=\"https://themegrill.com/themes/colornews/\">ColorNews</a></li>\n </ul>\";}i:6;a:1:{s:4:\"text\";s:71:\"Contains all features of free version and many new additional features.\";}s:12:\"_multiwidget\";i:1;}', 'yes'),
(80, 'widget_rss', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'yes'),
(81, 'uninstall_plugins', 'a:0:{}', 'no'),
(82, 'timezone_string', '', 'yes'),
(83, 'page_for_posts', '0', 'yes'),
(84, 'page_on_front', '0', 'yes'),
(85, 'default_post_format', '0', 'yes'),
(86, 'link_manager_enabled', '0', 'yes'),
(87, 'finished_splitting_shared_terms', '1', 'yes'),
(88, 'site_icon', '0', 'yes'),
(89, 'medium_large_size_w', '768', 'yes'),
(90, 'medium_large_size_h', '0', 'yes'),
(91, 'wp_page_for_privacy_policy', '3', 'yes'),
(92, 'show_comments_cookies_opt_in', '1', 'yes'),
(93, 'initial_db_version', '44719', 'yes'),
(94, 'wp_user_roles', 'a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:79:{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:20:\"manage_everest_forms\";b:1;s:17:\"edit_everest_form\";b:1;s:17:\"read_everest_form\";b:1;s:19:\"delete_everest_form\";b:1;s:18:\"edit_everest_forms\";b:1;s:25:\"edit_others_everest_forms\";b:1;s:21:\"publish_everest_forms\";b:1;s:26:\"read_private_everest_forms\";b:1;s:20:\"delete_everest_forms\";b:1;s:28:\"delete_private_everest_forms\";b:1;s:30:\"delete_published_everest_forms\";b:1;s:27:\"delete_others_everest_forms\";b:1;s:26:\"edit_private_everest_forms\";b:1;s:28:\"edit_published_everest_forms\";b:1;s:25:\"manage_everest_form_terms\";b:1;s:23:\"edit_everest_form_terms\";b:1;s:25:\"delete_everest_form_terms\";b:1;s:25:\"assign_everest_form_terms\";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'),
(95, 'fresh_site', '0', 'yes'),
(96, 'WPLANG', 'id_ID', 'yes'),
(97, 'widget_search', 'a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}', 'yes'),
(98, 'widget_recent-posts', 'a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}', 'yes'),
(99, 'widget_recent-comments', 'a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}', 'yes'),
(100, 'widget_archives', 'a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}', 'yes'),
(101, 'widget_meta', 'a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}', 'yes'),
(102, 'sidebars_widgets', 'a:18:{s:19:\"wp_inactive_widgets\";a:0:{}s:22:\"colormag_right_sidebar\";a:3:{i:0;s:41:\"colormag_featured_posts_vertical_widget-2\";i:1;s:6:\"text-2\";i:2;s:39:\"colormag_125x125_advertisement_widget-2\";}s:21:\"colormag_left_sidebar\";a:0:{}s:23:\"colormag_header_sidebar\";a:1:{i:0;s:38:\"colormag_728x90_advertisement_widget-2\";}s:31:\"colormag_front_page_slider_area\";a:1:{i:0;s:39:\"colormag_featured_posts_slider_widget-2\";}s:38:\"colormag_front_page_area_beside_slider\";a:1:{i:0;s:35:\"colormag_highlighted_posts_widget-2\";}s:39:\"colormag_front_page_content_top_section\";a:1:{i:0;s:32:\"colormag_featured_posts_widget-2\";}s:47:\"colormag_front_page_content_middle_left_section\";a:1:{i:0;s:41:\"colormag_featured_posts_vertical_widget-3\";}s:48:\"colormag_front_page_content_middle_right_section\";a:1:{i:0;s:41:\"colormag_featured_posts_vertical_widget-4\";}s:42:\"colormag_front_page_content_bottom_section\";a:1:{i:0;s:32:\"colormag_featured_posts_widget-3\";}s:29:\"colormag_contact_page_sidebar\";a:0:{}s:31:\"colormag_error_404_page_sidebar\";a:0:{}s:47:\"colormag_advertisement_above_the_footer_sidebar\";a:0:{}s:27:\"colormag_footer_sidebar_one\";a:1:{i:0;s:6:\"text-3\";}s:27:\"colormag_footer_sidebar_two\";a:1:{i:0;s:6:\"text-4\";}s:29:\"colormag_footer_sidebar_three\";a:1:{i:0;s:6:\"text-5\";}s:28:\"colormag_footer_sidebar_four\";a:2:{i:0;s:39:\"colormag_300x250_advertisement_widget-2\";i:1;s:6:\"text-6\";}s:13:\"array_version\";i:3;}', 'yes'),
(103, 'cron', 'a:8:{i:1557458804;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1557498404;a:1:{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;}}}i:1557498405;a:2:{s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1557498782;a:1:{s:30:\"everest_forms_cleanup_sessions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1557541603;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1557541643;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1557541647;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;}}}s:7:\"version\";i:2;}', 'yes'),
(104, 'widget_pages', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(105, 'widget_calendar', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(106, 'widget_media_audio', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(107, 'widget_media_image', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(108, 'widget_media_gallery', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(109, 'widget_media_video', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(110, 'widget_tag_cloud', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(111, 'widget_nav_menu', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(112, 'widget_custom_html', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(114, 'recovery_keys', 'a:0:{}', 'yes'),
(116, 'theme_mods_twentynineteen', 'a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1557455460;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}', 'yes'),
(119, '_site_transient_timeout_theme_roots', '1557457247', 'no'),
(120, '_site_transient_theme_roots', 'a:5:{s:8:\"colormag\";s:7:\"/themes\";s:8:\"news-one\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:13:\"twentysixteen\";s:7:\"/themes\";}', 'no'),
(122, '_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:57:\"https://downloads.wordpress.org/release/wordpress-5.2.zip\";s:6:\"locale\";s:5:\"id_ID\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"https://downloads.wordpress.org/release/wordpress-5.2.zip\";s:10:\"no_content\";s:68:\"https://downloads.wordpress.org/release/wordpress-5.2-no-content.zip\";s:11:\"new_bundled\";s:69:\"https://downloads.wordpress.org/release/wordpress-5.2-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:3:\"5.2\";s:7:\"version\";s:3:\"5.2\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.0\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1557455662;s:15:\"version_checked\";s:3:\"5.2\";s:12:\"translations\";a:0:{}}', 'no'),
(125, '_site_transient_timeout_browser_53ad83e7ffe60968becca0ade7b723b5', '1558060045', 'no'),
(126, '_site_transient_browser_53ad83e7ffe60968becca0ade7b723b5', 'a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"74.0.3729.131\";s:8:\"platform\";s:7:\"Windows\";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'),
(127, '_site_transient_timeout_php_check_413a4f2c91fec3a4996c65b3565c8cb8', '1558060046', 'no'),
(128, '_site_transient_php_check_413a4f2c91fec3a4996c65b3565c8cb8', 'a:5:{s:19:\"recommended_version\";s:3:\"7.3\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}', 'no'),
(130, '_site_transient_timeout_community-events-d41d8cd98f00b204e9800998ecf8427e', '1557498945', 'no'),
(131, '_site_transient_community-events-d41d8cd98f00b204e9800998ecf8427e', 'a:2:{s:8:\"location\";a:1:{s:2:\"ip\";b:0;}s:6:\"events\";a:1:{i:0;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:29:\"Meetup #10 – WordPress Talk\";s:3:\"url\";s:66:\"https://www.meetup.com/Semarang-WordPress-Meetup/events/261249410/\";s:6:\"meetup\";s:25:\"Semarang WordPress Meetup\";s:10:\"meetup_url\";s:49:\"https://www.meetup.com/Semarang-WordPress-Meetup/\";s:4:\"date\";s:19:\"2019-05-18 15:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:24:\"Kota Semarang, Indonesia\";s:7:\"country\";s:2:\"id\";s:8:\"latitude\";d:-6.981908;s:9:\"longitude\";d:110.41186;}}}}', 'no'),
(132, 'can_compress_scripts', '1', 'no'),
(133, '_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3', '1557498453', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(134, '_transient_feed_9bbd59226dc36b9b26cd43f15694c5c3', 'a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:49:\"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"News – – 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Mar 2019 23:39: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:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=5.3-alpha-45301\";s: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:48:\"\n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"WordPress 5.2 “Jaco”\";s: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://wordpress.org/news/2019/05/jaco/\";s: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, 07 May 2019 21:03:35 +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:34:\"https://wordpress.org/news/?p=6925\";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:426:\"Version 5.2 of WordPress is available for download or update in your WordPress dashboard. New features in this update make it easier than ever to fix your site if something goes wrong. There are even more robust tools for identifying and fixing configuration issues and fatal errors. Whether you are a developer helping clients or you manage your site solo, these tools can help get you the right information when you need it.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:30295:\"\n<h2 style=\"text-align:center\">Keeping Sites Safer</h2>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2019/05/about_maintain-wordpress-cropped.png?fit=632%2C500&ssl=1\" alt=\"\" class=\"wp-image-6926\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2019/05/about_maintain-wordpress-cropped.png?w=1206&ssl=1 1206w, https://i1.wp.com/wordpress.org/news/files/2019/05/about_maintain-wordpress-cropped.png?resize=300%2C237&ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2019/05/about_maintain-wordpress-cropped.png?resize=768%2C608&ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2019/05/about_maintain-wordpress-cropped.png?resize=1024%2C810&ssl=1 1024w\" sizes=\"(max-width: 632px) 100vw, 632px\" /></figure>\n\n\n\n<p>Version 5.2 of WordPress, named “Jaco” in honor of renowned and revolutionary jazz bassist Jaco Pastorius, is available for download or update in your WordPress dashboard. New features in this update make it easier than ever to fix your site if something goes wrong.</p>\n\n\n\n<p>There are even more robust tools for identifying and fixing configuration issues and fatal errors. Whether you are a developer helping clients or you manage your site solo, these tools can help get you the right information when you need it.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h3>Site Health Check</h3>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"alignleft is-resized\"><img src=\"https://i2.wp.com/wordpress.org/news/files/2019/05/about_site-health.png?resize=205%2C143&ssl=1\" alt=\"\" class=\"wp-image-6927\" width=\"205\" height=\"143\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2019/05/about_site-health.png?w=609&ssl=1 609w, https://i2.wp.com/wordpress.org/news/files/2019/05/about_site-health.png?resize=300%2C210&ssl=1 300w\" sizes=\"(max-width: 205px) 100vw, 205px\" data-recalc-dims=\"1\" /></figure></div>\n\n\n\n<p>Building on the <a href=\"https://wordpress.org/news/2019/02/betty/\">Site Health</a> features introduced in 5.1, this release adds two new pages to help debug common configuration issues. It also adds space where developers can include debugging information for site maintainers.</p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h3>PHP Error Protection</h3>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"alignleft is-resized\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2019/05/about_error-protection.png?resize=202%2C228&ssl=1\" alt=\"\" class=\"wp-image-6930\" width=\"202\" height=\"228\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2019/05/about_error-protection.png?w=487&ssl=1 487w, https://i1.wp.com/wordpress.org/news/files/2019/05/about_error-protection.png?resize=267%2C300&ssl=1 267w\" sizes=\"(max-width: 202px) 100vw, 202px\" data-recalc-dims=\"1\" /></figure></div>\n\n\n\n<p>This administrator-focused update will let you safely fix or manage fatal errors without requiring developer time. It features better handling of the so-called “white screen of death,” and a way to enter recovery mode, which pauses error-causing plugins or themes.</p>\n\n\n\n<div style=\"height:79px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2 style=\"text-align:center\">Improvements for Everyone</h2>\n\n\n\n<h3>Accessibility Updates</h3>\n\n\n\n<p>A number of changes work together to improve contextual awareness and keyboard navigation flow for those using screen readers and other assistive technologies.</p>\n\n\n\n<h3>New Dashboard Icons</h3>\n\n\n\n<p>Thirteen new icons including Instagram, a suite of icons for BuddyPress, and rotated Earth icons for global inclusion. Find them in the Dashboard and have some fun!</p>\n\n\n\n<h3>Plugin Compatibility Checks</h3>\n\n\n\n<p>WordPress will now automatically determine if your site’s version of PHP is compatible with installed plugins. If the plugin requires a higher version of PHP than your site currently uses, WordPress will not allow you to activate it, preventing potential compatibility errors.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2 style=\"text-align:center\">Developer Happiness</h2>\n\n\n\n<div class=\"wp-block-columns has-2-columns\">\n<div class=\"wp-block-column\">\n<p><a href=\"https://make.wordpress.org/core/2019/03/26/coding-standards-updates-for-php-5-6/\"><strong>PHP Version Bump</strong></a><strong> </strong></p>\n\n\n\n<p>The minimum supported PHP version is now 5.6.20. As of WordPress 5.2*, themes and plugins can safely take advantage of namespaces, anonymous functions, and more!</p>\n</div>\n\n\n\n<div class=\"wp-block-column\">\n<p><a href=\"https://make.wordpress.org/core/2019/04/24/developer-focused-privacy-updates-in-5-2/\"><strong>Privacy Updates</strong></a><strong> </strong></p>\n\n\n\n<p>A new theme page template, a conditional function, and two CSS classes make designing and customizing the Privacy Policy page easier.</p>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns has-2-columns\">\n<div class=\"wp-block-column\">\n<p><strong><a href=\"https://make.wordpress.org/core/2019/04/24/miscellaneous-developer-updates-in-5-2/\">New Body Hook</a> </strong></p>\n\n\n\n<p>5.2 introduces a wp_body_open hook, which lets themes support injecting code right at the beginning of the <body> element.</p>\n</div>\n\n\n\n<div class=\"wp-block-column\">\n<p><a href=\"https://make.wordpress.org/core/2019/03/25/building-javascript/\"><strong>Building JavaScript</strong></a></p>\n\n\n\n<p>With the addition of webpack and Babel configurations in the wordpress/scripts package, developers won’t have to worry about setting up complex build tools to write modern JavaScript.</p>\n</div>\n</div>\n\n\n\n<p><em>*If you are running an old version of PHP (less than 5.6.20), <a href=\"https://wordpress.org/support/update-php/\">update your PHP</a> before installing 5.2.</em></p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>The Squad</h2>\n\n\n\n<p>This release was led by <a href=\"http://ma.tt/\">Matt Mullenweg</a>, <a href=\"https://josepha.blog/\">Josepha Haden Chomphosy</a>, and <a href=\"https://pento.net/\">Gary Pendergast</a>. They were graciously supported by 327 generous volunteer contributors. Load a Jaco Pastorius playlist on your favorite music service and check out some of their profiles:</p>\n\n\n<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/adamsilverstein\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/adamsoucie\">Adam Soucie</a>, <a href=\"https://profiles.wordpress.org/oztaser\">Adil Öztaşer</a>, <a href=\"https://profiles.wordpress.org/ajitbohra\">Ajit Bohra</a>, <a href=\"https://profiles.wordpress.org/schlessera\">Alain Schlesser</a>, <a href=\"https://profiles.wordpress.org/aldavigdis\">Alda Vigdís</a>, <a href=\"https://profiles.wordpress.org/alexdenning\">Alex Denning</a>, <a href=\"https://profiles.wordpress.org/akirk\">Alex Kirk</a>, <a href=\"https://profiles.wordpress.org/viper007bond\">Alex Mills</a>, <a href=\"https://profiles.wordpress.org/tellyworth\">Alex Shiels</a>, <a href=\"https://profiles.wordpress.org/lexiqueen\">Alexis</a>, <a href=\"https://profiles.wordpress.org/alexislloyd\">Alexis Lloyd</a>, <a href=\"https://profiles.wordpress.org/allancole\">allancole</a>, <a href=\"https://profiles.wordpress.org/allendav\">Allen Snook</a>, <a href=\"https://profiles.wordpress.org/arena\">André</a>, <a href=\"https://profiles.wordpress.org/andraganescu\">andraganescu</a>, <a href=\"https://profiles.wordpress.org/afercia\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andreamiddleton\">Andrea Middleton</a>, <a href=\"https://profiles.wordpress.org/euthelup\">Andrei Lupu</a>, <a href=\"https://profiles.wordpress.org/aandrewdixon\">Andrew Dixon</a>, <a href=\"https://profiles.wordpress.org/aduth\">Andrew Duthie</a>, <a href=\"https://profiles.wordpress.org/nacin\">Andrew Nacin</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/rarst\">Andrey \"Rarst\" Savchenko</a>, <a href=\"https://profiles.wordpress.org/nosolosw\">Andrés Maneiro</a>, <a href=\"https://profiles.wordpress.org/afragen\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/andizer\">Andy Meerwaldt</a>, <a href=\"https://profiles.wordpress.org/aniketpatel\">Aniket Patel</a>, <a href=\"https://profiles.wordpress.org/atimmer\">Anton Timmermans</a>, <a href=\"https://profiles.wordpress.org/vanyukov\">Anton Vanyukov</a>, <a href=\"https://profiles.wordpress.org/avillegasn\">Antonio Villegas</a>, <a href=\"https://profiles.wordpress.org/antonypuckey\">antonypuckey</a>, <a href=\"https://profiles.wordpress.org/aristath\">Aristeides Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/wpboss\">Aslam Shekh</a>, <a href=\"https://profiles.wordpress.org/axaak\">axaak</a>, <a href=\"https://profiles.wordpress.org/pixolin\">Bego Mario Garde</a>, <a href=\"https://profiles.wordpress.org/empireoflight\">Ben Dunkle</a>, <a href=\"https://profiles.wordpress.org/britner\">Ben Ritner - Kadence Themes</a>, <a href=\"https://profiles.wordpress.org/bfintal\">Benjamin Intal</a>, <a href=\"https://profiles.wordpress.org/billerickson\">Bill Erickson</a>, <a href=\"https://profiles.wordpress.org/birgire\">Birgir Erlendsson</a>, <a href=\"https://profiles.wordpress.org/bodohugobarwich\">Bodo (Hugo) Barwich</a>, <a href=\"https://profiles.wordpress.org/gitlost\">bonger</a>, <a href=\"https://profiles.wordpress.org/boonebgorges\">Boone Gorges</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/brentswisher\">Brent Swisher</a>, <a href=\"https://profiles.wordpress.org/bulletdigital\">bulletdigital</a>, <a href=\"https://profiles.wordpress.org/burhandodhy\">Burhan Nasir</a>, <a href=\"https://profiles.wordpress.org/cathibosco1\">Cathi Bosco</a>, <a href=\"https://profiles.wordpress.org/chetan200891\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/chiaralovelaces\">Chiara Magnani</a>, <a href=\"https://profiles.wordpress.org/chouby\">Chouby</a>, <a href=\"https://profiles.wordpress.org/chrisvanpatten\">Chris Van Patten</a>, <a href=\"https://profiles.wordpress.org/dswebsme\">D.S. Webster</a>, <a href=\"https://profiles.wordpress.org/colorful-tones\">Damon Cook</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber\">Daniel Bachhuber</a>, <a href=\"https://profiles.wordpress.org/danieltj\">Daniel James</a>, <a href=\"https://profiles.wordpress.org/diddledan\">Daniel Llewellyn</a>, <a href=\"https://profiles.wordpress.org/talldanwp\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/mte90\">Daniele Scasciafratte</a>, <a href=\"https://profiles.wordpress.org/nerrad\">Darren Ethier</a>, <a href=\"https://profiles.wordpress.org/drw158\">Dave Whitley</a>, <a href=\"https://profiles.wordpress.org/davefx\">DaveFX</a>, <a href=\"https://profiles.wordpress.org/davetgreen\">davetgreen</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/david.binda\">David Binovec</a>, <a href=\"https://profiles.wordpress.org/davidbinda\">David Binovec</a>, <a href=\"https://profiles.wordpress.org/dlh\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/dgroddick\">David Roddick</a>, <a href=\"https://profiles.wordpress.org/get_dave\">David Smith</a>, <a href=\"https://profiles.wordpress.org/folletto\">Davide \'Folletto\' Casali</a>, <a href=\"https://profiles.wordpress.org/dekervit\">dekervit</a>, <a href=\"https://profiles.wordpress.org/denis-de-bernardy\">Denis de Bernardy</a>, <a href=\"https://profiles.wordpress.org/dmsnell\">Dennis Snell</a>, <a href=\"https://profiles.wordpress.org/valendesigns\">Derek Herman</a>, <a href=\"https://profiles.wordpress.org/pcfreak30\">Derrick Hammer</a>, <a href=\"https://profiles.wordpress.org/designsimply\">designsimply</a>, <a href=\"https://profiles.wordpress.org/dhanukanuwan\">Dhanukanuwan</a>, <a href=\"https://profiles.wordpress.org/dharm1025\">Dharmesh Patel</a>, <a href=\"https://profiles.wordpress.org/dianeco\">Diane</a>, <a href=\"https://profiles.wordpress.org/diegoreymendez\">diegoreymendez</a>, <a href=\"https://profiles.wordpress.org/dilipbheda\">Dilip Bheda</a>, <a href=\"https://profiles.wordpress.org/odminstudios\">Dima</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/dency\">Dixita Dusara</a>, <a href=\"https://profiles.wordpress.org/iamdmitrymayorov\">Dmitry Mayorov</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/drewapicture\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/dsifford\">dsifford</a>, <a href=\"https://profiles.wordpress.org/seedsca\">ecotechie</a>, <a href=\"https://profiles.wordpress.org/etoledom\">Eduardo Toledo</a>, <a href=\"https://profiles.wordpress.org/iseulde\">Ella Van Durpe</a>, <a href=\"https://profiles.wordpress.org/fabiankaegy\">fabiankaegy</a>, <a href=\"https://profiles.wordpress.org/faisal03\">Faisal Alvi</a>, <a href=\"https://profiles.wordpress.org/parsmizban\">Farhad Sakhaei</a>, <a href=\"https://profiles.wordpress.org/flixos90\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/peaceablewhale\">Franklin Tse</a>, <a href=\"https://profiles.wordpress.org/fuegas\">Fuegas</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/soulseekah\">Gennady Kovshenin</a>, <a href=\"https://profiles.wordpress.org/girishpanchal\">Girish Panchal</a>, <a href=\"https://profiles.wordpress.org/gziolo\">Grzegorz Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/wido\">Guido Scialfa</a>, <a href=\"https://profiles.wordpress.org/gutendev\">GutenDev <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/270d.png\" alt=\"✍\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /><img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/3299.png\" alt=\"㊙\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></a>, <a href=\"https://profiles.wordpress.org/hannahmalcolm\">Hannah Malcolm</a>, <a href=\"https://profiles.wordpress.org/hardik-amipara\">Hardik Amipara</a>, <a href=\"https://profiles.wordpress.org/thakkarhardik\">Hardik Thakkar</a>, <a href=\"https://profiles.wordpress.org/luehrsen\">Hendrik Luehrsen</a>, <a href=\"https://profiles.wordpress.org/henrywright-1\">Henry</a>, <a href=\"https://profiles.wordpress.org/henrywright\">Henry Wright</a>, <a href=\"https://profiles.wordpress.org/ryanshoover\">Hoover</a>, <a href=\"https://profiles.wordpress.org/ianbelanger\">Ian Belanger</a>, <a href=\"https://profiles.wordpress.org/iandunn\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ice9js\">ice9js</a>, <a href=\"https://profiles.wordpress.org/zinigor\">Igor Zinovyev</a>, <a href=\"https://profiles.wordpress.org/imath\">imath</a>, <a href=\"https://profiles.wordpress.org/ixium\">Ixium</a>, <a href=\"https://profiles.wordpress.org/jdgrimes\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jakeparis\">jakeparis</a>, <a href=\"https://profiles.wordpress.org/cc0a\">James</a>, <a href=\"https://profiles.wordpress.org/janak007\">janak Kaneriya</a>, <a href=\"https://profiles.wordpress.org/jarred-kennedy\">Jarred Kennedy</a>, <a href=\"https://profiles.wordpress.org/vengisss\">Javier Villanueva</a>, <a href=\"https://profiles.wordpress.org/jayupadhyay01\">Jay Upadhyay</a>, <a href=\"https://profiles.wordpress.org/jaydeep-rami\">Jaydip Rami</a>, <a href=\"https://profiles.wordpress.org/jaymanpandya\">Jayman Pandya</a>, <a href=\"https://profiles.wordpress.org/jdeeburke\">jdeeburke</a>, <a href=\"https://profiles.wordpress.org/audrasjb\">Jean-Baptiste Audras</a>, <a href=\"https://profiles.wordpress.org/jeffpaul\">Jeff Paul</a>, <a href=\"https://profiles.wordpress.org/cheffheid\">Jeffrey de Wit</a>, <a href=\"https://profiles.wordpress.org/miss_jwo\">Jenny Wong</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/endocreative\">Jeremy Green</a>, <a href=\"https://profiles.wordpress.org/jeherve\">Jeremy Herve</a>, <a href=\"https://profiles.wordpress.org/jitendrabanjara1991\">jitendrabanjara1991</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby\">JJJ</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/joen\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/j-falk\">Johan Falk</a>, <a href=\"https://profiles.wordpress.org/johannadevos\">Johanna de Vos</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/jonathandejong\">Jonathandejong</a>, <a href=\"https://profiles.wordpress.org/joneiseman\">joneiseman</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/jonnybojangles\">jonnybojangles</a>, <a href=\"https://profiles.wordpress.org/joostdevalk\">Joost de Valk</a>, <a href=\"https://profiles.wordpress.org/jordesign\">jordesign</a>, <a href=\"https://profiles.wordpress.org/koke\">Jorge Bernal</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/keraweb\">Jory Hogeveen</a>, <a href=\"https://profiles.wordpress.org/jcastaneda\">Jose Castaneda</a>, <a href=\"https://profiles.wordpress.org/josephwa\">josephwa</a>, <a href=\"https://profiles.wordpress.org/builtbynorthby\">Josh Feck</a>, <a href=\"https://profiles.wordpress.org/joshuawold\">JoshuaWold</a>, <a href=\"https://profiles.wordpress.org/joyously\">Joy</a>, <a href=\"https://profiles.wordpress.org/jplojohn\">jplo</a>, <a href=\"https://profiles.wordpress.org/jrtashjian\">JR Tashjian</a>, <a href=\"https://profiles.wordpress.org/jrf\">jrf</a>, <a href=\"https://profiles.wordpress.org/juiiee8487\">Juhi Patel</a>, <a href=\"https://profiles.wordpress.org/juliarrr\">juliarrr</a>, <a href=\"https://profiles.wordpress.org/kadamwhite\">K. Adam White</a>, <a href=\"https://profiles.wordpress.org/kamataryo\">KamataRyo</a>, <a href=\"https://profiles.wordpress.org/karinedo\">Karine Do</a>, <a href=\"https://profiles.wordpress.org/katyatina\">Katyatina</a>, <a href=\"https://profiles.wordpress.org/kelin1003\">Kelin Chauhan</a>, <a href=\"https://profiles.wordpress.org/ryelle\">Kelly Dwan</a>, <a href=\"https://profiles.wordpress.org/itzmekhokan\">Khokan Sardar</a>, <a href=\"https://profiles.wordpress.org/killua99\">killua99</a>, <a href=\"https://profiles.wordpress.org/ixkaito\">Kite</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/olein\">Koji Kuno</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/codemascot\">Kʜᴀɴ (ಠ_ಠ)</a>, <a href=\"https://profiles.wordpress.org/laurelfulford\">laurelfulford</a>, <a href=\"https://profiles.wordpress.org/lkraav\">lkraav</a>, <a href=\"https://profiles.wordpress.org/lukecarbis\">Luke Carbis</a>, <a href=\"https://profiles.wordpress.org/lgedeon\">Luke Gedeon</a>, <a href=\"https://profiles.wordpress.org/lukepettway\">Luke Pettway</a>, <a href=\"https://profiles.wordpress.org/maedahbatool\">Maedah Batool</a>, <a href=\"https://profiles.wordpress.org/travel_girl\">Maja Benke</a>, <a href=\"https://profiles.wordpress.org/malae\">Malae</a>, <a href=\"https://profiles.wordpress.org/manzoorwanijk\">Manzoor Wani</a>, <a href=\"https://profiles.wordpress.org/robobot3000\">Marcin</a>, <a href=\"https://profiles.wordpress.org/iworks\">Marcin Pietrzak</a>, <a href=\"https://profiles.wordpress.org/marcofernandes\">Marco Fernandes</a>, <a href=\"https://profiles.wordpress.org/marco-peralta\">Marco Peralta</a>, <a href=\"https://profiles.wordpress.org/mkaz\">Marcus Kazmierczak</a>, <a href=\"https://profiles.wordpress.org/marekhrabe\">marekhrabe</a>, <a href=\"https://profiles.wordpress.org/clorith\">Marius Jensen</a>, <a href=\"https://profiles.wordpress.org/mbelchev\">Mariyan Belchev</a>, <a href=\"https://profiles.wordpress.org/mapk\">Mark Uraine</a>, <a href=\"https://profiles.wordpress.org/markcallen\">markcallen</a>, <a href=\"https://profiles.wordpress.org/mechter\">Markus Echterhoff</a>, <a href=\"https://profiles.wordpress.org/m-e-h\">Marty Helmick</a>, <a href=\"https://profiles.wordpress.org/marybaum\">marybaum</a>, <a href=\"https://profiles.wordpress.org/mattnyeus\">mattnyeus</a>, <a href=\"https://profiles.wordpress.org/mdwolinski\">mdwolinski</a>, <a href=\"https://profiles.wordpress.org/immeet94\">Meet Makadia</a>, <a href=\"https://profiles.wordpress.org/melchoyce\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/mheikkila\">mheikkila</a>, <a href=\"https://profiles.wordpress.org/wpscholar\">Micah Wood</a>, <a href=\"https://profiles.wordpress.org/michelleweber\">michelleweber</a>, <a href=\"https://profiles.wordpress.org/mcsf\">Miguel Fonseca</a>, <a href=\"https://profiles.wordpress.org/mmtr86\">Miguel Torres</a>, <a href=\"https://profiles.wordpress.org/simison\">Mikael Korpela</a>, <a href=\"https://profiles.wordpress.org/mauteri\">Mike Auteri</a>, <a href=\"https://profiles.wordpress.org/mikeschinkel\">Mike Schinkel [WPLib Box project lead]</a>, <a href=\"https://profiles.wordpress.org/mikeschroder\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/mikeselander\">Mike Selander</a>, <a href=\"https://profiles.wordpress.org/mikengarrett\">MikeNGarrett</a>, <a href=\"https://profiles.wordpress.org/dimadin\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/0mirka00\">mirka</a>, <a href=\"https://profiles.wordpress.org/lord_viper\">Mobin Ghasempoor</a>, <a href=\"https://profiles.wordpress.org/mohadeseghasemi\">Mohadese Ghasemi</a>, <a href=\"https://profiles.wordpress.org/saimonh\">Mohammed Saimon</a>, <a href=\"https://profiles.wordpress.org/mor10\">Morten Rand-Hendriksen</a>, <a href=\"https://profiles.wordpress.org/man4toman\">Morteza Geransayeh</a>, <a href=\"https://profiles.wordpress.org/mmuhsin\">Muhammad Muhsin</a>, <a href=\"https://profiles.wordpress.org/mukesh27\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/m_uysl\">Mustafa Uysal</a>, <a href=\"https://profiles.wordpress.org/mzorz\">mzorz</a>, <a href=\"https://profiles.wordpress.org/nfmohit\">Nahid F. Mohit</a>, <a href=\"https://profiles.wordpress.org/naoki0h\">Naoki Ohashi</a>, <a href=\"https://profiles.wordpress.org/nateallen\">Nate Allen</a>, <a href=\"https://profiles.wordpress.org/greatislander\">Ned Zimmerman</a>, <a href=\"https://profiles.wordpress.org/neobabis\">Neokazis Charalampos</a>, <a href=\"https://profiles.wordpress.org/modernnerd\">Nick Cernis</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/jainnidhi\">Nidhi Jain</a>, <a href=\"https://profiles.wordpress.org/nielslange\">Niels Lange</a>, <a href=\"https://profiles.wordpress.org/nielsdeblaauw\">nielsdeblaauw</a>, <a href=\"https://profiles.wordpress.org/nnikolov\">Nikolay Nikolov</a>, <a href=\"https://profiles.wordpress.org/rabmalin\">Nilambar Sharma</a>, <a href=\"https://profiles.wordpress.org/ninio\">ninio</a>, <a href=\"https://profiles.wordpress.org/notnownikki\">notnownikki</a>, <a href=\"https://profiles.wordpress.org/pandelisz\">pandelisz</a>, <a href=\"https://profiles.wordpress.org/paragoninitiativeenterprises\">paragoninitiativeenterprises</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/pedromendonca\">Pedro Mendonça</a>, <a href=\"https://profiles.wordpress.org/peterbooker\">Peter Booker</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/pfiled\">pfiled</a>, <a href=\"https://profiles.wordpress.org/pilou69\">pilou69</a>, <a href=\"https://profiles.wordpress.org/pranalipatel\">Pranali Patel</a>, <a href=\"https://profiles.wordpress.org/pratikthink\">Pratik</a>, <a href=\"https://profiles.wordpress.org/pratikkry\">Pratik K. Yadav</a>, <a href=\"https://profiles.wordpress.org/presskopp\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/psealock\">psealock</a>, <a href=\"https://profiles.wordpress.org/punit5658\">Punit Patel</a>, <a href=\"https://profiles.wordpress.org/bamadesigner\">Rachel Cherry</a>, <a href=\"https://profiles.wordpress.org/rahmon\">Rahmon</a>, <a href=\"https://profiles.wordpress.org/superpoincare\">Ramanan</a>, <a href=\"https://profiles.wordpress.org/ramiy\">Rami Yushuvaev</a>, <a href=\"https://profiles.wordpress.org/ramizmanked\">Ramiz Manked</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/rinatkhaziev\">Rinat Khaziev</a>, <a href=\"https://profiles.wordpress.org/noisysocks\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/rsusanto\">Rudy Susanto</a>, <a href=\"https://profiles.wordpress.org/ryan\">Ryan Boren</a>, <a href=\"https://profiles.wordpress.org/welcher\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/saeedfard\">Saeed Fard</a>, <a href=\"https://profiles.wordpress.org/salcode\">Sal Ferrarello</a>, <a href=\"https://profiles.wordpress.org/samanehmirrajabi\">Samaneh Mirrajabi</a>, <a href=\"https://profiles.wordpress.org/samikeijonen\">Sami Keijonen</a>, <a href=\"https://profiles.wordpress.org/elhardoum\">Samuel Elh</a>, <a href=\"https://profiles.wordpress.org/sgarza\">Santiago Garza</a>, <a href=\"https://profiles.wordpress.org/saracope\">Sara Cope</a>, <a href=\"https://profiles.wordpress.org/saracup\">saracup</a>, <a href=\"https://profiles.wordpress.org/tinkerbelly\">sarah semark</a>, <a href=\"https://profiles.wordpress.org/coffee2code\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/sebastianpisula\">Sebastian Pisula</a>, <a href=\"https://profiles.wordpress.org/ebrahimzadeh\">Sekineh Ebrahimzadeh</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sergioestevao\">SergioEstevao</a>, <a href=\"https://profiles.wordpress.org/sgastard\">sgastard</a>, <a href=\"https://profiles.wordpress.org/sharifkiberu\">sharifkiberu</a>, <a href=\"https://profiles.wordpress.org/shazdeh\">shazdeh</a>, <a href=\"https://profiles.wordpress.org/shital-patel\">Shital Marakana</a>, <a href=\"https://profiles.wordpress.org/sky_76\">sky_76</a>, <a href=\"https://profiles.wordpress.org/soean\">Soren Wrede</a>, <a href=\"https://profiles.wordpress.org/netweb\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/stevenkword\">Steven Word</a>, <a href=\"https://profiles.wordpress.org/subrataemfluence\">Subrata Sarkar</a>, <a href=\"https://profiles.wordpress.org/sudar\">Sudar Muthu</a>, <a href=\"https://profiles.wordpress.org/sudhiryadav\">Sudhir Yadav</a>, <a href=\"https://profiles.wordpress.org/szepeviktor\">szepe.viktor</a>, <a href=\"https://profiles.wordpress.org/miyauchi\">Takayuki Miyauchi</a>, <a href=\"https://profiles.wordpress.org/karmatosed\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/themonic\">Themonic</a>, <a href=\"https://profiles.wordpress.org/thomstark\">thomstark</a>, <a href=\"https://profiles.wordpress.org/tfrommen\">Thorsten Frommen</a>, <a href=\"https://profiles.wordpress.org/thrijith\">Thrijith Thankachan</a>, <a href=\"https://profiles.wordpress.org/hedgefield\">Tim Hedgefield</a>, <a href=\"https://profiles.wordpress.org/timwright12\">Tim Wright</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/timph\">timph</a>, <a href=\"https://profiles.wordpress.org/tmatsuur\">tmatsuur</a>, <a href=\"https://profiles.wordpress.org/tmdesigned\">tmdesigned</a>, <a href=\"https://profiles.wordpress.org/ohiosierra\">tmdesigned</a>, <a href=\"https://profiles.wordpress.org/tz-media\">Tobias Zimpel</a>, <a href=\"https://profiles.wordpress.org/tomharrigan\">TomHarrigan</a>, <a href=\"https://profiles.wordpress.org/tobifjellner\">Tor-Bjorn Fjellner</a>, <a href=\"https://profiles.wordpress.org/toro_unit\">Toro_Unit (Hiroshi Urabe)</a>, <a href=\"https://profiles.wordpress.org/torres126\">torres126</a>, <a href=\"https://profiles.wordpress.org/zodiac1978\">Torsten Landsiedel</a>, <a href=\"https://profiles.wordpress.org/itowhid06\">Towhidul Islam</a>, <a href=\"https://profiles.wordpress.org/liljimmi\">Tracy Levesque</a>, <a href=\"https://profiles.wordpress.org/umang7\">Umang Bhanvadia</a>, <a href=\"https://profiles.wordpress.org/vaishalipanchal\">Vaishali Panchal</a>, <a href=\"https://profiles.wordpress.org/webfactory\">WebFactory</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/bahia0019\">William \'Bahia\' Bay</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/willscrlt\">Willscrlt</a>, <a href=\"https://profiles.wordpress.org/wolly\">Wolly aka Paolo Valenti</a>, <a href=\"https://profiles.wordpress.org/wrwrwr0\">wrwrwr0</a>, <a href=\"https://profiles.wordpress.org/yoavf\">Yoav Farhi</a>, <a href=\"https://profiles.wordpress.org/fierevere\">Yui</a>, and <a href=\"https://profiles.wordpress.org/zebulan\">Zebulan Stanphill</a>.\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p>Also, many thanks to all of the community volunteers who contribute in the <a href=\"https://wordpress.org/support/\">support forums</a>. They answer questions from people across the world, whether they are using WordPress for the first time or since the first release. These releases are more successful for their efforts!</p>\n\n\n\n<p>If you want learn more about volunteering with WordPress, check out <a href=\"https://make.wordpress.org/\">Make WordPress</a> or the <a href=\"https://make.wordpress.org/core/\">core development blog</a>.</p>\n\n\n\n<p>Thanks for choosing WordPress!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"6925\";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:51:\"\n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"WordPress 5.2 RC2\";s: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:53:\"https://wordpress.org/news/2019/05/wordpress-5-2-rc2/\";s: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, 02 May 2019 16:17:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s: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:34:\"https://wordpress.org/news/?p=6914\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:326:\"The second release candidate for WordPress 5.2 is now available! WordPress 5.2 will be released on Tuesday, May 7, but we need your help to get there—if you haven’t tried 5.2 yet, now is the time! There are two ways to test the WordPress 5.2 release candidate: try the WordPress Beta Tester plugin (you’ll want […]\";s: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:7:\"Josepha\";s: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:2472:\"\n<p>The second release candidate for WordPress 5.2 is now available!</p>\n\n\n\n<p>WordPress 5.2 will be released on <strong><a href=\"https://make.wordpress.org/core/5-2/\">Tuesday, May 7</a></strong>, but we need <em>your</em> help to get there—if you haven’t tried 5.2 yet, now is the time!</p>\n\n\n\n<p>There are two ways to test the WordPress 5.2 release candidate: try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want to select the “bleeding edge nightlies” option), or you can <a href=\"https://wordpress.org/wordpress-5.2-RC2.zip\">download the release candidate here</a> (zip).</p>\n\n\n\n<p>For details about what to expect in WordPress 5.2, please see the <a href=\"https://wordpress.org/news/2019/04/wordpress-5-2-release-candidate/\">first release candidate post</a>.</p>\n\n\n\n<p>This release includes the final About page design. It also contains fixes for:</p>\n\n\n\n<ul><li>Proper translation of the recovery mode notification emails (#47093).</li><li>Improvements to the way Site Health works with multisite installs (#47084).</li></ul>\n\n\n\n<h2>Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against WordPress 5.2 and update the <em>Tested up to</em> version in the readme to 5.2. If you find compatibility problems, please be sure to post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a> so we can figure those out before the final release.</p>\n\n\n\n<p>The <a href=\"https://make.wordpress.org/core/2019/04/16/wordpress-5-2-field-guide/\">WordPress 5.2 Field Guide</a> has also been published, which details the major changes.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n\n\n\n<p><em><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</em></p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p><em>It’s the start of May<br>and the release is coming.<br>We all give a cheer!</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"6914\";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:48:\"\n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"The Month in WordPress: April 2019\";s: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://wordpress.org/news/2019/05/the-month-in-wordpress-april-2019/\";s: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, 02 May 2019 09:00: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6918\";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:324:\"This past month has been filled with anticipation as the community builds up towards a big new release, plans some important events, and builds new tools to grow the future of the project. WordPress 5.2 Almost Due for Release WordPress 5.2 is due for release on May 7 with many new features included for developers […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Hugh Lashbrooke\";s: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:8386:\"\n<p>This past month has been filled with anticipation as the community builds up towards a big new release, plans some important events, and builds new tools to grow the future of the project.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress 5.2 Almost Due for Release</h2>\n\n\n\n<p>WordPress 5.2 is due for release on May 7 with many new features included for developers and end-users alike. <a href=\"https://make.wordpress.org/core/2019/04/16/wordpress-5-2-field-guide/\">The Field Guide for the release</a> provides a lot of information about what is in it and what you can expect, including a few key elements:</p>\n\n\n\n<h3>Site Health Check</h3>\n\n\n\n<p>One of the most highly anticipated features for v5.2 is <a href=\"https://make.wordpress.org/core/2019/04/25/site-health-check-in-5-2/\">the Site Health Check</a>. This feature adds two new pages in the admin interface to help end users maintain a healthy site through common configuration issues and other elements that go along with having a robust online presence. It also provides a standardized location for developers to add debugging information.</p>\n\n\n\n<h3>Fatal Error Recovery Mode</h3>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2019/04/16/fatal-error-recovery-mode-in-5-2/\">The Fatal Error Recovery Mode feature</a> was originally planned for the 5.1 release but was delayed to patch up some last-minute issues that arose. This feature will help site-owners recover more quickly from fatal errors that break the display or functionality of their site that would ordinarily require code or database edits to fix.</p>\n\n\n\n<h3>Privacy and Accessibility Updates</h3>\n\n\n\n<p>Along with the headlining features mentioned above, there are some important enhancements to the privacy and accessibility features included in Core. These include <a href=\"https://make.wordpress.org/core/2019/04/24/developer-focused-privacy-updates-in-5-2/\">some important developer-focused changes</a> to how privacy policy pages are displayed and user data is exported, as well as <a href=\"https://make.wordpress.org/core/2019/04/02/admin-tabs-semantic-improvements-in-5-2/\">moving to more semantic markup for admin tabs</a> and <a href=\"https://make.wordpress.org/core/2019/04/24/notable-accessibility-changes-in-5-2/\">other improvements</a> such as switching post format icons to drop-down menus on post list tables, improved admin toolbar markup, and contextual improvements to archive widget drop-down menu.</p>\n\n\n\n<h3>New Dashicons</h3>\n\n\n\n<p>The <a href=\"https://developer.wordpress.org/resource/dashicons/\">Dashicons</a> library was last updated was over 3 years ago. Now, in the upcoming release, <a href=\"https://make.wordpress.org/core/2019/04/11/dashicons-in-wordpress-5-2/\">a set of 13 new icons will be added to the library</a> along with improvements to the build process and file format of the icons.</p>\n\n\n\n<h3>Block Editor Upgrades</h3>\n\n\n\n<p>The Block Editor has seen <a href=\"https://make.wordpress.org/core/2019/04/17/whats-new-in-gutenberg-17th-april/\">numerous improvements</a> lately that will all be included in the v5.2 release. Along with the interface upgrades, the underlying Javascript module <a href=\"https://make.wordpress.org/core/2019/04/09/the-block-editor-javascript-module-in-5-2/\">has been reorganized</a>, improvements have been made to <a href=\"https://make.wordpress.org/core/2019/04/17/block-editor-detection-improvements-in-5-2/\">how the block editor is detected</a> on the post edit screen, and <a href=\"https://make.wordpress.org/core/2019/03/25/building-javascript/\">the Javascript build process has been enhanced</a>.</p>\n\n\n\n<p><a href=\"https://wordpress.org/news/2019/04/wordpress-5-2-release-candidate/\">WordPress 5.2 is now in the Release Candidate phase</a> and you can test it by installing <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">the Beta Tester plugin</a> on any WordPress site.</p>\n\n\n\n<p>Want to get involved in building WordPress Core? Follow <a href=\"https://make.wordpress.org/core\">the Core team blog</a> and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>WordPress Translation Day 4 is Almost Here</h2>\n\n\n\n<p>On 11 May 2019, <a href=\"https://make.wordpress.org/polyglots/2019/03/01/global-wordpress-translation-day-4-is-coming/\">the fourth WordPress Translation Day</a> will take place. This is a 24-hour global event dedicated to the translation of all things WordPress, from Core to themes, plugins to marketing.</p>\n\n\n\n<p>Over the course of 24 hours, WordPress communities will meet to translate WordPress into their local languages and watch talks and sessions broadcast on <a href=\"https://wptranslationday.org/\">wptranslationday.org</a>. During the previous WordPress Translation Day, 71 local events took place in 29 countries, and even more communities are expected to take part this time.</p>\n\n\n\n<p>Want to get involved in WordPress Translation Day 4? Find out <a href=\"https://make.wordpress.org/community/2019/03/22/global-wordpress-translation-day-4-info-for-event-organizers/\">how to organize a local event</a>, follow the updates on <a href=\"https://make.wordpress.org/polyglots/tag/gwtd4/\">the Polyglots team blog</a>, and join the #polyglots channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Block Library Project Gets Started</h2>\n\n\n\n<p>Since <a href=\"https://make.wordpress.org/meta/2019/03/08/the-block-directory-and-a-new-type-of-plugin/\">the initial proposal</a> for a Block Library that would be made available from inside the block editor, work has been done to put together <a href=\"https://make.wordpress.org/design/2019/04/02/call-for-design-installing-blocks-from-within-gutenberg/\">some designs</a> for how this would look. Since then the project has received a more direct focus with <a href=\"https://make.wordpress.org/design/2019/04/26/block-library-installing-blocks-from-within-gutenberg/\">a planned out scope and timeline</a>.</p>\n\n\n\n<p>The project is being managed <a href=\"https://github.com/WordPress/block-directory/projects/1\">on GitHub</a> and people interested in contributing are encouraged to get involved there. You can also keep up to date by following <a href=\"https://make.wordpress.org/design/\">the Design team blog</a> and joining the #design channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul><li>The results from the 5.0 release retrospective survey <a href=\"https://make.wordpress.org/updates/2019/04/26/5-0-release-retrospective-wrap-up/\">have been published</a> – this is the first time this kind of open retrospective has been done for a WordPress release and the results provide valuable insight into the project and its contributors.</li><li>The team behind the WordPress Coding Standards <a href=\"https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/releases/tag/2.1.0\">has released version 2.1</a>, including some very useful new sniffs.</li><li>The community <a href=\"https://make.wordpress.org/community/2019/04/18/the-get-involved-table-at-wceu-2019/\">is looking for volunteers for the Get Involved table</a> at WordCamp Europe on 20-22 June.</li><li>Gutenberg has been ported <a href=\"https://github.com/VanOns/laraberg/\">for use within the Laravel framework</a> in a project dubbed Laraberg.</li><li>The 2019 WordCamp for Publishers event <a href=\"https://2019-columbus.publishers.wordcamp.org/2019/04/12/call-for-speakers/\">has opened its call for speakers</a>.</li><li>The Gutenberg team <a href=\"https://github.com/WordPress/gutenberg/blob/add/blocks-in-widget-areas-rfc/docs/rfcs/blocks-in-widget-areas.md\">has published an RFC</a> regarding blocks being used in widgets.</li><li>WordCamp Europe, taking place on 20-22 June, has published <a href=\"https://2019.europe.wordcamp.org/schedule/\">the schedule for the event</a>.</li><li>The Community Team <a href=\"https://make.wordpress.org/community/2019/04/18/2018-meetup-survey/\">has published the results</a> of the 2018 meetup group survey.</li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it here</em></a><em>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"6918\";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:51:\"\n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"WordPress 5.2 Release Candidate\";s: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://wordpress.org/news/2019/04/wordpress-5-2-release-candidate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 26 Apr 2019 01:28:10 +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:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s: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:34:\"https://wordpress.org/news/?p=6909\";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:364:\"The first release candidate for WordPress 5.2 is now available! This is an important milestone as we progress toward the WordPress 5.2 release date. “Release Candidate” means that the new version is ready for release, but with millions of users and thousands of plugins and themes, it’s possible something was missed. WordPress 5.2 is scheduled to […]\";s: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:7:\"Josepha\";s: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:3117:\"\n<p>The first release candidate for WordPress 5.2 is now available!</p>\n\n\n\n<p>This is an important milestone as we progress toward the WordPress 5.2 release date. “Release Candidate” means that the new version is ready for release, but with millions of users and thousands of plugins and themes, it’s possible something was missed. WordPress 5.2 is scheduled to be released on <strong>Tuesday, May 7</strong>, but we need <em>your</em> help to get there—if you haven’t tried 5.2 yet, now is the time!</p>\n\n\n\n<p>There are two ways to test the WordPress 5.2 release candidate: try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want to select the “bleeding edge nightlies” option), or you can <a href=\"https://wordpress.org/wordpress-5.2-RC1.zip\">download the release candidate here</a> (zip).</p>\n\n\n\n<h2>What’s in WordPress 5.2?</h2>\n\n\n\n<p>Continuing with the theme from the last release, WordPress 5.2 gives you even more robust tools for identifying and fixing configuration issues and fatal errors. Whether you are a developer helping clients or you manage your site solo, these tools can help get you the right information when you need it.</p>\n\n\n\n<p>The Site Health Check and PHP Error Protection tools have brand new features, giving you peace of mind if you discover any issues with plugins or themes on your site. There are also updates to the icons available in your dashboard, fresh accessibility considerations for anyone using assistive technologies and more.</p>\n\n\n\n<h2>Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against WordPress 5.2 and update the <em>Tested up to</em> version in the readme to 5.2. If you find compatibility problems, please be sure to post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a> so we can figure those out before the final release.</p>\n\n\n\n<p>The <a href=\"https://make.wordpress.org/core/2019/04/16/wordpress-5-2-field-guide/\">WordPress 5.2 Field Guide</a> has also been published, which goes into the details of the major changes.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a> This release also marks the <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\">hard string freeze</a> point of the 5.2 release schedule.</p>\n\n\n\n<p><em><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</em></p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p><em>Howdy, RC 1!<br>With tools this interesting,<br>I can hardly wait.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"6909\";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:51:\"\n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 5.2 Beta 3\";s: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/2019/04/wordpress-5-2-beta-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 12 Apr 2019 21:33:07 +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:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s: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:34:\"https://wordpress.org/news/?p=6885\";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:316:\"WordPress 5.2 Beta 3 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site to play with the new version. There are two ways to test the latest WordPress 5.2 beta: try the WordPress Beta Tester plugin (you’ll want […]\";s: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:\"Jonathan Desrosiers\";s: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:4391:\"\n<p>WordPress 5.2 Beta 3 is now available!</p>\n\n\n\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site to play with the new version.</p>\n\n\n\n<p>There are two ways to test the latest WordPress 5.2 beta: try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want to select the “bleeding edge nightlies” option), or you can <a href=\"https://wordpress.org/wordpress-5.2-beta3.zip\">download the beta here</a> (zip).</p>\n\n\n\n<p>WordPress 5.2 is slated for release on <a href=\"https://make.wordpress.org/core/5-2/\">April 30</a>, and we need your help to get there! Thanks to the testing and feedback from everyone who tried <a href=\"https://wordpress.org/news/2019/04/wordpress-5-2-beta-2/\">beta 2</a>, nearly <a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=04%2F09%2F2019..04%2F13%2F2019&milestone=5.2&group=component&col=id&col=summary&col=status&col=milestone&col=owner&col=type&col=priority&order=priority\">40 tickets have been closed</a> since then. Here are the major changes and bug fixes:</p>\n\n\n\n<ul><li>The new Site Health feature has continued to be refined.</li><li>Plugins no longer update if a site is running an unsupported version of PHP (see #46613).</li><li>It’s now more apparent when a site is running in Recovery Mode (see #46608).</li><li>The distraction free button no longer breaks keyboard navigation in the Classic Editor (see #46640).</li><li>Assistive technologies do a better job of announcing admin bar sub menus (see #37513).</li><li>Subject lines in WordPress emails are now more consistent (see #37940).</li><li>Personal data exports now only show as completed when a user downloads their data (see #44644).</li><li>Plus more improvements to accessibility (see #35497 and #42853).</li></ul>\n\n\n\n<h2>Minimum PHP Version Update</h2>\n\n\n\n<p><strong>Important reminder: </strong>as of WordPress 5.2 beta 2, the minimum PHP version that WordPress will require is 5.6.20. If you’re running an older version of PHP, we highly recommend updating it now, before WordPress 5.2 is officially released.</p>\n\n\n\n<figure class=\"wp-block-embed-wordpress wp-block-embed is-type-wp-embed is-provider-wordpress-news\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"rEVkMIfjDq\"><a href=\"https://wordpress.org/news/2019/04/minimum-php-version-update/\">Minimum PHP Version update</a></blockquote><iframe title=\"“Minimum PHP Version update” — WordPress News\" class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" src=\"https://wordpress.org/news/2019/04/minimum-php-version-update/embed/#?secret=rEVkMIfjDq\" data-secret=\"rEVkMIfjDq\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h2>Developer Notes</h2>\n\n\n\n<p>WordPress 5.2 has lots of refinements to polish the developer experience. To keep up, subscribe to the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> and pay special attention to the <a href=\"https://make.wordpress.org/core/tag/5-2+dev-notes/\">developers notes</a> for updates on those and other changes that could affect your products.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a> The beta 3 release also marks the <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#soft-freeze\">soft string freeze</a> point of the 5.2 release schedule.</p>\n\n\n\n<p><em><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</em></p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p><em>Would you look at that<br>each day brings release closer<br>test to be ready</em>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"6885\";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:54:\"\n \n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 5.2 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2019/04/wordpress-5-2-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 09 Apr 2019 01:27:44 +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:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s: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:2;a:5:{s:4:\"data\";s:3:\"5.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:34:\"https://wordpress.org/news/?p=6874\";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:312:\"WordPress 5.2 Beta 2 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site to play with the new version. There are two ways to test the WordPress 5.2 beta: try the WordPress Beta Tester plugin (you’ll want to […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Gary Pendergast\";s: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:4565:\"\n<p>WordPress 5.2 Beta 2 is now available!</p>\n\n\n\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site to play with the new version.</p>\n\n\n\n<p>There are two ways to test the WordPress 5.2 beta: try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want to select the “bleeding edge nightlies” option), or you can <a href=\"https://wordpress.org/wordpress-5.2-beta2.zip\">download the beta here</a> (zip).</p>\n\n\n\n<p>WordPress 5.2 is slated for release on <a href=\"https://make.wordpress.org/core/5-2/\">April 30</a>, and we need your help to get there! Thanks to the testing and feedback from everyone who tried <a href=\"https://wordpress.org/news/2019/03/wordpress-5-2-beta-1/\">beta 1</a>, nearly <a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=2019-03-28..&milestone=5.2&group=component&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">100 tickets have been closed</a> since then. Here are the major changes and bug fixes:</p>\n\n\n\n<ul><li>We’ve added support for Emoji 12! <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1fa82.png\" alt=\"🪂\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></li><li>A brand-new <code>wp_body_open()</code> template tag (and corresponding <code>wp_body_open</code> action) will let themes (and plugins!) add content right after the <code><body></code> is opened (<a href=\"https://core.trac.wordpress.org/ticket/12563\">#12563</a>).</li><li>Superfluous paragraph tags will no longer incorrectly appear in dynamic block content (<a href=\"https://core.trac.wordpress.org/ticket/45495\">#45495</a>).</li><li>The Site Health screens have received several bug fixes, tweaks, and performance improvements.</li><li>Crash Protection no longer interrupts plugin editing (<a href=\"https://core.trac.wordpress.org/ticket/46045\">#46045</a>).</li><li>Custom error handlers now load correctly (<a href=\"https://core.trac.wordpress.org/ticket/46069\">#46069</a>).</li></ul>\n\n\n\n<h2>Minimum PHP Version Update</h2>\n\n\n\n<p>As of WordPress 5.2 beta 2, the minimum PHP version that WordPress will require is 5.6.20. If you’re running an older version of PHP, we highly recommend updating it now, before WordPress 5.2 is officially released.</p>\n\n\n\n<figure class=\"wp-block-embed-wordpress wp-block-embed is-type-wp-embed is-provider-wordpress-news\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"C4d8QxYmh3\"><a href=\"https://wordpress.org/news/2019/04/minimum-php-version-update/\">Minimum PHP Version update</a></blockquote><iframe title=\"“Minimum PHP Version update” — WordPress News\" class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" src=\"https://wordpress.org/news/2019/04/minimum-php-version-update/embed/#?secret=C4d8QxYmh3\" data-secret=\"C4d8QxYmh3\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h2>Developer Notes</h2>\n\n\n\n<p>WordPress 5.2 has lots of refinements to polish the developer experience. To keep up, subscribe to the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> and pay special attention to the <a href=\"https://make.wordpress.org/core/tag/5-2+dev-notes/\">developers notes</a> for updates on those and other changes that could affect your products.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a> </p>\n\n\n\n<p><em><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</em></p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p><em>The wonderful thing<br> about betas, is betas<br> are wonderful things.</em> <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f42f.png\" alt=\"🐯\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"6874\";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:51:\"\n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"Minimum PHP Version update\";s: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://wordpress.org/news/2019/04/minimum-php-version-update/\";s: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, 01 Apr 2019 14:51:27 +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:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"PHP\";s: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:34:\"https://wordpress.org/news/?p=6810\";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:330:\"WordPress 5.2 is targeted for release at the end of this month, and with it comes an update to the minimum required version of PHP. WordPress will now require a minimum of PHP 5.6.20. Beginning in WordPress 5.1, users running PHP versions below 5.6 have had a notification in their dashboard that includes information to […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Aaron Jorbin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3851:\"\n<p>WordPress 5.2 is targeted for release at the end of this month, and with it comes an update to the minimum required version of PHP. WordPress will now require a minimum of PHP 5.6.20.</p>\n\n\n\n<p>Beginning in WordPress 5.1, users running PHP versions below 5.6 have had a notification in their dashboard that includes <a href=\"https://wordpress.org/support/update-php/\">information to help them update PHP</a>. Since then, the <a href=\"https://wordpress.org/about/stats/\">WordPress stats</a> have shown an increase in users on more recent versions of PHP. </p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https://i2.wp.com/wordpress.org/news/files/2019/03/Screen-Shot-2019-03-27-at-10.30.34-PM.png?resize=632%2C265&ssl=1\" alt=\"Screenshot of the "PHP Update Required" widget from the WordPress dashboard. Contains information about detecting an insecure version of PHP, how it affects your site, and a link for information on upgrading.\" class=\"wp-image-6826\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2019/03/Screen-Shot-2019-03-27-at-10.30.34-PM.png?resize=1024%2C429&ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2019/03/Screen-Shot-2019-03-27-at-10.30.34-PM.png?resize=300%2C126&ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2019/03/Screen-Shot-2019-03-27-at-10.30.34-PM.png?resize=768%2C322&ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2019/03/Screen-Shot-2019-03-27-at-10.30.34-PM.png?w=1046&ssl=1 1046w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /><figcaption>The dashboard widget users see if running an outdated version of PHP </figcaption></figure>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Why You Should Update PHP</h2>\n\n\n\n<p>If your site is running on an unsupported version of PHP, the WordPress updater will not offer WordPress 5.2 to your site. If you attempt to update WordPress manually, that update will fail. To continue using the latest features of WordPress you must update to a newer version of PHP. </p>\n\n\n\n<p>When updating to a new version of PHP, WordPress encourages updating to its recommended version, PHP 7.3. The PHP internals team has done a great job making its most recent version the fastest version of PHP yet. This means that updating will improve the speed of your site, both for you and your visitors.</p>\n\n\n\n<p>This performance increase also means fewer servers are needed to host websites. Updating PHP isn’t just good for your site, it also means less energy is needed for the <a href=\"https://wordpress.org/news/2019/03/one-third-of-the-web/\">1-in-3 sites that use WordPress</a>, so it’s good for the planet. </p>\n\n\n\n<h2>How to Update PHP</h2>\n\n\n\n<p>If you need help updating to a new version of PHP, <a href=\"https://wordpress.org/support/update-php/\">detailed documentation is available</a>. This includes sample communication to send to your host for them to assist you. Many hosting companies have published information on how to <a href=\"https://github.com/WordPress/servehappy-resources/blob/master/tutorials/hosting-specific/tutorials-en.md\">update PHP</a> that is specific for them. </p>\n\n\n\n<h2>5.6 now, but soon 7+</h2>\n\n\n\n<p>This is the first increase in PHP required version for WordPress since <a href=\"https://wordpress.org/news/2010/07/eol-for-php4-and-mysql4/\">2010</a>, but may not be the only increase in 2019. The WordPress core team will monitor the adoption of the most recent versions of PHP with an eye towards making PHP 7+ the minimum version towards the end of the year. </p>\n\n\n\n<figure class=\"wp-block-pullquote\"><blockquote><p><a href=\"https://wordpress.org/support/update-php/#how-to-update-your-websites-php-version-for-a-faster-more-secure-website\">Update PHP today, so you can update WordPress tomorrow!</a></p></blockquote></figure>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"6810\";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:48:\"\n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"The Month in WordPress: March 2019\";s: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://wordpress.org/news/2019/04/the-month-in-wordpress-march-2019/\";s: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, 01 Apr 2019 08:59: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6846\";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:368:\"WordPress reached a significant milestone this month. With some exciting developments in Core, an interesting new proposal, and the return of a valuable global event, March was certainly an interesting time. WordPress Now Powers One-Third of the Web WordPress’ market share has been steadily increasing, and as of halfway through this month, it powers over […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Hugh Lashbrooke\";s: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:7947:\"\n<p>WordPress reached a significant milestone this month. With some exciting developments in Core, an interesting new proposal, and the return of a valuable global event, March was certainly an interesting time.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress Now Powers One-Third of the Web</h2>\n\n\n\n<p>WordPress’ market share has been steadily increasing, and as of halfway through this month, it <a href=\"https://wordpress.org/news/2019/03/one-third-of-the-web/\">powers over one-third of the top 10 million sites on the web</a> (<a href=\"https://w3techs.com/technologies/details/cm-wordpress/all/all\">according to W3Techs</a>, which tracks usage statistics for all major web platforms).</p>\n\n\n\n<p>This growth of WordPress is only made possible by the large team of volunteers working to build the project and community. If you would like to get involved in building the future of WordPress, then <a href=\"https://make.wordpress.org/\">check out the Make network</a> for a contributor team that fits your skill set.</p>\n\n\n\n<h2>WordPress 5.2 is on the Way</h2>\n\n\n\n<p><a href=\"https://wordpress.org/news/2019/03/wordpress-5-1-1-security-and-maintenance-release/\">WordPress 5.1.1 was released this month</a>, with 14 fixes and enhancements, and the Core team is now focusing on the next major release, version 5.2. This release will include some great new features, along with <a href=\"https://make.wordpress.org/core/2019/03/20/whats-new-in-gutenberg-20th-march/\">the latest updates to the block editor</a>.</p>\n\n\n\n<p>One of the most anticipated new features is the <a href=\"https://make.wordpress.org/core/2019/03/20/the-improved-fatal-error-protection/\">improved fatal error detection</a> – this was removed from v5.1 shortly before release so that it could be improved and made more secure for this release. Along with that, <a href=\"https://wordpress.org/news/2019/04/minimum-php-version-update/\">PHP 5.6 is going to become the minimum required PHP version for WordPress</a>, a significant step towards a more modern web and <a href=\"https://make.wordpress.org/core/2019/03/26/coding-standards-updates-for-php-5-6/\">updated coding standards</a>.</p>\n\n\n\n<p><a href=\"https://wordpress.org/news/2019/03/wordpress-5-2-beta-1/\">WordPress 5.2 is now in beta</a> and you can test it by installing <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">the Beta Tester plugin</a> on any WordPress site.</p>\n\n\n\n<p>Want to get involved in building WordPress Core? Follow <a href=\"https://make.wordpress.org/core\">the Core team blog</a> and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Proposal for a Central Block Directory</h2>\n\n\n\n<p>With blocks becoming the new way to manage content in WordPress, more and more types of blocks are being developed to cater for different use cases and content types. In an effort to make it easier for content creators to find these block types, <a href=\"https://make.wordpress.org/meta/2019/03/08/the-block-directory-and-a-new-type-of-plugin/\">there is a proposal</a> for a new type of plugin and a directory to handle it.</p>\n\n\n\n<p>The proposal outlines a new type of WordPress plugin that provides blocks and nothing else, named Single Block Plugins. The primary benefit would be to provide content creators with individual pieces of functionality and new types of blocks without the need to search for and install new plugins.</p>\n\n\n\n<p>The Single Block Plugins would be hosted in a separate Block Directory section of the Plugin Directory and they would initially be JavaScript-based. Each plugin will register a single block, and they will be searchable and installable from within the editor itself. This puts blocks at the publishers’ fingertips — you no longer have to leave the editor to find them.</p>\n\n\n\n<p>Want to get involved in shaping this new type of plugin? Join in the conversation on <a href=\"https://make.wordpress.org/meta/2019/03/08/the-block-directory-and-a-new-type-of-plugin/\">the proposal post</a>, follow <a href=\"https://make.wordpress.org/meta/\">the Meta team blog</a>, and join the #meta channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Global WordPress Translation Day is Back</h2>\n\n\n\n<p>On 11 May 2019, <a href=\"https://make.wordpress.org/polyglots/2019/03/01/global-wordpress-translation-day-4-is-coming/\">the fourth Global WordPress Translation Day</a> will take place. This is a 24-hour global event dedicated to the translation of all things WordPress, from core to themes, plugins to marketing.</p>\n\n\n\n<p>Over the course of 24 hours, WordPress communities will meet to translate WordPress into their local languages and watch talks and sessions broadcast on <a href=\"https://wptranslationday.org/\">wptranslationday.org</a>. During the last Global WordPress Translation Day, 71 local events took place in 29 countries, and even more communities are expected to take part this time.</p>\n\n\n\n<p>Want to get involved in the Global WordPress Translation Day? Find out <a href=\"https://make.wordpress.org/community/2019/03/22/global-wordpress-translation-day-4-info-for-event-organizers/\">how to organize a local event</a>, <a href=\"https://wptranslationday.org/call-for-speakers/\">apply to be a speaker</a>, follow the updates on <a href=\"https://make.wordpress.org/polyglots/tag/gwtd4/\">the Polyglots team blog</a>, and join the #polyglots channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Gutenberg Development Continues</h2>\n\n\n\n<p>With the block editor in WordPress Core, the team has been able to focus on adding some frequently requested features. <a href=\"https://make.wordpress.org/core/2019/03/20/whats-new-in-gutenberg-20th-march/\">Version 5.3 of Gutenberg</a>, released this month, includes a new block manager modal, the ability to nest different elements in the cover block, and some UI tweaks to improve the hover state of blocks.</p>\n\n\n\n<p>Want to get involved in developing Gutenberg? Check out <a href=\"https://github.com/wordpress/gutenberg\">the GitHub repository</a> and join the #core-editor channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul><li>The PHP upgrade notice in WordPress 5.1 has already had <a href=\"https://twitter.com/GaryPendergast/status/1108493038811148290\">a hugely positive effect</a> on thousands of websites.</li><li>The Theme Review Team has released their useful Theme Sniffer plugin <a href=\"https://wordpress.org/plugins/theme-sniffer/\">on the Plugin Directory</a> to help theme developers build more standards-compliant themes.</li><li>The Polyglots team <a href=\"https://make.wordpress.org/polyglots/2019/03/27/helphub-localisation-plan-meeting-notes/\">has started a discussion</a> about the best way to localize WordPress user documentation.</li><li>The schedule for WordCamp Europe 2019 <a href=\"https://2019.europe.wordcamp.org/schedule/\">has been published</a> – the event takes place on June 20-22.</li><li>A new `wp_body_open` hook <a href=\"https://make.wordpress.org/themes/2019/03/29/addition-of-new-wp_body_open-hook/\">has been added to Core</a> in version 5.2, providing more power and flexibility for theme developers.</li><li>The dates and location of WordCamp for Publishers 2019 <a href=\"https://2019-columbus.publishers.wordcamp.org/\">have been announced</a>.</li><li>In a milestone achievement for inclusivity, <a href=\"https://twitter.com/wordcampmiami/status/1109102027324489731\">more than 50% of all speakers at WordCamp Miami were women</a>.</li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it here</em></a><em>.</em><br></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"6846\";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:54:\"\n \n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 5.2 Beta 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2019/03/wordpress-5-2-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Mar 2019 23:39: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:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s: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:2;a:5:{s:4:\"data\";s:3:\"5.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:34:\"https://wordpress.org/news/?p=6798\";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:318:\"WordPress 5.2 Beta 1 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site to play with the new version. You can test the WordPress 5.2 Beta two ways: Try the WordPress Beta Tester plugin (choose the “bleeding edge […]\";s: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:7:\"Josepha\";s: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:8581:\"\n<p>WordPress 5.2 Beta 1 is now available!</p>\n\n\n\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site to play with the new version.</p>\n\n\n\n<p>You can test the WordPress 5.2 Beta two ways:</p>\n\n\n\n<ul><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “bleeding edge nightlies” option)</li><li>Or <a href=\"https://wordpress.org/wordpress-5.2-beta1.zip\">download the beta here</a> (zip).</li></ul>\n\n\n\n<p>WordPress 5.2 is slated for release on <a href=\"https://make.wordpress.org/core/5-2/\">April 30</a>, and we need your help to get there. Here are some of the big items to test so we can find as many bugs as possible in the coming weeks.</p>\n\n\n\n<h2>Block Editor</h2>\n\n\n\n<p>The block editor has received significant performance improvements since WordPress 5.1, shaving 35% off the load time for massive posts, and cutting the keypress time (how responsive it feels when you’re typing) in half!</p>\n\n\n\n<p>Accessibility continues to improve, too. The block editor now supports your browser’s reduced motion settings. The post URL slug has better labelling and help text. The focus styling for keyboard navigating through landmarks is clearer and more consistent. There are a variety of new speak messages, and existing messages have been tweaked for more useful screen-reader behaviour.</p>\n\n\n\n<p>We’ve added several new blocks:</p>\n\n\n\n<ul><li>An RSS block</li><li>An Amazon Kindle embed block</li><li>A Search block</li><li>A Calendar block</li><li>A Tag Cloud block</li></ul>\n\n\n\n<p>To help you keep track of these blocks, and only show the ones you need, there’s a new block management tool to switch blocks on and off.</p>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https://i2.wp.com/wordpress.org/news/files/2019/03/01-block-manager-1024x768.png?fit=632%2C474&ssl=1\" alt=\"\" class=\"wp-image-6806\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2019/03/01-block-manager-1024x768.png?resize=1024%2C768&ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2019/03/01-block-manager-1024x768.png?resize=300%2C225&ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2019/03/01-block-manager-1024x768.png?resize=768%2C576&ssl=1 768w\" sizes=\"(max-width: 632px) 100vw, 632px\" /><figcaption>Block Management Modal</figcaption></figure>\n\n\n\n<p>We’re constantly working on existing blocks, too. There are hundreds of bug fixes and improvements in the block editor, you can read more about them in the Gutenberg plugin releases: <a href=\"https://make.wordpress.org/core/2019/01/23/whats-new-in-gutenberg-23th-january/\">4.9</a>, <a href=\"https://make.wordpress.org/core/2019/02/06/whats-new-in-gutenberg-6th-february/\">5.0</a>, <a href=\"https://make.wordpress.org/core/2019/02/20/whats-new-in-gutenberg-20th-february/\">5.1</a>, <a href=\"https://make.wordpress.org/core/2019/03/06/whats-new-in-gutenberg-6th-march/\">5.2</a>, and <a href=\"https://make.wordpress.org/core/2019/03/20/whats-new-in-gutenberg-20th-march/\">5.3</a>.</p>\n\n\n\n<h3>The WordPress Mobile Apps</h3>\n\n\n\n<p>The block editor isn’t just for websites, either. The WordPress mobile apps now include an experimental version of a built-in block editor. This is still under development, but you can try it out now!</p>\n\n\n\n<figure class=\"wp-block-embed is-type-rich is-provider-make-wordpress-mobile\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"BEX89Pj6RV\"><a href=\"https://make.wordpress.org/mobile/2019/02/26/the-block-editor-is-coming-to-the-mobile-apps/\">The block editor is coming to the mobile apps</a></blockquote><iframe title=\"“The block editor is coming to the mobile apps” — Make WordPress Mobile\" class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" src=\"https://make.wordpress.org/mobile/2019/02/26/the-block-editor-is-coming-to-the-mobile-apps/embed/#?secret=BEX89Pj6RV\" data-secret=\"BEX89Pj6RV\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h2>Site Health Check</h2>\n\n\n\n<p>Site Health Check is an ongoing project aimed at improving the stability and performance of the entire WordPress ecosystem.</p>\n\n\n\n<p>The first phase of this project (originally scoped for WordPress 5.1) is now included in WordPress 5.2. For the first time, WordPress will catch and pause the problem code, so you can log in to your Dashboard and see what the problem is (<a href=\"https://core.trac.wordpress.org/ticket/44458\">#44458</a>). Before, you’d have to FTP in to your files or get in touch with your host.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-rich is-provider-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"ueLxW5eatZ\"><a href=\"https://make.wordpress.org/core/2019/03/20/the-improved-fatal-error-protection/\">The Improved Fatal Error Protection</a></blockquote><iframe title=\"“The Improved Fatal Error Protection” — Make WordPress Core\" class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" src=\"https://make.wordpress.org/core/2019/03/20/the-improved-fatal-error-protection/embed/#?secret=ueLxW5eatZ\" data-secret=\"ueLxW5eatZ\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<p>In addition, we’re adding a new Health Check tool to your Dashboard. Visit the <em>Tools</em> menu and click on <em>Health Check</em> to get information that can help improve the speed and security of your site.</p>\n\n\n\n<h2>PHP Version Bump</h2>\n\n\n\n<p>With this release, <a href=\"https://make.wordpress.org/core/2018/12/08/updating-the-minimum-php-version/\">WordPress will increase its minimum supported PHP version to 5.6</a>. To help you check if you’re prepared for this change, WordPress 5.2 will show you a warning and help you upgrade your version of PHP, if necessary.</p>\n\n\n\n<h2>For Developers</h2>\n\n\n\n<ul><li>Plugins can now specify the minimum version of PHP that they support, so you can safely modernise your development practices without risking breaking your users’ sites. (<a href=\"https://core.trac.wordpress.org/ticket/40934\">#40934</a>)</li><li>We’ve added the <code>sodium_compat</code> library, which provides backwards compatibility for the <a href=\"https://blog.zend.com/2018/11/06/modern-cryptography-in-php-7-2-with-sodium/\">Sodium-based cryptography library added in PHP 7.2</a>. (<a href=\"https://core.trac.wordpress.org/ticket/45806\">#45806</a>)</li><li>There’s a new release of Dashicons, the WordPress Dashboard icon font. There are 25 new icons for you to use! (<a href=\"https://core.trac.wordpress.org/ticket/41074\">#41074</a>)</li><li>You can now pass a label to <code>get_search_form()</code>, improving accessibility. (<a href=\"https://core.trac.wordpress.org/ticket/42057\">#42057</a>)</li></ul>\n\n\n\n<p>There have been <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=5.2&group=resolution&order=priority\">130 tickets closed</a> in WordPress 5.2 so far, with numerous small bug fixes and improvements to help smooth your WordPress experience.</p>\n\n\n\n<p>Keep your eyes on the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for developer notes (which are <a href=\"https://make.wordpress.org/core/tag/5-2+dev-notes/\">assigned</a> the <code>dev-notes</code> tag) in the coming weeks detailing other changes in 5.2 that you should be aware of.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n\n\n\n<p><em><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</em></p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p><em>With each new release,<br>bearing multiple betas; <br>We fix, then we fly.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"6798\";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:48:\"\n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"One-third of the web!\";s: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/2019/03/one-third-of-the-web/\";s: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, 15 Mar 2019 13:16:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6789\";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:306:\"WordPress now powers over 1/3rd of the top 10 million sites on the web according to W3Techs. Our market share has been growing steadily over the last few years, going from 29.9% just one year ago to 33.4% now. We are, of course, quite proud of these numbers! The path here has been very exciting. […]\";s: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:13:\"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:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2681:\"\n<p>WordPress now powers over 1/3rd of the top 10 million sites on the web according to <a href=\"https://w3techs.com/technologies/history_overview/content_management/all\">W3Techs</a>. Our market share has been growing steadily over the last few years, going from 29.9% just one year ago to 33.4% now. We are, of course, quite proud of these numbers! <br></p>\n\n\n\n<p>The path here has been very exciting. In 2005, we were celebrating <a href=\"https://wordpress.org/news/2005/03/fifty-thousand/\">50,000 downloads</a>. Six years later, in January 2011, WordPress was powering 13.1% of websites. And now, early in 2019, we are powering 33.4% of sites. Our latest release has already been <a href=\"https://wordpress.org/download/counter/\">downloaded close to 14 million times</a>, and it was only released on the 21st of February.<br></p>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https://i0.wp.com/wordpress.org/news/files/2019/03/w3techs-content-management-systems-usage.png?w=632&ssl=1\" alt=\"Graph showing the growth of WordPress market share relative to other CMS\'s like Joomla, Drupal and others. Starting at just over 10% in January 2011 to 33.4% now.\" class=\"wp-image-6790\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2019/03/w3techs-content-management-systems-usage.png?w=900&ssl=1 900w, https://i0.wp.com/wordpress.org/news/files/2019/03/w3techs-content-management-systems-usage.png?resize=300%2C167&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2019/03/w3techs-content-management-systems-usage.png?resize=768%2C427&ssl=1 768w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /><figcaption>WordPress market share on the rise over the last 8 years. Image source: <a href=\"https://w3techs.com/technologies/history_overview/content_management/all/y\">W3Techs</a>.</figcaption></figure>\n\n\n\n<p>Over the years WordPress has become the CMS of choice for more and more people and companies. As various businesses use WordPress, the variety of WordPress sites grows. Large enterprise businesses all the way down to small local businesses: all of them use WordPress to power their site. We love seeing that and we strive to continuously make WordPress better for all of you.</p>\n\n\n\n<p>We’d like to thank everyone who works on WordPress, which is built and maintained by a <a href=\"https://make.wordpress.org\">huge community of volunteers</a> that has grown alongside the CMS. This incredible community makes it possible for WordPress to keep growing while still also remaining <em>free</em>. And of course, we’d like to thank all of you <em>using</em> WordPress for using it and trusting in it. To all of you: let’s celebrate!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"6789\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n hourly \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n 1 \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Fri, 10 May 2019 02:27:30 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Tue, 07 May 2019 21:08:56 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 2\";}}s:5:\"build\";s:14:\"20130910210210\";}', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(135, '_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3', '1557498453', 'no'),
(136, '_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3', '1557455253', 'no'),
(137, '_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9', '1557498455', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(138, '_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:107:\"WPTavern: Advanced Custom Fields 5.8.0 Introduces ACF Blocks: A PHP Framework for Creating Gutenberg Blocks\";s: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://wptavern.com/?p=89325\";s: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:117:\"https://wptavern.com/advanced-custom-fields-5-8-0-introduces-acf-blocks-a-php-framework-for-creating-gutenberg-blocks\";s: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:3548:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/05/acf-blocks.jpg?ssl=1\"><img /></a></p>\n<p>After six months in development, <a href=\"https://www.advancedcustomfields.com/blog/acf-5-8-0-release-php-blocks-for-gutenberg/\" rel=\"noopener noreferrer\" target=\"_blank\">Advanced Custom Fields 5.8.0</a> was released yesterday with a new PHP-based framework for developing custom Gutenberg block types. ACF Blocks was announced in October 2018, to the great relief of many developers who didn’t know how they were going to keep pace with learning the JavaScript required to use WordPress’ Block API. </p>\n<p>ACF’s creator, Elliot Condon, was one of the more vocal critics of Gutenberg leading up to its inclusion in WordPress 5.0. Developers were concerned about whether or not their custom metaboxes generated by ACF would still be compatible. The ACF team worked to ensure the plugin was integrated into the Gutenberg UI as much as possible and surprised users by announcing an acf_register_block() function that would allow developers to use PHP to create custom blocks.</p>\n<p>The new ACF Blocks add-on is built on top of Advanced Custom Fields Pro and does not require any JavaScript knowledge. It integrates with custom fields so developers can create custom solutions. ACF blocks are rendered using a PHP template file or a callback function that allows full control of the output HTML and live previews while editing the blocks. They also maintain native compatibility with WordPress core, meaning that all Gutenberg features like “alignment” and “re-usable blocks” work as expected.</p>\n<p>Early feedback indicates that ACF Blocks has made custom Gutenberg development more approachable for developers who are not as well-versed in React, significantly speeding up the creation of custom blocks.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">ACF Pro 5.8 for <a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a> makes Gutenberg block development a breeze! Here\'s a staff block I made in less than 30 mins. <a href=\"https://twitter.com/wp_acf?ref_src=twsrc%5Etfw\">@wp_acf</a> <a href=\"https://twitter.com/hashtag/ACFBlocks?src=hash&ref_src=twsrc%5Etfw\">#ACFBlocks</a> <a href=\"https://twitter.com/hashtag/wordpressdeveloper?src=hash&ref_src=twsrc%5Etfw\">#wordpressdeveloper</a> <a href=\"https://twitter.com/hashtag/Gutenberg?src=hash&ref_src=twsrc%5Etfw\">#Gutenberg</a> <a href=\"https://twitter.com/hashtag/reactjs?src=hash&ref_src=twsrc%5Etfw\">#reactjs</a> <a href=\"https://twitter.com/hashtag/webdevelopment?src=hash&ref_src=twsrc%5Etfw\">#webdevelopment</a> <a href=\"https://twitter.com/hashtag/webdeveloper?src=hash&ref_src=twsrc%5Etfw\">#webdeveloper</a> <a href=\"https://t.co/VqewoKkcSt\">pic.twitter.com/VqewoKkcSt</a></p>\n<p>— Sam (@sam_kent_) <a href=\"https://twitter.com/sam_kent_/status/1126468039917080577?ref_src=twsrc%5Etfw\">May 9, 2019</a></p></blockquote>\n<p></p>\n<p>This is one example of how the WordPress product ecosystem continues to evolve to support developers in the transition to a more JavaScript-powered WordPress.</p>\n<p>ACF Blocks also launched with a suite of nine ready-to-use bocks available as a plugin from the new <a href=\"https://acfblocks.com/\" rel=\"noopener noreferrer\" target=\"_blank\">acfblocks.com</a> website. These include commonly-requested functionality for client sites, such as testimonial, team, multi-button, star-rating, pricing list, and click-to-tweet, with more on the way. </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, 09 May 2019 18:14:36 +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:13:\"Sarah Gooding\";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:79:\"WPTavern: WPWeekly Episode 351 – Results of the Gutenberg Accessibility Audit\";s: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:59:\"https://wptavern.com/?p=89460&preview=true&preview_id=89460\";s: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/wpweekly-episode-351-results-of-the-gutenberg-accessibility-audit\";s: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:1904:\"<p>In this episode, <a href=\"http://jjj.me\">John James Jacoby</a> and I are joined by <a href=\"https://bamadesigner.com/\">Rachel Cherry</a>, <span class=\"css-76zvg2 css-16my406 r-1qd0xha r-ad9z0x r-bcqeeo r-qvutc0\" dir=\"auto\">Freelance software engineer, consultant,</span> and director of <a href=\"https://wpcampus.org/\">WPCampus</a> and Brian DeConinck, a front-end designer and developer with the <a href=\"https://design.oit.ncsu.edu/\">OIT Design and Web Services</a> team, part of the <a href=\"https://oit.ncsu.edu/\">Office of Information Technology</a> at <a href=\"https://www.ncsu.edu/\">NC State University</a>.</p>\n<p>We learn how Tenon was chosen as the vendor to perform the audit and what conditions needed to be met. We then dissected the results of the <a href=\"https://wpcampus.org/2019/05/gutenberg-audit-results/\">Gutenberg Accessibility Audit</a> conducted by <a href=\"https://tenon.io/\">Tenon</a>. We discuss the state of Gutenberg’s accessibility, recommendations for those in Higher Education environments, and where Gutenberg development might go from here.</p>\n<h2>Transcript:</h2>\n<p><a href=\"https://wptavern.com/wp-content/uploads/2019/05/WPWeeklyEpisode351Transcript.rtf\">WPWeeklyEpisode351Transcript</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, May 15th 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>Subscribe to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>Subscribe to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p>Subscribe to <a href=\"https://play.google.com/music/listen?u=0#/ps/Ir3keivkvwwh24xy7qiymurwpbe\">WordPress Weekly via Google Play</a></p>\n<p><strong>Listen To Episode #351:</strong><br />\n</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, 09 May 2019 00:52: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:13:\"Jeff Chandler\";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:78:\"WPTavern: WordPress Professionals: Take the Future of WordPress Careers Survey\";s: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://wptavern.com/?p=89447\";s: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://wptavern.com/wordpress-professionals-take-the-future-of-wordpress-careers-survey\";s: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:2867:\"<p>Nevena Tomovic, a Business Developer at Human Made, is researching the most important skills for pursuing a career in WordPress. She is conducting a <a href=\"http://nevena.blog/2019/04/27/open-source-survey-the-future-of-wordpress-careers/\" rel=\"noopener noreferrer\" target=\"_blank\">survey</a> for professionals that is open to anyone working in a WordPress-related capacity, including writers, developers, marketers, UI & UX designers, illustrators, community drivers, evangelists, project managers, and creatives.</p>\n<p>The <a href=\"http://nevena.blog/2019/04/27/open-source-survey-the-future-of-wordpress-careers/\" rel=\"noopener noreferrer\" target=\"_blank\">survey</a> takes less than five minutes to complete and the results will be shared at WordCamp Europe in Berlin and on <a href=\"http://nevena.blo\" rel=\"noopener noreferrer\" target=\"_blank\">nevena.blog</a>. Tomovoic will be giving a presentation titled “<a href=\"https://2019.europe.wordcamp.org/session/renaissance-jobs-in-wordpress-skills-you-need-to-survive-the-21st-century-career/\" rel=\"noopener noreferrer\" target=\"_blank\">Renaissance jobs in WordPress: Skills you need to survive the 21st-century career</a>,” where she will elaborate on global trends related to the job landscape. She will also be speaking about how employers and managers can attract new talent through WordPress education.</p>\n<p>In a recent <a href=\"http://nevena.blog/2019/04/27/renaissance-jobs-in-digital-what-skills-do-you-need-to-survive-a-21st-century-career/\" rel=\"noopener noreferrer\" target=\"_blank\">post</a> on her blog, Tomovic elaborated on the concept of “Renaissance jobs,” positions that use titles merging multiple skills into one role:</p>\n<blockquote><p>Renaissance jobs, also otherwise known as hybrid roles are a mishmash of more than one skill, a combination of expertise in more than one domain. You might have come across roles such as experience architect, user experience consultant, or even customer wrangler, all of these typically involve technical knowledge, excellent communication and management skills. All of these roles are a completely foreign concept for most of our parents. The 21st century has brought with it remote work, chief growth officers, and a globalized workforce among other things.</p></blockquote>\n<p>Tomovic’s survey data will identify what skills are most important in the WordPress job market right now. The survey does not collect any personal data and the raw data will be deleted after the results are published. </p>\n<p>If you want to check out Tomovic’s talk in person, make sure to <a href=\"https://2019.europe.wordcamp.org/tickets/\" rel=\"noopener noreferrer\" target=\"_blank\">purchase a ticket</a> to WordCamp Europe. The final batch of tickets has gone on sale and there are only 133 general admission tickets remaining.</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, 08 May 2019 23:24:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";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:97:\"WPTavern: New Membership Block Coming to Jetpack, Site Health and Debug Info Added to Version 7.3\";s: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://wptavern.com/?p=89387\";s: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:107:\"https://wptavern.com/new-membership-block-coming-to-jetpack-site-health-and-debug-info-added-to-version-7-3\";s: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:3382:\"<p><a href=\"https://jetpack.com/2019/05/07/jetpack-7-3start-strong-and-stay-healthy/\" rel=\"noopener noreferrer\" target=\"_blank\">Jetpack 7.3</a> was released yesterday with changes that improve the “out of the box” experience. The plugin now enables fewer features on setup so users can have more control over what they activate on their sites. </p>\n<p>The new version also integrates with WordPress 5.2’s new Site Health checks. It includes a status check and moves Jetpack’s legacy debug data to a section in the new “Site Health Info” tab. The initial status check isn’t very descriptive regarding critical errors, but these error messages can be improved in future iterations so users know how to get to a page with more information. </p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/05/Screen-Shot-2019-05-08-at-11.57.44-AM.png?ssl=1\"><img /></a></p>\n<h3>New Membership Block Now Available for Jetpack Beta Testers</h3>\n<p>Jetpack is getting ready to introduce a new <a href=\"https://github.com/Automattic/jetpack/pull/9802\" rel=\"noopener noreferrer\" target=\"_blank\">Membership block</a> that will essentially function like a recurring donation button using Stripe as the payment gateway. </p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/05/jetpack-membership-button.png?ssl=1\"><img /></a></p>\n<p>Users will be able to set the currency, price, product name, and renewal interval directly within the block.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/05/membership-block-configure.png?ssl=1\"><img /></a></p>\n<p>This release adds the new block behind the JETPACK_BETA_BLOCKS constant for users who are beta testing new blocks. Feedback from testers will be addressed in future pull requests. The PR merged into Jetpack 7.3 includes the following technical additions for the new Membership block:</p>\n<ul>\n<li>Introduce endpoints that communicate with WP.COM</li>\n<li>Whitelist certain options, CPTs and meta to store / sync data</li>\n<li>Introduce Gutenberg block that uses these endpoints and provides UI to connect to Stripe, create and choose a product</li>\n<li>Introduce a frontend of a block with the sole purpose of displaying a checkout window from WP.com in an iframe</li>\n</ul>\n<p>In its current form, the use of the term “Membership” for the block might be a bit misleading for some users, depending on their expectations. Site owners usually expect more granular management of members, multiple membership tiers, customizable emails, various renewal options, content access, and more for managing memberships. </p>\n<p>Unless Jetpack intends to make this the gateway to more robust membership capabilities, then “Recurring donation/payment button” might be a more accurate name for the block. However, it wouldn’t be surprising to see a more full-featured Membership module turn up as a SaaS product from WordPress.com, as opposed to everything getting packed into the plugin.</p>\n<p>No release date has been announced for the membership block as it is still under active development and in the very early stages of beta testing.</p>\n<p>Check out the full <a href=\"https://wordpress.org/plugins/jetpack/#developers\" rel=\"noopener noreferrer\" target=\"_blank\">changelog</a> to see all the enhancements and bug fixes in Jetpack 7.3.</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, 08 May 2019 17:57: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";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:100:\"WPTavern: WordPress 5.2 “Jaco” Released, Includes Fatal PHP Error Protection and A Recovery Mode\";s: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://wptavern.com/?p=89405\";s: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:104:\"https://wptavern.com/wordpress-5-2-jaco-released-includes-fatal-php-error-protection-and-a-recovery-mode\";s: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:4870:\"<p>WordPress 5.2 “Jaco” named after bassist <a href=\"https://en.wikipedia.org/wiki/Jaco_Pastorius\">Jaco Pastorius</a>, is <a href=\"https://wordpress.org/news/2019/05/jaco/\">now available for download</a>. Normally, I’d start listing new features but I’m going to do something a little different this time. </p>\n\n\n\n<p>Let’s begin by recognizing the 327 people who contributed to this release with 109 of those being first time contributors. It was led by <a href=\"http://ma.tt/\">Matt Mullenweg</a>, <a href=\"https://josepha.blog/\">Josepha Haden Chomphosy</a>, and <a href=\"https://pento.net/\">Gary Pendergast</a>. Included in the list is Alex (Viper007Bond) Mills who <a href=\"https://wptavern.com/alex-mills-ends-his-battle-with-leukemia\">passed away</a> from Leukemia earlier this year.</p>\n\n\n\n<div class=\"wp-block-image\"><img />Screenshot taken by <a href=\"https://twitter.com/Kraft/status/1125892606913855489\">Brandon Kraft</a></div>\n\n\n\n<p>Mills still has a few uncommitted patches in Trac so it’s possible he’ll end up on the list of contributors in future releases. </p>\n\n\n\n<h2>Minimum PHP Version Required to Run WordPress 5.2 Is Now 5.6.20</h2>\n\n\n\n<p>WordPress 5.2 bumps up the minimum PHP version required to 5.6.20. If you’re using an older version, you’ll need to update PHP before upgrading to WordPress 5.2. Updating PHP to version 7.3 or above <a href=\"https://wordpress.org/about/requirements/\">is recommended</a>. </p>\n\n\n\n<h2>Additional Improvements to Site Health Check </h2>\n\n\n\n<p>In <a href=\"https://wptavern.com/wordpress-5-1-improves-editor-performance-encourages-users-to-update-outdated-php-versions\">WordPress 5.1</a>, Site Health Check features were added to inform users of outdated PHP versions. WordPress 5.2 builds on this foundation by adding two new pages that help debug common configuration issues. Users can find the Site Health section in the WordPress backend by browsing to <strong>Tools > Site Health</strong>. </p>\n\n\n\n<div class=\"wp-block-image\"><img />Site Health Check Test Results</div>\n\n\n\n<p>Browsing to the Site Health page triggers a series of tests. When the tests are performed, errors and recommended improvements are displayed on the results page. There’s also a an Information tab that displays every detail about the configuration of your site.</p>\n\n\n\n<div class=\"wp-block-image\"><img />Site Health Check Detailed Information</div>\n\n\n\n<p>Theme and Plugin authors can <a href=\"https://make.wordpress.org/core/2019/04/25/site-health-check-in-5-2/\">add their own tests</a> and modify or remove existing ones with filters. </p>\n\n\n\n<h2>Fatal Error Protection</h2>\n\n\n\n<p>Instead of seeing the dreaded “white screen of death,” WordPress 5.2 includes fatal PHP error protection. When a fatal error is detected, a user-facing error message is displayed and an email is sent to the administrator’s email address. </p>\n\n\n\n<p>The email includes a link to a new feature called “recovery mode.” While in recovery mode, plugins and themes that are causing fatal errors are put into a paused state to ensure administrators can work around the errors and access the backend normally. </p>\n\n\n\n<p>In addition to being informed about which themes or plugins are causing fatal errors, administrators have at least three options to fix the issue. </p>\n\n\n\n<ul><li>Administrators can deactivate the theme or plugin to maintain a working version of the site.</li><li>Administrators can fix the problem if they have the technical capabilities, and afterwards reactivate the theme or plugin.</li><li>Administrators can file a support request with the developer, pointing out the error.</li></ul>\n\n\n\n<p>Administrators can exit recovery mode by pressing a button in the admin bar. A few examples on how developers can utilize this feature can be <a href=\"https://make.wordpress.org/core/2019/04/16/fatal-error-recovery-mode-in-5-2/\">found here</a>. </p>\n\n\n\n<p>WordPress 5.2 also includes <a href=\"https://make.wordpress.org/core/2019/04/24/notable-accessibility-changes-in-5-2/\">accessibility improvements</a>, <a href=\"https://wptavern.com/wordpress-5-2-will-add-13-new-icons-to-the-dashicon-library\">thirteen new dashboard icons</a>, plugin compatibility checks, and an variety of <a href=\"https://make.wordpress.org/core/2019/04/03/whats-new-in-gutenberg-3rd-april/\">changes to the block editor</a>. In addition, the Privacy Policy page includes <a href=\"https://make.wordpress.org/core/2019/04/24/developer-focused-privacy-updates-in-5-2/\">four new helpers</a> that make customizing and designing the page easier. </p>\n\n\n\n<p>To learn more about the features in WordPress 5.2 and how to extend or work with them, check out the <a href=\"https://make.wordpress.org/core/2019/04/16/wordpress-5-2-field-guide/\">WordPress 5.2 Field Guide</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, 08 May 2019 17:16: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:13:\"Jeff Chandler\";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:51:\"HeroPress: Broadening My Horizons Through WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=2805\";s: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:154:\"https://heropress.com/essays/broadening-my-horizons-through-wordpress/#utm_source=rss&utm_medium=rss&utm_campaign=broadening-my-horizons-through-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:12270:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2020/05/050819-min-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: I was scared that if I failed to learn what I need to know, I\'d be left in the dust.\" /><p>I’ve been a web designer since 1996. In some ways, it’s hard for me to fathom. Those were the days of Netscape Navigator and table-based page layouts. I wrote every bit of HTML by hand on a seriously-underpowered computer and a tiny monitor. Definitely a far cry from where we are today.</p>\n<p>I was completely self-taught and learned by doing. When I landed my first job as a full-time “webmaster” at my <a href=\"https://cumberlink.com/\">local newspaper</a>, I didn’t even know what Photoshop was (I had been using Microsoft Paint for graphics – feel free to laugh).</p>\n<p>Looking back, I know that I wasn’t a very good designer in those days – but that didn’t matter. I felt lucky to be on the ground floor of an industry that was poised to change the world.</p>\n<h3>An Early Start</h3>\n<p>As an 18-year-old, I was often the youngest person in the office. Sometimes, that led to not being taken seriously by those in charge. Still, I did have a few mentors at the paper who were more than generous with their friendship and advice. It was my first taste of the “real world” – a lesson I sorely needed.</p>\n<p>At the same time, I realized that I wasn’t going to stay there forever. The pay wasn’t very good and the hours weren’t my cup of tea. Most of all, I just felt that I could do better. Just over a year in, I left.</p>\n<p>From there, I spent the next couple of years in various corporate settings – none of which felt very fulfilling. My existence was very much that of a worker bee. Sure, this is what happens when you’re just starting out – but I was too dense to see it that way.</p>\n<p>Again, I had a feeling that there was something else out there for me. But there didn’t seem to be a path to further my career, unless I took it upon myself to do so.</p>\n<p>So, in 1999 I went all-in as a freelancer working from home. While I’ve gone through a few different places to call home in the years since, I’m still here – thanks in great part to WordPress.</p>\n<p>But before I found both the software and community that would change my trajectory, I had to go through some ups and downs.</p>\n<h3>Hitting a Wall</h3>\n<p>Starting my own business at 21 was at once frightening and gratifying. I booked a few steady clients early on, and that provided a much-needed boost in confidence (and revenue). Yet there was also a tremendous amount of responsibility that I wasn’t prepared for. It was another real-world lesson and I had to mature in a hurry.</p>\n<p>As for technology, I upgraded my computer, but not necessarily my approach. The first several years were still ruled by building static HTML sites. And as clients started asking for more complex features such as ecommerce, I realized something about myself: I was incredibly afraid of what I didn’t know.</p>\n<p>This feeling would haunt me much more than I could have anticipated. It was like a massive weight on my shoulders. As long as work kept me in my comfort zone, I was fine. But anything outside of that brought out my anxiety.</p>\n<p>Sure, I had achieved some level of success at a young age (with a hobby site even going <a href=\"https://en.wikipedia.org/wiki/Surge_(drink)#Revival\">viral</a>). I had plenty of work, I even moved out of my parent’s house. But I also feared the unknown. I hadn’t been a very good student in high school and had zero confidence in my ability to learn something more advanced.</p>\n<p>At the same time, that fear was joined by a great deal of frustration. I started struggling to build larger sites using those same tired methods. And maintaining them was even worse.</p>\n<p>In all, I was stressed out and felt stuck in a dead end. The passion I once had for design and code had vanished. I was in desperate need of a new direction.</p>\n<h3>A Glimmer of Light</h3>\n<p>It’s amazing how, just when things feel their darkest, a little bit of light shows up and sparks something in you. For me, WordPress was like a tiny matchstick in a pitch-black cave.</p>\n<p>Somewhere around 2005, I installed an early version of WordPress as a playful experiment. At the time, I saw other content management systems starting to pop up, but wasn’t really impressed. Frankly, the sites running them all looked the same.</p>\n<p>But tearing apart a WordPress theme was different. I knew nothing about PHP, but found that the templates were pretty easy to follow. I liked that I could make design changes without too much trouble. Even if I broke something, I was (usually) able to bring things back to their previous state.</p>\n<p>Still, I wasn’t ready or willing to abandon my old-school techniques for building sites just yet (I even jettisoned the CSS layouts from my theme and replaced them with tables). WordPress was something I used on the periphery. I created a few simple blogs for clients, but hadn’t really thought of using it for anything more.</p>\n<p>In fact, it would be a few more years until I was finally ready to make a change.</p>\n<h3>A New Beginning</h3>\n<p>2010 was a banner year in my career. It was the year where I, inspired by my wife and newborn daughter, started to really confront my fears. I had grown completely tired of the way I had been doing things. This was the year I became convinced that WordPress was the game-changer I needed.</p>\n<p>As the software matured, more developers started using it to run entire sites – not just traditional blogs. I was very much intrigued, even excited, about the possibility of what I could achieve in terms of both design and functionality.</p>\n<p>So, I convinced one of my agency clients to let me try using WordPress on a project. Things went well enough that we decided to start using it more often. And, for me, it was like that little matchstick in the dark cave turned into a huge beacon.</p>\n<p>The more I used WordPress, the more curious I became about what else it could do. I found myself not only being unafraid to learn, but actually <em>motivated</em> to do so.</p>\n<p>By the next year, I had moved almost exclusively to WordPress. That led to another watershed moment: Attending my first WordCamp.</p>\n<h3>Discovering That I Wasn’t Alone</h3>\n<p>Visiting <a href=\"https://2011.philly.wordcamp.org\">WordCamp Philadelphia 2011</a> was an eye-opening experience. This was not the buttoned-down, corporate atmosphere that brought me discomfort years earlier. Instead, I found a casual, welcoming vibe that made me feel like I belonged.</p>\n<p>The crowd was diverse in just about every way imaginable. And I met people who were all over the map when it came to knowledge of WordPress. Some were complete newbies, others were experts. But regardless of their skill level or experience, they all gathered in the same place. It struck me that I was now a part of something unique.</p>\n<p>This burgeoning community, coupled with great software, had all of the sudden put me on a path that I never imagined possible. It made me want to learn all that I could and be a part of something bigger than myself.</p>\n<p>Before too long, I discovered a confidence I never felt before. I was not only building better websites than I ever had, I was also eager to be a part of the WordPress community. And, despite being a bit shy, I even spoke at WordCamp Baltimore in <a href=\"https://2012.baltimore.wordcamp.org/speakers/#eric-karkovack\">2012</a>.</p>\n<p>I felt like anything was possible.</p>\n<h3>Opportunity Knocks</h3>\n<p>As my experience with both WordPress and its community has grown, it has opened up some amazing opportunities. For one, it gave me the courage to try and fulfill another lifelong dream: to become a writer.</p>\n<p>I started off by submitting an article to <a href=\"https://speckyboy.com/how-to-deal-with-creative-differences-with-clients/\">Speckyboy Web Design Magazine</a>, not really knowing what to expect. When it was published, I was incredibly excited. So, I kept on writing. And each time, site editor Paul Andrew kept on publishing my work.</p>\n<p>Even more mind-boggling is that, eventually, this led to a regular <a href=\"https://speckyboy.com/author/erickarkovack/\">role</a> with the site. I’ve published hundreds of articles and have enjoyed every minute of it. And more writing gigs have followed. My topic of choice? WordPress, of course!</p>\n<p>When it comes to my design business, I’m no longer afraid to push those boundaries. I’ve built and maintained hundreds of WordPress sites that run the gamut in terms of size and functionality. Yes, including the formerly fear-inducing ecommerce.</p>\n<p>But I know that, without the confidence boost I received by working with WordPress, none of this would have been possible. I am beyond grateful, and so glad that I found it at a pivotal time in my life.</p>\n<h3>What I’ve Learned</h3>\n<p>So, what does this all mean? I’ve given it a lot of thought.</p>\n<p>There are still days when I’m overwhelmed and stressed out. But even then, I tell myself how I lucky I am to do what I do each day. And somehow, I have maintained a passion for my work that I think is here to stay.</p>\n<p>But the biggest lesson I’ve learned, and the thing I’d like to share with you, is to give yourself a chance to learn and grow. Sometimes, the unknown can be scary – I get it. I was so afraid of the fact that I wasn’t formally trained and that I didn’t have the knowledge I needed to go further. I was scared that if I failed to learn what I needed to know that I’d be left in the dust.</p>\n<p>Yet, that’s the amazing thing about WordPress and web design in general. There are so many great resources out there you can learn from. And there is a community out there who is willing to help and share what they know.</p>\n<p>Everything is right there in front of us. All it takes is a willingness to try.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Broadening My Horizons Through WordPress\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Broadening%20My%20Horizons%20Through%20WordPress&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fbroadening-my-horizons-through-wordpress%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Broadening My Horizons Through WordPress\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fbroadening-my-horizons-through-wordpress%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fbroadening-my-horizons-through-wordpress%2F&title=Broadening+My+Horizons+Through+WordPress\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Broadening My Horizons Through WordPress\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/broadening-my-horizons-through-wordpress/&media=https://heropress.com/wp-content/uploads/2020/05/050819-min-150x150.jpg&description=Broadening My Horizons Through WordPress\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Broadening My Horizons Through WordPress\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/broadening-my-horizons-through-wordpress/\" title=\"Broadening My Horizons Through WordPress\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/broadening-my-horizons-through-wordpress/\">Broadening My Horizons Through WordPress</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 08 May 2019 12:00: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Eric Karkovack\";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:44:\"WordPress.org blog: WordPress 5.2 “Jaco”\";s: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:34:\"https://wordpress.org/news/?p=6925\";s: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://wordpress.org/news/2019/05/jaco/\";s: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:28370:\"<h2>Keeping Sites Safer</h2>\n\n\n\n<img src=\"https://i1.wp.com/wordpress.org/news/files/2019/05/about_maintain-wordpress-cropped.png?fit=632%2C500&ssl=1\" alt=\"\" class=\"wp-image-6926\" />\n\n\n\n<p>Version 5.2 of WordPress, named “Jaco” in honor of renowned and revolutionary jazz bassist Jaco Pastorius, is available for download or update in your WordPress dashboard. New features in this update make it easier than ever to fix your site if something goes wrong.</p>\n\n\n\n<p>There are even more robust tools for identifying and fixing configuration issues and fatal errors. Whether you are a developer helping clients or you manage your site solo, these tools can help get you the right information when you need it.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h3>Site Health Check</h3>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://i2.wp.com/wordpress.org/news/files/2019/05/about_site-health.png?resize=205%2C143&ssl=1\" alt=\"\" class=\"wp-image-6927\" width=\"205\" height=\"143\" /></div>\n\n\n\n<p>Building on the <a href=\"https://wordpress.org/news/2019/02/betty/\">Site Health</a> features introduced in 5.1, this release adds two new pages to help debug common configuration issues. It also adds space where developers can include debugging information for site maintainers.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h3>PHP Error Protection</h3>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2019/05/about_error-protection.png?resize=202%2C228&ssl=1\" alt=\"\" class=\"wp-image-6930\" width=\"202\" height=\"228\" /></div>\n\n\n\n<p>This administrator-focused update will let you safely fix or manage fatal errors without requiring developer time. It features better handling of the so-called “white screen of death,” and a way to enter recovery mode, which pauses error-causing plugins or themes.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Improvements for Everyone</h2>\n\n\n\n<h3>Accessibility Updates</h3>\n\n\n\n<p>A number of changes work together to improve contextual awareness and keyboard navigation flow for those using screen readers and other assistive technologies.</p>\n\n\n\n<h3>New Dashboard Icons</h3>\n\n\n\n<p>Thirteen new icons including Instagram, a suite of icons for BuddyPress, and rotated Earth icons for global inclusion. Find them in the Dashboard and have some fun!</p>\n\n\n\n<h3>Plugin Compatibility Checks</h3>\n\n\n\n<p>WordPress will now automatically determine if your site’s version of PHP is compatible with installed plugins. If the plugin requires a higher version of PHP than your site currently uses, WordPress will not allow you to activate it, preventing potential compatibility errors.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Developer Happiness</h2>\n\n\n\n<div class=\"wp-block-columns has-2-columns\">\n<div class=\"wp-block-column\">\n<p><a href=\"https://make.wordpress.org/core/2019/03/26/coding-standards-updates-for-php-5-6/\"><strong>PHP Version Bump</strong></a><strong> </strong></p>\n\n\n\n<p>The minimum supported PHP version is now 5.6.20. As of WordPress 5.2*, themes and plugins can safely take advantage of namespaces, anonymous functions, and more!</p>\n</div>\n\n\n\n<div class=\"wp-block-column\">\n<p><a href=\"https://make.wordpress.org/core/2019/04/24/developer-focused-privacy-updates-in-5-2/\"><strong>Privacy Updates</strong></a><strong> </strong></p>\n\n\n\n<p>A new theme page template, a conditional function, and two CSS classes make designing and customizing the Privacy Policy page easier.</p>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns has-2-columns\">\n<div class=\"wp-block-column\">\n<p><strong><a href=\"https://make.wordpress.org/core/2019/04/24/miscellaneous-developer-updates-in-5-2/\">New Body Hook</a> </strong></p>\n\n\n\n<p>5.2 introduces a wp_body_open hook, which lets themes support injecting code right at the beginning of the <body> element.</p>\n</div>\n\n\n\n<div class=\"wp-block-column\">\n<p><a href=\"https://make.wordpress.org/core/2019/03/25/building-javascript/\"><strong>Building JavaScript</strong></a></p>\n\n\n\n<p>With the addition of webpack and Babel configurations in the wordpress/scripts package, developers won’t have to worry about setting up complex build tools to write modern JavaScript.</p>\n</div>\n</div>\n\n\n\n<p><em>*If you are running an old version of PHP (less than 5.6.20), <a href=\"https://wordpress.org/support/update-php/\">update your PHP</a> before installing 5.2.</em></p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>The Squad</h2>\n\n\n\n<p>This release was led by <a href=\"http://ma.tt/\">Matt Mullenweg</a>, <a href=\"https://josepha.blog/\">Josepha Haden Chomphosy</a>, and <a href=\"https://pento.net/\">Gary Pendergast</a>. They were graciously supported by 327 generous volunteer contributors. Load a Jaco Pastorius playlist on your favorite music service and check out some of their profiles:</p>\n\n\n<a href=\"https://profiles.wordpress.org/aandrewdixon\">aandrewdixon</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/adamsilverstein\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/adamsoucie\">Adam Soucie</a>, <a href=\"https://profiles.wordpress.org/oztaser\">Adil Öztaşer</a>, <a href=\"https://profiles.wordpress.org/ajitbohra\">Ajit Bohra</a>, <a href=\"https://profiles.wordpress.org/schlessera\">Alain Schlesser</a>, <a href=\"https://profiles.wordpress.org/aldavigdis\">aldavigdis</a>, <a href=\"https://profiles.wordpress.org/alexdenning\">Alex Denning</a>, <a href=\"https://profiles.wordpress.org/akirk\">Alex Kirk</a>, <a href=\"https://profiles.wordpress.org/viper007bond\">Alex Mills</a>, <a href=\"https://profiles.wordpress.org/tellyworth\">Alex Shiels</a>, <a href=\"https://profiles.wordpress.org/lexiqueen\">Alexis</a>, <a href=\"https://profiles.wordpress.org/alexislloyd\">Alexis Lloyd</a>, <a href=\"https://profiles.wordpress.org/allancole\">allancole</a>, <a href=\"https://profiles.wordpress.org/allendav\">Allen Snook</a>, <a href=\"https://profiles.wordpress.org/arena\">André</a>, <a href=\"https://profiles.wordpress.org/nosolosw\">Andrés</a>, <a href=\"https://profiles.wordpress.org/andraganescu\">andraganescu</a>, <a href=\"https://profiles.wordpress.org/afercia\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andreamiddleton\">Andrea Middleton</a>, <a href=\"https://profiles.wordpress.org/euthelup\">Andrei Lupu</a>, <a href=\"https://profiles.wordpress.org/aduth\">Andrew Duthie</a>, <a href=\"https://profiles.wordpress.org/nacin\">Andrew Nacin</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/rarst\">Andrey \"Rarst\" Savchenko</a>, <a href=\"https://profiles.wordpress.org/afragen\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/andizer\">Andy Meerwaldt</a>, <a href=\"https://profiles.wordpress.org/aniketpatel\">Aniket Patel</a>, <a href=\"https://profiles.wordpress.org/atimmer\">Anton Timmermans</a>, <a href=\"https://profiles.wordpress.org/vanyukov\">Anton Vanyukov</a>, <a href=\"https://profiles.wordpress.org/avillegasn\">Antonio Villegas</a>, <a href=\"https://profiles.wordpress.org/antonypuckey\">antonypuckey</a>, <a href=\"https://profiles.wordpress.org/aristath\">Aristeides Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/wpboss\">Aslam Shekh</a>, <a href=\"https://profiles.wordpress.org/axaak\">axaak</a>, <a href=\"https://profiles.wordpress.org/pixolin\">Bego Mario Garde</a>, <a href=\"https://profiles.wordpress.org/empireoflight\">Ben Dunkle</a>, <a href=\"https://profiles.wordpress.org/britner\">Ben Ritner - Kadence Themes</a>, <a href=\"https://profiles.wordpress.org/bfintal\">Benjamin Intal</a>, <a href=\"https://profiles.wordpress.org/billerickson\">Bill Erickson</a>, <a href=\"https://profiles.wordpress.org/birgire\">Birgir Erlendsson</a>, <a href=\"https://profiles.wordpress.org/bodohugobarwich\">Bodo (Hugo) Barwich</a>, <a href=\"https://profiles.wordpress.org/gitlost\">bonger</a>, <a href=\"https://profiles.wordpress.org/boonebgorges\">Boone Gorges</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/brentswisher\">Brent Swisher</a>, <a href=\"https://profiles.wordpress.org/bulletdigital\">bulletdigital</a>, <a href=\"https://profiles.wordpress.org/burhandodhy\">Burhan Nasir</a>, <a href=\"https://profiles.wordpress.org/cathibosco1\">Cathi Bosco</a>, <a href=\"https://profiles.wordpress.org/chetan200891\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/chiaralovelaces\">Chiara Magnani</a>, <a href=\"https://profiles.wordpress.org/chouby\">Chouby</a>, <a href=\"https://profiles.wordpress.org/chrisvanpatten\">Chris Van Patten</a>, <a href=\"https://profiles.wordpress.org/dswebsme\">D.S. Webster</a>, <a href=\"https://profiles.wordpress.org/colorful-tones\">Damon Cook</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber\">Daniel Bachhuber</a>, <a href=\"https://profiles.wordpress.org/danieltj\">Daniel James</a>, <a href=\"https://profiles.wordpress.org/diddledan\">Daniel Llewellyn</a>, <a href=\"https://profiles.wordpress.org/talldanwp\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/mte90\">Daniele Scasciafratte</a>, <a href=\"https://profiles.wordpress.org/nerrad\">Darren Ethier (nerrad)</a>, <a href=\"https://profiles.wordpress.org/drw158\">Dave Whitley</a>, <a href=\"https://profiles.wordpress.org/davefx\">DaveFX</a>, <a href=\"https://profiles.wordpress.org/davetgreen\">davetgreen</a>, <a href=\"https://profiles.wordpress.org/david.binda\">David Binovec</a>, <a href=\"https://profiles.wordpress.org/davidbinda\">David Binovec</a>, <a href=\"https://profiles.wordpress.org/dlh\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/dgroddick\">David Roddick</a>, <a href=\"https://profiles.wordpress.org/get_dave\">David Smith</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald\">davidb</a>, <a href=\"https://profiles.wordpress.org/folletto\">Davide \'Folletto\' Casali</a>, <a href=\"https://profiles.wordpress.org/dekervit\">dekervit</a>, <a href=\"https://profiles.wordpress.org/denis-de-bernardy\">Denis de Bernardy</a>, <a href=\"https://profiles.wordpress.org/dmsnell\">Dennis Snell</a>, <a href=\"https://profiles.wordpress.org/valendesigns\">Derek Herman</a>, <a href=\"https://profiles.wordpress.org/pcfreak30\">Derrick Hammer</a>, <a href=\"https://profiles.wordpress.org/designsimply\">designsimply</a>, <a href=\"https://profiles.wordpress.org/dhanukanuwan\">Dhanukanuwan</a>, <a href=\"https://profiles.wordpress.org/dharm1025\">Dharmesh Patel</a>, <a href=\"https://profiles.wordpress.org/dianeco\">Diane</a>, <a href=\"https://profiles.wordpress.org/diegoreymendez\">diegoreymendez</a>, <a href=\"https://profiles.wordpress.org/dilipbheda\">Dilip Bheda</a>, <a href=\"https://profiles.wordpress.org/odminstudios\">Dima</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/dency\">Dixita Dusara</a>, <a href=\"https://profiles.wordpress.org/iamdmitrymayorov\">Dmitry Mayorov</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/drewapicture\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/dsifford\">dsifford</a>, <a href=\"https://profiles.wordpress.org/iseulde\">Ella van Durpe</a>, <a href=\"https://profiles.wordpress.org/etoledom\">etoledom</a>, <a href=\"https://profiles.wordpress.org/fabiankaegy\">fabiankaegy</a>, <a href=\"https://profiles.wordpress.org/faisal03\">Faisal Alvi</a>, <a href=\"https://profiles.wordpress.org/parsmizban\">Farhad Sakhaei</a>, <a href=\"https://profiles.wordpress.org/flixos90\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/peaceablewhale\">Franklin Tse</a>, <a href=\"https://profiles.wordpress.org/fuegas\">Fuegas</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/soulseekah\">Gennady Kovshenin</a>, <a href=\"https://profiles.wordpress.org/gziolo\">Grzegorz (Greg) Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/wido\">Guido Scialfa</a>, <a href=\"https://profiles.wordpress.org/gutendev\">GutenDev <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/270d.png\" alt=\"✍\" class=\"wp-smiley\" /><img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/3299.png\" alt=\"㊙\" class=\"wp-smiley\" /></a>, <a href=\"https://profiles.wordpress.org/hannahmalcolm\">Hannah Malcolm</a>, <a href=\"https://profiles.wordpress.org/hardik-amipara\">Hardik Amipara</a>, <a href=\"https://profiles.wordpress.org/thakkarhardik\">Hardik Thakkar</a>, <a href=\"https://profiles.wordpress.org/luehrsen\">Hendrik Luehrsen</a>, <a href=\"https://profiles.wordpress.org/henrywright-1\">Henry</a>, <a href=\"https://profiles.wordpress.org/henrywright\">Henry Wright</a>, <a href=\"https://profiles.wordpress.org/ryanshoover\">Hoover</a>, <a href=\"https://profiles.wordpress.org/ianbelanger\">Ian Belanger</a>, <a href=\"https://profiles.wordpress.org/iandunn\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ice9js\">ice9js</a>, <a href=\"https://profiles.wordpress.org/zinigor\">Igor Zinovyev</a>, <a href=\"https://profiles.wordpress.org/imath\">imath</a>, <a href=\"https://profiles.wordpress.org/ixium\">Ixium</a>, <a href=\"https://profiles.wordpress.org/jdgrimes\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jakeparis\">jakeparis</a>, <a href=\"https://profiles.wordpress.org/cc0a\">James</a>, <a href=\"https://profiles.wordpress.org/janak007\">janak Kaneriya</a>, <a href=\"https://profiles.wordpress.org/jarred-kennedy\">Jarred Kennedy</a>, <a href=\"https://profiles.wordpress.org/vengisss\">Javier Villanueva</a>, <a href=\"https://profiles.wordpress.org/jayupadhyay01\">Jay Upadhyay</a>, <a href=\"https://profiles.wordpress.org/jaydeep-rami\">Jaydip Rami</a>, <a href=\"https://profiles.wordpress.org/jaymanpandya\">Jayman Pandya</a>, <a href=\"https://profiles.wordpress.org/jdeeburke\">jdeeburke</a>, <a href=\"https://profiles.wordpress.org/audrasjb\">Jean-Baptiste Audras</a>, <a href=\"https://profiles.wordpress.org/jeffpaul\">Jeff Paul</a>, <a href=\"https://profiles.wordpress.org/cheffheid\">Jeffrey de Wit</a>, <a href=\"https://profiles.wordpress.org/miss_jwo\">Jenny</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/endocreative\">Jeremy Green</a>, <a href=\"https://profiles.wordpress.org/jeherve\">Jeremy Herve</a>, <a href=\"https://profiles.wordpress.org/jitendrabanjara1991\">jitendrabanjara1991</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby\">JJJ</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/joen\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/j-falk\">Johan Falk</a>, <a href=\"https://profiles.wordpress.org/johannadevos\">Johanna de Vos</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/jonathandejong\">Jonathandejong</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/jonnybojangles\">jonnybojangles</a>, <a href=\"https://profiles.wordpress.org/joostdevalk\">Joost de Valk</a>, <a href=\"https://profiles.wordpress.org/jordesign\">jordesign</a>, <a href=\"https://profiles.wordpress.org/koke\">Jorge Bernal</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/keraweb\">Jory Hogeveen</a>, <a href=\"https://profiles.wordpress.org/jcastaneda\">Jose Castaneda</a>, <a href=\"https://profiles.wordpress.org/josephwa\">josephwa</a>, <a href=\"https://profiles.wordpress.org/builtbynorthby\">Josh Feck</a>, <a href=\"https://profiles.wordpress.org/joshuawold\">JoshuaWold</a>, <a href=\"https://profiles.wordpress.org/joyously\">Joy</a>, <a href=\"https://profiles.wordpress.org/jplojohn\">jplo</a>, <a href=\"https://profiles.wordpress.org/jrtashjian\">JR Tashjian</a>, <a href=\"https://profiles.wordpress.org/jrf\">jrf</a>, <a href=\"https://profiles.wordpress.org/juiiee8487\">Juhi Patel</a>, <a href=\"https://profiles.wordpress.org/juliarrr\">juliarrr</a>, <a href=\"https://profiles.wordpress.org/kadamwhite\">K. Adam White</a>, <a href=\"https://profiles.wordpress.org/kamataryo\">KamataRyo</a>, <a href=\"https://profiles.wordpress.org/karinedo\">Karine Do</a>, <a href=\"https://profiles.wordpress.org/katyatina\">Katyatina</a>, <a href=\"https://profiles.wordpress.org/kelin1003\">Kelin Chauhan</a>, <a href=\"https://profiles.wordpress.org/ryelle\">Kelly Dwan</a>, <a href=\"https://profiles.wordpress.org/itzmekhokan\">Khokan Sardar</a>, <a href=\"https://profiles.wordpress.org/killua99\">killua99</a>, <a href=\"https://profiles.wordpress.org/ixkaito\">Kite</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/olein\">Koji Kuno</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/codemascot\">Kʜᴀɴ (ಠ_ಠ)</a>, <a href=\"https://profiles.wordpress.org/laurelfulford\">laurelfulford</a>, <a href=\"https://profiles.wordpress.org/lkraav\">lkraav</a>, <a href=\"https://profiles.wordpress.org/lukecarbis\">Luke Carbis</a>, <a href=\"https://profiles.wordpress.org/lgedeon\">Luke Gedeon</a>, <a href=\"https://profiles.wordpress.org/lukepettway\">Luke Pettway</a>, <a href=\"https://profiles.wordpress.org/maedahbatool\">Maedah Batool</a>, <a href=\"https://profiles.wordpress.org/travel_girl\">Maja Benke</a>, <a href=\"https://profiles.wordpress.org/malae\">Malae</a>, <a href=\"https://profiles.wordpress.org/manzoorwanijk\">Manzoor Wani</a>, <a href=\"https://profiles.wordpress.org/robobot3000\">Marcin</a>, <a href=\"https://profiles.wordpress.org/iworks\">Marcin Pietrzak</a>, <a href=\"https://profiles.wordpress.org/marco-peralta\">Marco Peralta</a>, <a href=\"https://profiles.wordpress.org/marcofernandes\">marcofernandes</a>, <a href=\"https://profiles.wordpress.org/mkaz\">Marcus Kazmierczak</a>, <a href=\"https://profiles.wordpress.org/marekhrabe\">marekhrabe</a>, <a href=\"https://profiles.wordpress.org/clorith\">Marius Jensen</a>, <a href=\"https://profiles.wordpress.org/mbelchev\">Mariyan Belchev</a>, <a href=\"https://profiles.wordpress.org/mapk\">Mark Uraine</a>, <a href=\"https://profiles.wordpress.org/markcallen\">markcallen</a>, <a href=\"https://profiles.wordpress.org/mechter\">Markus Echterhoff</a>, <a href=\"https://profiles.wordpress.org/m-e-h\">Marty Helmick</a>, <a href=\"https://profiles.wordpress.org/marybaum\">marybaum</a>, <a href=\"https://profiles.wordpress.org/mattnyeus\">mattnyeus</a>, <a href=\"https://profiles.wordpress.org/mdwolinski\">mdwolinski</a>, <a href=\"https://profiles.wordpress.org/immeet94\">Meet Makadia</a>, <a href=\"https://profiles.wordpress.org/melchoyce\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/mheikkila\">mheikkila</a>, <a href=\"https://profiles.wordpress.org/wpscholar\">Micah Wood</a>, <a href=\"https://profiles.wordpress.org/michelleweber\">michelleweber</a>, <a href=\"https://profiles.wordpress.org/mcsf\">Miguel Fonseca</a>, <a href=\"https://profiles.wordpress.org/mmtr86\">Miguel Torres</a>, <a href=\"https://profiles.wordpress.org/simison\">Mikael Korpela</a>, <a href=\"https://profiles.wordpress.org/mauteri\">Mike Auteri</a>, <a href=\"https://profiles.wordpress.org/mikeschinkel\">Mike Schinkel [WPLib Box project lead]</a>, <a href=\"https://profiles.wordpress.org/mikeschroder\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/mikeselander\">Mike Selander</a>, <a href=\"https://profiles.wordpress.org/mikengarrett\">MikeNGarrett</a>, <a href=\"https://profiles.wordpress.org/dimadin\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/0mirka00\">mirka</a>, <a href=\"https://profiles.wordpress.org/lord_viper\">Mobin Ghasempoor</a>, <a href=\"https://profiles.wordpress.org/mohadeseghasemi\">Mohadese Ghasemi</a>, <a href=\"https://profiles.wordpress.org/saimonh\">Mohammed Saimon</a>, <a href=\"https://profiles.wordpress.org/mor10\">Morten Rand-Hendriksen</a>, <a href=\"https://profiles.wordpress.org/man4toman\">Morteza Geransayeh</a>, <a href=\"https://profiles.wordpress.org/mmuhsin\">Muhammad Muhsin</a>, <a href=\"https://profiles.wordpress.org/mukesh27\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/m_uysl\">Mustafa Uysal</a>, <a href=\"https://profiles.wordpress.org/mzorz\">mzorz</a>, <a href=\"https://profiles.wordpress.org/nfmohit\">Nahid F. Mohit</a>, <a href=\"https://profiles.wordpress.org/naoki0h\">Naoki Ohashi</a>, <a href=\"https://profiles.wordpress.org/nateallen\">Nate Allen</a>, <a href=\"https://profiles.wordpress.org/greatislander\">Ned Zimmerman</a>, <a href=\"https://profiles.wordpress.org/neobabis\">Neokazis Charalampos</a>, <a href=\"https://profiles.wordpress.org/modernnerd\">Nick Cernis</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/jainnidhi\">Nidhi Jain</a>, <a href=\"https://profiles.wordpress.org/nielslange\">Niels Lange</a>, <a href=\"https://profiles.wordpress.org/nielsdeblaauw\">nielsdeblaauw</a>, <a href=\"https://profiles.wordpress.org/nnikolov\">Nikolay Nikolov</a>, <a href=\"https://profiles.wordpress.org/rabmalin\">Nilambar Sharma</a>, <a href=\"https://profiles.wordpress.org/ninio\">ninio</a>, <a href=\"https://profiles.wordpress.org/notnownikki\">notnownikki</a>, <a href=\"https://profiles.wordpress.org/pandelisz\">pandelisz</a>, <a href=\"https://profiles.wordpress.org/paragoninitiativeenterprises\">paragoninitiativeenterprises</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/pedromendonca\">Pedro Mendonça</a>, <a href=\"https://profiles.wordpress.org/peterbooker\">Peter Booker</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/pfiled\">pfiled</a>, <a href=\"https://profiles.wordpress.org/pilou69\">pilou69</a>, <a href=\"https://profiles.wordpress.org/pranalipatel\">Pranali Patel</a>, <a href=\"https://profiles.wordpress.org/pratikkry\">Pratik K. Yadav</a>, <a href=\"https://profiles.wordpress.org/presskopp\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/psealock\">psealock</a>, <a href=\"https://profiles.wordpress.org/bamadesigner\">Rachel Cherry</a>, <a href=\"https://profiles.wordpress.org/rahmon\">Rahmon</a>, <a href=\"https://profiles.wordpress.org/superpoincare\">Ramanan</a>, <a href=\"https://profiles.wordpress.org/ramiy\">Rami Yushuvaev</a>, <a href=\"https://profiles.wordpress.org/ramizmanked\">Ramiz Manked</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/rinatkhaziev\">Rinat Khaziev</a>, <a href=\"https://profiles.wordpress.org/noisysocks\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/rsusanto\">Rudy Susanto</a>, <a href=\"https://profiles.wordpress.org/ryan\">Ryan Boren</a>, <a href=\"https://profiles.wordpress.org/welcher\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/saeedfard\">Saeed Fard</a>, <a href=\"https://profiles.wordpress.org/salcode\">Sal Ferrarello</a>, <a href=\"https://profiles.wordpress.org/samanehmirrajabi\">Samaneh Mirrajabi</a>, <a href=\"https://profiles.wordpress.org/samikeijonen\">Sami Keijonen</a>, <a href=\"https://profiles.wordpress.org/elhardoum\">Samuel Elh</a>, <a href=\"https://profiles.wordpress.org/sgarza\">Santiago Garza</a>, <a href=\"https://profiles.wordpress.org/saracope\">Sara Cope</a>, <a href=\"https://profiles.wordpress.org/saracup\">saracup</a>, <a href=\"https://profiles.wordpress.org/tinkerbelly\">sarah semark</a>, <a href=\"https://profiles.wordpress.org/sebastianpisula\">Sebastian Pisula</a>, <a href=\"https://profiles.wordpress.org/ebrahimzadeh\">Sekineh Ebrahimzadeh</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sergioestevao\">SergioEstevao</a>, <a href=\"https://profiles.wordpress.org/sgastard\">sgastard</a>, <a href=\"https://profiles.wordpress.org/sharifkiberu\">sharifkiberu</a>, <a href=\"https://profiles.wordpress.org/shazdeh\">shazdeh</a>, <a href=\"https://profiles.wordpress.org/shital-patel\">Shital Marakana</a>, <a href=\"https://profiles.wordpress.org/sky_76\">sky_76</a>, <a href=\"https://profiles.wordpress.org/soean\">Soren Wrede</a>, <a href=\"https://profiles.wordpress.org/netweb\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/stevenkword\">Steven Word</a>, <a href=\"https://profiles.wordpress.org/subrataemfluence\">Subrata Sarkar</a>, <a href=\"https://profiles.wordpress.org/sudar\">Sudar Muthu</a>, <a href=\"https://profiles.wordpress.org/sudhiryadav\">Sudhir Yadav</a>, <a href=\"https://profiles.wordpress.org/szepeviktor\">szepe.viktor</a>, <a href=\"https://profiles.wordpress.org/miyauchi\">Takayuki Miyauchi</a>, <a href=\"https://profiles.wordpress.org/karmatosed\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/themonic\">Themonic</a>, <a href=\"https://profiles.wordpress.org/thomstark\">thomstark</a>, <a href=\"https://profiles.wordpress.org/tfrommen\">Thorsten Frommen</a>, <a href=\"https://profiles.wordpress.org/thrijith\">Thrijith Thankachan</a>, <a href=\"https://profiles.wordpress.org/hedgefield\">Tim Hedgefield</a>, <a href=\"https://profiles.wordpress.org/timwright12\">Tim Wright</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/timph\">timph</a>, <a href=\"https://profiles.wordpress.org/tmatsuur\">tmatsuur</a>, <a href=\"https://profiles.wordpress.org/ohiosierra\">tmdesigned</a>, <a href=\"https://profiles.wordpress.org/tmdesigned\">tmdesigned</a>, <a href=\"https://profiles.wordpress.org/tz-media\">Tobias Zimpel</a>, <a href=\"https://profiles.wordpress.org/tomharrigan\">TomHarrigan</a>, <a href=\"https://profiles.wordpress.org/tobifjellner\">Tor-Bjorn Fjellner</a>, <a href=\"https://profiles.wordpress.org/toro_unit\">Toro_Unit (Hiroshi Urabe)</a>, <a href=\"https://profiles.wordpress.org/torres126\">torres126</a>, <a href=\"https://profiles.wordpress.org/zodiac1978\">Torsten Landsiedel</a>, <a href=\"https://profiles.wordpress.org/itowhid06\">Towhidul Islam</a>, <a href=\"https://profiles.wordpress.org/liljimmi\">Tracy Levesque</a>, <a href=\"https://profiles.wordpress.org/umang7\">Umang Bhanvadia</a>, <a href=\"https://profiles.wordpress.org/vaishalipanchal\">Vaishali Panchal</a>, <a href=\"https://profiles.wordpress.org/webfactory\">WebFactory</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/bahia0019\">William \'Bahia\' Bay</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/willscrlt\">Willscrlt</a>, <a href=\"https://profiles.wordpress.org/wolly\">Wolly aka Paolo Valenti</a>, <a href=\"https://profiles.wordpress.org/wrwrwr0\">wrwrwr0</a>, <a href=\"https://profiles.wordpress.org/yoavf\">Yoav Farhi</a>, <a href=\"https://profiles.wordpress.org/fierevere\">Yui</a>, and <a href=\"https://profiles.wordpress.org/zebulan\">zebulan</a>.\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p>Also, many thanks to all of the community volunteers who contribute in the <a href=\"https://wordpress.org/support/\">support forums</a>. They answer questions from people across the world, whether they are using WordPress for the first time or since the first release. These releases are more successful for their efforts!</p>\n\n\n\n<p>If you want learn more about volunteering with WordPress, check out <a href=\"https://make.wordpress.org/\">Make WordPress</a> or the <a href=\"https://make.wordpress.org/core/\">core development blog</a>.</p>\n\n\n\n<p>Thanks for choosing WordPress!</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, 07 May 2019 21:03:35 +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: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:49:\"WPTavern: Registration for WordSesh 6 Is Now Open\";s: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://wptavern.com/?p=89381\";s: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://wptavern.com/registration-for-wordsesh-6-is-now-open\";s: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:2136:\"<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Registration for the sixth installment of WordSesh is <a href=\"https://wordsesh.com/live/\">now open</a> and thanks to <a href=\"https://pantheon.io/\">Pantheon</a>, those who attend the conference live will be able to watch all of the sessions for free. <a href=\"https://wordsesh.com/\">WordSesh</a> is a virtual WordPress conference with speakers from around the world sharing knowledge. </p>\n\n\n\n<p>This year’s event has 14 speakers with topics that include, the benefits of being the first to market with a Gutenberg user course, three ways to embrace the entrepreneurial roller coaster, and the rhythms of remote teams. Ten of the presentations will be live with four pre-recorded sessions. </p>\n\n\n\n<p><a href=\"https://wpsessions.com/\">WPSessions</a> will transcribe each presentation live and will also store the recordings so that registered members can view them at a later date. There will also be a virtual hallway track where participants can network with each other. </p>\n\n\n\n<p>If you’d like to watch with a group of people in the same physical location, WordSesh has a list of watch parties that are taking place. </p>\n\n\n\n<ul><li><strong>Lagos, Nigeria</strong> <a href=\"https://www.meetup.com/Lagos-WordPress-Meetup-Group/\">Lagos WordPress Community</a></li><li><strong>Minneapolis, MN</strong> <a href=\"https://www.eventbrite.com/e/wordsesh-live-viewing-party-tickets-60473140792\" target=\"_blank\" rel=\"noreferrer noopener\">Pantheon</a></li><li><strong>Mumbai, India</strong> <a href=\"https://www.meetup.com/WordPressMumbai/events/260313447/\">WP Mumbai</a></li><li><strong>Palm Beach, FL</strong> <a href=\"https://www.meetup.com/WordPressPB\">WP Palm Beach</a></li><li><strong>Scottsdale, AZ</strong> <a href=\"https://www.meetup.com/Arizona-WordPress-Group/events/260740429/\">WP Arizona</a></li></ul>\n\n\n\n<p>If you’re hosting a watch party, you’re encouraged to contact WordSesh with the details so your event can be added to the list. WordSesh 6 begins May 22nd at 9:30AM Eastern on <a href=\"https://www.crowdcast.io\">Crowdcast</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, 07 May 2019 20:45:44 +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:13:\"Jeff Chandler\";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:158:\"WPTavern: Theme Review Team Leadership Implements Controversial Changes to Trusted Authors Program, Requiring Theme Reviews in Exchange for Making Themes Live\";s: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://wptavern.com/?p=89363\";s: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:168:\"https://wptavern.com/theme-review-team-leadership-implements-controversial-changes-to-trusted-authors-program-requiring-theme-reviews-in-exchange-for-making-themes-live\";s: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:8638:\"<p>The WordPress Theme Review team has implemented a controversial change to its <a href=\"https://make.wordpress.org/themes/2018/04/30/trusted-authors-program/\" rel=\"noopener noreferrer\" target=\"_blank\">Trusted Authors Program</a> that puts a hard requirement on participants to join the theme review team and perform a minimum number of reviews in order to continue having their own themes fast tracked through the review process.</p>\n<p>“As we can’t figure out a way to bring in new reviewers and maybe keep them on-board after the initial reviews, we decided to make a few changes to the Trusted Authors program,” Alexandru Cosmin said, on behalf of the Theme Review team leadership.</p>\n<p>“Trusted Authors will need to review one ticket a month to be able to have their themes set live. Not doing a review doesn’t mean that you’ll lose your privileges or that you’ll have to re-apply. You’ll just not be able to have your themes set live until you finish a review.”</p>\n<p>The Trusted Authors program was put in place a year ago with the goal of streamlining the review process for authors who consistently produce high quality code in line with the current guidelines. The idea was to relieve some of the burden for theme reviewers and reduce the queue. </p>\n<p>Trusted Authors are required to do a full review of a parent theme (no child themes permitted). Themes that are not approved will not count. After performing the review, the author may then upload a theme and add a comment to it with a link to their latest review that meets the requirement.</p>\n<p>The change to the program is controversial, based on the feedback from other members of the Theme Review team who commented on the <a href=\"https://make.wordpress.org/themes/2019/05/07/trusted-authors-changes/\" rel=\"noopener noreferrer\" target=\"_blank\">announcement</a>. </p>\n<p>“I understand the reason behind it, but I cannot agree with it,” WordPress theme author <a href=\"https://wordpress.org/themes/author/ilovewpcom/\" rel=\"noopener noreferrer\" target=\"_blank\">Dumitru Brinzan</a> said. “Reviews should be done out of professional desire, not to buy a credit for setting a theme live quicker.</p>\n<p>“This might reduce the quality of reviews, because trusted authors are now directly interested in setting more themes live. This means that someone will have to monitor more closely the reviews done by trusted authors. This just feels unnatural somehow.”</p>\n<p>Justin Tadlock, a long-time review team member who volunteered as a lead for many years, said he is disappointed to see this idea resurface after he and others shot it down multiple times in the past.</p>\n<p>“I assume the team got permission from higher up the chain to run a pay-for-play system,” Tadlock said. “We’ve already <a href=\"https://make.wordpress.org/themes/2014/04/18/theme-review-incentive-program/\" rel=\"noopener noreferrer\" target=\"_blank\">established they are not allowed</a>.</p>\n<p>“What such systems do is provide an unfair advantage to larger theme businesses with multiple employees. They assign one of their employees to handle a review and keep pumping out themes without missing a beat. All the while, solo developers are forced into ‘volunteering’ with time they may not even have. Not that it’s fair to businesses either; it’s just worse on solo devs.”</p>\n<p>Tadlock also said that based on his experience with past incentives, forcing Trusted Authors to join the review team in order reap the benefits of the program will likely result in a decline in the quality of the reviews.</p>\n<p>“Making people contribute to the review system should absolutely never happen in any shape or form,” Tadlock said. “It should never be the means in which the team shows favoritism to one author/team over another.</p>\n<p>“And, when you tie incentive programs to the review system, you tend to get shit reviews. We’ve already seen this happen.”</p>\n<p>Tadlock referenced the <a href=\"https://make.wordpress.org/themes/2014/04/18/theme-review-incentive-program/\" rel=\"noopener noreferrer\" target=\"_blank\">Theme Review Incentive program</a> that was implemented in 2014 which became highly controversial due to a number of underlying problems.</p>\n<p>“Basically, that program allowed the top reviewers to select the featured themes every month,” Tadlock said. “The original idea (at least from my understanding) would be that they’d select featured themes from the list of themes that they’d reviewed. Instead, they chose their own themes, month after month.</p>\n<p>“What ended up happening is that many of those top reviewers would just burn through reviews, focusing on number rather than quality. Bad, sometimes insecure, code would fall through the cracks. Some themes really didn’t even get anywhere near a proper review.”</p>\n<p>In response to Tadlock referencing the past incentive program, Cosmin pointed out several differences with the new Trusted Author requirement to join the review team.</p>\n<p>“The last time we did this it was a competition for the Featured page (which in my opinion is of higher value than having a theme on Latest),” Cosmin <a href=\"https://make.wordpress.org/themes/2019/05/07/trusted-authors-changes/#comment-43743\" rel=\"noopener noreferrer\" target=\"_blank\">said</a>. “Back then you also had to do a lot of reviews just to get the chance of selecting a featured theme.</p>\n<p>“With TAs you don’t lose anything, you either do or not the review, you keep your TA status. One review a month is just 15-30 minutes of reviewing. Either way they are still ‘pumping out themes without missing a beat.’ Any TA author that has time to pump out 3-4 themes a month also has time to do a freaking review.”</p>\n<h3>Theme Review Team Leadership Did Not Consult the Team Before Implementing Changes to Trusted Authors Program</h3>\n<p>This change to the Trusted Authors Program seems to have blindsided other members of the Theme Review Team who only learned of it from the announcement today. The idea was not discussed publicly in the #themereview channel on Slack. It was a unilateral decision made by the leadership behind closed doors. </p>\n<p>I asked Cosmin for background on the decision and he said it was discussed in a private meeting of Theme Review Team leads that included William Patton and Ganga Kafle. He said the decision just happened while they were discussing the current state of the <a href=\"https://themes.trac.wordpress.org/report/2\" rel=\"noopener noreferrer\" target=\"_blank\">queue</a> and how things are not going well. </p>\n<p>There are 120 themes waiting to be reviewed and Cosmin estimated that authors are waiting approximately two months in order to get their themes approved. He said the changes to the Trusted Authors program are “currently the only viable option with short term results.” </p>\n<p>However, Tadlock is concerned that Trusted Authors who didn’t have the desire to review themes prior to the requirement might simply do the minimum possible to stay in the program. It also sets a precedent for requiring volunteer time in order to receive the benefit of a streamlined review.</p>\n<p>This particular controversy is another milestone in the Theme Review Team’s perennial struggle with an unmanageable queue. In the past, the team has entertained suggestions about relaxing the submission guidelines and limiting reviews to security concerns, but changes in this direction never seem to materialize. So far the team has had success with limiting authors to submitting one theme at a time. It slows the growth of the directory but makes the work more manageable for the volunteers who often find themselves knee-deep in manual code review without an end in sight.</p>\n<p>The new requirement for Trusted Authors to perform reviews in order to have their themes set live may still be up for discussion if other reviewers continue to raise concerns, but comments from the leads indicate that they want to give it a try before scrapping the idea. In response to Tadlock’s concern about the potential impact on the quality of reviews, Cosmin said the leadership will decide based on how the program goes.</p>\n<p>“It’s expected that TAs are experienced authors that know the requirements,” Cosmin said. “We’ll monitor this and if it’s the other way around, we’ll decide then. We get shit reviews right now without having any incentives.”</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, 07 May 2019 19:15: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";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:72:\"WPTavern: Tabor Theme Now Available as a Free Gatsby Theme for WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=89336\";s: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/tabor-theme-now-available-as-a-free-gatsby-theme-for-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2407:\"<p><a href=\"https://gatsbywpthemes.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Gatsby WordPress Themes</a>, a project launched earlier this year by a group of collaborators, has just released its second free theme. The team is led by Gatsby and GraphQL aficionados Zac Gordon, Jason Bahl, Muhammad Muhsin, Hussain Thajutheen, and Alexandra Spalato. Inspired by the scalability, speed, and security that the React-based static site generator can bring to WordPress, the team is working to make it easier for people to get their sites running on Gatsby, along with the WP GraphQL plugin.</p>\n<p>Rich Tabor’s “Tabor” theme has been ported over and “<a href=\"https://github.com/zgordon/tabor-gatsby-theme\" rel=\"noopener noreferrer\" target=\"_blank\">Tabor for Gatsby</a>” is now available for free. After <a href=\"https://wptavern.com/godaddy-acquires-themebeans-coblocks-block-gallery-and-block-unit-tests\" rel=\"noopener noreferrer\" target=\"_blank\">GoDaddy acquired ThemeBeans and CoBlocks</a>, the company made all the previously commercial themes available on GitHub, including Tabor. The theme primarily suits blogs and personal websites and became popular as one of the first themes to showcase the new Gutenberg editor.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/05/tabor-for-gatsby.png?ssl=1\"><img /></a></p>\n<p>Check out the <a href=\"https://tabor-gatsby-theme.netlify.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Tabor for Gatsby theme demo</a> to see it in action with near-instantaneous page loads.</p>\n<p>The Gatsby WordPress Themes team credits <a href=\"http://thegatsbygal.com\" rel=\"noopener noreferrer\" target=\"_blank\">Alexandra Spalato</a> for doing most of the work of porting this theme over to Gatsby. Tabor joins WordPress’ default Twenty Nineteen theme in the collection. Muhammad Muhsin, the lead developer on the project, has written a <a href=\"https://javascriptforwp.com/porting-the-twenty-nineteen-wordpress-theme-to-gatsby/\" rel=\"noopener noreferrer\" target=\"_blank\">tutorial</a> with an in-depth look at how he ported over Twenty Nineteen.</p>\n<p>Gatsby WordPress Themes has temporarily paused releasing new themes while the team works on upgrading the existing themes to V2. They currently only serve static content but V2 will add native comments, a contact form plugin, and Algolia search to all the themes.</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, 07 May 2019 03:31: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:13:\"Sarah Gooding\";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:78:\"WPTavern: WordPress Designers Explore Proposal to Simplify WP Admin Navigation\";s: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://wptavern.com/?p=89319\";s: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/wordpress-designers-explore-proposal-to-simplify-wp-admin-navigation\";s: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:4576:\"<p>The admin can be intimidating to navigate if you’re just getting started with WordPress. After installing a few plugins, top-level menu items begin to pile on. This adds even more complexity to grapple with in a narrow space with long lists of items hidden behind flyout menus that make managing WordPress on mobile a frustrating experience. </p>\n<p>The admin dashboard design hasn’t changed significantly since the <a href=\"https://wordpress.org/plugins/mp6/\" rel=\"noopener noreferrer\" target=\"_blank\">MP6 plugin</a> was merged into <a href=\"https://wptavern.com/wordpress-3-8-parker-released\" rel=\"noopener noreferrer\" target=\"_blank\">WordPress 3.8</a> in 2013. This project brought updated typography and improved contrast to the admin but didn’t tackle the increasing complexity of admin navigation. </p>\n<p>A new <a href=\"https://core.trac.wordpress.org/ticket/47012\" rel=\"noopener noreferrer\" target=\"_blank\">proposal on trac</a> aims to simplify the left sidebar navigation to improve accessibility, usability, and scalability by replacing the flyouts with accordion menus. Designer <a href=\"https://davemart.in/\" rel=\"noopener noreferrer\" target=\"_blank\">Dave Martin</a> shared some mockups originally created by <a href=\"https://joen.wordpress.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Joen Asmussen</a>, and describes them as “a very early, exploratory concept.” </p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/05/Screen-Shot-2019-05-06-at-11.32.11-AM.png?ssl=1\"><img /></a></p>\n<p>Martin listed several reasons for exploring a new design, including the inaccessibility of the hover/flyout menus and how poorly they scale on mobile interfaces. He also cited the abundance of top-level menu items that are rarely used, which he said contributes to the cognitive weight of admin navigation by still being permanently visible.</p>\n<p>The major changes included in this proposal include the following:</p>\n<ul>\n<li>Flyout menus are replaced with accordion behavior. This scales all the way from mobile to desktop, and affords better accessibility.</li>\n<li>Menu is made 80px wider (240px vs. 160), affording a 14px minimum font size for all items, perhaps bigger icons in the future, more relaxed spacing, enhancing usability and accessibility.</li>\n<li>Sidebar is grouped in major sections, “Site”, “Design”, “Tools” and “Manage”.</li>\n<li>“Updates” are moved to a subsection of “Manage”, making Home a single item.</li>\n<li>Items related to content on your site (such as “Posts” and “Pages”) are moved under “Site”.</li>\n<li>Clicking major menu items just opens or closes the accordion, as opposed to go directly to the first subsection. This unifies the mobile and desktop behavior. You can keep the accordion open if you use it all the time (each click will save state, so you’ll see the same open/closed sections upon page refresh).</li>\n<li>All “Settings” subsections are moved under “Manage”, along with “Plugins & Blocks” and “Users”.</li>\n<li>Separators group major categories, like “Site” and “Design” together</li>\n<li>Dashboard is renamed “Home”, because all of WordPress is a Dashboard, and “Home” is where you can get an overview at a glance.</li>\n</ul>\n<p>WordPress core committer John Blackbourn commented on the proposal, recommending further exploration of what the menu could look like for different user roles and whether that might affect the appearance, grouping, and behavior of the menu items. For example, roles with more limited publishing capabilities, such as a subscriber, would see very few menu items. </p>\n<p>There’s also a bit of discussion regarding the use of the word ‘Site’ where some might better understand that section as ‘Content.’ As this is just an initial mockup, nothing is set in stone and many iterations will likely follow.</p>\n<p>Even with many changes expected as the concept evolves, the proposed design significantly reduces cognitive load, especially for new users who may not be as familiar with the admin menu. An updated admin navigation design might lend itself well to being tested as a feature plugin. As with any major change in WordPress, there are many considerations for how it will affect plugin developers. Major visual overhauls like this are exciting, but it takes time to get it right. This proposal already shows a lot of promise but needs more feedback and participation from diverse user groups across the WordPress community. </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, 06 May 2019 20:20: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:13:\"Sarah Gooding\";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:53:\"WPTavern: Gutenberg Plugin for OctoberCMS 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:29:\"https://wptavern.com/?p=89297\";s: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://wptavern.com/gutenberg-plugin-for-octobercms-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:2833:\"<p>Last week we reported on <a href=\"https://wptavern.com/laraberg-a-gutenberg-implementation-for-laravel-is-now-in-beta\" rel=\"noopener noreferrer\" target=\"_blank\">Laraberg, a Gutenberg implementation for Laravel</a> that is now in beta. The project was based on <a href=\"https://github.com/front/gutenberg-js\" rel=\"noopener noreferrer\" target=\"_blank\">Gutenberg.js</a>, a package that makes it easier to bring Gutenberg into other applications. </p>\n<p><a href=\"ttps://reazzon.ru\" rel=\"noopener noreferrer\" target=\"_blank\">Nick Khaetsky</a>, a backend developer at Biz-Mark, took Laraberg and used it to build a Gutenberg plugin for the open source OctoberCMS, which is based on Laravel. OctobeCMS was launched in 2015, and still captures only a tiny sliver of the CMS market share, but it is growing in popularity among the top one million websites, according to stats from <a href=\"https://trends.builtwith.com/cms/October-CMS\" rel=\"noopener noreferrer\" target=\"_blank\">BuiltWith</a>. The CMS has a growing ecosystem of more than 700 themes and plugins.</p>\n<p>The <a href=\"https://octobercms.com/plugin/reazzon-gutenberg\" rel=\"noopener noreferrer\" target=\"_blank\">Gutenberg for OctoberCMS</a> plugin is now in beta. It allows developers to embed Gutenberg in the backend via their own model by <a href=\"https://octobercms.com/docs/database/relations#polymorphic-relations\" rel=\"noopener noreferrer\" target=\"_blank\">creating a Polymorphic relation</a>. The plugin integrates Laraberg but all of its blocks are standard from the Gutenberg.js package. It doesn’t include anything custom. </p>\n<p>Most aspects of Gutenberg are working in the beta, including common blocks, formatting, layout, and embed blocks, custom styles, and block settings. </p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/05/gutenberg-october-cms.png?ssl=1\"><img /></a></p>\n<p>None of WordPress’ standard widgets work in the plugin and Khaetsky said he plans to remove them in future updates.</p>\n<p>Anything that requires media uploading, such as the gallery block, inline images, and cover block, are not working. Khaetsky said he is working on getting the plugin integrated with the native OctoberCMS Medialibrary. He encouraged anyone who wants to contribute to that effort to submit a PR to the plugin’s <a href=\"https://github.com/FlusherDock1/Gutenberg\" rel=\"noopener noreferrer\" target=\"_blank\">GitHub repository</a>. </p>\n<p>Khaetsky’s free plugin is MIT-licensed and available in the official OctoberCMS plugin marketplace. The plugin’s adoption is limited to developers who know how to implement it, but it already has 39 installations. <a href=\"https://octobercms.com/plugin/reazzon-gutenberg\" rel=\"noopener noreferrer\" target=\"_blank\">Documentation</a> is available on the plugin listing.</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, 03 May 2019 23:01:10 +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:13:\"Sarah Gooding\";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:97:\"WPTavern: Block Options Plugin Rebrands to EditorsKit, Expands Beyond Block Visibility Management\";s: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://wptavern.com/?p=89273\";s: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:107:\"https://wptavern.com/block-options-plugin-rebrands-to-editorskit-expands-beyond-block-visibility-management\";s: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:2816:\"<p>WordPress plugin developer <a href=\"https://jeffreycarandang.com\" rel=\"noopener noreferrer\" target=\"_blank\">Jeffrey Carandang</a> has rebranded his <a href=\"https://wordpress.org/plugins/block-options/\" rel=\"noopener noreferrer\" target=\"_blank\">Block Options</a> plugin to <a href=\"https://editorskit.com/\" rel=\"noopener noreferrer\" target=\"_blank\">EditorsKit</a>. Carandang created Block Options prior to co-founding CoBlocks, which was recently <a href=\"https://wptavern.com/godaddy-acquires-themebeans-coblocks-block-gallery-and-block-unit-tests\" rel=\"noopener noreferrer\" target=\"_blank\">acquired by GoDaddy</a>. It began as a plugin for controlling block visibility, inspired by his <a href=\"https://widget-options.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Widget Options</a> plugin, but has since grown to include more features for managing Gutenberg blocks. EditorsKit now offers the following capabilities:</p>\n<ul>\n<li>Devices Visibility Options</li>\n<li>User Login State Visibility</li>\n<li>Display Logic</li>\n<li>Advanced Custom Fields Integration</li>\n<li>Block Guide Lines</li>\n</ul>\n<p>“As much as I love the name ‘Block Options,’ it has started to become too generic and has been used a lot on the Gutenberg editor itself,” Carandang said. “So, I have decided to change the name to something that stands out and fits the purpose more – page building block options for the new editor.</p>\n<p>“The name EditorsKit came from ‘Editor’s Toolkit.’ I’ve been progressively moving towards building a set of tools that will help users navigate through the editor more conveniently, besides giving them visibility control.”</p>\n<p>Version 1.4 of the plugin introduces the new Block Guide Lines feature, one of the features to go beyond visibility management. It allows users to toggle guide lines on/off for titles and editor blocks to check element boundaries. Carandang said the feature becomes especially useful when handling nested blocks.</p>\n<p></p>\n<p>The last major release of the plugin also improves the UI and UX with a new “Visibility Settings” modal for managing all visibilities in the same place. The modal includes an “Advanced” tab for more complicated options that are more likely to be used by developers, such as custom display logic and ACF visibility support.</p>\n<p>Under the umbrella of its new branding and <a href=\"https://editorskit.com/\" rel=\"noopener noreferrer\" target=\"_blank\">website</a>, Carandang plans to expand EditorsKit to include more tools, with the next set focused on developers. Next on the roadmap is a setting to toggle Auto Save on/off and theme support for page template body classes.</p>\n<p>Check out a quick preview of the improved interface and new features below:</p>\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:\"Fri, 03 May 2019 20:35:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";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:88:\"Post Status: An Interview with Reyes Martínez of Frontity — a new WordPress framework\";s: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:31:\"https://poststatus.com/?p=61374\";s: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://poststatus.com/frontity-wordpress-framework-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:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9834:\"<p>Previously known as Worona, Madrid-based <a href=\"https://frontity.org/\">Frontity</a> is close to launching their eponymous public beta, <a href=\"https://github.com/frontity/frontity\">described on Github</a> as both “an alternative rendering engine for WordPress,” and “a React framework to create WordPress themes.” Frontity, the framework, runs separately from WordPress on Node.js and uses the WordPress API to generate HTML and AMP pages. Unlike other approaches to “headless” WordPress, Frontity is the first to be built exclusively for WordPress. </p>\n\n\n\n<p><strong>PS: Can you give us an overview of Frontity’s history and how your company, product, and brand has developed?</strong><br /></p>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://cdn.poststatus.com/wp-content/uploads/2019/05/Reyes_final-copy-752x501.png\" alt=\"\" class=\"wp-image-61434\" />Reyes Martínez</div>\n\n\n\n<p><strong>RM:</strong> It all started back in 2015 when Pablo Postigo and Luis Herranz created Worona, a free WordPress plugin to turn blogs into mobile apps. Pablo and Luis discovered a lot of people were concerned about the way their WordPress sites performed on mobile devices. They thought it would be a powerful solution to build an open source platform that could be extended by other WordPress developers.<br /></p>\n\n\n\n<p>I met Pablo and Luis in late 2015, loved their project and joined them. I was used to working with WordPress as a content editor, but I didn’t have a technical background. So I mostly started helping by writing blog posts, social media content, documentation, and providing user support. Now I’m in charge of Frontity’s marketing and communications. (I still don’t code but would love to learn at some point!)<br /></p>\n\n\n\n<p>After that first prototype, they decided to develop a free platform not just for creating mobile apps. The idea was that any WordPress user could build mobile apps, progressive web apps, or add Google AMP to their blogs in a very easy way. This was Worona 1.0, which was launched in February of 2017. Thousands of WordPress users joined that journey, and we’re truly thankful for that. At that time we already used React and fetched the blog’s content using WordPress’s REST API. The mobile apps were created with <a href=\"https://cordova.apache.org/\">Cordova</a>.<br /></p>\n\n\n\n<p>Although Worona had a loyal following, we were aware that mobile app usage was slowly declining. People don’t want to download an app for every blog they read. Plus, Apple stopped supporting apps from app generation platforms like ours. This became a serious problem as we couldn’t grow under that scenario.<br /></p>\n\n\n\n<p>That’s when we decided to bet on the mobile web and started working on a new framework for building Progressive Web App themes (based on React) on top of WordPress. In 2018 we rebranded to Frontity and got financial backing to make the project grow. Although our main goal was to keep the code open source, we decided to use it internally and release a product exclusively to WordPress publishers (we called it Frontity PRO), so we could see what happened and gather feedback.<br /></p>\n\n\n\n<p>Frontity PRO is a proprietary mobile theme built on React for WordPress blogs and news sites. It implements Progressive Web App technologies and uses the REST API to fetch the content, along with our WordPress plugin, WordPress<em> </em>PWA.<br /></p>\n\n\n\n<p>By the time Frontity PRO was created, <a href=\"https://blog.frontity.org/how-frontity-contributed-official-wceu-pwa/\">we also contributed to the official WCEU PWA</a>. Building a PWA from the ground up is a difficult and time-consuming task, but we had created a framework to precisely solve that problem. It was the perfect time to test it out and give back to the community.<br /></p>\n\n\n\n<p>We have worked with Spanish media companies since we launched Frontity PRO, and the result has been great. Our theme has allowed them to deliver faster and more engaging mobile experiences, which has been proven to increase their pageviews and ad revenue. Our internal framework has served content to more than 20 million readers. Some of our major clients were part of ADSLZone group. Others include <em>Medios y Redes</em>, <em>Tendenzias</em> or <a href=\"http://coches.com/\">Coches.com</a>. They all use WordPress.<br /></p>\n\n\n\n<p>During this time, we realized that many of our clients’ tech teams were considering using our framework to develop their own custom themes. This was one of the main reasons that made us think about open sourcing it — it seemed the perfect moment. Plus, this was our original vision.<br /></p>\n\n\n\n<p>A few months ago, we finally decided to go straight for that vision. We set aside the development work of Frontity PRO to place all our focus on Frontity.org, the open source framework. Our next milestone is to release the first beta version in the next few weeks. (Early May 2019.) More than 300 developers have already signed up to try it out. We are really excited about this project and believe it can make a real impact in the WordPress ecosystem.<br /></p>\n\n\n\n<p>Since our resources are limited, we are looking for some financial backing again to bring contributors on board and build a thriving community of people interested in WordPress and React.<br /></p>\n\n\n\n<p><strong>PS: What problems does Frontity solve? (And whose problems are they?) Will Frontity make frontend development more accessible to people who are new to React?</strong><br /></p>\n\n\n\n<p><strong>RM:</strong> In order to create a WordPress theme with React, developers need to learn and configure lots of different things: bundling, transpiling, routing, server rendering, retrieving data from WordPress, managing state, managing CSS, linting, testing,…<br /></p>\n\n\n\n<p>There are already some amazing React frameworks, such as Next.js and GatsbyJS, that can work with WordPress, but they’re not focused exclusively on it. As a result, there’s still some complex configuration and additional tooling left to the developer. <br /></p>\n\n\n\n<p>This is what Frontity aims to solve; we want to make everything much simpler for WordPress developers and more accessible to those who are new to React. Each part of the framework has been simplified and optimized to be used with WordPress, and developers don’t need to figure out what tools to use for things like CSS or state management.<br /></p>\n\n\n\n<p>Everything is ready so they can get WordPress and React to work together in an easier way. <br /></p>\n\n\n\n<p><strong>How does Frontity differ from Genesis, _s, or WP Rig — from the developer and designer’s perspective, and in the end user’s experience?</strong><br /></p>\n\n\n\n<p><strong>RM:</strong> Genesis, _s or WP Rig are fantastic frameworks to develop WordPress themes based on PHP. These themes use the PHP WordPress rendering engine, which means they rely on a server-side architecture where almost every interaction that is made by the user on his device needs to wait for the server to render the new result. Our framework is focused on developers who want to create a React frontend and connect it to a WordPress backend using the REST API. We can call this a client-side architecture, where all the logic and rendering happen directly on the device and the calls to the server are limited only to data sourcing.<br /></p>\n\n\n\n<p>In the last few years, web development has evolved a lot. One of the main reasons is the shift to mobile devices and the need for fast web experiences. Achieving this is not easy using a server-side architecture. This is why client-side libraries like React are becoming so popular.<br /></p>\n\n\n\n<p>From the developer perspective, everything changes! A theme developed with Frontity and React has zero PHP in it, only JavaScript and CSS. This might sound like a radical change, but there is a trend of developers using WordPress as a headless CMS with a decoupled JavaScript frontend for whom our framework can be quite useful.<br /></p>\n\n\n\n<p><strong>How does Frontity the framework fit into a business model or revenue stream for Frontity the company?</strong><br /></p>\n\n\n\n<p><strong>RM:</strong> We won’t develop any business model in this initial phase. The framework will always be 100% free and open source. Right now, we are focused on building a community of developers and contributors around the framework.<br /></p>\n\n\n\n<p>Possible monetizations in the future are a hosting solution, premium support, or a marketplace of paid themes.<br /></p>\n\n\n\n<p><strong>What opportunities do you see for WordPress developers now and in the near future? </strong><br /></p>\n\n\n\n<p><strong>RM:</strong> With the shift to Gutenberg as well as the rise of headless CMS approaches, the WordPress community has started considering React for their projects. Beside this, modern libraries like React are becoming essential to rich user experiences.<br /></p>\n\n\n\n<p>The client-side approach to theme-building opens a world of new possibilities: storing and pre-fetching content, animations within themes, offline experiences, and more. It also has enormous benefits in terms of performance, UX and design.<br /></p>\n\n\n\n<p>React presents an opportunity to accelerate things in the WordPress ecosystem, build modern and engaging frontend experiences, and extend what developers can do with this powerful CMS. </p>\n\n\n\n<p class=\"has-small-font-size\">Pictured in the Frontity team photo above, from left to right, back row first: Eduardo Campaña (developer), David Arenas (developer), Carmen Fernández (no longer with the company), Mario Santos, (Community), Reyes Martínez (Marketing & Communications), Pablo Postigo (Founder & CEO), and Luis Herranz (Founder & Lead developer).</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, 03 May 2019 17:48: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:10:\"Dan Knauss\";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:46:\"WPTavern: WordCamp US 2019 Tickets Now on Sale\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=89259\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://wptavern.com/wordcamp-us-2019-tickets-now-on-sale\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3340:\"<p><a href=\"https://2019.us.wordcamp.org/tickets/\" rel=\"noopener noreferrer\" target=\"_blank\">Tickets</a> for WordCamp US 2019 went on sale this week. The event will be held November 1–3, 2019, in St. Louis, MO, at <a href=\"https://explorestlouis.com/meetings-conventions/americas-center/\" rel=\"noopener noreferrer\" target=\"_blank\">America’s Center Convention Complex</a>.</p>\n<p>For just $50, attendees will have access to everything throughout the three-day event, including more than 40 speaker presentations, workshops, “birds of a feather” meetups, and Contributor Day. The price also includes lunches, morning and afternoon snacks, admission to the WordFest party on Friday night, and a commemorative tee shirt with a surprise gift. </p>\n<p>This year, parents bringing children children under 9 years old have a separate ticket option where they can indicate whether or not they are interested in on-site child care during the conference. There is no additional cost for selecting the “Parent with Kids” ticket option. Organizers are currently considering various options for childcare.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">WordCamp is about diversity, this is not a catch phrase, it is not just a moment. It is about real people, doing real things, in the real world across gender, generation and culture. WordCamp embraces the world. <a href=\"https://twitter.com/hashtag/WordCamp?src=hash&ref_src=twsrc%5Etfw\">#WordCamp</a> <a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a> <a href=\"https://twitter.com/wordcamp?ref_src=twsrc%5Etfw\">@WordCamp</a> <a href=\"https://twitter.com/hashtag/WCUS?src=hash&ref_src=twsrc%5Etfw\">#WCUS</a> <a href=\"https://t.co/GdcCDNJYed\">pic.twitter.com/GdcCDNJYed</a></p>\n<p>— WordCamp US (@WordCampUS) <a href=\"https://twitter.com/WordCampUS/status/1124054159433584641?ref_src=twsrc%5Etfw\">May 2, 2019</a></p></blockquote>\n<p></p>\n<p>WordCamp US organizers have secured a block of hotel rooms at The Marriott St. Louis Grand with a special rate for conference attendees ($149/night). It is located directly across from the official venue. They anticipate the hotel block will sell out quickly. Attendees can follow the <a href=\"https://book.passkey.com/event/49835469/owner/84420/home\" rel=\"noopener noreferrer\" target=\"_blank\">link</a> from the WCUS website to reserve a room.</p>\n<p>Attendee Services is now open, and this includes assistance with visa applications. Any prospective attendee who requires a visa may <a href=\"https://2019.us.wordcamp.org/visa-letter-requests/\" rel=\"noopener noreferrer\" target=\"_blank\">request a letter from WCUS organizers</a> for the application. Requests must be made before September 1, 2019, in order to be processed in a timely way.</p>\n<p>Speakers will be notified of their acceptance in June and the full schedule will not be announced until July. Volunteer applications will also open in July. Check out the <a href=\"https://2019.us.wordcamp.org/2019/03/01/wordcamp-u-s-2019-timeline-save-the-date/\" rel=\"noopener noreferrer\" target=\"_blank\">WordCamp US 2019 Timeline</a> to get a quick overview of what’s next and follow <a href=\"https://twitter.com/WordCampUS\" rel=\"noopener noreferrer\" target=\"_blank\">@WordCampUS</a> on Twitter for all the latest.</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, 03 May 2019 04:29: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";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:112:\"WPTavern: WPCampus’ Gutenberg Accessibility Audit Finds “Significant and Pervasive Accessibility Problems”\";s: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://wptavern.com/?p=89237\";s: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:114:\"https://wptavern.com/wpcampus-gutenberg-accessibility-audit-finds-significant-and-pervasive-accessibility-problems\";s: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:5041:\"<p>WPCampus has published the <a href=\"https://wpcampus.org/2019/05/gutenberg-audit-results/\" rel=\"noopener noreferrer\" target=\"_blank\">results of the Gutenberg accessibility audit</a> the organization commissioned from Tenon, LLC. The audit was crowdfunded by the WordPress community and Matt Mullenweg and Automattic pledged to cover the balance to ensure it would be fully funded. </p>\n<p>Tenon’s analysis includes a <a href=\"https://documents.wpcampus.org/gutenberg/audit/Gutenberg_Report.pdf\" rel=\"noopener noreferrer\" target=\"_blank\">329-page technical audit</a> of the editor along with <a href=\"https://documents.wpcampus.org/gutenberg/audit/Gutenberg_UX_Report.pdf\" rel=\"noopener noreferrer\" target=\"_blank\">user-based testing</a> that included people with various disabilities. WPCampus’ announcement presents Tenon’s findings in a measured and diplomatic way, encouraging the community to use the report for improving WordPress: </p>\n<blockquote><p>Please use this report as what it is intended to be: constructive feedback in support of the WordPress project. We hope this report generates discussion about accessibility, excitement about inclusive design, and action toward improving the editing experience.</p></blockquote>\n<p>Beyond its use for WordPress core, the audit is also a valuable resource for those extending Gutenberg and more broadly for developers who are building React-based projects.</p>\n<p>Tenon’s report includes a 34-page <a href=\"https://documents.wpcampus.org/gutenberg/audit/Gutenberg_Executive_Summary.pdf\" rel=\"noopener noreferrer\" target=\"_blank\">Executive Summary</a>, highlighting key findings from the usability testing and technical review. It’s important to note that the audit was conducted on WordPress version 5.0.3 in January 2019. Since that time the Gutenberg and Accessibility teams have resolved an additional <a href=\"https://github.com/WordPress/gutenberg/issues?utf8=%E2%9C%93&q=label%3AAccessibility+closed%3A%3E2019-01-03\" rel=\"noopener noreferrer\" target=\"_blank\">116 accessibility issues</a>, which will be included in WordPress 5.2 next week.</p>\n<p>As expected, Tenon’s results show that overall the markup generated by Gutenberg is “clean, semantically correct and accessible” but that “Gutenberg’s user experience is consistently poor.” The audit found that Gutenberg fails to comply with all 30 of the WCAG 2.1 Success Criteria. </p>\n<p>Tenon’s findings confirm the <a href=\"https://wptavern.com/wordpress-accessibility-team-delivers-sobering-assessment-of-gutenberg-we-have-to-draw-a-line\" rel=\"noopener noreferrer\" target=\"_blank\">statement</a> WordPress’ Accessibility Team published in October 2018 regarding the editor’s overall level of accessibility:</p>\n<p><em>“The accessibility team will continue to work to support Gutenberg to the best of our ability. However, based on its current status, we cannot recommend that anybody who has a need for assistive technology allow it to be in use on any sites they need to use at this time.”</em></p>\n<p>At that time, many WordPress contributors urged leadership not to ship an editor with critical accessibility issues that prevented people using assistive technologies from moving forward with the latest version.</p>\n<p>Tenon’s Executive Summary concludes that the new editor is a step backwards for people with disabilities:</p>\n<blockquote><p>Gutenberg has significant and pervasive accessibility problems, the likes of which amount to a step backwards for users with disabilities over the legacy editor. Our user-based testing – backed by data from our technical review – indicates that the accessibility problems are severe in nature. We feel concerned that Gutenberg’s current accessibility issues will prove problematic for website owners who deploy Gutenberg to content creators in protected populations or for website owners who are themselves part of a protected population. Therefore, organizations which have high risk profiles should consult legal counsel before using it and may want to choose to use the legacy editor instead.</p></blockquote>\n<p>Tenon recommended that Gutenberg’s developers aggressively tackle the issues uncovered in the <a href=\"https://documents.wpcampus.org/gutenberg/audit/Gutenberg_Report.pdf\" rel=\"noopener noreferrer\" target=\"_blank\">technical report</a>, given the size of WordPress’ user base. The full report essentially functions as a guide for anyone who wants to contribute to the new editors’ accessibility. It is an excellent resource that outlines each issue with solutions and recommended code, making it easy for developers to get started with meaningful contributions right away. Tenon has <a href=\"https://github.com/WordPress/gutenberg/issues/created_by/karlgroves\" rel=\"noopener noreferrer\" target=\"_blank\">created a collection of 84 issues on GitHub</a> based on the findings in the audit and six of them have already been resolved/closed. </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, 02 May 2019 19:59: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:13:\"Sarah Gooding\";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:37:\"WordPress.org blog: WordPress 5.2 RC2\";s: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:34:\"https://wordpress.org/news/?p=6914\";s: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:53:\"https://wordpress.org/news/2019/05/wordpress-5-2-rc2/\";s: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:2474:\"<p>The second release candidate for WordPress 5.2 is now available!</p>\n\n\n\n<p>WordPress 5.2 will be released on <strong><a href=\"https://make.wordpress.org/core/5-2/\">Tuesday, May 7</a></strong>, but we need <em>your</em> help to get there—if you haven’t tried 5.2 yet, now is the time!</p>\n\n\n\n<p>There are two ways to test the WordPress 5.2 release candidate: try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want to select the “bleeding edge nightlies” option), or you can <a href=\"https://wordpress.org/wordpress-5.2-RC2.zip\">download the release candidate here</a> (zip).</p>\n\n\n\n<p>For details about what to expect in WordPress 5.2, please see the <a href=\"https://wordpress.org/news/2019/04/wordpress-5-2-release-candidate/\">first release candidate post</a>.</p>\n\n\n\n<p>This release includes the final About page design. It also contains fixes for:</p>\n\n\n\n<ul><li>Proper translation of the recovery mode notification emails (#47093).</li><li>Improvements to the way Site Health works with multisite installs (#47084).</li></ul>\n\n\n\n<h2>Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against WordPress 5.2 and update the <em>Tested up to</em> version in the readme to 5.2. If you find compatibility problems, please be sure to post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a> so we can figure those out before the final release.</p>\n\n\n\n<p>The <a href=\"https://make.wordpress.org/core/2019/04/16/wordpress-5-2-field-guide/\">WordPress 5.2 Field Guide</a> has also been published, which details the major changes.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n\n\n\n<p><em><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</em></p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p><em>It’s the start of May<br />and the release is coming.<br />We all give a cheer!</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:\"Thu, 02 May 2019 16:17: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:7:\"Josepha\";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:54:\"WordPress.org blog: The Month in WordPress: April 2019\";s: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:34:\"https://wordpress.org/news/?p=6918\";s: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://wordpress.org/news/2019/05/the-month-in-wordpress-april-2019/\";s: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:8384:\"<p>This past month has been filled with anticipation as the community builds up towards a big new release, plans some important events, and builds new tools to grow the future of the project.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress 5.2 Almost Due for Release</h2>\n\n\n\n<p>WordPress 5.2 is due for release on May 7 with many new features included for developers and end-users alike. <a href=\"https://make.wordpress.org/core/2019/04/16/wordpress-5-2-field-guide/\">The Field Guide for the release</a> provides a lot of information about what is in it and what you can expect, including a few key elements:</p>\n\n\n\n<h3>Site Health Check</h3>\n\n\n\n<p>One of the most highly anticipated features for v5.2 is <a href=\"https://make.wordpress.org/core/2019/04/25/site-health-check-in-5-2/\">the Site Health Check</a>. This feature adds two new pages in the admin interface to help end users maintain a healthy site through common configuration issues and other elements that go along with having a robust online presence. It also provides a standardized location for developers to add debugging information.</p>\n\n\n\n<h3>Fatal Error Recovery Mode</h3>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2019/04/16/fatal-error-recovery-mode-in-5-2/\">The Fatal Error Recovery Mode feature</a> was originally planned for the 5.1 release but was delayed to patch up some last-minute issues that arose. This feature will help site-owners recover more quickly from fatal errors that break the display or functionality of their site that would ordinarily require code or database edits to fix.</p>\n\n\n\n<h3>Privacy and Accessibility Updates</h3>\n\n\n\n<p>Along with the headlining features mentioned above, there are some important enhancements to the privacy and accessibility features included in Core. These include <a href=\"https://make.wordpress.org/core/2019/04/24/developer-focused-privacy-updates-in-5-2/\">some important developer-focused changes</a> to how privacy policy pages are displayed and user data is exported, as well as <a href=\"https://make.wordpress.org/core/2019/04/02/admin-tabs-semantic-improvements-in-5-2/\">moving to more semantic markup for admin tabs</a> and <a href=\"https://make.wordpress.org/core/2019/04/24/notable-accessibility-changes-in-5-2/\">other improvements</a> such as switching post format icons to drop-down menus on post list tables, improved admin toolbar markup, and contextual improvements to archive widget drop-down menu.</p>\n\n\n\n<h3>New Dashicons</h3>\n\n\n\n<p>The <a href=\"https://developer.wordpress.org/resource/dashicons/\">Dashicons</a> library was last updated was over 3 years ago. Now, in the upcoming release, <a href=\"https://make.wordpress.org/core/2019/04/11/dashicons-in-wordpress-5-2/\">a set of 13 new icons will be added to the library</a> along with improvements to the build process and file format of the icons.</p>\n\n\n\n<h3>Block Editor Upgrades</h3>\n\n\n\n<p>The Block Editor has seen <a href=\"https://make.wordpress.org/core/2019/04/17/whats-new-in-gutenberg-17th-april/\">numerous improvements</a> lately that will all be included in the v5.2 release. Along with the interface upgrades, the underlying Javascript module <a href=\"https://make.wordpress.org/core/2019/04/09/the-block-editor-javascript-module-in-5-2/\">has been reorganized</a>, improvements have been made to <a href=\"https://make.wordpress.org/core/2019/04/17/block-editor-detection-improvements-in-5-2/\">how the block editor is detected</a> on the post edit screen, and <a href=\"https://make.wordpress.org/core/2019/03/25/building-javascript/\">the Javascript build process has been enhanced</a>.</p>\n\n\n\n<p><a href=\"https://wordpress.org/news/2019/04/wordpress-5-2-release-candidate/\">WordPress 5.2 is now in the Release Candidate phase</a> and you can test it by installing <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">the Beta Tester plugin</a> on any WordPress site.</p>\n\n\n\n<p>Want to get involved in building WordPress Core? Follow <a href=\"https://make.wordpress.org/core\">the Core team blog</a> and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>WordPress Translation Day 4 is Almost Here</h2>\n\n\n\n<p>On 11 May 2019, <a href=\"https://make.wordpress.org/polyglots/2019/03/01/global-wordpress-translation-day-4-is-coming/\">the fourth WordPress Translation Day</a> will take place. This is a 24-hour global event dedicated to the translation of all things WordPress, from Core to themes, plugins to marketing.</p>\n\n\n\n<p>Over the course of 24 hours, WordPress communities will meet to translate WordPress into their local languages and watch talks and sessions broadcast on <a href=\"https://wptranslationday.org/\">wptranslationday.org</a>. During the previous WordPress Translation Day, 71 local events took place in 29 countries, and even more communities are expected to take part this time.</p>\n\n\n\n<p>Want to get involved in WordPress Translation Day 4? Find out <a href=\"https://make.wordpress.org/community/2019/03/22/global-wordpress-translation-day-4-info-for-event-organizers/\">how to organize a local event</a>, follow the updates on <a href=\"https://make.wordpress.org/polyglots/tag/gwtd4/\">the Polyglots team blog</a>, and join the #polyglots channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Block Library Project Gets Started</h2>\n\n\n\n<p>Since <a href=\"https://make.wordpress.org/meta/2019/03/08/the-block-directory-and-a-new-type-of-plugin/\">the initial proposal</a> for a Block Library that would be made available from inside the block editor, work has been done to put together <a href=\"https://make.wordpress.org/design/2019/04/02/call-for-design-installing-blocks-from-within-gutenberg/\">some designs</a> for how this would look. Since then the project has received a more direct focus with <a href=\"https://make.wordpress.org/design/2019/04/26/block-library-installing-blocks-from-within-gutenberg/\">a planned out scope and timeline</a>.</p>\n\n\n\n<p>The project is being managed <a href=\"https://github.com/WordPress/block-directory/projects/1\">on GitHub</a> and people interested in contributing are encouraged to get involved there. You can also keep up to date by following <a href=\"https://make.wordpress.org/design/\">the Design team blog</a> and joining the #design channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul><li>The results from the 5.0 release retrospective survey <a href=\"https://make.wordpress.org/updates/2019/04/26/5-0-release-retrospective-wrap-up/\">have been published</a> – this is the first time this kind of open retrospective has been done for a WordPress release and the results provide valuable insight into the project and its contributors.</li><li>The team behind the WordPress Coding Standards <a href=\"https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/releases/tag/2.1.0\">has released version 2.1</a>, including some very useful new sniffs.</li><li>The community <a href=\"https://make.wordpress.org/community/2019/04/18/the-get-involved-table-at-wceu-2019/\">is looking for volunteers for the Get Involved table</a> at WordCamp Europe on 20-22 June.</li><li>Gutenberg has been ported <a href=\"https://github.com/VanOns/laraberg/\">for use within the Laravel framework</a> in a project dubbed Laraberg.</li><li>The 2019 WordCamp for Publishers event <a href=\"https://2019-columbus.publishers.wordcamp.org/2019/04/12/call-for-speakers/\">has opened its call for speakers</a>.</li><li>The Gutenberg team <a href=\"https://github.com/WordPress/gutenberg/blob/add/blocks-in-widget-areas-rfc/docs/rfcs/blocks-in-widget-areas.md\">has published an RFC</a> regarding blocks being used in widgets.</li><li>WordCamp Europe, taking place on 20-22 June, has published <a href=\"https://2019.europe.wordcamp.org/schedule/\">the schedule for the event</a>.</li><li>The Community Team <a href=\"https://make.wordpress.org/community/2019/04/18/2018-meetup-survey/\">has published the results</a> of the 2018 meetup group survey.</li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it here</em></a><em>.</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:\"Thu, 02 May 2019 09:00: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:15:\"Hugh Lashbrooke\";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:35:\"HeroPress: WordPress is My Identity\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=2798\";s: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:122:\"https://heropress.com/essays/wordpress-is-my-identity/#utm_source=rss&utm_medium=rss&utm_campaign=wordpress-is-my-identity\";s: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:8405:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2020/05/050119-min-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: My only wish is to do something different for this world which will be remembered long after I am gone.\" /><div class=\"page\" title=\"Page 1\">\n<div class=\"section\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n<p>I was born and brought up in the under-developed city of <a href=\"https://en.wikipedia.org/wiki/Layyah\">Layyah</a>, which is situated in Southern Punjab and surrounded by desert and the river <strong>Sindh</strong>.</p>\n<p>I graduated from college in my hometown with pretty much regular grades. Went through some hard times when I was in university. It was also difficult for me to pay the university dues due to financial shortcomings.</p>\n<p>I am a sportsman and still have a wish to play in International Cricket which seems impossible from where I am today. At one point, I wished to join Pakistan Air Force but life directed me towards Computer Sciences.</p>\n<p>I started using a computer in 2010 when I joined <a href=\"https://gcuf.edu.pk/\">Government College University Faisalabad</a>. Came to know about WordPress while I was finishing the last semester of my degree and my FYP was based on WordPress.</p>\n<p>My mother–who is no more in this world–was the real hero of my life and stayed by my side till her last breath. I remember my kindergarten days when she helped me with my homework. I remember the moments in which she used to stay standing in front of the house while I drove off to school.</p>\n<p>I remember her last day at the hospital. I met her in the ICU before her heart surgery. She hugged me and said “<strong>Don’t worry, everything will be good</strong>”. She expired during the surgery. I pray for her soul to rest in peace every day.</p>\n<h3>Start of Career:</h3>\n<p>Something had always felt missing in my life, but I felt like I was on the right track for the first time in my life when I joined the WordPress community. After graduation, I struggled a lot to get my first job. I joined <a href=\"https://www.presstigers.com/\">PressTigers</a> as a Software Engineer and continued struggling to make my position better.</p>\n<p><a href=\"https://twitter.com/FahadShakeel\">Khawaja Fahad Shakeel</a> was my first mentor. For me, it has always been an honour to work with him. He directed me towards the right path and provided me with endless support.</p>\n<h3>Community – WordCamps and Meetups:</h3>\n<p>I am using WordPress since 2015. Once I started attending meetups and open source contribution, it turned out to be a game changer for me.</p>\n</div>\n</div>\n</div>\n</div>\n<div class=\"page\" title=\"Page 2\">\n<div class=\"section\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n<p>I learned a lot of things from the WordPress Community platform. There are a lot of personalities who have left a deep impression on met. One of them is <a href=\"https://twitter.com/jainnidhi03\">Nidhi Jain</a> from Udaipur India. At this point, she is like a sister to me. We have an amazing chemistry when it comes to working on WordPress dev. The second one is <a href=\"https://twitter.com/desrosj\">Jonathan Desrosiers</a> who is like my big brother whom I have learned a lot from and continue to do more every day.</p>\n<p>WordPress Community is where I feel the most comfortable, after my family. I am supporting local WordPress communities and was part of WordCamp Karachi as an organizer. It was the first time that I spoke in an international level event.</p>\n<p>People around the globe know me because of WordPress. This is why WordPress is my identity. I owe a huge part of who I am to the WordPress Community.</p>\n<h3>WordPress and Future:</h3>\n<p>I believe WordPress can never die as long as people don’t stop baking new things and curating it according to the demands of the new era.</p>\n<p><em>The beauty of WordPress is that it is made for everyone.</em></p>\n<p>As a <a href=\"https://www.meetup.com/WordPress-Lahore/members/?op=leaders&sort=name\">co-organizer of WordPress Meetup Lahore</a> it is an honor for me to provide a platform for people to gather under one roof, to learn and share something with the community. I believe in diversity and would love to involve more people in the community leadership team.</p>\n<p>I am extremely hopeful regarding the WordPress Meetup Lahore group and welcome everyone to contribute into making it great.</p>\n<p>I have been terribly impressed by <a href=\"https://walktowc.eu/\">Marcel</a> as he walked for WC Europe and I would love to walk for WC Asia after the approval.</p>\n<p>In the future, if I get a chance in politics, I wish to be a part of upper house as a <a href=\"http://www.senate.gov.pk/\">SENATOR OF PAKISTAN</a>. Hopefully, I will be contesting in the next senate election either from the platform of the ruling party or as an independent candidate.</p>\n<h3>Community Mentor:</h3>\n<p><a href=\"https://twitter.com/Usman__Khalid\">Usman Khalid</a>, the lead organizer of WC Karachi, is the hero behind the scenes for establishing the communities in Pakistan. He has mentored me for community relevant stuff. I would love to credit him, the person who gathered the Pakistani WordPress folks under one roof for the first time.</p>\n</div>\n</div>\n</div>\n</div>\n<div class=\"page\" title=\"Page 3\">\n<div class=\"section\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n<h3>Message for WordPressers:</h3>\n<p><em>If you seriously want to do something for yourself, do something for others first.</em></p>\n<p>Go for open source, you’ll surely learn how to code. You’ll learn how to work in a team. Join local meetups, meet with the folks: help them, learn from them and share ideas.</p>\n<h3>Wrap Up:</h3>\n<p>One thing I have learned from life is that there is no shortcut to success. You have to work hard to achieve your goals. The person who lives in a fantasy world will never succeed in life.</p>\n<p>I don’t think I have achieved something great. I still have the thirst to do something; lots and lots of missions to be accomplished. My only wish is to do something different for this world which will be remembered long after I am gone.</p>\n<p>Together we grow. Peace <img src=\"https://s.w.org/images/core/emoji/11.2.0/72x72/270c.png\" alt=\"✌\" class=\"wp-smiley\" /></p>\n</div>\n</div>\n</div>\n</div>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: WordPress is My Identity\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=WordPress%20is%20My%20Identity&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-is-my-identity%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: WordPress is My Identity\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-is-my-identity%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-is-my-identity%2F&title=WordPress+is+My+Identity\" rel=\"nofollow\" target=\"_blank\" title=\"Share: WordPress is My Identity\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/wordpress-is-my-identity/&media=https://heropress.com/wp-content/uploads/2020/05/050119-min-150x150.jpg&description=WordPress is My Identity\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: WordPress is My Identity\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/wordpress-is-my-identity/\" title=\"WordPress is My Identity\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/wordpress-is-my-identity/\">WordPress is My Identity</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 01 May 2019 03:00:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Abdullah Ramzan\";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:86:\"WPTavern: Creative Commons Launches New Search Engine with Access to 30 Million Images\";s: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://wptavern.com/?p=89191\";s: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:97:\"https://wptavern.com/creative-commons-launches-new-search-engine-with-access-to-30-million-images\";s: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:2951:\"<p>After more than two years in beta, Creative Commons has <a href=\"https://creativecommons.org/2019/04/30/cc-search-images/\" rel=\"noopener noreferrer\" target=\"_blank\">launched its new search engine</a>, featuring a completely redesigned search page, improved navigation and search filters, better search loading times, and more accurate search phrase relevance. It has replaced the old search portal and is now <a href=\"https://search.creativecommons.org/\" rel=\"noopener noreferrer\" target=\"_blank\">linked</a> from the homepage.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/04/creative-commons-search.png?ssl=1\"><img /></a></p>\n<p>This update to CC Search also improves attribution options, making it easy for users to copy the text or HTML with the license icons included. Each image also has a unique link for users to provide optional feedback on how they using the works.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/04/Screen-Shot-2019-04-30-at-4.24.51-PM.png?ssl=1\"><img /></a></p>\n<p>Creative Commons has indexed 30 million CC-licensed images from <a href=\"https://search.creativecommons.org/about\" rel=\"noopener noreferrer\" target=\"_blank\">19 collections</a>, including Flickr, Geograph Britain and Ireland, Bēhance, Metropolitan Museum of Art, and a number of other smaller collections. The nonprofit organization’s long-term goal is to provide access to all 1.4 billion CC-licensed and public domain works on the web.</p>\n<p>Creative Commons will soon be expanding its image catalog with works from Europeana and Wikimedia Commons and is also adding open textbooks and audio later in 2019. The next items on the <a href=\"https://docs.google.com/document/d/19yH2V5K4nzWgEXaZhkzD1egzrRayyDdxlzxZOTCm_pc/edit#heading=h.i68p7ztjvnir\" rel=\"noopener noreferrer\" target=\"_blank\">CC Search roadmap</a> for this quarter include advanced filters to the home page, the ability to browse collections without entering search terms, and improved accessibility and UX on mobile. Some of this work will be performed by Google Summer of Code students beginning next month.</p>\n<p>CC-licensed images are popular with bloggers and designers but tracking down license and attribution information can be tedious when searching various collections across the web. CC Search aggregates some of the most popular sources and is steadily improving the performance of its search tool. If you experience any issues, all of the CC Search code (<a href=\"https://github.com/creativecommons/cccatalog-frontend/\" rel=\"noopener noreferrer\" target=\"_blank\">CC Search</a>, <a href=\"https://github.com/creativecommons/cccatalog-api\" rel=\"noopener noreferrer\" target=\"_blank\">CC Catalog API</a>, <a href=\"https://github.com/creativecommons/cccatalog/\" rel=\"noopener noreferrer\" target=\"_blank\">CC Catalog</a>) is open source on GitHub and the organization welcomes bug reports and contributions from the community.</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, 01 May 2019 01:52:14 +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:13:\"Sarah Gooding\";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:81:\"WPTavern: BuddyPress 5.0 to Display Debug Info in the New Site Health Info Screen\";s: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://wptavern.com/?p=89183\";s: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:92:\"https://wptavern.com/buddypress-5-0-to-display-debug-info-in-the-new-site-health-info-screen\";s: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:1169:\"<p>The upcoming BuddyPress 5.0 release will <a href=\"https://buddypress.trac.wordpress.org/changeset/12391\" rel=\"noopener noreferrer\" target=\"_blank\">add plugin-specific debug info</a> to the new Site Health Info screen that is coming in WordPress 5.2. </p>\n<p>Mathieu Viet, who contributed the patch, said the information could be very useful to help solve issues on the BuddyPress forums. The panel is displayed at the bottom of the screen. It includes the BuddyPress version, active components, active template pack, and a list of other component-specific settings information. </p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/04/buddypress-site-info.png?ssl=1\"><img /></a></p>\n<p>This is a good example of how plugins can hook into this screen to add specific debug information. Users who need support can copy the information from the screen and paste it into the support forums for faster assistance with their issues. </p>\n<p><a href=\"https://buddypress.trac.wordpress.org/milestone/5.0.0\" rel=\"noopener noreferrer\" target=\"_blank\">BuddyPress 5.0</a> is expected at the end of May and will ship with this new site health enhancement. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 30 Apr 2019 18:15: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:13:\"Sarah Gooding\";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:91:\"WPTavern: npm’s 2019 JavaScript Ecosystem Survey Shows 63% of Respondents are Using React\";s: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://wptavern.com/?p=89142\";s: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:98:\"https://wptavern.com/npms-2019-javascript-ecosystem-survey-shows-63-of-respondents-are-using-react\";s: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:3075:\"<p><a href=\"https://www.npmjs.com/\" rel=\"noopener noreferrer\" target=\"_blank\">npm, Inc</a>. has released a <a href=\"https://javascriptsurvey.com/\" rel=\"noopener noreferrer\" target=\"_blank\">preview</a> of the results of its Enterprise JavaScript in 2019 survey, which was conducted from 12/1/18 – 1/8/19. The company received 33,478 responses from developers across 23 industries and 194 countries and territories. Twenty-two languages were represented and less than half of respondents spoke English (47.13%), although the survey was in English.</p>\n<p>The preview highlights essential trends in the JavaScript ecosystem. React’s growing popularity is the least surprising among these trends. The results showed that 63% of respondents are using React.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/04/Screen-Shot-2019-04-26-at-3.15.32-PM.png?ssl=1\"><img /></a></p>\n<p>npm Inc. estimates that there are approximately 5 million React developers worldwide and concludes that “There has never been a JavaScript framework this popular before, and it is more than twice as popular as the next-biggest framework, Angular.”</p>\n<p>Results for other frameworks are not yet available to the public but npm Inc. plans to share more details in future articles. </p>\n<p>Nearly half (49%) of respondents have more than 5 years of experience using JavaScript, a 9% increase from the previous year’s survey, shifting an estimated 1 million participants into this category. This indicates that the JavaScript user base is becoming more sophisticated overall. </p>\n<p>Another trend is the rising popularity of GraphQL. While its adoption is still relatively low, with only 7% of respondents indicating that they use it frequently, 23% of developers use it for some of their projects. The results showed that 72% of npm users are using or considering using GraphQL in 2019.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/04/Screen-Shot-2019-04-26-at-4.36.13-PM.png?ssl=1\"><img /></a></p>\n<p>In a post that goes further in depth on <a href=\"https://medium.com/npm-inc/methodology-of-the-2018-2019-javascript-ecosystem-survey-and-results-b1cef1b83f10\" rel=\"noopener noreferrer\" target=\"_blank\">the methodology used for the survey</a>, nmp Inc. said the company did not collect demographics on race or gender identity, so the data may not be representative of the broader population of JavaScript users on these metrics. English speakers are also over-represented and the survey may contain some bias towards the opinions of users “who have more affinity to npm as an organization.” However, results from independent surveys like the 2018 State of JS Survey, show similar trends in the JavaScript ecosystem.</p>\n<p>npm Inc. will be sending out follow-up surveys to specific groups of respondents who volunteered to answer additional questions. The company plans to publish more data from the questions about tooling choices, technical preferences, and attitudes towards various professional practices.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 26 Apr 2019 22:24: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:13:\"Sarah Gooding\";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:76:\"WPTavern: WordPress 5.2 Pushed Back to May 7, RC 1 Now Available for Testing\";s: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://wptavern.com/?p=89083\";s: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/wordpress-5-2-pushed-back-to-may-7-rc-1-now-available-for-testing\";s: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:2793:\"<p>WordPress 5.2 was originally scheduled to be released on April 30, but has now been pushed back to May 7, <a href=\"https://make.wordpress.org/core/2019/04/17/discussion-consider-delaying-wordpress-5-2-rc1-date/\" rel=\"noopener noreferrer\" target=\"_blank\">due to the number of open tickets</a> last week (43). There is now only one ticket remaining on the <a href=\"https://core.trac.wordpress.org/report/6\" rel=\"noopener noreferrer\" target=\"_blank\">5.2 milestone</a> for completion of the About page and <a href=\"https://wordpress.org/news/2019/04/wordpress-5-2-release-candidate/\" rel=\"noopener noreferrer\" target=\"_blank\">WordPress 5.2 RC 1</a> is ready for testing. </p>\n<p>The upcoming release will bring major improvements to the block editor (everything released in the Gutenberg plugin prior to version 5.4). This includes the new block management capabilities and several new blocks that were ported from core widgets.</p>\n<p>WordPress 5.2 will introduce a <a href=\"https://make.wordpress.org/core/2019/04/25/site-health-check-in-5-2/\" rel=\"noopener noreferrer\" target=\"_blank\">new admin interface for Site Health</a> under the Tools menu. It runs tests that deliver results categorized as critical, recommended, or good, along with action items for users to improve their settings. The Information tab was added for basic debugging and provides information about the website and server setup. </p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/04/site-health-status.png?ssl=1\"><img /></a></p>\n<p>A new feature called “<a href=\"https://make.wordpress.org/core/2019/04/16/fatal-error-recovery-mode-in-5-2/\" rel=\"noopener noreferrer\" target=\"_blank\">fatal error recovery mode</a>” is also included in this release. It pauses themes or plugins that are causing a fatal error and puts the site into recovery mode so the user can still access the admin to troubleshoot the issue. Users should experience fewer “white screen of death” situations with this new feature in place. </p>\n<p>WordPress 5.2 brings a host of accessibility improvements to various admin screens for users who rely on assistive technologies. It also makes it easier to customize and design WordPress’ included Privacy Policy page. </p>\n<p>Check out the <a href=\"https://make.wordpress.org/core/2019/04/16/wordpress-5-2-field-guide/\" rel=\"noopener noreferrer\" target=\"_blank\">5.2 field guide</a> for a detailed breakdown of everything that’s coming in the upcoming release. If you want to get a sneak peak and help test the release candidate, the easiest way is to install the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\" rel=\"noopener noreferrer\" target=\"_blank\">Beta Tester</a> plugin and select the “bleeding edge nightlies” option.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 26 Apr 2019 14:28:28 +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:13:\"Sarah Gooding\";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:86:\"WPTavern: Apache NetBeans is Now a Top-Level Project of the Apache Software Foundation\";s: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://wptavern.com/?p=89099\";s: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:97:\"https://wptavern.com/apache-netbeans-is-now-a-top-level-project-of-the-apache-software-foundation\";s: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:4736:\"<p>The <a href=\"https://www.apache.org/\" rel=\"noopener noreferrer\" target=\"_blank\">Apache Software Foundation</a> (ASF), a non-profit corporation of decentralized volunteers from the open source developer community, has officially approved the <a href=\"https://netbeans.apache.org/\" rel=\"noopener noreferrer\" target=\"_blank\">NetBeans IDE</a> as a Top-Level project. NetBeans joins more than 350 other open source projects and initiatives managed by the foundation after spending two years in the Apache Incubator.</p>\n<p>The IDE supports Java, JavaScript, PHP, HTML5, and other popular programming languages, and is also used as a tooling platform and application framework. Although PhpStorm and Sublime Text capture a larger share of the IDE market for PHP developers, there is a small but passionate segment of WordPress developers who favor NetBeans as their IDE of choice.</p>\n<p>NetBeans started as a student project in 1996 in what was formerly known as Czechoslovakia. It was the first Java IDE written in Java but it soon became more than just an IDE platform, as the community began using it to create applications that weren’t development tools. In 2000, Sun Microsystems acquired NetBeans and open sourced it, making it Sun’s first sponsored open source project. It became part of Oracle when it acquired Sun Microsystems in 2010 and the company continues to sponsor the project. NetBeans is now used by more than 1.5 million users each month.</p>\n<p>Now that Apache NetBeans is governed by the ASF, it will be more likely to receive contributions than when it belonged to a commercial entity. However, contributors from Oracle and other organizations will continue to be part of shaping its future. Coming under the ASF umbrella is also bringing some welcome developments for the project’s governance, according to Apache NetBeans Vice President Geertjan Wielenga:</p>\n<blockquote><p>Being part of the ASF means that NetBeans is now not only free and Open Source software: it is also, uniquely, and for the first time, part of a foundation specifically focused on enabling open governance. Every contributor to the project now has equal say over the roadmap and direction of NetBeans. That is a new and historic step and the community has been ready for this for a very long time. Thanks to the strong stewardship of NetBeans in Sun Microsystems and Oracle, Apache NetBeans is now ready for the next phase in its development and we welcome everyone to participate as equals as we move forward.</p></blockquote>\n<p>Oracle’s decision to submit NetBeans to the ASF Incubator came as a surprise to many in 2016. At that time, OSI President Simon Phipps <a href=\"https://meshedinsights.com/2016/09/15/oracle-gets-it-right-netbeans-heads-to-apache/\" rel=\"noopener noreferrer\" target=\"_blank\">shared his thoughts</a> about the benefits he saw for the project moving to open governance under the ASF:</p>\n<blockquote><p>By moving to independent governance and losing the Oracle CLA, others can join in with confidence their contribution won’t be used against them. More importantly, contributors also no longer need fear the transient decisions of cost-cutting Oracle VPs impacting the long-term viability of the project. Oracle’s Java team still needs NetBeans in order to make tools releases supporting new capabilities in Java 9 and later, so are likely to engage. Rather than withdrawal, this looks more like leveraging the ecosystem around NetBeans to sustain development while keeping Oracle’s costs in line with the direct benefit NetBeans delivers to them.</p></blockquote>\n<p>According to the <a href=\"https://wiki.apache.org/incubator/NetBeansProposal\" rel=\"noopener noreferrer\" target=\"_blank\">proposal</a> submitted to the ASF for NetBeans’ acceptance into the Incubator, the majority of code contributions have come from Oracle since it acquired Sun Microsystems. In addressing some of the known risks Oracle faces in contributing NetBeans to the ASF, the proposal states that “the size and diversity of the community is a guarantee against the project being orphaned.” </p>\n<p>NetBean’s proposal said the purpose of moving NetBeans to Apache is to “expand the diversity of contributors and to increase the level of meritocracy.” The project already has a good foundation to build on, as its application framework is used by large companies and organizations, including Boeing, Airbus Defense and Space, NASA, and NATO, that depend on NetBeans for building mission critical scientific software. This new era of open governance should give the community a stronger sense of ownership and stimulate greater levels of contribution across the project. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 26 Apr 2019 02:18: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:13:\"Sarah Gooding\";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:51:\"WordPress.org blog: WordPress 5.2 Release Candidate\";s: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:34:\"https://wordpress.org/news/?p=6909\";s: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://wordpress.org/news/2019/04/wordpress-5-2-release-candidate/\";s: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:3119:\"<p>The first release candidate for WordPress 5.2 is now available!</p>\n\n\n\n<p>This is an important milestone as we progress toward the WordPress 5.2 release date. “Release Candidate” means that the new version is ready for release, but with millions of users and thousands of plugins and themes, it’s possible something was missed. WordPress 5.2 is scheduled to be released on <strong>Tuesday, May 7</strong>, but we need <em>your</em> help to get there—if you haven’t tried 5.2 yet, now is the time!</p>\n\n\n\n<p>There are two ways to test the WordPress 5.2 release candidate: try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want to select the “bleeding edge nightlies” option), or you can <a href=\"https://wordpress.org/wordpress-5.2-RC1.zip\">download the release candidate here</a> (zip).</p>\n\n\n\n<h2>What’s in WordPress 5.2?</h2>\n\n\n\n<p>Continuing with the theme from the last release, WordPress 5.2 gives you even more robust tools for identifying and fixing configuration issues and fatal errors. Whether you are a developer helping clients or you manage your site solo, these tools can help get you the right information when you need it.</p>\n\n\n\n<p>The Site Health Check and PHP Error Protection tools have brand new features, giving you peace of mind if you discover any issues with plugins or themes on your site. There are also updates to the icons available in your dashboard, fresh accessibility considerations for anyone using assistive technologies and more.</p>\n\n\n\n<h2>Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against WordPress 5.2 and update the <em>Tested up to</em> version in the readme to 5.2. If you find compatibility problems, please be sure to post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a> so we can figure those out before the final release.</p>\n\n\n\n<p>The <a href=\"https://make.wordpress.org/core/2019/04/16/wordpress-5-2-field-guide/\">WordPress 5.2 Field Guide</a> has also been published, which goes into the details of the major changes.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a> This release also marks the <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\">hard string freeze</a> point of the 5.2 release schedule.</p>\n\n\n\n<p><em><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</em></p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p><em>Howdy, RC 1!<br />With tools this interesting,<br />I can hardly wait.</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, 26 Apr 2019 01:28:10 +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:7:\"Josepha\";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:61:\"BuddyPress: BuddyPress 4.3.0 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=305281\";s: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:81:\"https://buddypress.org/2019/04/buddypress-4-3-0-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2481:\"<p>BuddyPress 4.3.0 is now available. This is a security and maintenance release. All BuddyPress installations are strongly encouraged to upgrade as soon as possible.</p>\n\n\n\n<p>The 4.3.0 release addresses nine security issues:</p>\n\n\n\n<ul><li> A privilege escalation vulnerability was fixed that could allow users to “favorite” activity items to which they do not have read access. Discovered by <a href=\"https://secasure.com\">Yuvraj Dighe</a>.</li><li>A privilege escalation vulnerability was fixed that could allow users to join non-public groups while using the Nouveau template pack. Discovered and reported independently by <a href=\"https://secasure.com\">Yuvraj Dighe</a> and Nam.Dinh.</li><li>A privilege escalation vulnerability was fixed that could allow users to reply to activity items to which they do not have read access. Discovered by <a href=\"https://secasure.com\">Yuvraj Dighe</a>.</li><li>A privilege escalation vulnerability was fixed that could allow users to view private message threads to which they do not have access while using the Nouveau template pack. Discovered by <a href=\"https://secasure.com\">Yuvraj Dighe</a>.</li><li>An XSS vulnerability was fixed in the save routine for group names. Discovered by <a href=\"https://hackerone.com/wxy7174\">wxy7174</a>.</li><li>An XSS vulnerability was fixed in the content of activity items. Discovered by <a href=\"https://twitter.com/zozuar\">Yonatan Offek</a>.</li><li>A privilege escalation vulnerability was fixed that could allow unauthorized users to update certain group settings. Discovered by <a href=\"https://hackerone.com/wxy7174\">wxy7174</a>.</li><li>A privilege escalation vulnerability was fixed that could allow unauthorized users to view pending group invites. Discovered by <a href=\"https://secasure.com\">Yuvraj Dighe</a>.</li><li>A privilege escalation vulnerability was fixed that could allow unauthorized users to delete pending group invitations. Discovered by <a href=\"https://secasure.com\">Yuvraj Dighe</a>.</li></ul>\n\n\n\n<p>These vulnerabilities were reported privately to the BuddyPress team, in accordance with <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">WordPress’s security policies</a>. Our thanks to the reporters for practicing coordinated disclosure.</p>\n\n\n\n<p>BuddyPress 4.3.0 also fixes 3 bugs. For complete details, visit the <a href=\"https://codex.buddypress.org/releases/version-4-3-0/\">4.3.0 changelog</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 25 Apr 2019 16:40: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:12:\"Boone Gorges\";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:85:\"WPTavern: Clean Blocks: A Free Multipurpose WordPress Theme Compatible with Gutenberg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=89045\";s: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:95:\"https://wptavern.com/clean-blocks-a-free-multipurpose-wordpress-theme-compatible-with-gutenberg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3787:\"<p><a href=\"https://wordpress.org/themes/clean-blocks/\" rel=\"noopener noreferrer\" target=\"_blank\">Clean Blocks</a> is a new free theme from <a href=\"https://catchthemes.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Catch Themes</a> that was released last week on WordPress.org. The design is suitable for businesses, agencies, freelancers, and other service professionals who require featured content, a portfolio, testimonials, a blog, and a services section. </p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/04/clean-blocks-screenshot.png?ssl=1\"><img /></a></p>\n<p>Clean Blocks includes basic Gutenberg compatibility in that it supports all core blocks and is has a few enhanced block styles. </p>\n<p>It may seem unnecessary to specify that it is Gutenberg-compatible, since the editor has been part of WordPress core since early December 2018. However, more than half of all WordPress users (<a href=\"https://wordpress.org/about/stats/\" rel=\"noopener noreferrer\" target=\"_blank\">~55%</a>) are not running version 5.0+. Nearly 30% are hanging back at 4.9 and 25% are on even older versions.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/04/Screen-Shot-2019-04-23-at-10.05.35-PM.png?ssl=1\"><img /></a> </p>\n<p>Theme authors who create products that have Gutenberg-only features are not yet building for the majority of WordPress users. These authors are carving a path for the future of theme development. The Clean Blocks theme doesn’t really fall into this category, as its essentially enables users on WordPress 5.0+ to continue using the new editor without any styling issues. It is also compatible with earlier versions of WordPress (4.8+).</p>\n<p>Clean Blocks recommends a collection of Catch Themes’ functionality plugins upon theme activation. These plugins handle things like galleries, infinite scroll, Instagram feeds, widgets, and additional content types. The theme includes dozens of options in the Customizer for controlling nearly every aspect of how content is displayed – from excerpt length to categories displayed on the home page to header text color. This sort of overloaded Customizer options panel is common for multipurpose style themes, and many users have come to expect it.</p>\n<p><a href=\"https://catchthemes.com/demo/clean-blocks-free/\" rel=\"noopener noreferrer\" target=\"_blank\">Check out a demo</a> of the free version to see all the features in action.</p>\n<p>The name “Clean Blocks” implies that the theme goes beyond the basics to customize the Gutenberg experience, but that doesn’t seem to be the case. The vast majority of the features seen in the demo are controlled by the Customizer. For example, features like Testimonials and Services are not available as blocks. While some theme authors opt to integrate features like this by pairing their themes with block collection plugins, Catch Themes has put everything into the Customizer.</p>\n<p>Even with Gutenberg compatibility, many themes still have a disconnect between the back and frontend where certain features can only be configured in the Customizer. This fractured customization experience is one of the necessary evils for this transition time before the block editor is fully capable of handling more complex aspects of site customization.</p>\n<p>Clean Blocks is an example of a multipurpose theme that is essentially keeping it old school in terms of content customization, while providing basic Gutenberg compatibility for users who are running WordPress 5.0+. The theme is <a href=\"https://wordpress.org/themes/clean-blocks/\" rel=\"noopener noreferrer\" target=\"_blank\">available on WordPress.org</a> and has already been downloaded several hundred times during its first week in the directory. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 24 Apr 2019 22:46: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:13:\"Sarah Gooding\";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:74:\"WPTavern: Laraberg, a Gutenberg Implementation for Laravel, 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:29:\"https://wptavern.com/?p=89058\";s: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/laraberg-a-gutenberg-implementation-for-laravel-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:3954:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/04/laraberg.png?ssl=1\"><img /></a></p>\n<p>The family of Gutenberg derivatives is expanding with the beta release of <a href=\"https://github.com/VanOns/laraberg/\" rel=\"noopener noreferrer\" target=\"_blank\">Laraberg</a>, an implementation for Laravel. <a href=\"http://mauricewijnia.nl/\" rel=\"noopener noreferrer\" target=\"_blank\">Maurice Wijnia</a>, a developer at <a href=\"https://www.van-ons.nl/\" rel=\"noopener noreferrer\" target=\"_blank\">Van Ons</a>, an agency based in Amsterdam, created Laraberg as an easy way for developers building applications with Laravel to integrate the Gutenberg editor. It includes a simple API and support for the <a href=\"https://unisharp.github.io/laravel-filemanager/\" rel=\"noopener noreferrer\" target=\"_blank\">Laravel File Manager</a> for uploading files.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/04/laraberg-1.png?ssl=1\"><img /></a></p>\n<p>“The goal for Laraberg is to give developers the ability to add the Gutenberg editor to any page they like in a way that is as easy as possible, but at the same time it has to prove enough options to tailor the editor so it can fit into any Laravel project out there,” Wijnia said.</p>\n<p>Van Ons has a <a href=\"https://www.van-ons.nl/nieuws/gutenberg-in-laravel-hier-is-laraberg/\" rel=\"noopener noreferrer\" target=\"_blank\">preference for using Laravel</a> in their projects, due to its increasing popularity and active community. Laraberg makes it possible for the agency to tap into the convenience of the Gutenberg editor without giving up the performance and features they enjoy in the Laravel framework. The beta release is now available on <a href=\"https://github.com/VanOns/laraberg\" rel=\"noopener noreferrer\" target=\"_blank\">GitHub</a> and <a href=\"https://packagist.org/packages/van-ons/laraberg\" rel=\"noopener noreferrer\" target=\"_blank\">Packagist</a>. Van Ons plans to actively implement Laraberg in their own projects and will also be collecting feedback from beta testers. </p>\n<p>Wijnia said he was inspired by the <a href=\"https://drupalgutenberg.org/\" rel=\"noopener noreferrer\" target=\"_blank\">Drupal Gutenberg</a> project, whose creators also authored <a href=\"https://github.com/front/gutenberg-js\" rel=\"noopener noreferrer\" target=\"_blank\">Gutenberg.js</a>, a package that makes it easier to bring Gutenberg into other applications. Providing a foundation for using Gutenberg on any CMS or framework is part of Frontkom’s long term vision for improving the open web and enabling communities to collaborate on mutually beneficial extensions.</p>\n<p>As the editor continues to expand to more platforms and frameworks, a CMS-agnostic block library would offer a central place for Gutenberg’s increasingly diverse user base to discover new blocks. WordPress.org has the opportunity to provide that in its own block library, <a href=\"https://make.wordpress.org/meta/2019/03/08/the-block-directory-and-a-new-type-of-plugin/#comment-8947\" rel=\"noopener noreferrer\" target=\"_blank\">with the support of the Gutenberg Cloud team</a> that pioneered the idea in 2018.</p>\n<p>“If Gutenberg Cloud can serve as a proof of concept that WP.org can later adopt as their own, we are happy,” Frontkom CTO Per Andre Rønsen said. He also further commented on the WordPress.org Block Library proposal, <a href=\"https://wptavern.com/gutenberg-cloud-team-advocates-for-making-wordpress-orgs-new-block-directory-a-cms-agnostic-library\" rel=\"noopener noreferrer\" target=\"_blank\">advocating for the team to grow their vision beyond the WordPress community</a> only. No official decision has been announced yet. If WordPress decides to forgo the opportunity of providing a block library inclusive of other frameworks and platforms, then the Gutenberg Cloud will continue to be the place for discovering blocks that can be used across multiple platforms.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 24 Apr 2019 17:24: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:13:\"Sarah Gooding\";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:60:\"HeroPress: How the WordPress community helped me find my way\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=2786\";s: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:172:\"https://heropress.com/essays/how-the-wordpress-community-helped-me-find-my-way/#utm_source=rss&utm_medium=rss&utm_campaign=how-the-wordpress-community-helped-me-find-my-way\";s: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:30665:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2020/04/042419-min-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: Be the person you needed when you were younger.\" /><p><a href=\"https://heropress.com/feed/#pt-br\">Este ensaio também está disponível em português.</a></p>\n<p>As I make a checklist of all the things I’ll have to pack to travel from São Paulo to Berlin, to attend WordCamp Europe 2019, I can’t stop thinking how hard the path to this point has been.</p>\n<p>For some of people, a travel like this may seem ordinary, but for me, this will be the farthest I’ve ever been until now, in many ways. Especially because the last time I was planning to attend an international WordCamp, things didn’t work out at all.</p>\n<p>So let me tell you about the path.</p>\n<h3>The first steps</h3>\n<p>I was born and raised in São Paulo. Allow me to give you some context about my city. São Paulo is the richest and biggest city of Brazil. With more than 14 million people, it’s also the biggest city of the south hemisphere. It’s even bigger than New York.</p>\n<p>Like every big city, São Paulo is a place of opportunities, but also a place of contrasts.</p>\n<p>Growing up, although we were poor, my family cared a lot about the education of me and my little brother. My father who always liked technology, managed to get a computer for us in 1996. At that time, I was 6 years old, and we were the only family in my neighborhood to have a computer for a long time, and that was sad. That early exposure to technology made a big difference in my life.</p>\n<p>At age 13, I was very interested in graphic design and coding.</p>\n<blockquote><p>We had a very limited and expensive dial-up internet, that was only free after midnight and at weekends.</p></blockquote>\n<p>So to learn these skills, my best options were the CD-ROM magazines that my father would bring home. I also learned about HTML with a book about Microsoft Front Page. At age 14 I sold my first website, entirely created on Front Page, with lots of GIFs and <marquee> tags, for a neighbour who needed it for a college project. She loved it!</p>\n<p>I decided I wanted to work with design. So I started a Graphic Design course during the high school. With my love for web design, all I wanted was to have a site that was actually online. I couldn’t afford a host, but fortunately at this time, blogs became very popular here in Brazil.</p>\n<p>I looked for a platform to create a portfolio. I played a little with one called WordPress (you may have heard of it) and ended up using Blogger instead, because there was the possibility to customize the theme’s CSS online. I made a very dark grungy theme for my blog that’s still online.</p>\n<h3>A bumpy road</h3>\n<p>I got a scholarship for Graphic Design at a good College in São Paulo, but I still would have to pay for half of the monthly tuition. The problem was that my family definitely had no means to afford it. My parents said they would cut some expenses and help me, but I knew that there wasn’t anything they could cut. So I told them to not worry, I would find a job.</p>\n<p>At this point I had made a freelance gig creating a HTML website (in Dreamweaver this time). With exactly 1 month left for the College application, this client proposed that I started working there to maintain the website I just made. So I was able to (barely) pay for the college. After six months, I applied for a full scholarship and it was granted. Things got a little better financially, but the path was still rocky.</p>\n<p>It took me 3 hours by bus from my house to the college every single day, just inside the city of São Paulo (remember when I said this city is huge?).</p>\n<blockquote><p>I had the cheapest hot dog for lunch every day, because I couldn’t afford a real meal.</p></blockquote>\n<p>Then I would go to work (another 1h30 of bus from the college), and at night I would head back home (another bus, another 1h30). That was my routine for one and a half year throughout the college. As you can imagine, I was exhausted, and eventually getting ill.</p>\n<h3>A fork in the path</h3>\n<p>That’s when I decided that I would quit my job and start a business with my boyfriend Allyson Souza, that I met during my Graphic Design course in High School. We started the company officially in july, 2009. <a href=\"http://www.hastedesign.com.br/\">We named it Haste</a> (the portuguese word for “stem”).</p>\n<p>We were 19 years old, not much experience, zero network and money, a lot of energy, and some extra self-confidence (I could have summarized simply as “millennials”, right?). Allyson’s father gave us a computer and a part of his office, for which I am very grateful, and we created all the graphic materiais for his courses company in exchange.</p>\n<p>We started working with graphic design only, and it took us some time to realize that web development was our future.</p>\n<p>I remembered WordPress and tried it again. I liked how the platform had evolved. We made a second version of our website in WordPress, using a simple free theme, which I edited the CSS directly (oh god). We tried to create websites for clients modifying existing themes (at least we learned about child themes later), but we definitely didn’t feel in control of what we were doing.</p>\n<h3>When you hit your lowest point</h3>\n<p>In January 2011, my mother had a stroke. She had a brain surgery, and after a month, she was back home with a 6 inches scar in the head. That was the lowest point on my path.</p>\n<p>The next years I had to take care of her, because of some consequences of the stroke, both physical and psychological. As the only family member who hadn’t a “formal” job, with a boss and a defined schedule, I was the one who had to take her to appointments, or the ER, or stay home when she wasn’t ok. It was very hard to reconcile the final year of college, the work and my mom’s health care.</p>\n<h3>The only way is up</h3>\n<p>At Haste, we felt that things were not evolving. In 2013, after some partnerships that took us to some confusing paths, we decided to have a complete makeover. We defined a new focus: web design and development with WordPress. We created a new website, with a theme fully developed by us. We wanted to overcome the fear of coding, and wanted to know exactly what we were doing. So we started studying a lot by ourselves.</p>\n<p>Allyson was responsible for the PHP and JavaScript and I was supposed to make the design, the HTML and CSS. He started to ask a lot of questions in the group of WordPress Brasil community at Facebook. We finished the website, and people loved it, specially the illustration with parallax effect that made the girl move her eyes.</p>\n<blockquote><p>We were proud WordPress developers now.</p></blockquote>\n<p>We started attending the meetups, and then the WordCamp. I was amazed how the open-source culture was all about sharing knowledge with strangers, with no fear of competition, just the spirit of collaboration. We felt no longer isolated. We made real friends (shout out to all my WordPress friends).</p>\n<p>Soon we were both involved in the community, and became WordCamp São Paulo organizers in 2014.</p>\n<p>The new website and our participation in the WordPress community were really what we needed to give us some perspective and stability. So we didn’t stop there.</p>\n<h3>Bring others to walk with you</h3>\n<p>In the 2014 edition of WordCamp São Paulo, I was the only female speaker. That made me realize a few things.</p>\n<p>First that the proportion of men in the community events was not only the majority but, we almost didn’t had any women at all, which was very weird.</p>\n<p>Second, we know that lots of girls feel intimidated in an environment with too much men. I always had a majority of male friends since I was a kid, and even so, I probably wouldn’t get involved with the community if it wasn’t by the fact that my boyfriend / partner was with me.</p>\n<p>A few sexists incidents had happened with me too. I reacted, and the men involved seemed to understand that I wasn’t ok, and changed their behavior as far as I know.</p>\n<p>We don’t have as many meetups and WordCamps here in Brazil as in US. Although Brazil is becoming a technology hub, the WordPress community has still a lot of room to grow, compared to other communities. So, I think we have the opportunity to make things different while everything is not settled yet.</p>\n<p>So I decided to act now.</p>\n<blockquote><p>I started a poll asking the women involved with WordPress the reasons why they wouldn’t attend the events. The results proved it wasn’t just me complaining about small things.</p></blockquote>\n<p>Some jokes kept women away. Some condescending actions made them feel diminished. And even the lack of information from our part, that the WordCamps are inclusive events, made the women not to come. The lack of time, was an important factor too.</p>\n<p>Based on this data, the next year we managed to increase the proportion of female speakers from 5% to 32% at WordCamp São Paulo 2015. More women became organizers too. In 2019 we have 4 women out of 10 active organizers. The last WordCamp we had blind people attending, and their feedback was great. We still need to improve racial diversity though.</p>\n<h3>Barriers and frontiers</h3>\n<p>In 2015, Allyson had told me about this new scholarship program from the WordPress Foundation for women who work for equality in the community around the world. So I applied for the very first Kim Parsell Memorial Scholarship. Kim Parsell left a beautiful legacy of inclusion and love, having worked to bring more women, older people, and other minorities to the WordPress community. She was known as the #WPMom.</p>\n<p>The result came few months later. I received an email, and had no reaction for a few minutes. I had won the scholarship, and it granted me a travel to WordCamp US 2015, in Philadelphia Pennsylvania, with flights and hotel covered.</p>\n<p>You see: I had never left my country. I had just took flight for the first time that same year. I was not even close to dream to go to US, because it was impossible for me at the moment. Sometimes your mindset in the only thing putting limitations in your dreams.</p>\n<p>I was so happy, you have no idea. Alx Block and Cami Kaos reached to me to give me instructions and they were very kind.</p>\n<p>But then… my visa application was denied. They considered my sudden passport and visa solicitation, with no money to travel (that’s exactly the point of a scholarship!), and lack “ties” in Brazil very suspicious. I told them that the WordPress Foundation would pay for everything. The flights and the hotel were already booked. The officer even told me that the WordPress Foundation letter could be easily forged. I tried again, with no success.</p>\n<blockquote><p>I couldn’t go to WordCamp US 2015.</p></blockquote>\n<p>I couldn’t go to WordCamp US 2016 too, when they asked if I wanted to try again, and my visa was denied… again. This time I think at least the officer searched online for me, saw it was true, but couldn’t do anything, since my situation hadn’t change.</p>\n<p>I was so disappointed. This still hurts me, I must confess. Sometimes, there are real barriers and gates that a simple mindset change cannot open.</p>\n<h3>Crossed paths</h3>\n<p>The next years, I focused on my company and the work at the community. My mom’s health improved, she’s in great shape now. My family supports my work.</p>\n<p>We became specialists in WordPress at Haste. We developed themes, plugins and sites for companies in Brazil and America. I now have a stable income and I live exclusively from my work with WordPress. We are celebrating 10 years in 2019.</p>\n<p>I traveled through Brazil because of WordPress, to speak at WordCamps and Meetups. I see more and more women working with WordPress, attending meetups and WordCamps, and talking to each other, finding something familiar in every other woman’s face.</p>\n<blockquote><p>Last year we decided we would go to WordCamp Europe 2019 in Berlin, since we don’t need a visa to most countries there, including Germany.</p></blockquote>\n<p>This time I can afford it (with a lot of planning and expenses cut, but I’ll be ok). I have to confess that I’m a little anxious about the immigration process.</p>\n<p>My goal at WordCamp Europe is to know the most people I can. It’s not a matter of quantity, but if the WordPress community taught me something was that every person has something to teach and to learn. So If you are attending WordCamp Europe, let’s meet!</p>\n<h3>Opening trails</h3>\n<p>So now I hope you can see what this travel really means to me, and why every small conquest means a lot. It’s not just because it was hard. But because I’m not the only one who deserve it, but unfortunately I’m a exception between other people who have the same background as I.</p>\n<p>There are so many young girls and boys that don’t dare to dream about visiting other countries, or even getting in the college. Lots of kids that don’t have a computer, or even access to internet. The only difference is that I was given opportunities, people believed in me. Doors were opened. And just then I could prove my value.</p>\n<p>Now my next dream is to be able to make the journey a little easier than it was for me, specially for women and young Brazilians. Because I think that’s our responsibility in the community. Teach others, share information, donate some of your time, create new tools, plugins and resources, mentor people. As my brother’s tattoo says, be the person you needed when you were younger.</p>\n<h2 id=\"pt-br\">Como a comunidade WordPress me ajudou a encontrar o meu caminho</h2>\n<p>Enquanto faço uma lista de todas as coisas que preciso para viajar de São Paulo para Berlim, para participar do WordCamp Europe 2019, não posso deixar de pensar no quão difícil foi o caminho até esse ponto.</p>\n<p>Para algumas pessoas, uma viagem como essa pode parecer comum, mas, para mim, esse será o mais longe que já fui até agora, de muitas maneiras. Especialmente porque, da última vez que eu planejava participar de um WordCamp internacional, as coisas não deram certo.</p>\n<p>Então deixe-me contar sobre esse caminho.</p>\n<h3>Os primeiros passos</h3>\n<p>Eu nasci e cresci em São Paulo. Permita-me dar um pouco de contexto sobre minha cidade. São Paulo é a mais rica e maior cidade do Brasil. Com mais de 14 milhões de pessoas, é também a maior cidade do hemisfério sul. É maior que Nova York.</p>\n<p>Como toda grande cidade, São Paulo é um lugar de oportunidades, mas também de contrastes.</p>\n<p>Crescendo, apesar de sermos pobres, minha família se importava muito com a minha educação e do meu irmão mais novo. Meu pai, que sempre gostou de tecnologia, conseguiu um computador para nós em 1996. Naquela época, eu tinha 6 anos, e éramos a única família das redondezas a ter um computador por um longo tempo, e isso era triste. Essa exposição precoce à tecnologia fez uma grande diferença na minha vida.</p>\n<p>Aos 13 anos, eu já estava interessada em design gráfico e programação. Nós tínhamos aquela internet discada muito limitada e cara, que só era gratuita depois da meia-noite e nos fins de semana. Então, para aprender essas habilidades, minhas melhores opções eram as revistas em CD-ROM que meu pai trazia para casa. Eu também aprendi sobre HTML com um livro sobre o Microsoft Front Page. Aos 14 anos, vendi meu primeiro site, inteiramente criado no Front Page, com muitos GIFs e tags <marquee>, para uma vizinha que precisava para um projeto da faculdade. Ela adorou!</p>\n<p>Eu decidi que queria trabalhar com design. Então fiz o curso técnico em design gráfico durante o ensino médio. Com o meu interesse pelo web design, tudo o que eu queria era ter um site que estivesse online. Eu não podia pagar um servidor, mas felizmente, neste momento, os blogs se tornaram muito populares aqui no Brasil.</p>\n<p>Procurei uma plataforma para criar um portfólio. Eu brinquei um pouco com uma plataforma chamada WordPress (você pode ter ouvido falar dela) mas acabei usando o Blogger, porque havia a possibilidade de personalizar o CSS do tema online. Eu fiz um tema escuro e grunge para o meu blog que ainda está online.</p>\n<h3>Uma estrada esburacada</h3>\n<p>Consegui uma bolsa de Design Gráfico em uma boa faculdade em São Paulo, mas ainda teria que pagar metade da mensalidade. O problema era que minha família definitivamente não tinha como arcar com isso. Meus pais disseram que cortariam algumas despesas e me ajudariam, mas eu sabia que não havia nada que pudessem cortar. Então eu disse a eles para não se preocuparem, eu encontraria um emprego.</p>\n<p>Neste momento, eu havia feito um trabalho freelancer criando um site HTML (no Dreamweaver desta vez). Com exatamente 1 mês para o aplicativo da faculdade, esta cliente propôs que eu começasse a trabalhar lá para manter o site que tinha acabado de criar. Então eu pude pagar pela faculdade (bem mal). Depois de seis meses, solicitei uma bolsa de estudos integral e ela foi concedida. As coisas melhoraram um pouco financeiramente, mas o caminho ainda era rochoso.</p>\n<p>Levava 3 horas de ônibus da minha casa para a faculdade todos os dias, apenas dentro da cidade de São Paulo (lembra quando eu disse que essa cidade é enorme?). Eu comia um cachorro-quente mais barato para o almoço todos os dias, porque eu não podia pagar uma refeição de verdade. Então eu ia trabalhar (outra 1h30 de ônibus da faculdade), e à noite eu voltava para casa (outro ônibus, outro 1h30). Essa foi a minha rotina por um ano e meio durante a faculdade. Como você pode imaginar, eu estava exausta e ficando doente.</p>\n<h3>Uma bifurcação no caminho</h3>\n<p>Foi então que decidi largar meu trabalho e começar um negócio com meu namorado Allyson Souza, que conheci durante o curso de Design Gráfico no Ensino Médio. Nós começamos a empresa oficialmente em julho de 2009. Nós a nomeamos Haste.</p>\n<p>Nós tínhamos 19 anos de idade, não muita experiência, zero networking e dinheiro, muita energia e alguma autoconfiança extra (eu poderia ter resumido simplesmente como “millennials”, certo?). O pai do Allyson nos deu um computador e uma parte de seu escritório, pelo que sou muito grata, e criamos todos os materiais gráficos para sua empresa de cursos em troca.</p>\n<p>Começamos a trabalhar apenas com design gráfico e levamos algum tempo para perceber que o desenvolvimento web era o nosso futuro.</p>\n<p>Lembrei-me do WordPress e tentei novamente. Eu gostei de como a plataforma evoluiu. Fizemos uma segunda versão do nosso site no WordPress, usando um simples tema gratuito, que eu editei diretamente o CSS (não façam isso!). Tentamos criar websites para clientes que modificando temas existentes (pelo menos aprendemos sobre temas filhos mais tarde), mas definitivamente não nos sentíamos no controle do que estávamos fazendo.</p>\n<h3>Quando você atinge seu ponto mais baixo</h3>\n<p>Em janeiro de 2011, minha mãe teve um AVC. Ela fez uma cirurgia no cérebro, e depois de um mês, ela estava em casa com uma cicatriz na cabeça. Esse foi o ponto mais baixo do meu caminho.</p>\n<p>Nos anos seguintes eu tive que cuidar dela, por causa de algumas consequências do AVC, tanto físicas quanto psicológicas. Como a única pessoa da família que não tinha um emprego “formal”, com um chefe e um horário de trabalho definido, fui eu quem teve que levá-la às consultas, ao pronto-socorro ou ficar em casa quando ela não estava bem. Foi bem difícil conciliar o último ano da faculdade, o trabalho e cuidar da saúde da minha mãe.</p>\n<h3>O único caminho é para cima</h3>\n<p>Na Haste, sentimos que as coisas não estavam evoluindo. Em 2013, após algumas parcerias que nos levaram a caminhos confusos, decidimos fazer uma reformulação completa. Definimos um novo foco: web design e desenvolvimento com WordPress. Criamos um novo site, com um tema totalmente desenvolvido por nós. Queríamos superar o medo de programar e queríamos saber exatamente o que estávamos fazendo. Então começamos a estudar muito por conta própria.</p>\n<p>Allyson ficou responsável pelo PHP e JavaScript e eu deveria fazer o design, o HTML e CSS. Ele começou a postar muitas perguntas no grupo da comunidade WordPress Brasil no Facebook. Nós terminamos o site, e as pessoas adoraram, especialmente a ilustração com efeito de paralaxe que fez a garota mover seus olhos. Nós éramos orgulhosos desenvolvedores do WordPress agora.</p>\n<p>Nós começamos a frequentar os meetups, e depois o WordCamp da comunidade WordPress. Fiquei espantada com a forma como a cultura de código aberto era toda sobre compartilhar conhecimento com estranhos, sem medo de competir, apenas o espírito de colaboração. Não nos sentíamos mais isolados. Nós fizemos amigos de verdade (alô amigos do WordPress).</p>\n<p>Logo nos envolvemos na comunidade e nos tornamos organizadores do WordCamp São Paulo em 2014.</p>\n<p>O novo site e nossa participação na comunidade WordPress foram realmente o que precisávamos para nos dar alguma perspectiva e estabilidade. Então nós não paramos por aí.</p>\n<h3>Traga os outros para caminhar com você</h3>\n<p>Na edição de 2014 do WordCamp São Paulo, eu era a única palestrante mulher. Isso me fez perceber algumas coisas.</p>\n<p>Primeiro, a proporção de homens nos eventos da comunidade não era apenas a maioria, mas quase não tínhamos nenhuma mulher. O que era muito estranho.</p>\n<p>Em segundo lugar, sabemos que muitas mulheres se sentem intimidadas em um ambiente com muitos homens. Eu sempre tive a maioria de amigos homens desde criança, e mesmo assim, eu provavelmente não me envolveria com a comunidade se não fosse pelo fato de meu namorado / sócio estar comigo.</p>\n<p>Alguns incidentes sexistas também aconteceram comigo. Eu reagi, e os homens envolvidos parecem ter entendido o problema, e mudaram seus comportamentos até onde eu sei.</p>\n<p>Não temos tantos meetups e WordCamps aqui no Brasil como nos EUA. Embora o Brasil esteja lentamente se tornando um polo de tecnologia, a comunidade WordPress ainda tem muito espaço para crescer, em comparação com outras comunidades. Então, acho que temos a oportunidade de fazer as coisas diferentes enquanto tudo ainda não está definido.</p>\n<p>Então eu decidi mudar isso.</p>\n<p>Eu comecei uma pesquisa perguntando às mulheres envolvidas com WordPress quais eram as razões pelas quais elas não compareciam aos eventos. Os resultados provaram que não era só eu reclamando de pequenas coisas.</p>\n<p>Algumas piadas mantinham as mulheres afastadas. Algumas ações condescendentes fizeram com que se sentissem diminuídas. E mesmo a falta de informação de nossa parte, de que os WordCamps são eventos inclusivos, fez com que as mulheres não viessem. A falta de tempo também foi um fator importante.</p>\n<p>Com base nesses dados, no ano seguinte conseguimos aumentar a proporção de mulheres palestrantes de 5% para 32% no WordCamp São Paulo 2015. Mais mulheres se tornaram organizadoras também. Em 2019, temos 4 mulheres de 10 organizadores ativos. No último WordCamp, tivemos deficientes visuais comparecendo e o feedback deles foi ótimo. Ainda precisamos melhorar a diversidade racial.</p>\n<h3>Barreiras e fronteiras</h3>\n<p>Em 2015, Allyson me contou sobre o novo programa de bolsas de estudos da Fundação WordPress para mulheres que trabalham pela igualdade na comunidade em todo o mundo. Então me inscrevi para a primeira bolsa Kim Parsell Memorial. Kim Parsell deixou um lindo legado de inclusão e amor, tendo trabalhado para trazer mais mulheres, pessoas mais velhas e outras minorias para a comunidade WordPress. Ela era conhecida como a #WPMom.</p>\n<p>O resultado veio alguns meses depois. Recebi um email e não tive reação por alguns minutos. Eu tinha ganhado a bolsa que me garantia uma viagem para o WordCamp US 2015, na Filadélfia, na Pensilvânia, com voos e hotel cobertos.</p>\n<p>Veja bem: eu nunca tinha saído do meu país. Eu tinha acabado de voar de avião pela primeira vez naquele mesmo ano. Eu não estava nem perto de sonhar em ir para os EUA, porque era impossível para mim no momento. Às vezes sua mentalidade na única coisa colocando limitações em seus sonhos.</p>\n<p>Eu estava tão feliz, você não faz ideia. Alx Block e Cami Kaos entraram em contato para me dar instruções e foram muito gentis.</p>\n<p>Mas então… meu pedido de visto foi negado. Eles consideraram minha solicitação repentina de passaporte e visto, sem dinheiro para viajar (esse é exatamente o ponto de uma bolsa de estudos!), e a falta de “laços” no Brasil muito suspeitos. Eu disse a eles que a Fundação WordPress pagaria por tudo. Os voos e o hotel já estavam reservados. O oficial até me disse que a carta da Fundação WordPress poderia ser facilmente falsificada. Eu tentei de novo, sem sucesso.</p>\n<p>Eu não pude ir para o WordCamp US 2015.</p>\n<p>Eu também não pude ir ao WordCamp US 2016, quando eles perguntaram se eu queria tentar novamente, e meu visto foi negado… de novo. Desta vez, acho que pelo menos o oficial pesquisou on-line por mim, viu que era verdade, mas não conseguiu fazer nada, pois minha situação não mudara.</p>\n<p>Eu estava tão desapontada. Ainda fico triste de lembrar, devo confessar. Às vezes, existem barreiras e portões reais que uma simples mudança de mentalidade não pode abrir.</p>\n<h3>Caminhos cruzados</h3>\n<p>Nos anos seguintes, concentrei-me em minha empresa e no trabalho na comunidade. A saúde da minha mãe melhorou, ela está em ótima agora. Minha família apóia meu trabalho.</p>\n<p>Nós nos tornamos especialistas em WordPress na Haste. Desenvolvemos temas, plugins e sites para empresas no Brasil e na América. Agora tenho uma renda estável e vivo exclusivamente do meu trabalho com o WordPress. Estamos comemorando 10 anos em 2019.</p>\n<p>Eu viajei pelo Brasil por causa do WordPress, para falar em WordCamps e Meetups. Fui para Fortaleza, Belo Horizonte, Curitiba, Porto Alegre. Eu vejo mais e mais mulheres trabalhando com o WordPress, participando de meetups e WordCamps, e conversando, encontrando algo familiar no rosto das outras mulheres.</p>\n<p>No ano passado, decidimos que iríamos para o WordCamp Europa 2019 em Berlim, já que não precisamos de visto para a maioria dos países, incluindo a Alemanha.</p>\n<p>Desta vez, posso pagar (com muito planejamento e redução de despesas). Tenho que confessar que estou um pouco ansiosa com o processo de imigração.</p>\n<p>Meu objetivo no WordCamp Europa é conhecer o máximo de pessoas que posso. Não é uma questão de quantidade, mas se a comunidade do WordPress me ensinou algo foi que cada pessoa tem algo para ensinar e aprender. Então, se você estiver participando do WordCamp Europa, vamos nos conhecer!</p>\n<h3>Abrindo trilhas</h3>\n<p>Então agora eu espero que você possa ver o que essa viagem realmente significa para mim, e porque cada pequena conquista significa muito. Não é só porque foi difícil. Mas porque eu não sou a única que merece isso, mas infelizmente sou uma exceção entre outras pessoas que têm o mesmo histórico que eu.</p>\n<p>Há tantas meninas e meninos que não se atrevem a sonhar em visitar outros países ou até mesmo entrar na faculdade. E quando se atrevem, tem seus sonhos podados. Muitas crianças que não têm computador nem acesso à internet. A única diferença é que me foram dadas oportunidades, as pessoas acreditaram em mim. Portas foram abertas. E só então eu pude provar o meu valor.</p>\n<p>Agora meu próximo sonho é poder tornar a jornada um pouco mais fácil do que foi para mim, especialmente para mulheres e jovens brasileiros. Porque acho que é nossa responsabilidade na comunidade. Ensine outras pessoas, compartilhe informações, doe um pouco do seu tempo, crie novas ferramentas, plugins e recursos, oriente as pessoas. Como diz a tatuagem do meu irmão, seja a pessoa de que você precisava quando era mais jovem.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: How the WordPress community helped me find my way\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=How%20the%20WordPress%20community%20helped%20me%20find%20my%20way&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fhow-the-wordpress-community-helped-me-find-my-way%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: How the WordPress community helped me find my way\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fhow-the-wordpress-community-helped-me-find-my-way%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fhow-the-wordpress-community-helped-me-find-my-way%2F&title=How+the+WordPress+community+helped+me+find+my+way\" rel=\"nofollow\" target=\"_blank\" title=\"Share: How the WordPress community helped me find my way\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/how-the-wordpress-community-helped-me-find-my-way/&media=https://heropress.com/wp-content/uploads/2020/04/042419-min-150x150.jpg&description=How the WordPress community helped me find my way\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: How the WordPress community helped me find my way\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/how-the-wordpress-community-helped-me-find-my-way/\" title=\"How the WordPress community helped me find my way\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/how-the-wordpress-community-helped-me-find-my-way/\">How the WordPress community helped me find my way</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 24 Apr 2019 12:00: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:15:\"Anyssa Ferreira\";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:62:\"WPTavern: Henry Zhu Launches New Maintainers Anonymous 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:29:\"https://wptavern.com/?p=89021\";s: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:73:\"https://wptavern.com/henry-zhu-launches-new-maintainers-anonymous-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:3117:\"<p><a href=\"https://www.maintainersanonymous.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Maintainers Anonymous</a> is a new podcast created by <a href=\"https://www.henryzoo.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Henry Zhu</a>, who has been the primary maintainer of <a href=\"https://github.com/babel/babel/\" rel=\"noopener noreferrer\" target=\"_blank\">Babel</a> for the past two years. Babel is a JavaScript compiler used by Facebook, Netflix, Spotify, and millions of others. It is downloaded over <a href=\"https://www.npmjs.com/package/babel-core\" rel=\"noopener noreferrer\" target=\"_blank\">18 million times per month</a> and used by <a href=\"https://github.com/babel/babel/network/dependents?package_id=UGFja2FnZS0xMzk3Nzk4Mg%3D%3D\" rel=\"noopener noreferrer\" target=\"_blank\">more than 1.8 million repositories</a> on GitHub. Zhu recently left his job at Adobe to work on Babel and open source full-time. </p>\n<p>In his new podcast, Zhu is talking with other maintainers to unearth their valuable perspectives and share similar struggles. By presenting them as regular people, rather than faceless code projects, Zhu is aiming to encourage empathy for maintainers.</p>\n<p>Maintainers Anonymous is centered around the “how” of maintenance and Zhu is open to having guests from a variety of fields and disciplines, such as a librarian, gardener, or moderator. In an episode titled “<a href=\"https://www.maintainersanonymous.com/1\" rel=\"noopener noreferrer\" target=\"_blank\">Speedrunning with Omnigamer</a>,” Zhu and his first guest, Eric Koziel, discuss the intricacies of “speedrunning,” playing a video game with the goal of beating it as fast as possible. Koziel describes it as a medium for doing an optimization challenge. Since the games are just software, he and Zhu explored how speedrunning intersects with coding and talked about some of the parallels with maintaining open source software.</p>\n<p>The next two episodes are a series with guest <a href=\"https://twitter.com/sehurlburt\" rel=\"noopener noreferrer\" target=\"_blank\">Stephanie Hurlburt</a>, a graphics engineer and owner of the company that makes <a href=\"http://www.binomial.info/\" rel=\"noopener noreferrer\" target=\"_blank\">Basis</a>, an image/texture compression product. They delve deeper into how business development is relevant to open source, setting healthy boundaries, inherent vs. perceived value, marketing, and more. </p>\n<p>If you’re looking for a new podcast to add to your subscriptions, Zhu’s Maintainers Anonymous offers a wide variety of topics and perspectives that touch on open source, maintainership, and other aspects of life and business in the world of technology. New episodes are available on the podcast’s website, and listeners can also <a href=\"https://www.maintainersanonymous.com/subscribe\" rel=\"noopener noreferrer\" target=\"_blank\">subscribe</a> via RSS, Apple Podcasts, Google Podcasts, or Spotify. Follow <a href=\"https://twitter.com/MaintainersAnon\" rel=\"noopener noreferrer\" target=\"_blank\">@MaintainersAnono</a> on Twitter for all the latest.</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, 23 Apr 2019 17:53: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:13:\"Sarah Gooding\";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:104:\"WPTavern: Celebrate Earth Day by Learning about Environmentally Friendly Web Development on WordPress.tv\";s: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://wptavern.com/?p=88997\";s: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:115:\"https://wptavern.com/celebrate-earth-day-by-learning-about-environmentally-friendly-web-development-on-wordpress-tv\";s: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:3247:\"<p>Today is Earth Day, a worldwide annual event first celebrated in 1970 that focuses on addressing environmental concerns. <a href=\"https://www.earthday.org/\" rel=\"noopener noreferrer\" target=\"_blank\">Earth Day Network</a> coordinates 192 countries with more than a billion people participating in today’s event. The organization uses WordPress to build the world’s largest environmental movement through education, public policy, and consumer campaigns. </p>\n<p>Over the past few years, environmentally-friendly web development has become an increasingly popular topic at WordCamps. Several presentations are available on <a href=\"https://wordpress.tv\" rel=\"noopener noreferrer\" target=\"_blank\">WordPress.tv</a> that highlight how web developers have the ability to make a positive impact on reducing the internet’s carbon footprint.</p>\n<p>Jenn Schlick, a project manager at the MIT Energy Initiative, was one of the first WordCamp speakers to bring greater awareness to this topic with her presentation on <a href=\"https://wordpress.tv/2016/05/12/jenn-schlick-low-carbon-web-design/\" rel=\"noopener noreferrer\" target=\"_blank\">Low-Carbon Web Design</a> at WordCamp Finland in 2016. She explained a few ways that developers can minimize a website’s carbon footprint by choosing online services that are powered by renewable energy and optimizing for performance.</p>\n<div class=\"embed-wrap\"></div>\n<p>In 2017, Tom Greenwood gave a presentation titled <a href=\"https://wordpress.tv/2017/06/22/tom-greenwood-zero-carbon-wordpress/\" rel=\"noopener noreferrer\" target=\"_blank\">Zero Carbon WordPress</a> that challenged the community to help tackle climate change. With WordPress powering such a large percentage of the web, the community has the opportunity to lead the way in developing sites that use less energy, powered by hosts that run on renewable energy sources.</p>\n<div class=\"embed-wrap\"></div>\n<p>More recently, Jack Lenox spoke at WordCamp Bordeaux 2019 on “<a href=\"https://wordpress.tv/2019/04/18/jack-lenox-how-better-performing-websites-can-help-save-the-planet/\" rel=\"noopener noreferrer\" target=\"_blank\">How better performing websites can help save the planet</a>.” His presentation had a stronger emphasis on performance with practical steps for simplifying the interface, reducing code, using the right image file types, caching, accessibility, and more.</p>\n<div class=\"embed-wrap\"></div>\n<p>Lenox has also created a tiny WordPress theme called <a href=\"https://github.com/jacklenox/susty\" rel=\"noopener noreferrer\" target=\"_blank\">Susty</a> that he said is “an experiment in minimalism.” It loads WordPress with <a href=\"https://blog.jacklenox.com/2018/06/04/delivering-wordpress-in-7kb/\" rel=\"noopener noreferrer\" target=\"_blank\">just 6KB of data transfer</a>.</p>\n<p>At WordCamp Nordic 2019, Jaakko Alajoki gave a presentation titled <a href=\"https://2019.nordic.wordcamp.org/session/environmental-friendly-wordpress-development/\" rel=\"noopener noreferrer\" target=\"_blank\">Environmentally friendly WordPress development</a>, with experiments that used a Raspberry Pi web server and power meter to demonstrate power consumption. The session should be available on WordPress.tv soon.</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, 22 Apr 2019 22:11: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:13:\"Sarah Gooding\";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:137:\"WPTavern: AMP Plugin for WordPress 1.1 Adds Experimental PWA Plugin Integration, Pre-release of AMP Stories Editor Available in 1.2-alpha\";s: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://wptavern.com/?p=88968\";s: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:147:\"https://wptavern.com/amp-plugin-for-wordpress-1-1-adds-experimental-pwa-plugin-integration-pre-release-of-amp-stories-editor-available-in-1-2-alpha\";s: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:2980:\"<p><a href=\"https://amp-wp.org/amp-plugin-1-1-stable-release/\" rel=\"noopener noreferrer\" target=\"_blank\">Version 1.1</a> of the AMP Plugin for WordPress was released this week after four months in development and 125 merged pull requests from contributors. It includes CSS tree shaking improvements that restore AMP compatibility for WordPress’ default Twenty Nineteen theme, reducing the size of its stylesheet by 53%.</p>\n<p>In an effort to get more users opting for the Native mode option, the plugin’s development team has rebranded the template modes:</p>\n<blockquote><p>In this release the Paired mode has been rebranded as Transitional mode. One reason for this is that the classic mode was also a paired mode (where there are separate parallel URLs for the AMP version). But more importantly, the goal for this mode is to help facilitate a transition a site to being AMP-first, where there is no separate AMP-specific URLs. So the goal of the Transitional mode is to be a path to Native mode.</p></blockquote>\n<p>The team has also decided to <a href=\"https://github.com/ampproject/amp-wp/pull/2034\" rel=\"noopener noreferrer\" target=\"_blank\">rebrand Classic mode to “Reader” mode</a>, instead of deprecating it. It provides a basic AMP template for getting started that doesn’t necessarily match the site’s theme. Users can can add an “Exit Reader Mode” to the header of their sites with a setting in the Customizer.</p>\n<p>Version 1.1 introduces compatibility with the <a href=\"https://wordpress.org/plugins/pwa/\" rel=\"noopener noreferrer\" target=\"_blank\">PWA feature plugin</a>, bringing support for the service worker to AMP pages. It extends the service worker to cache AMP CDN assets, images, and Google Fonts. Since the PWA feature plugin is still under active development, the service worker integration is still considered experimental.</p>\n<p>Support for creating AMP Stories in WordPress is the next major feature coming to the plugin. A pre-release of the <a href=\"https://github.com/ampproject/amp-wp/wiki/AMP-Stories-Experimental\" rel=\"noopener noreferrer\" target=\"_blank\">AMP Stories editor</a> is available in <a href=\"https://github.com/ampproject/amp-wp/releases/tag/1.2-alpha1\" rel=\"noopener noreferrer\" target=\"_blank\">1.2 alpha 1</a>, which also requires the latest version of the Gutenberg plugin. It uses the Gutenberg editor to allow users to build AMP stories with rich media capabilities. </p>\n<p><a href=\"https://cloudup.com/ctuGgKap-qE\"><img src=\"https://i2.wp.com/cldup.com/CmLLaYT1Yy.gif?resize=627%2C353&ssl=1\" alt=\"Amp stories\" width=\"627\" height=\"353\" /></a></p>\n<p>A preview of the AMP Stories editor was unveiled at <a href=\"https://amp.dev/events/amp-conf-2019\" rel=\"noopener noreferrer\" target=\"_blank\">AMP Conf 2019</a> in Tokyo, Japan. Check out the video below to see Alberto Medina give a quick demonstration of how it will work in the upcoming version 1.2 of the AMP for WordPress plugin.</p>\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 20 Apr 2019 02:16:44 +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:13:\"Sarah Gooding\";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:84:\"Post Status: “Become the best version of yourself.” An Interview with Rich Tabor\";s: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:31:\"https://poststatus.com/?p=60141\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://poststatus.com/an-interview-with-rich-tabor/\";s: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:5043:\"<p>Rich Tabor is transitioning to a new role now as Senior Product Manager of WordPress Experience with GoDaddy. In the past three years, Rich founded <a href=\"http://layup.media/\">a digital agency</a>, launched a popular PhotoShop <a href=\"https://purtypixels.com/\">resource site</a>, and started <a href=\"https://themebeans.com/\">ThemeBeans</a>, a successful WordPress theme shop.</p>\n\n\n\n<p>ThemeBeans and <a href=\"https://wordpress.org/plugins/coblocks/\">CoBlocks</a>, Rich’s suite of page builder blocks in a plugin, have gone with him to Godaddy. (CoBlocks remains free, and now all the ThemeBeans products are too.) Rich took some time to reflect with us on his path so far and where he sees the WordPress ecosystem going in the future. </p>\n\n\n\n<p><strong>Q: What led you to dive into the new post-Gutenberg reality of WordPress and create CoBlocks and Block Gallery? </strong></p>\n\n\n\n<p>I’ve been fascinated by the block editor ever since Matias’s Gutenberg demo during WordCamp US 2017. I was instantly convinced that Gutenberg would lead us into the next era of creation in WordPress. I saw an opportunity, was in a position to execute and had enough expertise to take it on.</p>\n\n\n\n<p><strong>Q: Did sales for these products meet your expectations?</strong><br /></p>\n\n\n\n<p>I actually did not release paid versions for either CoBlocks or Block Gallery. There were plans to monetize both plugins, but at the time we were focused on delivering innovative solutions to Gutenberg and pushing the editor to its extremes. Adoption-wise, both plugins grew particularly fast, and are continuing to do so. In that sense, they most certainly exceeded my expectations.</p>\n\n\n\n<p><strong>Q: What do you see as the near and long term future of the WordPress ecosystem? As solo developers and small firms are increasingly hired by bigger fish, especially hosting companies, will there still be a place for small entrepreneurs? </strong><br /></p>\n\n\n\n<p>I believe that the WordPress ecosystem will continue to be an innovative field for both entrepreneurs and larger companies. It’s all about innovation and being able to execute — regardless of the size of the team behind the product or idea. <br /></p>\n\n\n\n<p>And over the last few years, the WordPress economy and its entrepreneurial leaders, have evolved into quite a mature ecosystem. I’d say the fact that companies such as GoDaddy are investing in the future of WordPress is a huge sign of that maturity and growth in our industry. Hosts, in particular, are uniquely equipped to make a huge difference in how so many folks use WordPress. Investing in products and talent that level-up the overall WordPress experience is good for us all.</p>\n\n\n\n<p><strong>Q: What about GoDaddy made it seem like a good fit or you? Did you consider any other types of companies outside the hosting space?</strong><br /></p>\n\n\n\n<p>I flew out to Phoenix to meet the WordPress leadership team at GoDaddy and it became quite clear that they were all-in on this new future of WordPress + Gutenberg.<br /></p>\n\n\n\n<p>GoDaddy has assembled a passionate and highly qualified team of folks who are hyper-focused on improving the WordPress experience and leading the next wave of innovation in this space. Joining this team and leading the efforts as the Senior Product Manager of WordPress Experience is a good and logical fit to fulfilling my personal mission to help make WordPress beautifully simpler. I knew that what we’d build would touch millions of sites and empower people all over the world to succeed online.</p>\n\n\n\n<p><strong>Q: Before GoDaddy came along, what was your plan in terms of growth and long-term sustainability?</strong><br /></p>\n\n\n\n<p>Having run a successful theme shop for a number of years, I understood the importance of having a solid plan for growth and sustainability. <br /></p>\n\n\n\n<p>My plan for both CoBlocks and Block Gallery was to release top-tiered paid versions of each, with innovative tools, blocks and design systems. Those would have likely arrived in Q3 of 2019, as our focus for the first half of the year was to innovate and grow our user base. Now I hope to continue on that same development trajectory, adding many of those same features to the current plugins.</p>\n\n\n\n<p><strong>Q: What is your best advice for someone who is currently independent and wants to build a small business in the WordPress space today? What are the best lessons or advice you can provide?</strong><br /></p>\n\n\n\n<p>First off, don’t let an opportunity get away from you. Learn to identify opportunities that you are perfectly suited to execute on, then dive right in. Don’t hesitate to ask for help and don’t be afraid to try something new. Learning how to learn and then taking that a step further by continuing to learn every single day, is a catalyst for enormous personal and professional growth. It’s not all about making cool stuff, it’s about challenging yourself to become the best version of yourself; the rest will fall into place. <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:\"Fri, 19 Apr 2019 21:15:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Dan Knauss\";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:69:\"WPTavern: WordPress 5.2 Will Add 13 New Icons to the Dashicon Library\";s: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://wptavern.com/?p=88937\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://wptavern.com/wordpress-5-2-will-add-13-new-icons-to-the-dashicon-library\";s: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:2848:\"<p><a href=\"https://developer.wordpress.org/resource/dashicons/\" rel=\"noopener noreferrer\" target=\"_blank\">Dashicons</a>, the WordPress admin icon font, will be getting its first <a href=\"https://make.wordpress.org/core/2019/04/11/dashicons-in-wordpress-5-2/\" rel=\"noopener noreferrer\" target=\"_blank\">update</a> in three years when WordPress 5.2 ships. The library will be updated to use WOFF2 (Web Open Font Format 2), replacing the previous WOFF 1.0 format for improved compression. WOFF 1.0 will still be included in core to maintain backwards compatibility.</p>\n<p>In addition to the new font file format, Dashicons is adding 13 new icons to the library and CSS declarations for 18 icons that were previously unavailable. The additions span a range of categories, including Buddicons, Core Teams, sites, menus, social, and miscellaneous. </p>\n<p><a href=\"https://twitter.com/ncallen\" rel=\"noopener noreferrer\" target=\"_blank\">Nate Allen</a>, a Senior Web Engineer at 10up, is a new contributor to the Dashicons library, even though he is not a designer.</p>\n<p>“WordPress has had a ‘businessman’ dashicon for as long as I can remember, but didn’t have a female or gender neutral version – until now!” Allen said. </p>\n<p>“Previously I worked for Firefly Partners, an agency that builds WordPress sites for nonprofits. I was working on a project for a woman’s rights organization that needed a ‘staff’ post type. It was a little awkward explaining to them that there was a ‘businessman’ icon we could use for free, or they could pay extra to have a custom ‘businesswoman’ icon designed. Not a great look for WordPress.”</p>\n<p>Allen submitted a GitHub <a href=\"https://github.com/WordPress/dashicons/issues/285\" rel=\"noopener noreferrer\" target=\"_blank\">issue</a>, to see if someone would be willing to create a “businesswoman” and “businessperson” icon, but nobody had the time. Dashicons is maintained by a volunteer team and it can take a long time to get new icons designed. </p>\n<p>“About 5-6 months later I learned how to use Illustrator to create vector icons and submitted the icons myself,” Allen said. He <a href=\"https://github.com/WordPress/dashicons/pull/323\" rel=\"noopener noreferrer\" target=\"_blank\">submitted the PR</a> and the new icons he created will be included in the next release of WordPress.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/04/business-people-icons.png?ssl=1\"><img /></a></p>\n<p>These business people icons are useful for projects that include creating things like custom post types for bios, testimonials, team members, and job postings. WordPress 5.2’s updates to Dashicons make the library more inclusive and useful for more diverse projects.</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, 19 Apr 2019 02:05: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:13:\"Sarah Gooding\";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:\"WPTavern: WooCommerce 3.6 Released with New Product Blocks and Major Performance Improvements\";s: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://wptavern.com/?p=88913\";s: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:104:\"https://wptavern.com/woocommerce-3-6-released-with-new-product-blocks-and-major-performance-improvements\";s: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:3374:\"<p><a href=\"https://woocommerce.wordpress.com/2019/04/17/woocommerce-3-6-has-arrived\" rel=\"noopener noreferrer\" target=\"_blank\">WooCommerce 3.6</a> was released this week after six months in development. Store owners with sites running on WordPress 5.0+ will now have access to eight new product blocks, including hand picked products, featured products, products by category/attribute, sale products, new products, top rated, products, and best selling products.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/04/woocommerce-blocks.png?ssl=1\"><img /></a></p>\n<p>These blocks were previously available as a <a href=\"https://wordpress.org/plugins/woo-gutenberg-products-block/\" rel=\"noopener noreferrer\" target=\"_blank\">feature plugin</a> but have now been rolled into WooCommerce core. The plugin now requires WooCommerce 3.6 and will continue to be used for iterating and exploring future WooCommerce block editor features.</p>\n<p><a href=\"https://woocommerce.wordpress.com/2019/04/01/performance-improvements-in-3-6/\" rel=\"noopener noreferrer\" target=\"_blank\">Performance improvements</a> were one of the major focuses for this version, which introduces product data lookup tables. WooCommerce core developers’ long term plan is to move post meta to custom tables and a <a href=\"https://github.com/woocommerce/woocommerce-product-tables-feature-plugin\" rel=\"noopener noreferrer\" target=\"_blank\">feature plugin</a> is currently in development towards this goal. In the meantime, lookup tables provide a structured index for product data that speeds up querying. This version also brings improvements to transient invalidation, changes to REST API initialization, caching improvements, and more.</p>\n<p>WooCommerce developer Timmy Crawford highlighted a few frontend performance improvements in the 3.6 release post:</p>\n<ul>\n<li>A 62% improvement in the load time when ordering and filtering products</li>\n<li>Reduced overall load time by bypassing inactive webhooks</li>\n<li>Reduced the load time for pages with category or product attribute lists</li>\n<li>Reduced load time of product pages with attributes</li>\n</ul>\n<p>This release also includes the controversial new <a href=\"https://wptavern.com/woocommerce-3-6-rc2-removes-marketplace-suggestions-from-product-listing-adds-setting-to-turn-them-off\" rel=\"noopener noreferrer\" target=\"_blank\">marketplace suggestions</a> that advertise official extensions inside the WooCommerce admin. The setting for turning them off can be found under the “Accounts & Privacy” section of the admin.</p>\n<p>For the full list of additional enhancements in 3.6, check out the <a href=\"https://woocommerce.wordpress.com/2019/04/17/woocommerce-3-6-has-arrived/\" rel=\"noopener noreferrer\" target=\"_blank\">release post</a> or view the plugin’s <a href=\"https://github.com/woocommerce/woocommerce/blob/master/readme.txt#L161\" rel=\"noopener noreferrer\" target=\"_blank\">changelog</a>. The release should be backwards compatible with sites running WooCommerce 3.0+, but testing how the update affects themes and extensions is highly recommended before updating. <a href=\"https://woocommerce.wordpress.com/2019/04/18/woocommerce-3-6-1-release/\" rel=\"noopener noreferrer\" target=\"_blank\">Version 3.6.1</a> was released today to fix some issues 3.6.0 had with certain hosting environments.</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, 18 Apr 2019 19:31:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";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:69:\"WPTavern: Gutenberg 5.5 Adds New Group Block for Nesting Child Blocks\";s: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://wptavern.com/?p=88886\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://wptavern.com/gutenberg-5-5-adds-new-group-block-for-nesting-child-blocks\";s: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:3822:\"<p><a href=\"https://make.wordpress.org/core/2019/04/17/whats-new-in-gutenberg-17th-april/\" rel=\"noopener noreferrer\" target=\"_blank\">Gutenberg 5.5</a> was released with the long-awaited Group block, previously known as the Section block. It was <a href=\"https://github.com/WordPress/gutenberg/issues/14898\" rel=\"noopener noreferrer\" target=\"_blank\">renamed</a> to avoid confusion with the HTML5 section element and prevent potential overlap with future site/theme type sections, such as headers, sidebars, and footers. The first iteration of the Group block supports the ability to nest other blocks inside it and the ability to align the block and any of its child blocks that include alignment settings. </p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/04/Screen-Shot-2019-04-17-at-12.41.22-PM.png?ssl=1\"><img /></a></p>\n<p>“It’s a minimal version at the moment and improvements about the flows to add inner blocks, group/ungroup blocks are expected in follow-up releases,” Gutenberg phase 2 technical lead Riad Benguella said. In testing the feature I found that it is indeed a rocky start and far from intuitive to use but a more refined grouping experience will be developed after further testing and feedback.</p>\n<p>The Group block lays the foundation for a future where WordPress themes may evolve to become block templates. In response to a comment about how the Group block could essentially replace the widget management interface, Benguella offered a glimpse of how Gutenberg will eventually transform the theme industry:</p>\n<blockquote><p>In a world where themes are made of block templates instead of php templates, there’s no need for widget areas.</p>\n<p>That said, Gutenberg is a huge change for WordPress and its community. With the new blocks concept, Phase 2 is about helping the WordPress community adopt this new concept without completely changing what a theme means in WordPress. We shouldn’t just abandon existing themes and switch into full-site editing without an iterative plan.</p>\n<p>We’ll eventually get there where everything is made of block templates and blocks but we need to make smaller steps first and the first one is the ability to use blocks instead of widgets in existing themes.</p></blockquote>\n<p>Gutenberg 5.5 also adds the <a href=\"https://github.com/WordPress/gutenberg/pull/14445\" rel=\"noopener noreferrer\" target=\"_blank\">image fill option</a> and <a href=\"https://github.com/WordPress/gutenberg/pull/13989\" rel=\"noopener noreferrer\" target=\"_blank\">vertical alignment</a> support to the Media and Text blocks. </p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/04/media-text-vertical-align-small-1.gif?ssl=1\"><img /></a></p>\n<p>This release also includes a few minor but useful improvements, such as automatically populating the link field when the selected text is an email.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/04/email-linked.gif?ssl=1\"><img /></a></p>\n<p>The Gutenberg team is also making progress on the new widgets screen with a <a href=\"https://github.com/WordPress/gutenberg/pull/14612\" rel=\"noopener noreferrer\" target=\"_blank\">barebones testing version</a> in place that will allow them to start investigating and tackling technical issues related to this screen. It’s not functional yet but provides a place to further explore the block editor in this context.</p>\n<p>The bug fixes included in Gutenberg 5.5 will be in the upcoming WordPress 5.2 release, which was previously targeted for April 30. There is currently a <a href=\"https://make.wordpress.org/core/2019/04/17/discussion-consider-delaying-wordpress-5-2-rc1-date/\" rel=\"noopener noreferrer\" target=\"_blank\">proposal</a> open for pushing it back to May 7, due to the number of open tickets. </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, 18 Apr 2019 03:00:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";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:139:\"HeroPress: Building Stability With WordPress – WordPress এবং স্থিতিশীলতা, বাংলা তে পড়ুন\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=2744\";s: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:140:\"https://heropress.com/essays/building-stability-with-wordpress/#utm_source=rss&utm_medium=rss&utm_campaign=building-stability-with-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9488:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2020/04/041719-min-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: Think what new you have done, and what new can be.\" /><p><a href=\"https://heropress.com/feed/#bangla\">এই নিবন্ধটি বাংলায় পাওয়া যায়</a></p>\n<p>This is the first time my real life story is going to be live for the people of the World. Till now I was living my life with my own surroundings, now it will be no more that much of hidden.</p>\n<p>I am a very simple person from Kolkata, India. I started my career with IBM ACE i.e an IBM education wing, as a Technical Teacher. I used to teach my students several subjects like C,C++, Perl and PHP. Although I was teaching many subjects my focus was in PHP starting from 2003. In the early days of 2009 I came to know about WordPress. From the first few days I was struggling with the Administrative panel and other services.</p>\n<p>In 2009 end I decided to step down from my job and started differently. I started development work and also continue teaching the students.</p>\n<p>I was decided to develop the websites and web applications with the WordPress only, and I got the version called `Carmen` 2.9 which was a relief for me to handle the CMS. I got some help from my students and friends who were engaged in WordPress development at that time. They teach me how I can handle the WordPress more proficient way. I learnt how to develop WordPress themes, started developing the plugins.</p>\n<h3>Working with WordPress</h3>\n<p>I started developing the website using WordPress from 2010 onwards. Later on 2014 I started developing WordPress theme for the Themeforest Market place. I also started developing the plugins which helps my development process to run smoothly.</p>\n<h3>How it changed My life</h3>\n<p>My life started changing from 2010 when I started developing with WordPress. The instability of my life was changed into a stable life, which was beyond my expectation. I was living a good life with my family. What else I can expect from WordPress.</p>\n<h3>What’s Different</h3>\n<p>Apart from developing the Websites and other application, I started my research on how the development process can be more smoother and flexible. I started working on WP CLI to developing the automated process for WordPress. I developed a script that helps developers to install the WordPress flawlessly using WP CLI. My linux knowledge also helped me to write shell scripts. The script can be found in my account at github. I am also trying to get into the easy deployment process with CI/CD for the developers using Bitbucket Pipeline and AWS.</p>\n<p>I slowly become an expert on the theme approval guidelines of Themeforest Market place. Apart from that I started writing blogs on the various topics related to WordPress. Achieved almost 3K reputation in StackOverflow. Developed Plugins in wordpress.org.</p>\n<h3>WordPress.org</h3>\n<p>Even though I was developed many plugins and theme I never thought of uploading that in wordpress.org. I start realizing that to help many more people in WordPress, wordpress.org will be a better place than StackOverflow.</p>\n<h3>WordCamp Kolkata</h3>\n<p>I joined Kolkata WordPress Community who was planning the WordCamp Kolkata, and thankfully they have selected me as a volunteer. Mr Subrata Sarkar( WordPress Core Contributor ) and the team who recognized me and give a huge responsibilities in WordCamp Kolkata 2019. It was again a tremendous experiences with WordPress. Since that was my first WordCamp I tried to fulfill my responsibilities. Become a Volunteer I learnt to be more polite and more decent to the people, make many more friends from different regions and countries.</p>\n<h3>My Inspirations</h3>\n<p>There are many people who inspired and helped me during my journey, its small tribute to them by mentioning a few : Abhik Goswami, Sneh Sagar Prajapati, Prabhas Chowdhury, Debobrata Debnath, Prosenjit Manna, Sk. Shamim Ullah, Soumit Pal, Subrata Sarkar.</p>\n<h3>My Words</h3>\n<p>Be polite to others. Be friendly to your Juniors and fellow developers. Try to teach them rather pointing to the mistakes. Attend Meetups. Contribute to the Community. Think what new you have done, and what new can be.</p>\n<p>Stay healthy, stay fit with WordPress <img src=\"https://s.w.org/images/core/emoji/11.2.0/72x72/1f642.png\" alt=\"🙂\" class=\"wp-smiley\" /></p>\n<h2 id=\"bangla\">WordPress এবং স্থিতিশীলতা, বাংলা তে পড়ুন</h2>\n<p>WordPress র সাথে পরিচয় ২০০৯ এর December এ, শুরু থেকেই ভালো লাগা. Website বা Plugin বানান দিযে কাজ শুরু করি ২০১০ এ. তারপর থেকে শুধু WordPress এই কাজ করে চলেছি . ২০০৯ এ যখ্ন চাকরি ছেড়ে শুধু development র কাজ শুরু করি সাথে পড়ানো ও চলতে থাকে. কিছু Friend আর Student দের help নিয়ে WordPress self learning চলতে থাকে .</p>\n<p>২০১৪ সাল থেকে themefores এ theme বানান শুরু করি. ধীরে ধীরে আমি আমার সামনে চলার পথ খুজে পাই. আমি themeforest theme approve guideline expert হয়ে উঠি. আমি github এ আমার wpcli experiment করতে থাকি. Automation আমার main target হয়ে ওঠে.</p>\n<p>Stackoverflow ছাড়াও wordpress.org তে plugin তৈরী করি.<br />\nWordCamp Kolkata 2019 : এখানে volunteering অনেক নতুন মানুষের সাথে আলাপ হয়. বূঝতে পারি Community কে enjoy করতে, জানতে পারি কি করে community কে কি করে return করতে হয়.</p>\n<p>আগামী দিনে আমি WordPress র popularity বারিয়ে যেতে চেষ্টা চালিয়ে যাব.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Building Stability With WordPress – WordPress এবং স্থিতিশীলতা, বাংলা তে পড়ুন\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Building%20Stability%20With%20WordPress%20%2D%20WordPress%20%E0%A6%8F%E0%A6%AC%E0%A6%82%20%E0%A6%B8%E0%A7%8D%E0%A6%A5%E0%A6%BF%E0%A6%A4%E0%A6%BF%E0%A6%B6%E0%A7%80%E0%A6%B2%E0%A6%A4%E0%A6%BE%2C%20%E0%A6%AC%E0%A6%BE%E0%A6%82%E0%A6%B2%E0%A6%BE%20%E0%A6%A4%E0%A7%87%20%E0%A6%AA%E0%A7%9C%E0%A7%81%E0%A6%A8&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fbuilding-stability-with-wordpress%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Building Stability With WordPress – WordPress এবং স্থিতিশীলতা, বাংলা তে পড়ুন\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fbuilding-stability-with-wordpress%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fbuilding-stability-with-wordpress%2F&title=Building+Stability+With+WordPress+%26%238211%3B+WordPress+%E0%A6%8F%E0%A6%AC%E0%A6%82+%E0%A6%B8%E0%A7%8D%E0%A6%A5%E0%A6%BF%E0%A6%A4%E0%A6%BF%E0%A6%B6%E0%A7%80%E0%A6%B2%E0%A6%A4%E0%A6%BE%2C+%E0%A6%AC%E0%A6%BE%E0%A6%82%E0%A6%B2%E0%A6%BE+%E0%A6%A4%E0%A7%87+%E0%A6%AA%E0%A7%9C%E0%A7%81%E0%A6%A8\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Building Stability With WordPress – WordPress এবং স্থিতিশীলতা, বাংলা তে পড়ুন\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/building-stability-with-wordpress/&media=https://heropress.com/wp-content/uploads/2020/04/041719-min-150x150.jpg&description=Building Stability With WordPress - WordPress এবং স্থিতিশীলতা, বাংলা তে পড়ুন\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Building Stability With WordPress – WordPress এবং স্থিতিশীলতা, বাংলা তে পড়ুন\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/building-stability-with-wordpress/\" title=\"Building Stability With WordPress – WordPress এবং স্থিতিশীলতা, বাংলা তে পড়ুন\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/building-stability-with-wordpress/\">Building Stability With WordPress – WordPress এবং স্থিতিশীলতা, বাংলা তে পড়ুন</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 17 Apr 2019 12:00: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:13:\"Tristup Ghosh\";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:127:\"WPTavern: PluginVulnerabilities.com is Protesting WordPress.org Support Forum Moderators by Publishing Zero-Day Vulnerabilities\";s: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://wptavern.com/?p=88854\";s: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:138:\"https://wptavern.com/pluginvulnerabilities-com-is-protesting-wordpress-org-support-forum-moderators-by-publishing-zero-day-vulnerabilities\";s: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:8257:\"<a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/04/lock.png?ssl=1\"><img /></a>image credit: <a href=\"https://stocksnap.io/photo/LW51P4H4Y6\">Jason Blackeye</a>\n<p>A security service called <a href=\"https://www.pluginvulnerabilities.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Plugin Vulnerabilities</a>, founded by John Grillot, is taking a vigilante approach to addressing grievances against WordPress.org support forum moderators. The company is protesting the moderators’ actions by publishing zero-day vulnerabilities (those for which no patch has been issued) and then attempting to contact the plugin author via the WordPress.org support forums:</p>\n<blockquote><p>Due to the moderators of the WordPress Support Forum’s <a href=\"https://www.pluginvulnerabilities.com/2018/09/27/wordpress-team-didnt-notify-developer-of-plugin-with-700000-active-installations-about-vulnerability-they-knew-about/\" rel=\"noopener noreferrer\" target=\"_blank\">continued</a> <a href=\"https://www.pluginvulnerabilities.com/2018/09/25/wordpress-support-forum-moderators-engaged-in-cover-up-of-security-issues-in-wordpress-plugins/\" rel=\"noopener noreferrer\" target=\"_blank\">inappropriate</a> <a href=\"https://www.pluginvulnerabilities.com/2018/09/25/wordpress-support-forum-moderators-stop-people-from-getting-help-so-they-can-promote-favored-security-companies/\" rel=\"noopener noreferrer\" target=\"_blank\">behavior</a> we are <a href=\"https://www.pluginvulnerabilities.com/2018/09/25/our-new-disclosure-policy-in-response-to-the-continued-inappropriate-behavior-of-the-wordpress-support-forum-moderators/\" rel=\"noopener noreferrer\" target=\"_blank\">full disclosing vulnerabilities in protest until WordPress gets that situation cleaned up</a>, so we are releasing this post and then only trying to notify the developer through the WordPress Support Forum. You can notify the developer of this issue on the forum as well. Hopefully the moderators will finally see the light and clean up their act soon, so these full disclosures will no longer be needed (we hope they end soon).</p></blockquote>\n<p>In the linked incidents cited above, Grillot claims that moderators have deleted his comments, covered up security issues instead of trying to fix them, and promoted certain security companies for fixing hacked sites, among other complaints. </p>\n<p>In response, Plugin Vulnerabilities has published a string of vulnerabilities with full disclosure since <a href=\"https://www.pluginvulnerabilities.com/2018/09/25/our-new-disclosure-policy-in-response-to-the-continued-inappropriate-behavior-of-the-wordpress-support-forum-moderators/\" rel=\"noopener noreferrer\" target=\"_blank\">initiating the protest</a> in September 2018. These posts detail the exact location of the vulnerabilities in the code, along with a proof of concept. The posts are followed up with an attempt to notify the developer through the WordPress.org support forum.</p>\n<p>Grillot said he hopes to return to Plugin Vulnerabilities’ previous policy of responsible disclosure but will not end the protest until WordPress.org support forum moderators comply with the list of what he <a href=\"https://www.pluginvulnerabilities.com/2018/09/25/our-new-disclosure-policy-in-response-to-the-continued-inappropriate-behavior-of-the-wordpress-support-forum-moderators/\" rel=\"noopener noreferrer\" target=\"_blank\">outlined</a> as “appropriate behavior.”</p>\n<p>WordPress’ security leadership is currently going through a transitional period after Aaron Campbell, head of WordPress Ecosystem at GoDaddy, stepped down from his position as head of security in December 2018. Automattic Technical Account Engineer Jake Spurlock is coordinating releases while the next person to wrangle the team is selected. This announcement was made in the #security channel, but Josepha Haden said there are plans for a more public post soon. Campbell did wish to publish the details of why he stepped down but said that he thinks it is important to rotate that role and that “the added influx of fresh energy in that position is really healthy.” </p>\n<p>When asked about the Plugin Vulnerabilities’ protest against WordPress.org, Spurlock referenced the <a href=\"https://hackerone.com/wordpress\" rel=\"noopener noreferrer\" target=\"_blank\">Responsible Disclosure guidelines</a> on WordPress’ Hackerone profile. It includes the following recommendation regarding publishing vulnerabilities: </p>\n<blockquote><p>Give us a reasonable time to correct the issue before making any information public. We care deeply about security, but as an open-source project, our team is mostly comprised of volunteers.</p></blockquote>\n<p>Spurlock said that since those guidelines are more pertinent to core, dealing with third-party plugins is a trickier scenario. Ideally, the plugin author would be notified first, so they can work with the plugins team to push updates and remove old versions that may contain those vulnerabilities.</p>\n<p>“The WordPress open-source project is always looking for responsible disclosure of security vulnerabilities,” Spurlock said. “We have a process for disclosing for <a href=\"https://developer.wordpress.org/plugins/wordpress-org/plugin-security/reporting-plugin-security-issues/\" rel=\"noopener noreferrer\" target=\"_blank\">plugins</a> and for <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\" rel=\"noopener noreferrer\" target=\"_blank\">core</a>. Neither of theses processes include posting 0-day exploits.”</p>\n<p>Grillot did not respond to our request for comment, but the company’s recent blog posts contend that following responsible disclosure in the past would sometimes lead to vulnerabilities being “covered up,” and even at times <a href=\"https://www.pluginvulnerabilities.com/2018/09/25/wordpress-support-forum-moderators-engaged-in-cover-up-of-security-issues-in-wordpress-plugins/\" rel=\"noopener noreferrer\" target=\"_blank\">cause them to go unfixed</a>.</p>\n<p>WordPress.org support forum moderators do not permit people to report vulnerabilities on the support forums or to engage in discussion regarding vulnerabilities that remain unfixed. The preferred avenue for reporting is to email [email protected] so the plugins team can work with authors to patch plugins in a timely way.</p>\n<p>However, in the wild west world of plugins, which includes more than 55,000 hosted on WordPress.org, there are times when responsible disclosure falls apart and occasionally fails users. Responsible disclosure is not a perfect policy, but overall it tends to work better than the alternative. The Plugin Vulnerabilities service even states that they intend to return to responsible disclosure after the protest, essentially recognizing that this policy is the best way to coexist with others in the plugin ecosystem. </p>\n<p>In the meantime, publishing zero-day vulnerabilities exposes sites to potential attacks if the plugin author is not immediately available to write a patch. The only thing WordPress.org can do is remove the plugin temporarily until a fix can be released. This measure protects new users from downloading vulnerable software but does nothing for users who already have the plugin active. If site owners are going to protect themselves by disabling it until there is a fix, they need to know that the plugin is vulnerable. </p>\n<p>Plugin Vulnerabilities’ controversial protest, which some might even call unethical, may not be the most inspired catalyst for improving WordPress.org’s approach to security. It is a symptom of a larger issue. WordPress needs strong, visible security leadership and a team with dedicated resources for improving the plugin ecosystem. Plugin authors need a better notification system for advising users of important security updates inside the WordPress admin. Most users are not subscribed to industry blogs and security services – they depend on WordPress to let them know when an update is important. Refining the infrastructure available to plugin developers and creating a more streamlined security flow is critical for repairing the plugin ecosystem’s reputation. </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, 17 Apr 2019 03:37: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:13:\"Sarah Gooding\";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:99:\"WPTavern: WordCamp for Publishers is Coming to Columbus, OH, August 7-9, Call for Speakers Now Open\";s: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://wptavern.com/?p=88366\";s: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:107:\"https://wptavern.com/wordcamp-for-publishers-is-coming-to-columbus-oh-august-7-9-call-for-speakers-now-open\";s: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:2696:\"<p>The third edition of WordCamp for Publishers will be held in Columbus, OH, August 7-9, 2019, at the <a href=\"https://vuecolumbus.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Vue Columbus</a>. This unique event is a niche-specific WordCamp for professionals working in the publishing industry. Previous locations include Denver and Chicago. In looking for a host city for 2019, organizers had a preference for cities that are “underrepresented media markets” where attendees may not see as many of these types of events. Columbus certainly fits the bill. </p>\n<p>The <a href=\"https://2019-columbus.publishers.wordcamp.org/2019/04/12/call-for-speakers/\" rel=\"noopener noreferrer\" target=\"_blank\">call for speakers and workshop facilitators</a> is now open. Organizers are looking for presentations from all types of professionals across the publishing industry, including writers, journalists, editors, designers, developers, data journalists, project managers, product managers, and program managers. The event will feature three types of sessions:</p>\n<ul>\n<li>45 minute presentations (inclusive of Q&A)</li>\n<li>90 minute workshops</li>\n<li>5 minute lightning talks</li>\n</ul>\n<p>Applicants may submit up to three proposals until the deadline on Monday, May 6th at 11:59 EDT.</p>\n<p>Last year’s event brought controversial and thought-provoking presentations, such as “<a href=\"https://wordpress.tv/2018/08/22/brian-boyer-why-we-ditched-amp-and-other-ux-choices-we-made-for-launching-membership/\" rel=\"noopener noreferrer\" target=\"_blank\">Why we ditched AMP, and other UX choices we made for launching membership</a>” and “<a href=\"https://wordpress.tv/2018/08/31/eric-ulken-reader-revenue-and-the-less-open-web/\" rel=\"noopener noreferrer\" target=\"_blank\">Reader revenue and the less open web</a>,” an interesting exploration of the implications of paywalls on the open web. All 2018 presentations are <a href=\"https://wordpress.tv/event/wordcamp-for-publishers-chicago-2018/\" rel=\"noopener noreferrer\" target=\"_blank\">available on WordPress.tv</a>, if speaker applicants need any ideas about the types of presentations that are relevant to the event. Last year’s theme was “Taking Back the Open Web,” but organizers have not yet announced a theme for 2019.</p>\n<p>The first batch of <a href=\"http://2019-columbus.publishers.wordcamp.org/tickets/\" rel=\"noopener noreferrer\" target=\"_blank\">tickets</a> is already on sale. Previous years have sold out fairly fast, so make sure to follow <a href=\"https://twitter.com/wcpublishers\" rel=\"noopener noreferrer\" target=\"_blank\">@wcpublishers</a> on Twitter for all the latest information.</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, 15 Apr 2019 22:50:42 +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:13:\"Sarah Gooding\";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:41:\"Matt: Happy Tools, for the Future of Work\";s: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:22:\"https://ma.tt/?p=49336\";s: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/2019/04/happy-tools/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2372:\"<p>Distributed work is becoming a reality for more companies. Automattic has been operating in a distributed-first fashion for more than 13 years now — we’re now up to <a href=\"https://ma.tt/2019/01/ted-the-future-of-work/\">more than 850 employees in 68 countries</a>. But even in companies with physical offices, more employees are distributed around the globe and working together. Google just shared some <a href=\"https://blog.google/inside-google/working-google/working-together-when-were-not-together/\">fascinating stats about its work culture</a>, with 100,000 employees working across 150 cities. Two out of five work groups have employees working from more than one location:</p>\n\n\n\n<img />\n\n\n\n<p>We’re a more connected world, so it makes sense that global business wouldn’t be confined to just one physical space. I often use Google as an example because I’ve been in meetings there where people were one building away from each other but still using video chat because of the time required to walk between meetings on their campus.</p>\n\n\n\n<p>With that in mind, the team at <a href=\"https://automattic.com/\">Automattic</a> has decided to start sharing our expertise and the technology that makes it all work. Introducing <a href=\"https://happy.tools/\">Happy Tools</a>: </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>Our first product is Happy Schedule, which helps teams manage flexible schedules across time zones. Right now we’re rolling it out in a consultative way with just a few early customers to make sure the team can be totally responsive to their needs. We’re excited about this and other upcoming tools, because we believe that this is the future of work. We’re excited to have other companies give it a try. </p>\n\n\n\n<p>Keep an eye on this space: There’s an entire suite of tools that make up the operating system of what has helped Automattic scale so effectively over the years. I’ve always believed it’s important to invest in your internal tools, and I’m excited to release more of them. If there’s something better in the market, we won’t release a tool for it—I’d rather use something external than have to build things ourselves—but where the industry still has a gap after such a long time, we’ll throw our hat into the ring. </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, 15 Apr 2019 19:54:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"WPTavern: WordCamp Europe Publishes 2019 Speaker Lineup, Contributor Day Registration is Now Open\";s: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://wptavern.com/?p=88804\";s: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:107:\"https://wptavern.com/wordcamp-europe-publishes-2019-speaker-lineup-contributor-day-registration-is-now-open\";s: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:2135:\"<p><a href=\"https://2019.europe.wordcamp.org\" rel=\"noopener noreferrer\" target=\"_blank\">WordCamp Europe 2019</a> is 66 days away. The event will be held in Berlin on June 20-22, occupying 13,000m² of the Estrel Congress Center. More than 2,266 tickets have been sold so far, roughly 100 tickets short of what the event sold last year. </p>\n<p>All <a href=\"https://2019.europe.wordcamp.org/speakers/\" rel=\"noopener noreferrer\" target=\"_blank\">59 speakers</a> have now been announced and the <a href=\"https://2019.europe.wordcamp.org/schedule/\" rel=\"noopener noreferrer\" target=\"_blank\">schedule</a> is published on the website. Organizers added a third track this year to accommodate the various lightning and traditional talks, workshops, and panels. </p>\n<p>WordCamp Europe received a record-breaking number of submissions and applicants this year after making a stronger effort to improve representation of the diversity of the WordPress’ community. Organizers received 453 submissions from 267 applicants, a 20 percent increase over 2018 submissions. Approximately 1% (4 applicants) identified outside of the gender binary, 34% were female, and 65% male. The breakdown for 2019 selected speakers is 43.4% female and 56.6% male.</p>\n<p><a href=\"https://2019.europe.wordcamp.org/2019/04/14/contributor-day/\" rel=\"noopener noreferrer\" target=\"_blank\">Contributor Day</a> registration opened today and will close May 31, 2019. The event will take place on June 20, one the day before the main conference in the same venue. Organizers have build a new <a href=\"https://orientation.wp-europe.org/\" rel=\"noopener noreferrer\" target=\"_blank\">Contributor Orientation Tool</a> to help new contributors identify one or more of the <a href=\"https://make.wordpress.org/\" rel=\"noopener noreferrer\" target=\"_blank\">Make WordPress teams</a> where they can apply their skills. <a href=\"https://2019.europe.wordcamp.org/tickets/\" rel=\"noopener noreferrer\" target=\"_blank\">Tickets</a> are free for WCEU attendees but spots are limited. There were only 157 Contributor Day tickets remaining this morning and those places are going quickly. </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, 15 Apr 2019 16:33:44 +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:13:\"Sarah Gooding\";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:40:\"WordPress.org blog: WordPress 5.2 Beta 3\";s: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:34:\"https://wordpress.org/news/?p=6885\";s: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/2019/04/wordpress-5-2-beta-3/\";s: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:3784:\"<p>WordPress 5.2 Beta 3 is now available!</p>\n\n\n\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site to play with the new version.</p>\n\n\n\n<p>There are two ways to test the latest WordPress 5.2 beta: try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want to select the “bleeding edge nightlies” option), or you can <a href=\"https://wordpress.org/wordpress-5.2-beta3.zip\">download the beta here</a> (zip).</p>\n\n\n\n<p>WordPress 5.2 is slated for release on <a href=\"https://make.wordpress.org/core/5-2/\">April 30</a>, and we need your help to get there! Thanks to the testing and feedback from everyone who tried <a href=\"https://wordpress.org/news/2019/04/wordpress-5-2-beta-2/\">beta 2</a>, nearly <a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=04%2F09%2F2019..04%2F13%2F2019&milestone=5.2&group=component&col=id&col=summary&col=status&col=milestone&col=owner&col=type&col=priority&order=priority\">40 tickets have been closed</a> since then. Here are the major changes and bug fixes:</p>\n\n\n\n<ul><li>The new Site Health feature has continued to be refined.</li><li>Plugins no longer update if a site is running an unsupported version of PHP (see #46613).</li><li>It’s now more apparent when a site is running in Recovery Mode (see #46608).</li><li>The distraction free button no longer breaks keyboard navigation in the Classic Editor (see #46640).</li><li>Assistive technologies do a better job of announcing admin bar sub menus (see #37513).</li><li>Subject lines in WordPress emails are now more consistent (see #37940).</li><li>Personal data exports now only show as completed when a user downloads their data (see #44644).</li><li>Plus more improvements to accessibility (see #35497 and #42853).</li></ul>\n\n\n\n<h2>Minimum PHP Version Update</h2>\n\n\n\n<p><strong>Important reminder: </strong>as of WordPress 5.2 beta 2, the minimum PHP version that WordPress will require is 5.6.20. If you’re running an older version of PHP, we highly recommend updating it now, before WordPress 5.2 is officially released.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://wordpress.org/news/2019/04/minimum-php-version-update/\">Minimum PHP Version update</a></blockquote>\n</div>\n\n\n\n<h2>Developer Notes</h2>\n\n\n\n<p>WordPress 5.2 has lots of refinements to polish the developer experience. To keep up, subscribe to the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> and pay special attention to the <a href=\"https://make.wordpress.org/core/tag/5-2+dev-notes/\">developers notes</a> for updates on those and other changes that could affect your products.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a> The beta 3 release also marks the <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#soft-freeze\">soft string freeze</a> point of the 5.2 release schedule.</p>\n\n\n\n<p><em><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</em></p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p><em>Would you look at that<br />each day brings release closer<br />test to be ready</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, 12 Apr 2019 21:33:07 +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:\"Jonathan Desrosiers\";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:78:\"WPTavern: New GPL-licensed Quirk App Open Sources Cognitive Behavioral Therapy\";s: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://wptavern.com/?p=88763\";s: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/new-gpl-licensed-quirk-app-open-sources-cognitive-behavioral-therapy\";s: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:10320:\"<p><a href=\"https://getquirk.app/\" rel=\"noopener noreferrer\" target=\"_blank\">Quirk</a> is a new GPL-licensed Cognitive Behavioral Therapy (CBT) app for iOS and Android built in <a href=\"https://facebook.github.io/react-native/\" rel=\"noopener noreferrer\" target=\"_blank\">React Native</a>/<a href=\"https://expo.io/\" rel=\"noopener noreferrer\" target=\"_blank\">Expo</a>. The app helps users challenge their “automatic thoughts,” a term that refers to thoughts that come to a person spontaneously in response to a trigger, which can often be negative.</p>\n<p>Quirk lets users record a quick thought and will automatically narrow down a list of potential ways these thoughts are distorted. The distortions were inspired by the ones popularized in <a href=\"https://www.amazon.com/dp/B009UW5X4C/\" rel=\"noopener noreferrer\" target=\"_blank\">Feeling Good: The New Mood Therapy</a>. The user is then invited to challenge those distortions and write an alternative thought.</p>\n<p><a href=\"https://cloudup.com/cZMMRywMDBL\"><img src=\"https://i2.wp.com/cldup.com/5f9Qce5NQW.gif?resize=627%2C667&ssl=1\" alt=\"Quirk demo\" width=\"627\" height=\"667\" /></a></p>\n<p><a href=\"https://twitter.com/flaqueEau\" rel=\"noopener noreferrer\" target=\"_blank\">Evan Conrad</a>, a software engineer at Segment, created Quirk as a non-commercial, personal project to make it easy for people to take control of their irrational thoughts using a common CBT technique. Quirk is not a substitute for a trained therapist but rather a tool for people to use on their own. Left unchecked, negative automatic thoughts can become emotional weights and lead to distorted thinking. Quirk is a simple app that helps people experience the world in a less negative way and develop more rational thinking patterns. </p>\n<p>“It’s super useful for day-to-day stuff,” Conrad said in <a href=\"https://news.ycombinator.com/item?id=19589700\" rel=\"noopener noreferrer\" target=\"_blank\">response</a> to comments on Hacker News. “Take a thought like ‘<em>I took too many hints in that interview question</em>.’</p>\n<p>“That thought might lead to <em>‘I must have failed that interview,’</em> which leads to <em>‘I’ll fail all the rest of my interviews,’</em> which leads to <em>‘I’ll never get another job,’</em> which leads to <em>‘I must be really bad at this, I should just give up.’</em></p>\n<p>“Each step seemed kind of logical at the time, but one thought led to the next and now you feel awful.</p>\n<p>“CBT is a counter measure to this; it stops you at that first point and gives you a bunch of common logical fallacies that help you recognize why your thought is overreaching. You don’t know if you really flunked that interview, besides flunking one is good practice to pass the next one.”</p>\n<p>Conrad said these types of thought processes aren’t exactly a mental health issue but are common struggles for many people. Quirk can be a useful tool for anyone looking to recognize and remove their own cognitive biases.</p>\n<p>The iOS version of the app currently works better than the Android one, as the author said he doesn’t have an Android phone and finds it difficult to support the app on that platform. However, fixes are being pushed out regularly and many of the issues with crashing are getting resolved.</p>\n<h3>How the GPL Protects Users in Mental Health Tech</h3>\n<p>The code for Quirk can be found on <a href=\"https://github.com/Flaque/quirk\" rel=\"noopener noreferrer\" target=\"_blank\">GitHub</a> and is open source under the GPL-3.0, which is not a popular choice for licensing mobile apps. I asked Conrad why he opted for the GPL license, as opposed to other popular open source licenses. </p>\n<p>“Mental Health tech is a really weird world,” Conrad said. “There’s a lot of folks who want to do the right thing, but end up doing really sketchy stuff. </p>\n<p>“For example, a lot of apps collect the thoughts you’re recording for ML (Machine Learning) or NLP (Natural Language Processing). The stated purpose of this is to help better identify suicide, depression, etc. Partially because of the subject matter, many apps aren’t clearly telling their users that this is happening.</p>\n<p>“So what ends up happening is a bunch of well intended researchers get access to your most sensitive thoughts. Which is fine, but they frequently aren’t aware of how valuable of a target they’re holding to a nefarious actor. Because it’s not like a database of passwords or credit card numbers, they tend to not think about security. </p>\n<p>“But thoughts are super valuable and dangerous for abusers and blackmailers; plus most people would rather give you their password in plaintext than show you their mental health thoughts. </p>\n<p>“So if I made Quirk MIT, I would worry that someone would take Quirk and launch their own version for research that tracks and stores user thoughts. Because the license doesn’t follow them, they could do it without telling a user and there would be little way for an average person to /know/ that this is happening.”</p>\n<p>Conrad has taken an inspiring, user-centric approach to licensing and privacy that ensures users of his app (and any derivatives) will have access to the code and a better understanding of where their data is being stored. In a recent <a href=\"https://twitter.com/flaqueEau/status/1114575448485191681\" rel=\"noopener noreferrer\" target=\"_blank\">Twitter thread</a>, he outlined the privacy principles that underpin Quirk’s architecture:</p>\n<blockquote><p>In Quirk, FOSS and privacy isn’t a focus, it’s a given. Outside the tech world, Quirk is not trying to be a FOSS CBT app, it’s trying to be a really good CBT app that happens to be FOSS. It’s not coming out and saying “hey we don’t store your deepest darkest secrets on some server somewhere.” User’s don’t care. It’s a given. It doesn’t store things on the device because it’s trying to sell you on privacy, it does it because it’s the correct engineering decision. </p>\n<p>Regular people don’t look at the Golden Gate bridge and think about the structural quality of the bolts. They pull out their phones and take a picture. The responsibility of software is to make things frictionless and reduce the stuff someone has to think about before buying in.</p></blockquote>\n<p>Conrad said he would like to see other developers build things using the app and conduct research, as long as they do so ethically. The project’s <a href=\"https://github.com/flaque/quirk\" rel=\"noopener noreferrer\" target=\"_blank\">GitHub repo</a> has a detailed writeup of its design and engineering logic. It includes specific goals the code was built around in order to respect users’ privacy and mental health, such as: </p>\n<ul>\n<li><strong><em>Thoughts are more valuable than passwords, treat them that way.</em></strong></li>\n<li><strong><em>Be extremely cautious about making engagement your core metric.</em></strong></li>\n<li><strong><em>But be clear and obvious within the app about what’s going on with the user’s data.</em></strong></li>\n</ul>\n<p>“I really do want to see people use Quirk for research,” he said. “I just want it to follow more ethical practices of consent and data security. Someone should willingly give a researcher their thoughts and as little information should be given about the person as possible. When it’s stored, it should be stored safely and not on a publicly exposed DB for example. But for that to happen, it has to be open.”</p>\n<p>Beyond GPL-specific licensing, making the app open source has many other benefits. Quirk has already been translated into six different languages. One of the byproducts of making a useful app open source is that it energizes contributors and speeds up the process of bringing the app to new audiences. </p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">I cannot express how absolutely amazing it is that Quirk was translated into 6 languages in just a few days. <img src=\"https://s.w.org/images/core/emoji/11.2.0/72x72/1f525.png\" alt=\"🔥\" class=\"wp-smiley\" /><img src=\"https://s.w.org/images/core/emoji/11.2.0/72x72/1f64c.png\" alt=\"🙌\" class=\"wp-smiley\" /><img src=\"https://s.w.org/images/core/emoji/11.2.0/72x72/2665.png\" alt=\"♥\" class=\"wp-smiley\" /><img src=\"https://s.w.org/images/core/emoji/11.2.0/72x72/1f44f.png\" alt=\"👏\" class=\"wp-smiley\" /></p>\n<p>— Evan Conrad (@flaqueEau) <a href=\"https://twitter.com/flaqueEau/status/1115843899594084352?ref_src=twsrc%5Etfw\">April 10, 2019</a></p></blockquote>\n<p></p>\n<p>Feedback on the app so far has been mostly positive. One commenter on Hacker News <a href=\"https://news.ycombinator.com/item?id=19589889\" rel=\"noopener noreferrer\" target=\"_blank\">thanked</a> Conrad for open sourcing the app because he wasn’t able to continue in-person CBT due to the cost:</p>\n<blockquote><p>I’ve been through CBT and stopped because of the cost. I feel that an app like this can complement those of us that have had face to face time but stopped for whatever reason.</p></blockquote>\n<p>Quirk is an inspiring example of how open source software can help people with every day problems. Its carefully-considered implementation respects users’ sensitive information and doesn’t encourage an unhealthy attachment to the app. </p>\n<p>If you like Quirk and want to contribute, you can find the app on <a href=\"https://github.com/flaque/quirk\">GitHub</a>, including directions for <a href=\"https://github.com/Flaque/quirk/issues/42#issuecomment-480547963\" rel=\"noopener noreferrer\" target=\"_blank\">translating it into different languages</a>. Mental health professionals who want to contribute are encouraged to <a href=\"https://github.com/Flaque/quirk/blob/master/src/locals/en.json\" rel=\"noopener noreferrer\" target=\"_blank\">audit the descriptions</a> of the cognitive distortions. Users can report bugs as <a href=\"https://github.com/flaque/quirk/issues\" rel=\"noopener noreferrer\" target=\"_blank\">GitHub issues</a> or directly to the app’s creator via email to Humans @ usequirk.com.</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, 12 Apr 2019 20:06: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:13:\"Sarah Gooding\";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:108:\"WPTavern: WPGraphQL Project Gains Momentum with Growing Library of Extensions for Popular WordPress Projects\";s: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://wptavern.com/?p=88737\";s: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:119:\"https://wptavern.com/wpgraphql-project-gains-momentum-with-growing-library-of-extensions-for-popular-wordpress-projects\";s: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:5898:\"<p>The <a href=\"https://www.wpgraphql.com/\" rel=\"noopener noreferrer\" target=\"_blank\">WPGraphQL</a> project, a plugin that provides an extendable GraphQL schema and API for WordPress sites, has been gaining momentum over the past several months. Creator and maintainer <a href=\"https://twitter.com/jasonbahl\" rel=\"noopener noreferrer\" target=\"_blank\">Jason Bahl</a> put the project up on <a href=\"https://opencollective.com/wp-graphql\" rel=\"noopener noreferrer\" target=\"_blank\">Open Collective</a> last week after people frequently asked how the community can support the project. WPGraphQL already has five backers, an $800 balance, and an estimated annual budget of $2,687.</p>\n<p>“Large well-known sites such as <a href=\"http://qz.com\" rel=\"noopener noreferrer\" target=\"_blank\">qz.com</a> and <a href=\"http://theplayerstribune.com\" rel=\"noopener noreferrer\" target=\"_blank\">theplayerstribune.com</a> are in production with JavaScript front-ends that consume data from WordPress via WPGraphQL,” Bahl said. “PostLight Studio maintains a popular “<a href=\"https://github.com/postlight/headless-wp-starter\" rel=\"noopener noreferrer\" target=\"_blank\">Headless WP Starter</a>” project that initially started as a React + REST API boilerplate, but recently added WPGraphQL support as well.” </p>\n<p>One of the most important signs of the project’s growth are the extensions that developers are building on top of it, such as <a href=\"https://github.com/ashhitch/wp-graphql-yoast-seo\" rel=\"noopener noreferrer\" target=\"_blank\">WPGraphQL for Yoast SEO</a>, <a href=\"https://github.com/pristas-peter/wp-graphql-gutenberg\" rel=\"noopener noreferrer\" target=\"_blank\">WPGraphQL for Gutenberg</a>, and <a href=\"https://github.com/Quartz/wp-graphql-content-blocks\" rel=\"noopener noreferrer\" target=\"_blank\">WPGraphQL Content Blocks</a>. <a href=\"https://github.com/wp-graphql/wp-graphql-acf\" rel=\"noopener noreferrer\" target=\"_blank\">WPGraphQL for Advanced Custom Fields</a> is getting very close to an initial release and Caldera Forms is also <a href=\"https://github.com/CalderaWP/Caldera-Forms/issues/3149\" rel=\"noopener noreferrer\" target=\"_blank\">exploring integrations with WPGraphQL</a>.</p>\n<p>“The two most-searched things on <a href=\"http://WPGraphQL.com\" rel=\"noopener noreferrer\" target=\"_blank\">WPGraphQL.com</a> are “Advanced Custom Fields” and “WooCommerce,” Bahl said. “People are interested in using WPGraphQL with other popular WordPress projects, and WPGraphQL for WooCommerce is a reaction to the folks that are already looking for alternatives to the WooCommerce REST API.”</p>\n<h3>WPGraphQL for WooCommerce Seeks $15K in Funding</h3>\n<p><a href=\"https://github.com/kidunot89/wp-graphql-woocommerce\" rel=\"noopener noreferrer\" target=\"_blank\">WPGraphQL for WooCommerce</a> is an extension created by Geoffry Taylor that has started to gain some traction. Taylor is a core contributor to the main WPGraphQL plugin. He has just published <a href=\"https://www.kickstarter.com/projects/kidunot89/wpgraphql-woocommerce/\" rel=\"noopener noreferrer\" target=\"_blank\">a Kickstarter to help fund development</a> of the extension and Bahl is consulting with him on implementation details and code reviews. </p>\n<p>Taylor began contributing to the WPGraphQL project last year after discovering the repository and finding that it lacked the features he needed. </p>\n<p>“I was looking for a solution that would allow me to create React-Apollo JS apps that could be used as WordPress themes,” he said. “And the solution couldn’t rely on a node server, because a large portion of my clients use shared hosting. WPGraphQL was a perfect fit for what I needed, but it lacked the features I needed at the time. This led to me contributing.”</p>\n<p>Since then Taylor has also created other libraries and tools that work directly or indirectly with WPGraphQL, such as <a href=\"https://github.com/kidunot89/wp-graphql-composer\" rel=\"noopener noreferrer\" target=\"_blank\">WPGraphQL Composer</a>, a React-Apollo component library, and <a href=\"https://github.com/kidunot89/oil-based-boilerplate\" rel=\"noopener noreferrer\" target=\"_blank\">Oil-Based Boilerplate</a>, a boilerplate for developing React-powered WordPress themes, plugins, and guten-blocks that use shared components.</p>\n<p>Taylor is seeking $15K in funding for development of the WPGraphQL WooCommerce extension, which would enable him to apply 100% of his time to the project.</p>\n<p>“The question I think a lot of people have, is what does this extension provide that WPGraphQL and WooCommerce doesn’t already?” Taylor said. “It adds WooCommerce support to the WPGraphQL server. It is being designed to match and increase the functionality of WooCommerce REST to make it as easy as possible to convert your app from the WooCommerce REST API.”</p>\n<p>Taylor said the extension is past the initial explorations and is well into development. If a developer follows the instructions in the README they will be able to query products and their variations, coupons, orders, refunds, customer information, and (after the next update), order items from the WPGraphQL endpoint. He said that with the exception of products, none of the data is queryable for any user without shop-manager level capabilities. </p>\n<p>“Customer-level functionality is the target goal right now, meaning customers can register/login, update the cart, and checkout,” Taylor said.</p>\n<p>Anyone interested can follow the project’s progress on <a href=\"https://github.com/kidunot89/wp-graphql-woocommerce\" rel=\"noopener noreferrer\" target=\"_blank\">GitHub</a> or get involved on Slack at <a href=\"http://wp-graphql.slack.com\" rel=\"noopener noreferrer\" target=\"_blank\">wp-graphql.slack.com</a> in the #woocommerce channel.</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, 11 Apr 2019 22:49:14 +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:13:\"Sarah Gooding\";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:81:\"WPTavern: WordSesh Returns May 22, 2019, Speaker Application Deadline is April 19\";s: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://wptavern.com/?p=88047\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://wptavern.com/wordsesh-returns-may-22-2019-speaker-application-deadline-is-april-19\";s: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:1978:\"<p>The next edition of <a href=\"https://wordsesh.com/\" rel=\"noopener noreferrer\" target=\"_blank\">WordSesh</a> is scheduled for Wednesday, May 22, 2019, from 10am-8pm EDT (UTC-4) – just a little over one month away. For the past six years, the virtual conference for WordPress professionals has consistently delivered high quality sessions from industry experts. Last year’s event inspired viewing parties across the globe in Belgium, Nigeria, India, and the USA. The event has been so successful that its organizers also created a WooCommerce-focused edition called <a href=\"https://wptavern.com/woosesh-schedule-published-woocommerce-team-to-deliver-keynote\" rel=\"noopener noreferrer\" target=\"_blank\">WooSesh</a>, which was held last year as an alternative to WooConf. </p>\n<p><a href=\"https://wordsesh.com/speak/\" rel=\"noopener noreferrer\" target=\"_blank\">Speaker applications</a> are still open but will close soon on Friday, April 19. Organizers expect applicants to submit original talks that do not already exist online. The process is somewhat competitive, as only 10 speakers will be selected for the event. Those with approved applications will receive two coaching and review sessions for their talks and a $250 stipend. WordSesh organizers plan to notify applicants of their status by Monday, April 29, and will announce the accepted speakers May 1. Applicants may submit two different presentation topics and are also encouraged to record a two-minute video pitch to sell their ideas.</p>\n<p>All WordSesh presentations will be recorded and available online after the live event. Previous years’ sessions and interviews can be viewed on the <a href=\"https://www.youtube.com/channel/UCHYYxtbhalXpKEMwyQHOexw\" rel=\"noopener noreferrer\" target=\"_blank\">WordSesh Youtube channel</a>. For more information on <a href=\"https://wordsesh.com/speak/\" rel=\"noopener noreferrer\" target=\"_blank\">applying to speak</a>, check out the event’s website. </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, 11 Apr 2019 04:02: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:13:\"Sarah Gooding\";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:113:\"WPTavern: WooCommerce 3.6 RC2 Removes Marketplace Suggestions from Product Listing, Adds Setting to Turn them Off\";s: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://wptavern.com/?p=88702\";s: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:123:\"https://wptavern.com/woocommerce-3-6-rc2-removes-marketplace-suggestions-from-product-listing-adds-setting-to-turn-them-off\";s: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:4906:\"<p><a href=\"https://woocommerce.wordpress.com/2019/04/10/woocommerce-3-6-rc2/\" rel=\"noopener noreferrer\" target=\"_blank\">WooCommerce 3.6 RC2</a> was released today with changes to the planned Marketplace Suggestions feature after core developers received overwhelmingly <a href=\"https://wptavern.com/woocommerce-3-6-to-add-marketplace-suggestions-despite-overwhelmingly-negative-feedback-from-developer-community\" rel=\"noopener noreferrer\" target=\"_blank\">negative feedback on its implementation</a>. This RC removes the ads from the product listings, which was one of the most controversial placements for them. It also adds a new setting to turn Marketplace Suggestions off entirely.</p>\n<ul>\n<li>Fix: Remove Product Listing suggestions. <a href=\"https://github.com/woocommerce/woocommerce/pull/23211\" rel=\"noopener noreferrer\" target=\"_blank\">#23211</a></li>\n<li>Fix: Add setting to turn off Marketplace Suggestions <a href=\"https://github.com/woocommerce/woocommerce/pull/23218\" rel=\"noopener noreferrer\" target=\"_blank\">#23218</a></li>\n<li>Fix: Add icon to Product Metabox Suggestions <a href=\"https://github.com/woocommerce/woocommerce/pull/23230\" rel=\"noopener noreferrer\" target=\"_blank\">#23230</a></li>\n<li>Fix: Add link to manage Suggestions <a href=\"https://github.com/woocommerce/woocommerce/pull/23229\" rel=\"noopener noreferrer\" target=\"_blank\">#23229</a></li>\n<li>Fix: Update text explaining opt-out and details of usage tracking. <a href=\"https://github.com/woocommerce/woocommerce/pull/23216\" rel=\"noopener noreferrer\" target=\"_blank\">#23216</a></li>\n</ul>\n<p>For many WooCommerce developers, 3.6 RC1 was the first time they discovered the marketplace suggestions. Some even felt blindsided by the original implementation. </p>\n<p>“Last week, the release candidate was running on my staging server, and out of nowhere, I noticed these ads being inserted inline with the rest of the WC admin list tables,” Tobin Fekkes said. “What a shock that was! I thought I’d developed a bad case of malware or something. What nasty plugin was corrupting my core, default products table, order table, etc?! Oh, just core WooCommerce.</p>\n<p>“I have never once gone looking to add a plugin to my site by starting at the ‘Products’ tab. Because it doesn’t belong there. If I want to install an extension or plugin, I will go to the (aptly named) ‘Extensions’ tab or “Plugins” tab.</p>\n<p>“It is rather telling that we as longtime developers who attend every Dev chat, bookmark and check this Dev blog daily, and test all your betas and release candidates STILL had no idea about this blatant abuse of trust.”</p>\n<p>Todd Wilkens, Head of WooCommerce, addressed the issue of marketplace suggestions seeming to come out of nowhere in a <a href=\"https://wptavern.com/woocommerce-3-6-to-add-marketplace-suggestions-despite-overwhelmingly-negative-feedback-from-developer-community#comment-285682\" rel=\"noopener noreferrer\" target=\"_blank\">comment</a> on our recent post:</p>\n<blockquote><p>We are committed to working with our community, including the plugin review team, and responding to feedback. Just as a reminder, the Marketplace Suggestions feature was developed in the open in a long-running feature branch/PR which was merged to master a month ago. It was mentioned in the Beta 1 Release notes, and was testable during Beta1 and prior on master.</p>\n<p>It is often only when the release candidate comes out that we get certain kinds of feedback. It’s an important stage in the development cycle when we want and expect input. With the 3.6 RC1 live, we received specific feedback that we could take into consideration and act on. Thanks to the developers, end users, and the plugin review team for all their help.</p></blockquote>\n<p>WooCommerce 3.6 RC2 doesn’t make any changes to the frequency with which users will need to dismiss the ads. Some have commented that it is more like “snoozing” the ads, since they require dismissal every day for five days, only to return every month thereafter.</p>\n<p>“We continue to be in contact with the plugin review team to ensure the suggestions are in accordance with the guidelines,” Wilkens said. “There is a live conversation on the definition of suggestion/advert dismissibility. We will participate in that conversation and honor the outcomes.”</p>\n<p>As this implementation of marketplace suggestions still is not satisfactory to many WooCommerce users and developers, a plugin for turning off has already been submitted and approved in the WordPress plugin directory. <a href=\"https://wordpress.org/plugins/surbma-woocommerce-without-marketplace-suggestions/\" rel=\"noopener noreferrer\" target=\"_blank\">WooCommerce Without Marketplace Suggestions</a> removes the suggestions permanently without users having to continually dismiss them. </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, 10 Apr 2019 20:18: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:13:\"Sarah Gooding\";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:39:\"HeroPress: Firefighter to Web Developer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=2735\";s: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:130:\"https://heropress.com/essays/firefighter-to-web-developer/#utm_source=rss&utm_medium=rss&utm_campaign=firefighter-to-web-developer\";s: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:13123:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2020/04/041019-min-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: I wouldn\'t be anything without the help of those around me.\" /><p>I’m jolted awake to the sound of the tones going off in my room. I knew that I hadn’t been asleep long because we’d already run a late call and it was still dark outside. Running to the truck, I hear the address come out over the radio for a medical call. It’s the third time this week we’ve been called to the same house.</p>\n<p>My driving is on autopilot because I know the city streets like the back of my hand. Not only had I worked in the same fire department for the last 6 years, but I’d also grown up in this city. On this and many other times I’d been woken up in the middle of the night, I’m starting to realize that I’m losing my passion for the job I once loved.</p>\n<h3>How I Got Into Firefighting</h3>\n<p>At 19 years old I was working in fast food, and I knew I needed to do something more with my life. I wasn’t really keen on going to college just yet, so I started looking for jobs that only needed vocational school. Knowing that I wouldn’t be a very good police officer, I signed up for fire school.</p>\n<p>During fire school I found the only way to get a job as a firefighter in Florida was to also be an EMT in order to run medical calls, so I enrolled in there as well. While I was in school, one of the instructors I met told me their department was taking on volunteers.</p>\n<blockquote><p>Six years in the field, a year of paramedic school, and many sleepless nights later, I’m driving to a call feeling trapped in a career that I don’t care for anymore.</p></blockquote>\n<p>One of the perks of being a firefighter is that in between calls the free time is ours to do what we like, we just need to be ready to leave at a moment’s notice. Some of the time we watch movies and play video games, but I wanted that time to do something productive that I could turn into an opportunity for a side gig.</p>\n<h3>Why I Chose Web Developer</h3>\n<p>I stumbled across a YouTube video that demonstrated how to create a webpage with HTML. I loaded a page that stereotypically read “Hello World” and I was hooked. I didn’t even own a computer at this time in my life, but my wife had a MacBook Air. She was nice enough to let me borrow it so I could keep learning. Downloading a text editor, I started creating web pages and loading them up in a browser. Though, as I was creating these pages, it was pretty obvious there weren’t any live websites out there that looked as bad as what I was creating.</p>\n<p>While going through YouTube looking for more tutorials, I kept seeing videos for this thing called WordPress in the sidebar. Curiosity got the better of me and I clicked on one of the videos. I saw how pages were being created from an admin background and how themes changed the look of sites, while plugins added functionality. I was completely blown away.</p>\n<p>By this time, I had purchased a $250 Chromebook I was running Linux from, and I decided that I was going to run a local development environment on this little computer with a 16GB hard drive. I managed to succeed, and with each accomplishment I had, I found that I was becoming extremely passionate about building these little websites.</p>\n<h3>Meeting Other Humans</h3>\n<p>I knew that I wasn’t going to make it very far past the beginning stages without help from someone other than a search engine. Though without any knowledge of the community and how they would act towards me, going to a local meetup was something that made me very uncomfortable. I thought the second they caught a glimpse of my Chromebook and my silly beginner questions they’d have me out the door before I could sit down.</p>\n<blockquote><p>Even in the parking lot before my first meetup, I was sitting in my car telling myself that I should just drive home.</p></blockquote>\n<p>When I walked into the meetup I was surprised to find people in all stages of their growth with WordPress. There were even people that knew less than me, and they were accepted just as much as I was. It was there I learned about this event called a WordCamp. I knew that whatever it was, I needed to be there and it was only two months away.</p>\n<h3>First WordCamp</h3>\n<p>Sitting in my car in front of my first WordCamp Orlando, I felt the same feelings that I did before my first meetup. I reminded myself how welcoming the meetup was, and that this wasn’t going to be any different. When I grabbed my seat in the main auditorium, I started feeling pretty strongly that I was alone in a room of 300 people. There were business owners that could actually make money off WordPress, and it felt that there weren’t many people at my experience level. As I went from talk to talk, the topics flew over my head and I became very overwhelmed. I told myself that I was going to stick it out till lunch and that I could go home after if I wanted.</p>\n<p>Lunch came and as I was walking around looking for a good place to sit, I noticed a familiar face sitting at a table with no one next to him. Up until now, I had been learning exclusively at Lynda.com and Treehouse. I was learning to use the Genesis Framework and took a couple courses by an instructor named <a href=\"https://heropress.com/essays/freed-from-the-soil-lab/\">Jesse Petersen</a>, and this guy looked just like him. Walking up next to him I said: “I’m sure you’ve heard this before, but you look just like an instructor I learned from on Treehouse.” He laughed and said that he was indeed that instructor from Treehouse.</p>\n<p>The pitch of my voice shot up an octave, and I started fanning out over how I had learned so much from him and asked if I could eat with him. While we ate, I told him that I was a firefighter and how I also wanted to become a web developer and build websites. By the end of the lunch, he told me that he saw something in me and that he wanted to mentor me if I was ok with that. Was I ok with that?!? Of course, I was ok with that! I was doing my best to sound cool all the while I’m absolutely ecstatic on the inside.</p>\n<p>The rest of the day I followed him around to talks, and while I was listening, he was setting up my computer with tools to help get me set up for further development. He added me to his Slack channel and told me that we were going to be working together remotely. When the day finished he asked me where we were having dinner in between the last session and the after-party.</p>\n<blockquote><p>I’ve never gone from feeling so out of place somewhere to then feeling so welcomed.</p></blockquote>\n<p>I was talking to a person that had absolutely no gain from helping me out, yet spent the entirety of his day getting me set up to work with him in the future.</p>\n<p>Jesse wasn’t feeling well the next day due to an illness he had called Cystic Fibrosis. He said that he would keep up with me through the day on Slack though. Whenever I felt like I didn’t belong I would look at the tools Jesse had installed on my computer and the Slack channel and would remember that I was welcome. I was going to be learning some awesome stuff, and now I had a mentor.</p>\n<h3>Gettin’ Paid</h3>\n<p>I spent the next few months going to two other WordCamps learning as much as I could and meeting as many people as possible. After going down to WordCamp Miami, I got approached by a local agency owner at a meetup that had some extra work I could help out with. Little did I know, they were also friends with Jesse and he had told them about me and what I’d been learning. This gave me a chance to get my feet wet and build some very strong friendships with some amazing people. I was now making money doing what I loved.</p>\n<blockquote><p>Four months later I got a Slack message from one of my friends telling me that Jesse had passed away.</p></blockquote>\n<p>I was on shift at the fire department that day, and I felt like someone had hit me with a bat. He was due to get new lungs any time, and just the day before was telling me how he was going to start a new life once he had the strength of new lungs to do so. We were all crushed to hear of his passing. I knew it was going to be hard moving forward without him, but I knew that’s what he would have wanted.</p>\n<h3>Keynote Presentation</h3>\n<p>I continued working on my skills until I was asked to do a keynote presentation at WordCamp Orlando. The very WordCamp I’d thought about leaving halfway through just a year before. The owner of the agency I was working for, Chris Edwards, told me they’d had a speaker back out and they needed someone to fill in, so they asked <i>me</i>. They wanted me to tell my story of how I had gotten into the WordPress community. I agreed, believing it was only going to a small room full of people, but when I said yes, I was then told I would be giving the opening keynote address in front of the entire WordCamp. I had already said yes, so now there was no way that I could back down and tell him no.</p>\n<p>As I was standing on stage waiting to be introduced, I was relieved to find there was a podium. Now no one could see my legs shaking as I stood there for an hour. I could now put all my focus on making sure the hand holding the microphone stayed steady. My talk was on the past year that had led me to this point and all of the fears and vulnerabilities I’d faced. If there was someone that was feeling the way I had a year ago, I wanted them to know that they were welcome and I was excited to have them there.</p>\n<h3>Leaving the Fire Service</h3>\n<p>The rest of the weekend passed, and I got a message from my friend Chris Edwards telling me that a company that makes a donation plugin called Give was looking for a support technician. Matt Cromwell, who was about to be my new boss, was sitting in the audience while I gave my keynote presentation. I filled out the application and got a response back that he wanted to set up an interview.</p>\n<p>A year has passed since that time, and I’ve grown so much in my knowledge of web development, website management, and WordPress. I’ve just started my first business as a freelance WordPress developer, and again I’m feeling the same fears, excitement, and vulnerabilities I felt every time I started to push myself. It’s now to the point where I almost keep a lookout for the fear because I know that something amazing is going to happen on the other side.</p>\n<blockquote><p>I’m always going to remember the compassion that Jesse Petersen had for me, and remember to pay that kindness forward in helping others.</p></blockquote>\n<p>There’s no way I could have planned this path for myself even if I’d tried. I know that I’m in the right place now, because every day I wake up I’m happy that I get to work with WordPress and interact with this awesome community. I wouldn’t be anything without the help of those around me, and I will always be grateful for everything they’ve done.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Firefighter to Web Developer\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Firefighter%20to%20Web%20Developer&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Ffirefighter-to-web-developer%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Firefighter to Web Developer\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Ffirefighter-to-web-developer%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Ffirefighter-to-web-developer%2F&title=Firefighter+to+Web+Developer\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Firefighter to Web Developer\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/firefighter-to-web-developer/&media=https://heropress.com/wp-content/uploads/2020/04/041019-min-150x150.jpg&description=Firefighter to Web Developer\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Firefighter to Web Developer\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/firefighter-to-web-developer/\" title=\"Firefighter to Web Developer\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/firefighter-to-web-developer/\">Firefighter to Web Developer</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 10 Apr 2019 12: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:9:\"Sam Smith\";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:84:\"WPTavern: GoDaddy Acquires ThemeBeans, CoBlocks, Block Gallery, and Block Unit Tests\";s: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://wptavern.com/?p=88673\";s: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:92:\"https://wptavern.com/godaddy-acquires-themebeans-coblocks-block-gallery-and-block-unit-tests\";s: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:4970:\"<p>GoDaddy has acquired <a href=\"https://coblocks.com/\" rel=\"noopener noreferrer\" target=\"_blank\">CoBlocks</a>, <a href=\"https://themebeans.com/\" rel=\"noopener noreferrer\" target=\"_blank\">ThemeBeans</a>, <a href=\"https://wpblockgallery.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Block Gallery</a> and <a href=\"https://wordpress.org/plugins/block-unit-test\" rel=\"noopener noreferrer\" target=\"_blank\">Block Unit Tests</a>, one of the leading Gutenberg product lines in the WordPress ecosystem. Founder Rich Tabor is joining GoDaddy as Senior Product Manager of WordPress Experience and will lead a team dedicated to understanding users’ needs and expanding the company’s Gutenberg-related products. Tabor’s fellow CoBlocks founders Jeffrey Carandang and Alex Denning will not be joining GoDaddy.</p>\n<p>All the commercial themes in the ThemeBeans catalog are now available for free on <a href=\"https://github.com/godaddy\" rel=\"noopener noreferrer\" target=\"_blank\">GitHub</a>. Current customers will continue to receive theme support and remote updates until April 8, 2020. </p>\n<p>According to Aaron Campbell, GoDaddy’s head of WordPress Ecosystem & Community, <a href=\"https://wordpress.org/plugins/coblocks/\" rel=\"noopener noreferrer\" target=\"_blank\">CoBlocks</a> will continue to be freely available on WordPress.org. It currently has more than 3,000 active installations and averages a 4.7-star rating.</p>\n<p>“Nothing will change with the plugin except that it will be added to the GoDaddy account on .org,” Campbell said. “It’s possible it might be renamed or rebranded in the future, but that’s unknown either way at this point. And yes, it will still be on the WordPress.org directory for everyone not just GoDaddy customers (and we plan to add more to it as we develop new blocks).”</p>\n<p>Campbell could not yet share a roadmap for the plugin as Tabor just started and will be heavily involved in determining the plugin’s future at GoDaddy. Tabor will also be leading a development team that is bringing on more React talent to assist with Gutenberg tasks.</p>\n<p>“Hiring React devs that are capable with Gutenberg is a newer thing that we’re really not totally sure whether it’ll be difficult or not or even how it’ll look,” Campbell said. “Do you hire WordPress people? React people? Only those that do both? Do you hire both and pair them up to learn from each other? It’s a thing we’re learning in this new post-Gutenberg world.”</p>\n<p>Tabor said he was surprised that his products had attracted GoDaddy’s interest but also found it to be validating of his own efforts and the potential of the block editor.</p>\n<p>“Throughout my time building themes, and then blocks, I’ve learned the real value of getting eyes on a project: Not only do you get the community rallying behind your ideas, such as the Block Manager recently added in Gutenberg 5.3, but you receive a TON of feedback and inspiration,” Tabor said. “Building on that feedback, consistently delivering clever ideas, and executing on the marketing front with inspiring videos, has landed us in a very opportune position.”</p>\n<p>GoDaddy has acquired a handful of WordPress companies and services during the past few years (ManageWP, Sucuri, WP Curve), but Tabor’s products are the first Gutenberg-related acquisition for the company. </p>\n<p>“I think it means that the WordPress ecosystem is important, that it’s maturing, and probably most of all – that it’s moving and changing,” Tabor said. “And I think all of those are good.</p>\n<p>“Gutenberg has changed a lot in WordPress. It’s not just a new editor or new interface, it’s a whole new system that brings with it a whole new group of challenges. Companies like GoDaddy recognizing this and supporting innovation is a healthy sign of growth and maturity.”</p>\n<p>GoDaddy’s resources will enable CoBlocks, ThemeBeans, and Block Gallery to move faster and add features that were previously out of reach for Tabor’s small team.</p>\n<p>“We’ll go from just two developers, to a team of incredibly bright engineers,” Tabor said. “And I won’t be spending time figuring out all the intricacies of monetizing a premium plugin in today’s ever-changing WordPress ecosystem. Instead, I can focus on leading the team’s efforts on bringing a better page building experience to WordPress.”</p>\n<p>He will also have access to insights and data that will enable his team to make more informed decisions about the tools and blocks they build.</p>\n<p>“This view into how entrepreneurs and business owners are using WordPress is something I could never have achieved at a meaningful scale, and I know it will help me move more confidently in the future landscape of Gutenberg,” Tabor said.</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, 10 Apr 2019 04:15: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:13:\"Sarah Gooding\";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:40:\"WordPress.org blog: WordPress 5.2 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:34:\"https://wordpress.org/news/?p=6874\";s: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/2019/04/wordpress-5-2-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:3882:\"<p>WordPress 5.2 Beta 2 is now available!</p>\n\n\n\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site to play with the new version.</p>\n\n\n\n<p>There are two ways to test the WordPress 5.2 beta: try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want to select the “bleeding edge nightlies” option), or you can <a href=\"https://wordpress.org/wordpress-5.2-beta2.zip\">download the beta here</a> (zip).</p>\n\n\n\n<p>WordPress 5.2 is slated for release on <a href=\"https://make.wordpress.org/core/5-2/\">April 30</a>, and we need your help to get there! Thanks to the testing and feedback from everyone who tried <a href=\"https://wordpress.org/news/2019/03/wordpress-5-2-beta-1/\">beta 1</a>, nearly <a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=2019-03-28..&milestone=5.2&group=component&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">100 tickets have been closed</a> since then. Here are the major changes and bug fixes:</p>\n\n\n\n<ul><li>We’ve added support for Emoji 12! <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1fa82.png\" alt=\"🪂\" class=\"wp-smiley\" /></li><li>A brand-new <code>wp_body_open()</code> template tag (and corresponding <code>wp_body_open</code> action) will let themes (and plugins!) add content right after the <code><body></code> is opened (<a href=\"https://core.trac.wordpress.org/ticket/12563\">#12563</a>).</li><li>Superfluous paragraph tags will no longer incorrectly appear in dynamic block content (<a href=\"https://core.trac.wordpress.org/ticket/45495\">#45495</a>).</li><li>The Site Health screens have received several bug fixes, tweaks, and performance improvements.</li><li>Crash Protection no longer interrupts plugin editing (<a href=\"https://core.trac.wordpress.org/ticket/46045\">#46045</a>).</li><li>Custom error handlers now load correctly (<a href=\"https://core.trac.wordpress.org/ticket/46069\">#46069</a>).</li></ul>\n\n\n\n<h2>Minimum PHP Version Update</h2>\n\n\n\n<p>As of WordPress 5.2 beta 2, the minimum PHP version that WordPress will require is 5.6.20. If you’re running an older version of PHP, we highly recommend updating it now, before WordPress 5.2 is officially released.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://wordpress.org/news/2019/04/minimum-php-version-update/\">Minimum PHP Version update</a></blockquote>\n</div>\n\n\n\n<h2>Developer Notes</h2>\n\n\n\n<p>WordPress 5.2 has lots of refinements to polish the developer experience. To keep up, subscribe to the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> and pay special attention to the <a href=\"https://make.wordpress.org/core/tag/5-2+dev-notes/\">developers notes</a> for updates on those and other changes that could affect your products.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a> </p>\n\n\n\n<p><em><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</em></p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p><em>The wonderful thing<br /> about betas, is betas<br /> are wonderful things.</em> <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f42f.png\" alt=\"🐯\" class=\"wp-smiley\" /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 09 Apr 2019 01:27:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Gary Pendergast\";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:86:\"WPTavern: Pipdig Under Investigation, Company is Refusing Customers’ Refund Requests\";s: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://wptavern.com/?p=88607\";s: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://wptavern.com/pipdig-under-investigation-company-is-refusing-customers-refund-requests\";s: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:7277:\"<p>In the wake of last week’s <a href=\"https://wptavern.com/pipdig-updates-p3-plugin-after-reports-expose-vendor-backdoors-built-in-kill-switch-and-malicious-ddos-code\" rel=\"noopener noreferrer\" target=\"_blank\">Pipdidg scandal</a>, the WordPress blogger and developer communities have been working together to help the company’s customers get on new themes and ensure the safety of their websites. Pipdig has been reported to various UK and internet authorities and is currently under investigation. </p>\n<p>Pipdig’s hosting provider has proactively disabled malicious code in certain files while the company <a href=\"https://twitter.com/kualo/status/1113433717677146117\" rel=\"noopener noreferrer\" target=\"_blank\">conducts its own investigation</a>.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Props to <a href=\"https://twitter.com/kualo?ref_src=twsrc%5Etfw\">@kualo</a>, <a href=\"https://twitter.com/pipdig?ref_src=twsrc%5Etfw\">@pipdig</a>\'s hosting provider, for stepping in and commenting out (disabling) malicious code. To <a href=\"https://twitter.com/pipdig?ref_src=twsrc%5Etfw\">@pipdig</a>\'s WordPress customers: make sure you\'re using version 4.9.0 and you\'ll be *okay*, for now at least. I still can\'t recommend staying with them, though. <a href=\"https://t.co/V0c40A29lL\">pic.twitter.com/V0c40A29lL</a></p>\n<p>— Nicky Bloor (@nickstadb) <a href=\"https://twitter.com/nickstadb/status/1113521607031644162?ref_src=twsrc%5Etfw\">April 3, 2019</a></p></blockquote>\n<p></p>\n<p>Meanwhile, Pipdig has been denying customers’ refund requests, in accordance with its “no refund” policy. Customers have received responses from the company claiming that the recent accusations were either “false, twisted, or sensationalized.” </p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Anyone trying to get a refund from Pipdig, this is the reply I got <a href=\"https://twitter.com/hashtag/pipdig?src=hash&ref_src=twsrc%5Etfw\">#pipdig</a> <a href=\"https://t.co/sGaysyyVkW\">pic.twitter.com/sGaysyyVkW</a></p>\n<p>— Sophiaaaxo<img src=\"https://s.w.org/images/core/emoji/11.2.0/72x72/1f351.png\" alt=\"🍑\" class=\"wp-smiley\" /> (@sophiatranterxo) <a href=\"https://twitter.com/sophiatranterxo/status/1114125318284042240?ref_src=twsrc%5Etfw\">April 5, 2019</a></p></blockquote>\n<p></p>\n<p>Customers who have purchased Pipdig products within the last 180 days may still be able to receive a refund through other channels. The Twitter thread below suggests lodging a payment dispute with PayPal or your bank or credit card provider, by referencing consumer protection laws and providing evidence of Pipdig’s false and misleading conduct.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Explainer: How to get a refund from <a href=\"https://twitter.com/pipdig?ref_src=twsrc%5Etfw\">@Pipdig</a>. If you have bought the plugin in the last 180 days first email <a href=\"https://twitter.com/hashtag/pipdig?src=hash&ref_src=twsrc%5Etfw\">#pipdig</a> asking for a refund. /1</p>\n<p>— ⓘⓌⓡⓘⓣⓔ (@opinionhacker) <a href=\"https://twitter.com/opinionhacker/status/1113208292820406273?ref_src=twsrc%5Etfw\">April 2, 2019</a></p></blockquote>\n<p></p>\n<h3>Help for Affected Pipdig Customers Switching to New Themes</h3>\n<p>If you work in WordPress every day, you may not realize how much of a challenge it is for some users to switch themes. WordPress developers and bloggers are stepping up to provide resources to help those who want to transition to a new theme. </p>\n<p>“I understand that bloggers using Pipdig themes for WordPress might want to switch away, but don’t have the time, money, or skills to do so right away,” Mark Jaquith <a href=\"https://twitter.com/markjaquith/status/1113883862902480896\" rel=\"noopener noreferrer\" target=\"_blank\">said</a>. “So here’s <a href=\"https://github.com/markjaquith/p3-neutraliser\" rel=\"noopener noreferrer\" target=\"_blank\">P3 Neutraliser</a> — a plugin that will prevent the P3 plugin from updating or ‘phoning home.\'” The plugin is available on GitHub with step-by-step instructions for downloading and installing it. It is intended as a stopgap measure for users to activate while they are in the process of transitioning to a new theme.</p>\n<p>Former Pipdig customers are struggling to find new themes, as a large number of them fall into the fashion blogger demographic. This is a niche with specific requirements for design and functionality. Many are also confused about the findings in the reports and don’t know how to act on this information. </p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">I need to change my theme from Pipdig to another safe one but I\'m struggling <img src=\"https://s.w.org/images/core/emoji/11.2.0/72x72/1f62d.png\" alt=\"😭\" class=\"wp-smiley\" /> I\'m in love with my Pipdig theme now. However, I do like the 17th Avenue themes. Does anyone know if they\'re safe? <a href=\"https://twitter.com/hashtag/pipdig?src=hash&ref_src=twsrc%5Etfw\">#pipdig</a> I don\'t want to do this all over again in a few months <img src=\"https://s.w.org/images/core/emoji/11.2.0/72x72/1f629.png\" alt=\"😩\" class=\"wp-smiley\" /></p>\n<p>— Melissa<img src=\"https://s.w.org/images/core/emoji/11.2.0/72x72/1f339.png\" alt=\"🌹\" class=\"wp-smiley\" /> (@rosymelissax) <a href=\"https://twitter.com/rosymelissax/status/1114992853309108227?ref_src=twsrc%5Etfw\">April 7, 2019</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Not sure what to do i have a pipdig theme for my blog <img src=\"https://s.w.org/images/core/emoji/11.2.0/72x72/1f62d.png\" alt=\"😭\" class=\"wp-smiley\" /></p>\n<p>— Erin (@Erin_Louisee) <a href=\"https://twitter.com/Erin_Louisee/status/1113516196291325953?ref_src=twsrc%5Etfw\">April 3, 2019</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">SO overwhelmed by all the <a href=\"https://twitter.com/hashtag/pipdig?src=hash&ref_src=twsrc%5Etfw\">#pipdig</a> issues I\'m reading & don\'t understand half of it… Defs time for a theme refresh but no idea where to start. Do I spend ££ designing one with a developer? V confusing for someone who has no coding knowledge at all. Anyone else feeling the same?</p>\n<p>— Luisa-Christie <img src=\"https://s.w.org/images/core/emoji/11.2.0/72x72/1f499.png\" alt=\"💙\" class=\"wp-smiley\" /> Ⓥ (@luisachristie) <a href=\"https://twitter.com/luisachristie/status/1113378603234996224?ref_src=twsrc%5Etfw\">April 3, 2019</a></p></blockquote>\n<p></p>\n<p>Searching WordPress.org for fashion-inspired themes does not turn up many relevant results. Former Pipdig customers hunting for new themes will need a more curated list of recommendations. WordPress developer Tia Wood published a post with a list of both <a href=\"https://tiawood.com/pipdig-themes-how-to-find-alternatives/\" rel=\"noopener noreferrer\" target=\"_blank\">free and commercial alternative themes</a> that may be helpful to those still looking. Freelance designer Rachel Sulek has <a href=\"https://twitter.com/HeyRachieface/status/1113188032470036481\" rel=\"noopener noreferrer\" target=\"_blank\">a Twitter thread</a> with options that are comparable to Pipdig’s theme designs.</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, 08 Apr 2019 17:49: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:13:\"Sarah Gooding\";s: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:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Fri, 10 May 2019 02:27:33 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Fri, 10 May 2019 02:15:09 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 1\";s:16:\"content-encoding\";s:4:\"gzip\";}}s:5:\"build\";s:14:\"20130910210210\";}', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(139, '_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1557498456', 'no'),
(140, '_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1557455256', 'no'),
(141, '_transient_timeout_dash_v2_be061a787773cc7f8c0b12037a967a37', '1557498456', 'no'),
(142, '_transient_dash_v2_be061a787773cc7f8c0b12037a967a37', '<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2019/05/jaco/\'>WordPress 5.2 “Jaco”</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wptavern.com/advanced-custom-fields-5-8-0-introduces-acf-blocks-a-php-framework-for-creating-gutenberg-blocks\'>WPTavern: Advanced Custom Fields 5.8.0 Introduces ACF Blocks: A PHP Framework for Creating Gutenberg Blocks</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/wpweekly-episode-351-results-of-the-gutenberg-accessibility-audit\'>WPTavern: WPWeekly Episode 351 – Results of the Gutenberg Accessibility Audit</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/wordpress-professionals-take-the-future-of-wordpress-careers-survey\'>WPTavern: WordPress Professionals: Take the Future of WordPress Careers Survey</a></li></ul></div>', 'no'),
(143, '_site_transient_timeout_available_translations', '1557466061', 'no'),
(144, '_site_transient_available_translations', 'a:117:{s:2:\"af\";a:8:{s:8:\"language\";s:2:\"af\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-01-08 06:00:48\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.0.3/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:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:3:\"5.2\";s:7:\"updated\";s:19:\"2019-05-04 07:33:39\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/5.2/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:16:\"المتابعة\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:5:\"4.7.7\";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:62:\"https://downloads.wordpress.org/translation/core/4.7.7/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:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-22 18:59:07\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"অসমীয়া\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/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:0:\"\";}}s:3:\"azb\";a:8:{s:8:\"language\";s:3:\"azb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-12 20:34: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/4.7.2/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:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-04-04 08:43:29\";s:12:\"english_name\";s:10:\"Belarusian\";s:11:\"native_name\";s:29:\"Беларуская мова\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.5/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:3:\"5.0\";s:7:\"updated\";s:19:\"2018-12-11 16:43:39\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.0/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:\"4.8.6\";s:7:\"updated\";s:19:\"2017-10-01 12:57:10\";s:12:\"english_name\";s:7:\"Bengali\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.6/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:23:\"এগিয়ে চল.\";}}s:2:\"bo\";a:8:{s:8:\"language\";s:2:\"bo\";s:7:\"version\";s:3:\"5.2\";s:7:\"updated\";s:19:\"2019-05-05 01:19:32\";s:12:\"english_name\";s:7:\"Tibetan\";s:11:\"native_name\";s:21:\"བོད་ཡིག\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/5.2/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:24:\"མུ་མཐུད།\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-04 20:20:28\";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/4.7.2/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:3:\"5.2\";s:7:\"updated\";s:19:\"2019-05-03 05:43:12\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/5.2/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:\"5.1.1\";s:7:\"updated\";s:19:\"2019-05-05 14:40:10\";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/5.1.1/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:3:\"5.2\";s:7:\"updated\";s:19:\"2019-05-08 07:53:38\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/5.2/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:\"5.1.1\";s:7:\"updated\";s:19:\"2019-03-25 20:13:18\";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/5.1.1/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:3:\"5.2\";s:7:\"updated\";s:19:\"2019-05-07 21:15:55\";s:12:\"english_name\";s:16:\"German (Austria)\";s:11:\"native_name\";s:21:\"Deutsch (Österreich)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2/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:3:\"5.2\";s:7:\"updated\";s:19:\"2019-05-09 10:39:56\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2/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:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:3:\"5.2\";s:7:\"updated\";s:19:\"2019-05-09 16:09:24\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/translation/core/5.2/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:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:3:\"5.2\";s:7:\"updated\";s:19:\"2019-05-09 10:42:35\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/5.2/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:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"5.2\";s:7:\"updated\";s:19:\"2019-05-09 16:09:18\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2/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:\"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:0:\"\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"5.1.1\";s:7:\"updated\";s:19:\"2019-05-04 20:40:40\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.1.1/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_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"5.2\";s:7:\"updated\";s:19:\"2019-05-02 17:11:46\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2/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_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"5.2\";s:7:\"updated\";s:19:\"2019-05-02 23:43:39\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2/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_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:3:\"5.2\";s:7:\"updated\";s:19:\"2019-05-02 23:43:26\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2/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:\"5.1.1\";s:7:\"updated\";s:19:\"2019-03-08 03:57:25\";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/5.1.1/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:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:3:\"5.2\";s:7:\"updated\";s:19:\"2019-05-03 20:12:13\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2/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:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:3:\"5.2\";s:7:\"updated\";s:19:\"2019-05-05 12:47:00\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/5.2/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_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:3:\"5.2\";s:7:\"updated\";s:19:\"2019-05-03 20:24:32\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2/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_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"5.2\";s:7:\"updated\";s:19:\"2019-05-08 15:42:41\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2/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:8:\"5.2-beta\";s:7:\"updated\";s:19:\"2019-04-28 15:32:26\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.2-beta/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_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:3:\"5.1\";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:62:\"https://downloads.wordpress.org/translation/core/5.1/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_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:3:\"5.0\";s:7:\"updated\";s:19:\"2018-12-07 18:38:30\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.0/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:5:\"es_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:3:\"5.0\";s:7:\"updated\";s:19:\"2018-12-06 12:47:45\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.0/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_CR\";a:8:{s:8:\"language\";s:5:\"es_CR\";s:7:\"version\";s:3:\"5.0\";s:7:\"updated\";s:19:\"2018-12-06 21:26:01\";s:12:\"english_name\";s:20:\"Spanish (Costa Rica)\";s:11:\"native_name\";s:22:\"Español de Costa Rica\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.0/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_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:5:\"4.9.9\";s:7:\"updated\";s:19:\"2018-12-14 13:48:04\";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/4.9.9/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_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-09 09:36:22\";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/4.7.2/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:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:9:\"5.0-beta3\";s:7:\"updated\";s:19:\"2018-11-28 16:04:33\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.0-beta3/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:\"4.9.2\";s:7:\"updated\";s:19:\"2017-12-09 21:12:23\";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/4.9.2/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:3:\"5.2\";s:7:\"updated\";s:19:\"2019-05-07 08:22:03\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2/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:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"5.2\";s:7:\"updated\";s:19:\"2019-05-09 19:38:45\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/5.2/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_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"5.2\";s:7:\"updated\";s:19:\"2019-05-09 20:58:08\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2/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:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:6:\"4.9.10\";s:7:\"updated\";s:19:\"2019-04-16 00:23:07\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.10/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_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-01-31 11:16:06\";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/4.9.5/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:3:\"fur\";a:8:{s:8:\"language\";s:3:\"fur\";s:7:\"version\";s:5:\"4.8.6\";s:7:\"updated\";s:19:\"2018-01-29 17:32:35\";s:12:\"english_name\";s:8:\"Friulian\";s:11:\"native_name\";s:8:\"Friulian\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8.6/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:\"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:3:\"5.2\";s:7:\"updated\";s:19:\"2019-05-09 13:36:07\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2/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:\"4.9.8\";s:7:\"updated\";s:19:\"2018-09-14 12:33:48\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"ગુજરાતી\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.8/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:31:\"ચાલુ રાખવું\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:5:\"4.4.2\";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:62:\"https://downloads.wordpress.org/translation/core/4.4.2/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:\"5.1.1\";s:7:\"updated\";s:19:\"2019-04-28 16:40:42\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.1.1/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:\"4.9.7\";s:7:\"updated\";s:19:\"2018-06-17 09:33:44\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.7/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:12:\"जारी\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:3:\"5.2\";s:7:\"updated\";s:19:\"2019-05-09 21:27:24\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/5.2/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:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"5.1.1\";s:7:\"updated\";s:19:\"2019-03-19 14:36:40\";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/5.1.1/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:\"4.9.8\";s:7:\"updated\";s:19:\"2018-07-28 13:16:13\";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/4.9.8/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.7.11\";s:7:\"updated\";s:19:\"2018-09-20 11:13:37\";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.7.11/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:3:\"5.2\";s:7:\"updated\";s:19:\"2019-05-09 19:00:10\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2/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:3:\"5.2\";s:7:\"updated\";s:19:\"2019-05-07 09:47:04\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/5.2/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"続ける\";}}s:5:\"jv_ID\";a:8:{s:8:\"language\";s:5:\"jv_ID\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-03-24 13:53:29\";s:12:\"english_name\";s:8:\"Javanese\";s:11:\"native_name\";s:9:\"Basa Jawa\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.5/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:3:\"5.1\";s:7:\"updated\";s:19:\"2019-02-21 08:17:32\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.1/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:\"4.9.8\";s:7:\"updated\";s:19:\"2018-09-21 14:15:57\";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/4.9.8/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:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-03-12 08:08:32\";s:12:\"english_name\";s:6:\"Kazakh\";s:11:\"native_name\";s:19:\"Қазақ тілі\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.5/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:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-01-09 07:34:10\";s:12:\"english_name\";s:5:\"Khmer\";s:11:\"native_name\";s:27:\"ភាសាខ្មែរ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.0.3/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:6:\"4.9.10\";s:7:\"updated\";s:19:\"2019-05-08 04:00:57\";s:12:\"english_name\";s:7:\"Kannada\";s:11:\"native_name\";s:15:\"ಕನ್ನಡ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.10/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:\"5.0.3\";s:7:\"updated\";s:19:\"2019-01-09 14:27:41\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.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:\"4.9.9\";s:7:\"updated\";s:19:\"2018-12-18 14:32:44\";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/4.9.9/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: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:\"5.0.3\";s:7:\"updated\";s:19:\"2019-01-09 18:11:00\";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/5.0.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:\"4.7.7\";s:7:\"updated\";s:19:\"2017-03-17 20:40:40\";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/4.7.7/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:\"4.7.7\";s:7:\"updated\";s:19:\"2017-01-26 15:54:41\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.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:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:43:32\";s:12:\"english_name\";s:9:\"Malayalam\";s:11:\"native_name\";s:18:\"മലയാളം\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/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:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-12 07:29: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/4.7.2/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:24:\"Үргэлжлүүлэх\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:5:\"4.8.6\";s:7:\"updated\";s:19:\"2018-02-13 07:38:55\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.8.6/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:5:\"4.9.8\";s:7:\"updated\";s:19:\"2018-08-30 20:27:25\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.8/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.1.20\";s:7:\"updated\";s:19:\"2015-03-26 15:57:42\";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.1.20/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:\"5.1.1\";s:7:\"updated\";s:19:\"2019-05-01 10:50:04\";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/5.1.1/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:\"4.9.5\";s:7:\"updated\";s:19:\"2018-03-27 10:30:26\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"नेपाली\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.5/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_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"5.2\";s:7:\"updated\";s:19:\"2019-05-08 12:56:47\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2/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:5:\"nl_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"5.1.1\";s:7:\"updated\";s:19:\"2019-04-28 13:59:03\";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/5.1.1/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:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"5.1.1\";s:7:\"updated\";s:19:\"2019-03-23 09:40:21\";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/5.1.1/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:5:\"5.1.1\";s:7:\"updated\";s:19:\"2019-03-09 16:36:42\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.1.1/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:5:\"4.8.3\";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:62:\"https://downloads.wordpress.org/translation/core/4.8.3/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:7:\"Punjabi\";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:8:\"5.2-beta\";s:7:\"updated\";s:19:\"2019-04-09 16:46:27\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.2-beta/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.1.20\";s:7:\"updated\";s:19:\"2015-03-29 22:19:48\";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.1.20/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:3:\"5.2\";s:7:\"updated\";s:19:\"2019-05-06 22:27:27\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2/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_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"5.1.1\";s:7:\"updated\";s:19:\"2019-04-08 09:37:30\";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/5.1.1/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:3:\"5.1\";s:7:\"updated\";s:19:\"2019-02-22 12:37:09\";s:12:\"english_name\";s:27:\"Portuguese (Portugal, AO90)\";s:11:\"native_name\";s:17:\"Português (AO90)\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.1/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:5:\"pt_AO\";a:8:{s:8:\"language\";s:5:\"pt_AO\";s:7:\"version\";s:3:\"5.2\";s:7:\"updated\";s:19:\"2019-05-08 11:59:02\";s:12:\"english_name\";s:19:\"Portuguese (Angola)\";s:11:\"native_name\";s:20:\"Português de Angola\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2/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: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:0:\"\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:3:\"5.2\";s:7:\"updated\";s:19:\"2019-05-09 06:55:19\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2/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:3:\"5.2\";s:7:\"updated\";s:19:\"2019-05-02 17:07:10\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2/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: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:\"5.1.1\";s:7:\"updated\";s:19:\"2019-03-08 15:30:32\";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/5.1.1/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:\"5.1.1\";s:7:\"updated\";s:19:\"2019-03-09 14:38:41\";s:12:\"english_name\";s:7:\"Saraiki\";s:11:\"native_name\";s:14:\"سرائیکی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.1.1/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:\"4.9.2\";s:7:\"updated\";s:19:\"2018-01-04 13:33:13\";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/4.9.2/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:\"5.1.1\";s:7:\"updated\";s:19:\"2019-04-02 15:10:17\";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/5.1.1/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:3:\"5.2\";s:7:\"updated\";s:19:\"2019-05-07 19:44:35\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2/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:3:\"5.2\";s:7:\"updated\";s:19:\"2019-05-02 17:43:22\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2/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: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: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.1.1\";s:7:\"updated\";s:19:\"2019-03-27 04:33:46\";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.1.1/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:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-30 02:38:08\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/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:3:\"5.2\";s:7:\"updated\";s:19:\"2019-05-08 20:12:10\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2/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:0:\"\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-04-12 12:31:53\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:16:\"ئۇيغۇرچە\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.5/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:3:\"5.2\";s:7:\"updated\";s:19:\"2019-05-07 17:05:24\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/5.2/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:5:\"5.1.1\";s:7:\"updated\";s:19:\"2019-03-31 10:39:40\";s:12:\"english_name\";s:4:\"Urdu\";s:11:\"native_name\";s:8:\"اردو\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.1.1/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:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-01-23 12:32:40\";s:12:\"english_name\";s:5:\"Uzbek\";s:11:\"native_name\";s:11:\"O‘zbekcha\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.3/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:3:\"5.2\";s:7:\"updated\";s:19:\"2019-05-08 09:49:54\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/5.2/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_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:3:\"5.2\";s:7:\"updated\";s:19:\"2019-05-07 06:37:12\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2/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:\"繼續\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2018-12-21 00:57:14\";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/5.0.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:3:\"5.2\";s:7:\"updated\";s:19:\"2019-05-09 17:07:08\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"香港中文版 \";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2/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:\"繼續\";}}}', 'no'),
(145, 'new_admin_email', '[email protected]', 'yes');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(150, '_site_transient_update_themes', 'O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1557455660;s:7:\"checked\";a:5:{s:8:\"colormag\";s:5:\"1.3.8\";s:8:\"news-one\";s:5:\"1.0.0\";s:14:\"twentynineteen\";s:3:\"1.4\";s:15:\"twentyseventeen\";s:3:\"2.2\";s:13:\"twentysixteen\";s:3:\"2.0\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:5:{i:0;a:7:{s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:8:\"colormag\";s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:19:\"2017-05-15 13:03:23\";s:7:\"package\";s:74:\"https://downloads.wordpress.org/translation/theme/colormag/1.2.2/id_ID.zip\";s:10:\"autoupdate\";b:1;}i:1;a:7:{s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:8:\"colormag\";s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:19:\"2017-11-26 17:26:08\";s:7:\"package\";s:74:\"https://downloads.wordpress.org/translation/theme/colormag/1.2.2/it_IT.zip\";s:10:\"autoupdate\";b:1;}i:2;a:7:{s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:14:\"twentynineteen\";s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.4\";s:7:\"updated\";s:19:\"2019-02-01 10:46:53\";s:7:\"package\";s:78:\"https://downloads.wordpress.org/translation/theme/twentynineteen/1.4/it_IT.zip\";s:10:\"autoupdate\";b:1;}i:3;a:7:{s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:15:\"twentyseventeen\";s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"2.2\";s:7:\"updated\";s:19:\"2019-02-01 10:45:40\";s:7:\"package\";s:79:\"https://downloads.wordpress.org/translation/theme/twentyseventeen/2.2/it_IT.zip\";s:10:\"autoupdate\";b:1;}i:4;a:7:{s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:13:\"twentysixteen\";s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:19:\"2019-02-18 20:32:34\";s:7:\"package\";s:77:\"https://downloads.wordpress.org/translation/theme/twentysixteen/2.0/it_IT.zip\";s:10:\"autoupdate\";b:1;}}}', 'no'),
(151, 'current_theme', 'ColorMag', 'yes'),
(152, 'theme_mods_colormag', 'a:24:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:2;}s:18:\"custom_css_post_id\";i:-1;s:11:\"custom_logo\";i:6;s:22:\"colormag_breaking_news\";i:1;s:21:\"colormag_date_display\";i:1;s:30:\"colormag_header_logo_placement\";s:16:\"header_logo_only\";s:24:\"colormag_hide_blog_front\";i:1;s:28:\"colormag_search_icon_in_menu\";i:1;s:28:\"colormag_random_post_in_menu\";i:1;s:29:\"colormag_social_link_activate\";i:1;s:26:\"colormag_home_icon_display\";i:1;s:28:\"colormag_primary_sticky_menu\";i:1;s:31:\"colormag_related_posts_activate\";i:1;s:24:\"colormag_social_facebook\";s:1:\"#\";s:23:\"colormag_social_twitter\";s:1:\"#\";s:26:\"colormag_social_googleplus\";s:1:\"#\";s:25:\"colormag_social_instagram\";s:1:\"#\";s:25:\"colormag_social_pinterest\";s:1:\"#\";s:23:\"colormag_social_youtube\";s:1:\"#\";s:16:\"background_color\";s:6:\"eaeaea\";s:26:\"colormag_date_display_type\";s:13:\"theme_default\";s:36:\"colormag_social_link_location_option\";s:4:\"both\";s:33:\"colormag_social_facebook_checkbox\";i:1;}', 'yes'),
(153, 'theme_switched', '', 'yes'),
(154, '_transient_timeout_colormag_site_library_theme_colormag', '1558061594', 'no'),
(155, '_transient_colormag_site_library_theme_colormag', 'O:8:\"stdClass\":7:{s:4:\"name\";s:8:\"ColorMag\";s:4:\"slug\";s:8:\"colormag\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"homepage\";s:39:\"https://themegrill.com/themes/colormag/\";s:10:\"categories\";O:8:\"stdClass\":4:{s:3:\"all\";s:3:\"All\";s:4:\"blog\";s:4:\"Blog\";s:4:\"news\";s:4:\"News\";s:6:\"others\";s:6:\"Others\";}s:12:\"pagebuilders\";O:8:\"stdClass\":2:{s:7:\"default\";s:7:\"Default\";s:9:\"elementor\";s:9:\"Elementor\";}s:5:\"demos\";O:8:\"stdClass\":11:{s:13:\"colormag-free\";O:8:\"stdClass\":10:{s:5:\"title\";s:8:\"ColorMag\";s:7:\"preview\";s:37:\"https://demo.themegrill.com/colormag/\";s:11:\"description\";s:67:\"This is the default ColorMag demo perfect for your online magazine.\";s:8:\"template\";a:2:{i:0;s:8:\"colormag\";i:1;s:12:\"colormag-pro\";}s:8:\"category\";a:3:{i:0;s:3:\"all\";i:1;s:4:\"news\";i:2;s:4:\"blog\";}s:11:\"pagebuilder\";a:1:{i:0;s:7:\"default\";}s:12:\"plugins_list\";O:8:\"stdClass\":1:{s:13:\"everest-forms\";O:8:\"stdClass\":2:{s:4:\"name\";s:13:\"Everest Forms\";s:4:\"slug\";s:31:\"everest-forms/everest-forms.php\";}}s:12:\"core_options\";O:8:\"stdClass\":1:{s:8:\"blogname\";s:8:\"ColorMag\";}s:19:\"widgets_data_update\";O:8:\"stdClass\":1:{s:19:\"dropdown_categories\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":4:{s:37:\"colormag_featured_posts_slider_widget\";O:8:\"stdClass\":1:{s:1:\"4\";O:8:\"stdClass\":1:{s:8:\"category\";s:6:\"Latest\";}}s:33:\"colormag_highlighted_posts_widget\";O:8:\"stdClass\":1:{s:1:\"3\";O:8:\"stdClass\":1:{s:8:\"category\";s:8:\"FEATURED\";}}s:30:\"colormag_featured_posts_widget\";O:8:\"stdClass\":2:{s:1:\"3\";O:8:\"stdClass\":1:{s:8:\"category\";s:6:\"Health\";}s:1:\"4\";O:8:\"stdClass\":1:{s:8:\"category\";s:10:\"Technology\";}}s:39:\"colormag_featured_posts_vertical_widget\";O:8:\"stdClass\":3:{s:1:\"3\";O:8:\"stdClass\":1:{s:8:\"category\";s:7:\"Fashion\";}s:1:\"4\";O:8:\"stdClass\":1:{s:8:\"category\";s:6:\"Sports\";}s:1:\"5\";O:8:\"stdClass\":1:{s:8:\"category\";s:7:\"General\";}}}}}s:22:\"customizer_data_update\";O:8:\"stdClass\":1:{s:18:\"nav_menu_locations\";O:8:\"stdClass\":1:{s:7:\"primary\";s:7:\"Primary\";}}}s:20:\"colormag-beauty-blog\";O:8:\"stdClass\":10:{s:5:\"title\";s:20:\"ColorMag Beauty Blog\";s:7:\"preview\";s:49:\"https://demo.themegrill.com/colormag-beauty-blog/\";s:11:\"description\";s:53:\"You can use this ColorMag demo for your Beauty Blogs.\";s:8:\"template\";a:2:{i:0;s:8:\"colormag\";i:1;s:12:\"colormag-pro\";}s:8:\"category\";a:2:{i:0;s:3:\"all\";i:1;s:4:\"blog\";}s:11:\"pagebuilder\";a:1:{i:0;s:9:\"elementor\";}s:12:\"plugins_list\";O:8:\"stdClass\":2:{s:9:\"elementor\";O:8:\"stdClass\":2:{s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:23:\"elementor/elementor.php\";}s:13:\"everest-forms\";O:8:\"stdClass\":2:{s:4:\"name\";s:13:\"Everest Forms\";s:4:\"slug\";s:31:\"everest-forms/everest-forms.php\";}}s:12:\"core_options\";O:8:\"stdClass\":2:{s:8:\"blogname\";s:20:\"ColorMag Beauty Blog\";s:13:\"page_on_front\";s:4:\"Home\";}s:21:\"elementor_data_update\";O:8:\"stdClass\":10:{s:4:\"home\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:4:\"Home\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":3:{s:21:\"ColorMag-Posts-Grid-3\";O:8:\"stdClass\":1:{s:2:\"10\";s:4:\"News\";}s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":4:{s:1:\"5\";s:4:\"Hair\";s:1:\"6\";s:7:\"Fashion\";s:1:\"8\";s:6:\"Health\";s:1:\"9\";s:11:\"Eye Make up\";}s:22:\"ColorMag-Posts-Block-6\";O:8:\"stdClass\":1:{s:2:\"10\";s:4:\"News\";}}}}s:7:\"make-up\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:7:\"Make Up\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":1:{s:1:\"9\";s:11:\"Eye Make up\";}s:22:\"ColorMag-Posts-Block-6\";O:8:\"stdClass\":3:{s:1:\"2\";s:17:\"Food & Drinks\";s:1:\"4\";s:7:\"Product\";s:1:\"7\";s:11:\"Beauty Tips\";}}}}s:4:\"hair\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:4:\"Hair\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":1:{s:1:\"5\";s:4:\"Hair\";}s:22:\"ColorMag-Posts-Block-6\";O:8:\"stdClass\":3:{s:1:\"2\";s:17:\"Food & Drinks\";s:1:\"4\";s:7:\"Product\";s:1:\"7\";s:11:\"Beauty Tips\";}}}}s:8:\"products\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:8:\"Products\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":1:{s:1:\"4\";s:7:\"Product\";}s:22:\"ColorMag-Posts-Block-6\";O:8:\"stdClass\":3:{s:1:\"2\";s:17:\"Food & Drinks\";s:1:\"4\";s:7:\"Product\";s:1:\"7\";s:11:\"Beauty Tips\";}}}}s:9:\"lifestyle\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:9:\"Lifestyle\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":1:{s:22:\"ColorMag-Posts-Block-6\";O:8:\"stdClass\":3:{s:1:\"4\";s:7:\"Product\";s:1:\"2\";s:17:\"Food & Drinks\";s:1:\"7\";s:11:\"Beauty Tips\";}}}}s:4:\"food\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:4:\"Food\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":1:{s:1:\"2\";s:17:\"Food & Drinks\";}s:22:\"ColorMag-Posts-Block-6\";O:8:\"stdClass\":3:{s:1:\"4\";s:7:\"Product\";s:1:\"2\";s:17:\"Food & Drinks\";s:1:\"7\";s:11:\"Beauty Tips\";}}}}s:6:\"health\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:6:\"Health\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":1:{s:1:\"8\";s:6:\"Health\";}s:22:\"ColorMag-Posts-Block-6\";O:8:\"stdClass\":3:{s:1:\"2\";s:17:\"Food & Drinks\";s:1:\"4\";s:7:\"Product\";s:1:\"7\";s:11:\"Beauty Tips\";}}}}s:7:\"fashion\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:7:\"Fashion\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":1:{s:1:\"6\";s:7:\"Fashion\";}s:22:\"ColorMag-Posts-Block-6\";O:8:\"stdClass\":3:{s:1:\"2\";s:17:\"Food & Drinks\";s:1:\"4\";s:7:\"Product\";s:1:\"7\";s:11:\"Beauty Tips\";}}}}s:4:\"tips\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:4:\"Tips\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":1:{s:1:\"7\";s:11:\"Beauty Tips\";}s:22:\"ColorMag-Posts-Block-6\";O:8:\"stdClass\":3:{s:1:\"4\";s:7:\"Product\";s:1:\"2\";s:17:\"Food & Drinks\";s:1:\"7\";s:11:\"Beauty Tips\";}}}}s:4:\"news\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:4:\"News\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":1:{s:2:\"10\";s:4:\"News\";}s:22:\"ColorMag-Posts-Block-6\";O:8:\"stdClass\":2:{s:1:\"2\";s:17:\"Food & Drinks\";s:1:\"7\";s:11:\"Beauty Tips\";}}}}}s:22:\"customizer_data_update\";O:8:\"stdClass\":1:{s:18:\"nav_menu_locations\";O:8:\"stdClass\":1:{s:7:\"primary\";s:7:\"Primary\";}}}s:26:\"colormag-business-magazine\";O:8:\"stdClass\":10:{s:5:\"title\";s:26:\"ColorMag Business Magazine\";s:7:\"preview\";s:55:\"https://demo.themegrill.com/colormag-business-magazine/\";s:11:\"description\";s:57:\"Grow your business through blogs with this ColorMag demo.\";s:8:\"template\";a:2:{i:0;s:8:\"colormag\";i:1;s:12:\"colormag-pro\";}s:8:\"category\";a:3:{i:0;s:3:\"all\";i:1;s:4:\"news\";i:2;s:6:\"others\";}s:11:\"pagebuilder\";a:1:{i:0;s:9:\"elementor\";}s:12:\"plugins_list\";O:8:\"stdClass\":2:{s:9:\"elementor\";O:8:\"stdClass\":2:{s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:23:\"elementor/elementor.php\";}s:13:\"everest-forms\";O:8:\"stdClass\":2:{s:4:\"name\";s:13:\"Everest Forms\";s:4:\"slug\";s:31:\"everest-forms/everest-forms.php\";}}s:12:\"core_options\";O:8:\"stdClass\":2:{s:8:\"blogname\";s:26:\"ColorMag Business Magazine\";s:13:\"page_on_front\";s:4:\"Home\";}s:21:\"elementor_data_update\";O:8:\"stdClass\":9:{s:4:\"home\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:4:\"Home\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":5:{s:21:\"ColorMag-Posts-Grid-5\";O:8:\"stdClass\":1:{s:1:\"6\";s:10:\"Employment\";}s:22:\"ColorMag-Posts-Block-1\";O:8:\"stdClass\":1:{s:1:\"5\";s:9:\"Corporate\";}s:22:\"ColorMag-Posts-Block-4\";O:8:\"stdClass\":1:{s:1:\"8\";s:5:\"Money\";}s:22:\"ColorMag-Posts-Block-6\";O:8:\"stdClass\":1:{s:1:\"4\";s:11:\"Investments\";}s:22:\"ColorMag-Posts-Block-9\";O:8:\"stdClass\":1:{s:1:\"9\";s:6:\"Market\";}}}}s:9:\"corporate\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:9:\"Corporate\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":1:{s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":1:{s:1:\"5\";s:9:\"Corporate\";}}}}s:12:\"global-trade\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:12:\"Global Trade\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":1:{s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":1:{s:2:\"14\";s:12:\"Global Trade\";}}}}s:9:\"companies\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:9:\"Companies\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":1:{s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":1:{s:2:\"15\";s:9:\"Companies\";}}}}s:16:\"entrepreneurship\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:16:\"Entrepreneurship\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":1:{s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":1:{s:2:\"16\";s:16:\"Entrepreneurship\";}}}}s:10:\"employment\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:10:\"Employment\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":1:{s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":1:{s:1:\"6\";s:10:\"Employment\";}}}}s:10:\"investment\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:10:\"Investment\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":1:{s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":1:{s:1:\"4\";s:11:\"Investments\";}}}}s:6:\"market\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:6:\"Market\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":1:{s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":1:{s:1:\"9\";s:6:\"Market\";}}}}s:5:\"money\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:5:\"Money\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":1:{s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":1:{s:1:\"8\";s:5:\"Money\";}}}}}s:22:\"customizer_data_update\";O:8:\"stdClass\":1:{s:18:\"nav_menu_locations\";O:8:\"stdClass\":1:{s:7:\"primary\";s:7:\"Primary\";}}}s:13:\"colormag-dark\";O:8:\"stdClass\":10:{s:5:\"title\";s:13:\"ColorMag Dark\";s:7:\"preview\";s:42:\"https://demo.themegrill.com/colormag-dark/\";s:11:\"description\";s:63:\"Use this ColorMag demo to display news in your online magazine.\";s:8:\"template\";a:2:{i:0;s:8:\"colormag\";i:1;s:12:\"colormag-pro\";}s:8:\"category\";a:2:{i:0;s:3:\"all\";i:1;s:4:\"news\";}s:11:\"pagebuilder\";a:1:{i:0;s:9:\"elementor\";}s:12:\"plugins_list\";O:8:\"stdClass\":2:{s:9:\"elementor\";O:8:\"stdClass\":2:{s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:23:\"elementor/elementor.php\";}s:13:\"everest-forms\";O:8:\"stdClass\":2:{s:4:\"name\";s:13:\"Everest Forms\";s:4:\"slug\";s:31:\"everest-forms/everest-forms.php\";}}s:12:\"core_options\";O:8:\"stdClass\":2:{s:8:\"blogname\";s:13:\"ColorMag Dark\";s:13:\"page_on_front\";s:4:\"Home\";}s:21:\"elementor_data_update\";O:8:\"stdClass\":10:{s:4:\"home\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:4:\"Home\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":4:{s:22:\"ColorMag-Posts-Block-1\";O:8:\"stdClass\":2:{s:1:\"9\";s:7:\"Fashion\";s:2:\"11\";s:4:\"News\";}s:22:\"ColorMag-Posts-Block-4\";O:8:\"stdClass\":1:{s:2:\"10\";s:17:\"Food & Health\";}s:22:\"ColorMag-Posts-Block-6\";O:8:\"stdClass\":3:{s:1:\"4\";s:6:\"Travel\";s:1:\"6\";s:5:\"World\";s:1:\"7\";s:10:\"Technology\";}s:21:\"ColorMag-Posts-Grid-5\";O:8:\"stdClass\":1:{s:1:\"8\";s:13:\"Entertainment\";}}}}s:13:\"entertainment\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:13:\"Entertainment\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":1:{s:1:\"8\";s:13:\"Entertainment\";}s:22:\"ColorMag-Posts-Block-4\";O:8:\"stdClass\":1:{s:1:\"8\";s:13:\"Entertainment\";}}}}s:7:\"fashion\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:7:\"Fashion\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":1:{s:1:\"9\";s:7:\"Fashion\";}s:22:\"ColorMag-Posts-Block-4\";O:8:\"stdClass\":1:{s:1:\"9\";s:7:\"Fashion\";}}}}s:11:\"food-health\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:13:\"Food & Health\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":1:{s:2:\"10\";s:17:\"Food & Health\";}s:22:\"ColorMag-Posts-Block-4\";O:8:\"stdClass\":1:{s:2:\"10\";s:17:\"Food & Health\";}}}}s:4:\"news\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:4:\"News\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":1:{s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":3:{s:1:\"2\";s:8:\"Politics\";s:1:\"3\";s:6:\"Sports\";s:1:\"6\";s:5:\"World\";}}}}s:8:\"politics\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:8:\"Politics\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":1:{s:1:\"2\";s:8:\"Politics\";}s:22:\"ColorMag-Posts-Block-4\";O:8:\"stdClass\":1:{s:1:\"2\";s:8:\"Politics\";}}}}s:6:\"sports\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:6:\"Sports\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":1:{s:1:\"3\";s:6:\"Sports\";}s:22:\"ColorMag-Posts-Block-4\";O:8:\"stdClass\":1:{s:1:\"3\";s:6:\"Sports\";}}}}s:10:\"technology\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:10:\"Technology\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":1:{s:1:\"7\";s:10:\"Technology\";}s:22:\"ColorMag-Posts-Block-4\";O:8:\"stdClass\":1:{s:1:\"7\";s:10:\"Technology\";}}}}s:6:\"travel\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:6:\"Travel\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":1:{s:1:\"4\";s:6:\"Travel\";}s:22:\"ColorMag-Posts-Block-4\";O:8:\"stdClass\":1:{s:1:\"4\";s:6:\"Travel\";}}}}s:5:\"world\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:5:\"World\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":1:{s:1:\"6\";s:5:\"World\";}s:22:\"ColorMag-Posts-Block-4\";O:8:\"stdClass\":1:{s:1:\"6\";s:5:\"World\";}}}}}s:22:\"customizer_data_update\";O:8:\"stdClass\":1:{s:18:\"nav_menu_locations\";O:8:\"stdClass\":1:{s:7:\"primary\";s:7:\"Primary\";}}}s:12:\"colormag-pro\";O:8:\"stdClass\":11:{s:5:\"isPro\";b:1;s:5:\"title\";s:12:\"ColorMag Pro\";s:7:\"preview\";s:41:\"https://demo.themegrill.com/colormag-pro/\";s:11:\"description\";s:74:\"The premium version of the default ColorMag demo for your online magazine.\";s:8:\"template\";a:1:{i:0;s:12:\"colormag-pro\";}s:8:\"category\";a:3:{i:0;s:3:\"all\";i:1;s:4:\"news\";i:2;s:4:\"blog\";}s:11:\"pagebuilder\";a:1:{i:0;s:7:\"default\";}s:12:\"plugins_list\";O:8:\"stdClass\":1:{s:13:\"everest-forms\";O:8:\"stdClass\":2:{s:4:\"name\";s:13:\"Everest Forms\";s:4:\"slug\";s:31:\"everest-forms/everest-forms.php\";}}s:12:\"core_options\";O:8:\"stdClass\":1:{s:8:\"blogname\";s:12:\"ColorMag Pro\";}s:19:\"widgets_data_update\";O:8:\"stdClass\":1:{s:19:\"dropdown_categories\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":8:{s:37:\"colormag_featured_posts_slider_widget\";O:8:\"stdClass\":1:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:8:\"Research\";}}s:33:\"colormag_highlighted_posts_widget\";O:8:\"stdClass\":1:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:10:\"Technology\";}}s:30:\"colormag_featured_posts_widget\";O:8:\"stdClass\":1:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:8:\"Business\";}}s:39:\"colormag_featured_posts_vertical_widget\";O:8:\"stdClass\":5:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:6:\"Health\";}s:1:\"3\";O:8:\"stdClass\":1:{s:8:\"category\";s:7:\"Fashion\";}s:1:\"4\";O:8:\"stdClass\":1:{s:8:\"category\";s:8:\"Politics\";}s:1:\"9\";O:8:\"stdClass\":1:{s:8:\"category\";s:10:\"Technology\";}s:2:\"10\";O:8:\"stdClass\":1:{s:8:\"category\";s:6:\"Travel\";}}s:28:\"colormag_default_news_widget\";O:8:\"stdClass\":1:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:9:\"Adventure\";}}s:27:\"colormag_ticker_news_widget\";O:8:\"stdClass\":1:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:6:\"Travel\";}}s:27:\"colormag_slider_news_widget\";O:8:\"stdClass\":1:{s:1:\"7\";O:8:\"stdClass\":1:{s:8:\"category\";s:6:\"Sports\";}}s:40:\"colormag_featured_posts_small_thumbnails\";O:8:\"stdClass\":1:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:10:\"Technology\";}}}}}s:22:\"customizer_data_update\";O:8:\"stdClass\":1:{s:18:\"nav_menu_locations\";O:8:\"stdClass\":2:{s:7:\"primary\";s:7:\"Primary\";s:6:\"footer\";s:6:\"Footer\";}}}s:20:\"colormag-pro-fashion\";O:8:\"stdClass\":11:{s:5:\"isPro\";b:1;s:5:\"title\";s:20:\"ColorMag Pro Fashion\";s:7:\"preview\";s:49:\"https://demo.themegrill.com/colormag-pro-fashion/\";s:11:\"description\";s:66:\"Be the fashion advisor for your audience using this ColorMag Demo.\";s:8:\"template\";a:1:{i:0;s:12:\"colormag-pro\";}s:8:\"category\";a:4:{i:0;s:3:\"all\";i:1;s:4:\"blog\";i:2;s:4:\"news\";i:3;s:6:\"others\";}s:11:\"pagebuilder\";a:1:{i:0;s:7:\"default\";}s:12:\"plugins_list\";O:8:\"stdClass\":1:{s:13:\"everest-forms\";O:8:\"stdClass\":2:{s:4:\"name\";s:13:\"Everest Forms\";s:4:\"slug\";s:31:\"everest-forms/everest-forms.php\";}}s:12:\"core_options\";O:8:\"stdClass\":1:{s:8:\"blogname\";s:20:\"ColorMag Pro Fashion\";}s:19:\"widgets_data_update\";O:8:\"stdClass\":1:{s:19:\"dropdown_categories\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":8:{s:37:\"colormag_featured_posts_slider_widget\";O:8:\"stdClass\":1:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:6:\"Trends\";}}s:33:\"colormag_highlighted_posts_widget\";O:8:\"stdClass\":1:{s:1:\"3\";O:8:\"stdClass\":1:{s:8:\"category\";s:12:\"Mens Fashion\";}}s:30:\"colormag_featured_posts_widget\";O:8:\"stdClass\":1:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:11:\"Accessories\";}}s:39:\"colormag_featured_posts_vertical_widget\";O:8:\"stdClass\":4:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:6:\"Makeup\";}s:1:\"3\";O:8:\"stdClass\":1:{s:8:\"category\";s:12:\"Mens Fashion\";}s:1:\"4\";O:8:\"stdClass\":1:{s:8:\"category\";s:14:\"Womans Fashion\";}s:1:\"9\";O:8:\"stdClass\":1:{s:8:\"category\";s:7:\"Wedding\";}}s:28:\"colormag_default_news_widget\";O:8:\"stdClass\":1:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:6:\"Outfit\";}}s:27:\"colormag_ticker_news_widget\";O:8:\"stdClass\":2:{s:1:\"3\";O:8:\"stdClass\":1:{s:8:\"category\";s:6:\"Makeup\";}s:1:\"4\";O:8:\"stdClass\":1:{s:8:\"category\";s:12:\"Mens Fashion\";}}s:27:\"colormag_slider_news_widget\";O:8:\"stdClass\":1:{s:1:\"7\";O:8:\"stdClass\":1:{s:8:\"category\";s:9:\"Glamorous\";}}s:40:\"colormag_featured_posts_small_thumbnails\";O:8:\"stdClass\":1:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:6:\"Outfit\";}}}}}s:22:\"customizer_data_update\";O:8:\"stdClass\":1:{s:18:\"nav_menu_locations\";O:8:\"stdClass\":2:{s:7:\"primary\";s:7:\"Primary\";s:6:\"footer\";s:6:\"Footer\";}}}s:23:\"colormag-pro-technology\";O:8:\"stdClass\":11:{s:5:\"isPro\";b:1;s:5:\"title\";s:23:\"ColorMag Pro Technology\";s:7:\"preview\";s:52:\"https://demo.themegrill.com/colormag-pro-technology/\";s:11:\"description\";s:66:\"Use this ColorMag demo to update blogs on the latest technologies.\";s:8:\"template\";a:1:{i:0;s:12:\"colormag-pro\";}s:8:\"category\";a:4:{i:0;s:3:\"all\";i:1;s:4:\"blog\";i:2;s:4:\"news\";i:3;s:6:\"others\";}s:11:\"pagebuilder\";a:1:{i:0;s:7:\"default\";}s:12:\"plugins_list\";O:8:\"stdClass\":1:{s:13:\"everest-forms\";O:8:\"stdClass\":2:{s:4:\"name\";s:13:\"Everest Forms\";s:4:\"slug\";s:31:\"everest-forms/everest-forms.php\";}}s:12:\"core_options\";O:8:\"stdClass\":1:{s:8:\"blogname\";s:23:\"ColorMag Pro Technology\";}s:19:\"widgets_data_update\";O:8:\"stdClass\":1:{s:19:\"dropdown_categories\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":9:{s:37:\"colormag_featured_posts_slider_widget\";O:8:\"stdClass\":1:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:8:\"Featured\";}}s:33:\"colormag_highlighted_posts_widget\";O:8:\"stdClass\":1:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:11:\"Highlighted\";}}s:30:\"colormag_featured_posts_widget\";O:8:\"stdClass\":2:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:11:\"Accessories\";}s:1:\"4\";O:8:\"stdClass\":1:{s:8:\"category\";s:6:\"Camera\";}}s:39:\"colormag_featured_posts_vertical_widget\";O:8:\"stdClass\":5:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:7:\"Android\";}s:1:\"3\";O:8:\"stdClass\":1:{s:8:\"category\";s:5:\"Apple\";}s:1:\"4\";O:8:\"stdClass\":1:{s:8:\"category\";s:6:\"Tablet\";}s:1:\"5\";O:8:\"stdClass\":1:{s:8:\"category\";s:6:\"Mobile\";}s:1:\"8\";O:8:\"stdClass\":1:{s:8:\"category\";s:4:\"Game\";}}s:28:\"colormag_default_news_widget\";O:8:\"stdClass\":1:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:6:\"Laptop\";}}s:27:\"colormag_ticker_news_widget\";O:8:\"stdClass\":1:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:10:\"Television\";}}s:27:\"colormag_slider_news_widget\";O:8:\"stdClass\":1:{s:1:\"7\";O:8:\"stdClass\":1:{s:8:\"category\";s:9:\"Glamorous\";}}s:40:\"colormag_featured_posts_small_thumbnails\";O:8:\"stdClass\":2:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:11:\"Accessories\";}s:1:\"3\";O:8:\"stdClass\":1:{s:8:\"category\";s:6:\"Tablet\";}}s:31:\"colormag_news_in_picture_widget\";O:8:\"stdClass\":1:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:11:\"Top Product\";}}}}}s:22:\"customizer_data_update\";O:8:\"stdClass\":1:{s:18:\"nav_menu_locations\";O:8:\"stdClass\":2:{s:7:\"primary\";s:12:\"Primary Menu\";s:6:\"footer\";s:11:\"Footer Menu\";}}}s:19:\"colormag-pro-sports\";O:8:\"stdClass\":11:{s:5:\"isPro\";b:1;s:5:\"title\";s:19:\"ColorMag Pro Sports\";s:7:\"preview\";s:48:\"https://demo.themegrill.com/colormag-pro-sports/\";s:11:\"description\";s:59:\"Share your sports news and updates with this ColorMag Demo.\";s:8:\"template\";a:1:{i:0;s:12:\"colormag-pro\";}s:8:\"category\";a:3:{i:0;s:3:\"all\";i:1;s:4:\"news\";i:2;s:4:\"blog\";}s:11:\"pagebuilder\";a:1:{i:0;s:7:\"default\";}s:12:\"plugins_list\";O:8:\"stdClass\":1:{s:13:\"everest-forms\";O:8:\"stdClass\":2:{s:4:\"name\";s:13:\"Everest Forms\";s:4:\"slug\";s:31:\"everest-forms/everest-forms.php\";}}s:12:\"core_options\";O:8:\"stdClass\":1:{s:8:\"blogname\";s:19:\"ColorMag Pro Sports\";}s:19:\"widgets_data_update\";O:8:\"stdClass\":1:{s:19:\"dropdown_categories\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":8:{s:37:\"colormag_featured_posts_slider_widget\";O:8:\"stdClass\":1:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:8:\"Featured\";}}s:33:\"colormag_highlighted_posts_widget\";O:8:\"stdClass\":1:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:11:\"Highlighted\";}}s:30:\"colormag_featured_posts_widget\";O:8:\"stdClass\":1:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:7:\"Athlete\";}}s:39:\"colormag_featured_posts_vertical_widget\";O:8:\"stdClass\":4:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:5:\"Women\";}s:1:\"5\";O:8:\"stdClass\":1:{s:8:\"category\";s:13:\"Snow Olympics\";}s:1:\"6\";O:8:\"stdClass\":1:{s:8:\"category\";s:4:\"Race\";}s:1:\"7\";O:8:\"stdClass\":1:{s:8:\"category\";s:14:\"Figure Skating\";}}s:28:\"colormag_default_news_widget\";O:8:\"stdClass\":1:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:8:\"Football\";}}s:27:\"colormag_slider_news_widget\";O:8:\"stdClass\":1:{s:1:\"7\";O:8:\"stdClass\":1:{s:8:\"category\";s:7:\"Athlete\";}}s:40:\"colormag_featured_posts_small_thumbnails\";O:8:\"stdClass\":1:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:8:\"Featured\";}}s:31:\"colormag_news_in_picture_widget\";O:8:\"stdClass\":1:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:11:\"Top Product\";}}}}}s:22:\"customizer_data_update\";O:8:\"stdClass\":1:{s:18:\"nav_menu_locations\";O:8:\"stdClass\":1:{s:7:\"primary\";s:12:\"Primary Menu\";}}}s:20:\"colormag-pro-recipes\";O:8:\"stdClass\":10:{s:5:\"isPro\";b:1;s:5:\"title\";s:20:\"ColorMag Food Recipe\";s:7:\"preview\";s:49:\"https://demo.themegrill.com/colormag-pro-recipes/\";s:11:\"description\";s:67:\"Want to show your food recipes? Here’s the ColorMag demo for you.\";s:8:\"template\";a:1:{i:0;s:12:\"colormag-pro\";}s:8:\"category\";a:2:{i:0;s:3:\"all\";i:1;s:6:\"others\";}s:11:\"pagebuilder\";a:1:{i:0;s:9:\"elementor\";}s:12:\"plugins_list\";O:8:\"stdClass\":2:{s:9:\"elementor\";O:8:\"stdClass\":2:{s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:23:\"elementor/elementor.php\";}s:13:\"everest-forms\";O:8:\"stdClass\":2:{s:4:\"name\";s:13:\"Everest Forms\";s:4:\"slug\";s:31:\"everest-forms/everest-forms.php\";}}s:12:\"core_options\";O:8:\"stdClass\":2:{s:8:\"blogname\";s:19:\"ColorMag Pro Recipe\";s:13:\"page_on_front\";s:8:\"Homepage\";}s:21:\"elementor_data_update\";O:8:\"stdClass\":13:{s:8:\"homepage\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:8:\"Homepage\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":6:{s:22:\"ColorMag-Posts-Block-6\";O:8:\"stdClass\":2:{s:2:\"10\";s:7:\"Popular\";s:2:\"14\";s:4:\"News\";}s:22:\"ColorMag-Posts-Block-7\";O:8:\"stdClass\":1:{s:1:\"9\";s:7:\"Risotto\";}s:22:\"ColorMag-Posts-Block-8\";O:8:\"stdClass\":1:{s:1:\"4\";s:4:\"Cake\";}s:22:\"ColorMag-Posts-Block-9\";O:8:\"stdClass\":2:{s:1:\"6\";s:13:\"Quick recipes\";s:1:\"8\";s:6:\"Pizzas\";}s:21:\"ColorMag-Posts-Grid-3\";O:8:\"stdClass\":1:{s:1:\"5\";s:6:\"Desert\";}s:21:\"ColorMag-Posts-Grid-4\";O:8:\"stdClass\":1:{s:1:\"6\";s:13:\"Quick recipes\";}}}}s:6:\"baking\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:6:\"Baking\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-5\";O:8:\"stdClass\":1:{s:1:\"3\";s:6:\"Baking\";}s:22:\"ColorMag-Posts-Block-9\";O:8:\"stdClass\":1:{s:2:\"14\";s:4:\"News\";}}}}s:9:\"breakfast\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:9:\"Breakfast\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-5\";O:8:\"stdClass\":1:{s:2:\"13\";s:9:\"Breakfast\";}s:22:\"ColorMag-Posts-Block-6\";O:8:\"stdClass\":1:{s:2:\"14\";s:4:\"News\";}}}}s:6:\"desert\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:6:\"Desert\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-5\";O:8:\"stdClass\":1:{s:1:\"5\";s:6:\"Desert\";}s:22:\"ColorMag-Posts-Block-6\";O:8:\"stdClass\":1:{s:2:\"14\";s:4:\"News\";}}}}s:4:\"news\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:4:\"News\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-5\";O:8:\"stdClass\":1:{s:2:\"14\";s:4:\"News\";}s:22:\"ColorMag-Posts-Block-6\";O:8:\"stdClass\":1:{s:2:\"14\";s:4:\"News\";}}}}s:7:\"noodels\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:7:\"Noodels\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-5\";O:8:\"stdClass\":1:{s:1:\"7\";s:7:\"Noddles\";}s:22:\"ColorMag-Posts-Block-6\";O:8:\"stdClass\":1:{s:2:\"14\";s:4:\"News\";}}}}s:5:\"pasta\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:5:\"Pasta\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-5\";O:8:\"stdClass\":1:{s:2:\"12\";s:5:\"Pasta\";}s:22:\"ColorMag-Posts-Block-6\";O:8:\"stdClass\":1:{s:2:\"14\";s:4:\"News\";}}}}s:6:\"pizzas\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:6:\"Pizzas\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-5\";O:8:\"stdClass\":1:{s:1:\"8\";s:6:\"Pizzas\";}s:22:\"ColorMag-Posts-Block-6\";O:8:\"stdClass\":1:{s:2:\"14\";s:4:\"News\";}}}}s:7:\"popular\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:7:\"Popular\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-5\";O:8:\"stdClass\":1:{s:2:\"10\";s:7:\"Popular\";}s:22:\"ColorMag-Posts-Block-6\";O:8:\"stdClass\":1:{s:2:\"14\";s:4:\"News\";}}}}s:13:\"quick-recipes\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:13:\"Quick Recipes\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-5\";O:8:\"stdClass\":1:{s:1:\"6\";s:13:\"Quick recipes\";}s:22:\"ColorMag-Posts-Block-6\";O:8:\"stdClass\":1:{s:2:\"14\";s:4:\"News\";}}}}s:7:\"risotto\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:7:\"Risotto\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-5\";O:8:\"stdClass\":1:{s:1:\"9\";s:7:\"Risotto\";}s:22:\"ColorMag-Posts-Block-6\";O:8:\"stdClass\":1:{s:2:\"14\";s:4:\"News\";}}}}s:8:\"smoothie\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:8:\"Smoothie\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-5\";O:8:\"stdClass\":1:{s:2:\"11\";s:8:\"Smoothie\";}s:22:\"ColorMag-Posts-Block-6\";O:8:\"stdClass\":1:{s:2:\"14\";s:4:\"News\";}}}}s:22:\"customizer_data_update\";O:8:\"stdClass\":1:{s:18:\"nav_menu_locations\";O:8:\"stdClass\":1:{s:7:\"primary\";s:7:\"primary\";}}}}s:24:\"colormag-pro-health-blog\";O:8:\"stdClass\":12:{s:5:\"isPro\";b:1;s:5:\"title\";s:20:\"ColorMag Health Blog\";s:7:\"preview\";s:53:\"https://demo.themegrill.com/colormag-pro-health-blog/\";s:11:\"description\";s:58:\"Give healthy tips to your viewers with this ColorMag Demo.\";s:8:\"template\";a:1:{i:0;s:12:\"colormag-pro\";}s:8:\"category\";a:3:{i:0;s:3:\"all\";i:1;s:4:\"blog\";i:2;s:6:\"others\";}s:11:\"pagebuilder\";a:1:{i:0;s:9:\"elementor\";}s:12:\"plugins_list\";O:8:\"stdClass\":2:{s:9:\"elementor\";O:8:\"stdClass\":2:{s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:23:\"elementor/elementor.php\";}s:13:\"everest-forms\";O:8:\"stdClass\":2:{s:4:\"name\";s:13:\"Everest Forms\";s:4:\"slug\";s:31:\"everest-forms/everest-forms.php\";}}s:12:\"core_options\";O:8:\"stdClass\":2:{s:8:\"blogname\";s:20:\"ColorMag Health Blog\";s:13:\"page_on_front\";s:4:\"Home\";}s:19:\"widgets_data_update\";O:8:\"stdClass\":1:{s:19:\"dropdown_categories\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":1:{s:40:\"colormag_featured_posts_small_thumbnails\";O:8:\"stdClass\":1:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:17:\"Tips & Guides\";}}}}}s:21:\"elementor_data_update\";O:8:\"stdClass\":8:{s:4:\"home\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:4:\"Home\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":8:{s:22:\"ColorMag-Posts-Block-1\";O:8:\"stdClass\":1:{s:2:\"13\";s:20:\"Food & Nutrition\";}s:22:\"ColorMag-Posts-Block-4\";O:8:\"stdClass\":1:{s:1:\"9\";s:17:\"Tips & Guides\";}s:22:\"ColorMag-Posts-Block-6\";O:8:\"stdClass\":1:{s:2:\"17\";s:7:\"Disease\";}s:22:\"ColorMag-Posts-Block-7\";O:8:\"stdClass\":2:{s:2:\"15\";s:5:\"Drugs\";s:2:\"14\";s:4:\"Tech\";}s:22:\"ColorMag-Posts-Block-8\";O:8:\"stdClass\":1:{s:1:\"3\";s:7:\"General\";}s:22:\"ColorMag-Posts-Block-9\";O:8:\"stdClass\":2:{s:1:\"6\";s:13:\"Quick recipes\";s:1:\"8\";s:6:\"Pizzas\";}s:21:\"ColorMag-Posts-Grid-4\";O:8:\"stdClass\":1:{s:1:\"7\";s:7:\"Fitness\";}s:21:\"ColorMag-Posts-Grid-6\";O:8:\"stdClass\":1:{s:1:\"6\";s:13:\"Quick recipes\";}}}}s:7:\"disease\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:7:\"Disease\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-5\";O:8:\"stdClass\":2:{s:2:\"13\";s:20:\"Food & Nutrition\";s:2:\"17\";s:7:\"Disease\";}s:22:\"ColorMag-Posts-Block-7\";O:8:\"stdClass\":1:{s:1:\"3\";s:7:\"General\";}}}}s:5:\"drugs\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:5:\"Drugs\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-5\";O:8:\"stdClass\":1:{s:2:\"15\";s:5:\"Drugs\";}s:22:\"ColorMag-Posts-Block-7\";O:8:\"stdClass\":1:{s:1:\"3\";s:7:\"General\";}}}}s:7:\"fitness\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:7:\"Fitness\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-5\";O:8:\"stdClass\":1:{s:1:\"7\";s:7:\"Fitness\";}s:22:\"ColorMag-Posts-Block-7\";O:8:\"stdClass\":1:{s:1:\"3\";s:7:\"General\";}}}}s:14:\"food-nutrition\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:16:\"Food & Nutrition\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-5\";O:8:\"stdClass\":1:{s:2:\"13\";s:20:\"Food & Nutrition\";}s:22:\"ColorMag-Posts-Block-7\";O:8:\"stdClass\":1:{s:1:\"3\";s:7:\"General\";}}}}s:7:\"general\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:7:\"General\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-5\";O:8:\"stdClass\":1:{s:1:\"3\";s:7:\"General\";}s:22:\"ColorMag-Posts-Block-7\";O:8:\"stdClass\":1:{s:1:\"3\";s:7:\"General\";}}}}s:4:\"tech\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:4:\"Tech\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-5\";O:8:\"stdClass\":1:{s:2:\"14\";s:4:\"Tech\";}s:22:\"ColorMag-Posts-Block-7\";O:8:\"stdClass\":1:{s:1:\"3\";s:7:\"General\";}}}}s:11:\"tips-guides\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:13:\"Tips & Guides\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-5\";O:8:\"stdClass\":1:{s:2:\"13\";s:20:\"Food & Nutrition\";}s:22:\"ColorMag-Posts-Block-7\";O:8:\"stdClass\":1:{s:1:\"3\";s:7:\"General\";}}}}}s:22:\"customizer_data_update\";O:8:\"stdClass\":1:{s:18:\"nav_menu_locations\";O:8:\"stdClass\":1:{s:7:\"primary\";s:7:\"Primary\";}}}s:18:\"colormag-pro-music\";O:8:\"stdClass\":11:{s:5:\"isPro\";b:1;s:5:\"title\";s:18:\"ColorMag Pro Music\";s:7:\"preview\";s:47:\"https://demo.themegrill.com/colormag-pro-music/\";s:11:\"description\";s:58:\"You can show your taste of music using this ColorMag Demo.\";s:8:\"template\";a:1:{i:0;s:12:\"colormag-pro\";}s:8:\"category\";a:2:{i:0;s:3:\"all\";i:1;s:6:\"others\";}s:11:\"pagebuilder\";a:1:{i:0;s:9:\"elementor\";}s:12:\"plugins_list\";O:8:\"stdClass\":2:{s:9:\"elementor\";O:8:\"stdClass\":2:{s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:23:\"elementor/elementor.php\";}s:13:\"everest-forms\";O:8:\"stdClass\":2:{s:4:\"name\";s:13:\"Everest Forms\";s:4:\"slug\";s:31:\"everest-forms/everest-forms.php\";}}s:12:\"core_options\";O:8:\"stdClass\":2:{s:8:\"blogname\";s:18:\"ColorMag Pro Music\";s:13:\"page_on_front\";s:4:\"Home\";}s:21:\"elementor_data_update\";O:8:\"stdClass\":7:{s:4:\"home\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:4:\"Home\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":5:{s:22:\"ColorMag-Posts-Block-3\";O:8:\"stdClass\":1:{s:1:\"7\";s:5:\"Video\";}s:22:\"ColorMag-Posts-Block-4\";O:8:\"stdClass\":1:{s:1:\"6\";s:5:\"Event\";}s:22:\"ColorMag-Posts-Block-6\";O:8:\"stdClass\":2:{s:1:\"6\";s:5:\"Event\";s:2:\"10\";s:4:\"News\";}s:22:\"ColorMag-Posts-Block-7\";O:8:\"stdClass\":4:{s:1:\"3\";s:5:\"Music\";s:2:\"11\";s:4:\"Rock\";s:2:\"12\";s:4:\"Jazz\";s:2:\"13\";s:3:\"Pop\";}s:21:\"ColorMag-Posts-Grid-3\";O:8:\"stdClass\":1:{s:1:\"6\";s:5:\"Event\";}}}}s:6:\"events\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:6:\"Events\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-4\";O:8:\"stdClass\":2:{s:1:\"4\";s:10:\"High light\";s:1:\"6\";s:5:\"Event\";}s:22:\"ColorMag-Posts-Block-9\";O:8:\"stdClass\":1:{s:2:\"10\";s:4:\"News\";}}}}s:4:\"jazz\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:4:\"Jazz\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-5\";O:8:\"stdClass\":1:{s:2:\"12\";s:4:\"Jazz\";}s:22:\"ColorMag-Posts-Block-7\";O:8:\"stdClass\":2:{s:1:\"4\";s:10:\"High light\";s:1:\"6\";s:5:\"Event\";}}}}s:4:\"news\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:4:\"News\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":3:{s:22:\"ColorMag-Posts-Block-5\";O:8:\"stdClass\":1:{s:1:\"4\";s:10:\"High light\";}s:22:\"ColorMag-Posts-Block-7\";O:8:\"stdClass\":2:{s:1:\"4\";s:10:\"High light\";s:1:\"6\";s:5:\"Event\";}s:22:\"ColorMag-Posts-Block-9\";O:8:\"stdClass\":1:{s:1:\"6\";s:5:\"Event\";}}}}s:3:\"pop\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:3:\"Pop\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-5\";O:8:\"stdClass\":1:{s:2:\"13\";s:3:\"Pop\";}s:22:\"ColorMag-Posts-Block-7\";O:8:\"stdClass\":1:{s:2:\"10\";s:4:\"News\";}}}}s:4:\"rock\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:4:\"Rock\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-5\";O:8:\"stdClass\":1:{s:2:\"11\";s:4:\"Rock\";}s:22:\"ColorMag-Posts-Block-7\";O:8:\"stdClass\":1:{s:2:\"10\";s:4:\"News\";}}}}s:6:\"videos\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:6:\"Videos\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":1:{s:22:\"ColorMag-Posts-Block-3\";O:8:\"stdClass\":1:{s:1:\"7\";s:5:\"Video\";}}}}}s:22:\"customizer_data_update\";O:8:\"stdClass\":1:{s:18:\"nav_menu_locations\";O:8:\"stdClass\":1:{s:7:\"primary\";s:7:\"Primary\";}}}}}', 'no'),
(156, 'widget_colormag_featured_posts_slider_widget', 'a:2:{s:12:\"_multiwidget\";i:1;i:2;a:1:{s:6:\"number\";i:2;}}', 'yes'),
(157, 'widget_colormag_highlighted_posts_widget', 'a:2:{s:12:\"_multiwidget\";i:1;i:2;a:1:{s:6:\"number\";i:4;}}', 'yes'),
(158, 'widget_colormag_featured_posts_widget', 'a:3:{s:12:\"_multiwidget\";i:1;i:2;a:2:{s:5:\"title\";s:6:\"HEALTH\";s:6:\"number\";i:5;}i:3;a:3:{s:5:\"title\";s:10:\"TECHNOLOGY\";s:4:\"text\";s:39:\"Check out technology changing the life.\";s:6:\"number\";i:4;}}', 'yes'),
(159, 'widget_colormag_featured_posts_vertical_widget', 'a:4:{s:12:\"_multiwidget\";i:1;i:2;a:2:{s:5:\"title\";s:4:\"NEWS\";s:6:\"number\";i:2;}i:3;a:2:{s:5:\"title\";s:7:\"FASHION\";s:6:\"number\";i:4;}i:4;a:2:{s:5:\"title\";s:6:\"SPORTS\";s:6:\"number\";i:4;}}', 'yes'),
(160, 'widget_colormag_728x90_advertisement_widget', 'a:2:{s:12:\"_multiwidget\";i:1;i:2;a:2:{s:17:\"728x90_image_link\";s:41:\"https://demo.themegrill.com/colormag-pro/\";s:16:\"728x90_image_url\";s:71:\"http://localhost/wp/K-BESAR/wp-content/themes/colormag/img/ad-large.jpg\";}}', 'yes'),
(161, 'widget_colormag_300x250_advertisement_widget', 'a:2:{s:12:\"_multiwidget\";i:1;i:2;a:3:{s:5:\"title\";s:12:\"ColorMag Pro\";s:18:\"300x250_image_link\";s:41:\"https://demo.themegrill.com/colormag-pro/\";s:17:\"300x250_image_url\";s:72:\"http://localhost/wp/K-BESAR/wp-content/themes/colormag/img/ad-medium.jpg\";}}', 'yes'),
(162, 'widget_colormag_125x125_advertisement_widget', 'a:2:{s:12:\"_multiwidget\";i:1;i:2;a:9:{s:5:\"title\";s:15:\"TG: 125x125 Ads\";s:20:\"125x125_image_link_1\";s:23:\"https://themegrill.com/\";s:19:\"125x125_image_url_1\";s:71:\"http://localhost/wp/K-BESAR/wp-content/themes/colormag/img/ad-small.jpg\";s:20:\"125x125_image_link_2\";s:23:\"https://themegrill.com/\";s:19:\"125x125_image_url_2\";s:71:\"http://localhost/wp/K-BESAR/wp-content/themes/colormag/img/ad-small.jpg\";s:20:\"125x125_image_link_3\";s:23:\"https://themegrill.com/\";s:19:\"125x125_image_url_3\";s:71:\"http://localhost/wp/K-BESAR/wp-content/themes/colormag/img/ad-small.jpg\";s:20:\"125x125_image_link_4\";s:23:\"https://themegrill.com/\";s:19:\"125x125_image_url_4\";s:71:\"http://localhost/wp/K-BESAR/wp-content/themes/colormag/img/ad-small.jpg\";}}', 'yes'),
(163, '_transient_timeout_colormag_theme_switched', '1557714663', 'no'),
(164, '_transient_colormag_theme_switched', 'colormag_new_theme_notice', 'no'),
(165, '_transient_timeout_plugin_slugs', '1557543194', 'no'),
(166, '_transient_plugin_slugs', 'a:4:{i:0;s:19:\"akismet/akismet.php\";i:1;s:31:\"everest-forms/everest-forms.php\";i:2;s:9:\"hello.php\";i:3;s:53:\"themegrill-demo-importer/themegrill-demo-importer.php\";}', 'no'),
(167, 'recently_activated', 'a:0:{}', 'yes'),
(171, '_site_transient_update_plugins', 'O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1557455682;s:7:\"checked\";a:4:{s:19:\"akismet/akismet.php\";s:5:\"4.1.1\";s:31:\"everest-forms/everest-forms.php\";s:5:\"1.4.8\";s:9:\"hello.php\";s:5:\"1.7.2\";s:53:\"themegrill-demo-importer/themegrill-demo-importer.php\";s:5:\"1.5.7\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:3:{i:0;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:7:\"akismet\";s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:19:\"2015-04-21 23:53:01\";s:7:\"package\";s:72:\"https://downloads.wordpress.org/translation/plugin/akismet/3.1/id_ID.zip\";s:10:\"autoupdate\";b:1;}i:1;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:7:\"akismet\";s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2018-11-12 20:00:42\";s:7:\"package\";s:74:\"https://downloads.wordpress.org/translation/plugin/akismet/4.1.1/it_IT.zip\";s:10:\"autoupdate\";b:1;}i:2;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:11:\"hello-dolly\";s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:19:\"2019-03-27 21:04:06\";s:7:\"package\";s:76:\"https://downloads.wordpress.org/translation/plugin/hello-dolly/1.6/it_IT.zip\";s:10:\"autoupdate\";b:1;}}s:9:\"no_update\";a:4:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":9:{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:\"4.1.1\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.1.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}}s:31:\"everest-forms/everest-forms.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:27:\"w.org/plugins/everest-forms\";s:4:\"slug\";s:13:\"everest-forms\";s:6:\"plugin\";s:31:\"everest-forms/everest-forms.php\";s:11:\"new_version\";s:5:\"1.4.8\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/everest-forms/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/everest-forms.1.4.8.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/everest-forms/assets/icon-128x128.png?rev=1981744\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:68:\"https://ps.w.org/everest-forms/assets/banner-772x250.png?rev=1814073\";}s:11:\"banners_rtl\";a:0:{}}s:9:\"hello.php\";O:8:\"stdClass\":9:{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:3:\"1.6\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/hello-dolly.1.6.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:1:{s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}}s:53:\"themegrill-demo-importer/themegrill-demo-importer.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:38:\"w.org/plugins/themegrill-demo-importer\";s:4:\"slug\";s:24:\"themegrill-demo-importer\";s:6:\"plugin\";s:53:\"themegrill-demo-importer/themegrill-demo-importer.php\";s:11:\"new_version\";s:5:\"1.5.7\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/themegrill-demo-importer/\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/plugin/themegrill-demo-importer.1.5.7.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/themegrill-demo-importer/assets/icon-256x256.png?rev=1928438\";s:2:\"1x\";s:77:\"https://ps.w.org/themegrill-demo-importer/assets/icon-128x128.png?rev=1928438\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:80:\"https://ps.w.org/themegrill-demo-importer/assets/banner-1544x500.png?rev=1928438\";s:2:\"1x\";s:79:\"https://ps.w.org/themegrill-demo-importer/assets/banner-772x250.png?rev=1928438\";}s:11:\"banners_rtl\";a:0:{}}}}', 'no'),
(174, 'everest_forms_disable_user_details', 'no', 'yes'),
(175, 'everest_forms_recaptcha_site_key', '', 'yes'),
(176, 'everest_forms_recaptcha_site_secret', '', 'yes'),
(177, 'everest_forms_email_template', 'default', 'yes'),
(178, 'everest_forms_required_validation', 'This field is required.', 'yes'),
(179, 'everest_forms_url_validation', 'Please enter a valid URL.', 'yes'),
(180, 'everest_forms_email_validation', 'Please enter a valid email address.', 'yes'),
(181, 'everest_forms_number_validation', 'Please enter a valid number.', 'yes'),
(182, 'everest_forms_default_form_page_id', '5', 'yes'),
(185, 'everest_forms_version', '1.4.8', 'yes'),
(186, 'everest_forms_db_version', '1.4.8', 'yes'),
(187, 'everest_forms_admin_notices', 'a:0:{}', 'yes'),
(189, '_transient_timeout__tg_demo_importer_activation_redirect', '1557455620', 'no'),
(190, '_transient__tg_demo_importer_activation_redirect', '1', 'no'),
(191, '_transient_timeout_themegrill_demo_importer_packages', '1558060397', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(192, '_transient_themegrill_demo_importer_packages', 'O:8:\"stdClass\":7:{s:4:\"name\";s:8:\"ColorMag\";s:4:\"slug\";s:8:\"colormag\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"homepage\";s:39:\"https://themegrill.com/themes/colormag/\";s:10:\"categories\";O:8:\"stdClass\":4:{s:3:\"all\";s:3:\"All\";s:4:\"blog\";s:4:\"Blog\";s:4:\"news\";s:4:\"News\";s:6:\"others\";s:6:\"Others\";}s:12:\"pagebuilders\";O:8:\"stdClass\":2:{s:7:\"default\";s:7:\"Default\";s:9:\"elementor\";s:9:\"Elementor\";}s:5:\"demos\";O:8:\"stdClass\":11:{s:13:\"colormag-free\";O:8:\"stdClass\":10:{s:5:\"title\";s:8:\"ColorMag\";s:7:\"preview\";s:37:\"https://demo.themegrill.com/colormag/\";s:11:\"description\";s:67:\"This is the default ColorMag demo perfect for your online magazine.\";s:8:\"template\";a:2:{i:0;s:8:\"colormag\";i:1;s:12:\"colormag-pro\";}s:8:\"category\";a:3:{i:0;s:3:\"all\";i:1;s:4:\"news\";i:2;s:4:\"blog\";}s:11:\"pagebuilder\";a:1:{i:0;s:7:\"default\";}s:12:\"plugins_list\";O:8:\"stdClass\":1:{s:13:\"everest-forms\";O:8:\"stdClass\":2:{s:4:\"name\";s:13:\"Everest Forms\";s:4:\"slug\";s:31:\"everest-forms/everest-forms.php\";}}s:12:\"core_options\";O:8:\"stdClass\":1:{s:8:\"blogname\";s:8:\"ColorMag\";}s:19:\"widgets_data_update\";O:8:\"stdClass\":1:{s:19:\"dropdown_categories\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":4:{s:37:\"colormag_featured_posts_slider_widget\";O:8:\"stdClass\":1:{s:1:\"4\";O:8:\"stdClass\":1:{s:8:\"category\";s:6:\"Latest\";}}s:33:\"colormag_highlighted_posts_widget\";O:8:\"stdClass\":1:{s:1:\"3\";O:8:\"stdClass\":1:{s:8:\"category\";s:8:\"FEATURED\";}}s:30:\"colormag_featured_posts_widget\";O:8:\"stdClass\":2:{s:1:\"3\";O:8:\"stdClass\":1:{s:8:\"category\";s:6:\"Health\";}s:1:\"4\";O:8:\"stdClass\":1:{s:8:\"category\";s:10:\"Technology\";}}s:39:\"colormag_featured_posts_vertical_widget\";O:8:\"stdClass\":3:{s:1:\"3\";O:8:\"stdClass\":1:{s:8:\"category\";s:7:\"Fashion\";}s:1:\"4\";O:8:\"stdClass\":1:{s:8:\"category\";s:6:\"Sports\";}s:1:\"5\";O:8:\"stdClass\":1:{s:8:\"category\";s:7:\"General\";}}}}}s:22:\"customizer_data_update\";O:8:\"stdClass\":1:{s:18:\"nav_menu_locations\";O:8:\"stdClass\":1:{s:7:\"primary\";s:7:\"Primary\";}}}s:20:\"colormag-beauty-blog\";O:8:\"stdClass\":10:{s:5:\"title\";s:20:\"ColorMag Beauty Blog\";s:7:\"preview\";s:49:\"https://demo.themegrill.com/colormag-beauty-blog/\";s:11:\"description\";s:53:\"You can use this ColorMag demo for your Beauty Blogs.\";s:8:\"template\";a:2:{i:0;s:8:\"colormag\";i:1;s:12:\"colormag-pro\";}s:8:\"category\";a:2:{i:0;s:3:\"all\";i:1;s:4:\"blog\";}s:11:\"pagebuilder\";a:1:{i:0;s:9:\"elementor\";}s:12:\"plugins_list\";O:8:\"stdClass\":2:{s:9:\"elementor\";O:8:\"stdClass\":2:{s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:23:\"elementor/elementor.php\";}s:13:\"everest-forms\";O:8:\"stdClass\":2:{s:4:\"name\";s:13:\"Everest Forms\";s:4:\"slug\";s:31:\"everest-forms/everest-forms.php\";}}s:12:\"core_options\";O:8:\"stdClass\":2:{s:8:\"blogname\";s:20:\"ColorMag Beauty Blog\";s:13:\"page_on_front\";s:4:\"Home\";}s:21:\"elementor_data_update\";O:8:\"stdClass\":10:{s:4:\"home\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:4:\"Home\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":3:{s:21:\"ColorMag-Posts-Grid-3\";O:8:\"stdClass\":1:{s:2:\"10\";s:4:\"News\";}s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":4:{s:1:\"5\";s:4:\"Hair\";s:1:\"6\";s:7:\"Fashion\";s:1:\"8\";s:6:\"Health\";s:1:\"9\";s:11:\"Eye Make up\";}s:22:\"ColorMag-Posts-Block-6\";O:8:\"stdClass\":1:{s:2:\"10\";s:4:\"News\";}}}}s:7:\"make-up\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:7:\"Make Up\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":1:{s:1:\"9\";s:11:\"Eye Make up\";}s:22:\"ColorMag-Posts-Block-6\";O:8:\"stdClass\":3:{s:1:\"2\";s:17:\"Food & Drinks\";s:1:\"4\";s:7:\"Product\";s:1:\"7\";s:11:\"Beauty Tips\";}}}}s:4:\"hair\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:4:\"Hair\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":1:{s:1:\"5\";s:4:\"Hair\";}s:22:\"ColorMag-Posts-Block-6\";O:8:\"stdClass\":3:{s:1:\"2\";s:17:\"Food & Drinks\";s:1:\"4\";s:7:\"Product\";s:1:\"7\";s:11:\"Beauty Tips\";}}}}s:8:\"products\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:8:\"Products\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":1:{s:1:\"4\";s:7:\"Product\";}s:22:\"ColorMag-Posts-Block-6\";O:8:\"stdClass\":3:{s:1:\"2\";s:17:\"Food & Drinks\";s:1:\"4\";s:7:\"Product\";s:1:\"7\";s:11:\"Beauty Tips\";}}}}s:9:\"lifestyle\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:9:\"Lifestyle\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":1:{s:22:\"ColorMag-Posts-Block-6\";O:8:\"stdClass\":3:{s:1:\"4\";s:7:\"Product\";s:1:\"2\";s:17:\"Food & Drinks\";s:1:\"7\";s:11:\"Beauty Tips\";}}}}s:4:\"food\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:4:\"Food\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":1:{s:1:\"2\";s:17:\"Food & Drinks\";}s:22:\"ColorMag-Posts-Block-6\";O:8:\"stdClass\":3:{s:1:\"4\";s:7:\"Product\";s:1:\"2\";s:17:\"Food & Drinks\";s:1:\"7\";s:11:\"Beauty Tips\";}}}}s:6:\"health\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:6:\"Health\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":1:{s:1:\"8\";s:6:\"Health\";}s:22:\"ColorMag-Posts-Block-6\";O:8:\"stdClass\":3:{s:1:\"2\";s:17:\"Food & Drinks\";s:1:\"4\";s:7:\"Product\";s:1:\"7\";s:11:\"Beauty Tips\";}}}}s:7:\"fashion\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:7:\"Fashion\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":1:{s:1:\"6\";s:7:\"Fashion\";}s:22:\"ColorMag-Posts-Block-6\";O:8:\"stdClass\":3:{s:1:\"2\";s:17:\"Food & Drinks\";s:1:\"4\";s:7:\"Product\";s:1:\"7\";s:11:\"Beauty Tips\";}}}}s:4:\"tips\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:4:\"Tips\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":1:{s:1:\"7\";s:11:\"Beauty Tips\";}s:22:\"ColorMag-Posts-Block-6\";O:8:\"stdClass\":3:{s:1:\"4\";s:7:\"Product\";s:1:\"2\";s:17:\"Food & Drinks\";s:1:\"7\";s:11:\"Beauty Tips\";}}}}s:4:\"news\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:4:\"News\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":1:{s:2:\"10\";s:4:\"News\";}s:22:\"ColorMag-Posts-Block-6\";O:8:\"stdClass\":2:{s:1:\"2\";s:17:\"Food & Drinks\";s:1:\"7\";s:11:\"Beauty Tips\";}}}}}s:22:\"customizer_data_update\";O:8:\"stdClass\":1:{s:18:\"nav_menu_locations\";O:8:\"stdClass\":1:{s:7:\"primary\";s:7:\"Primary\";}}}s:26:\"colormag-business-magazine\";O:8:\"stdClass\":10:{s:5:\"title\";s:26:\"ColorMag Business Magazine\";s:7:\"preview\";s:55:\"https://demo.themegrill.com/colormag-business-magazine/\";s:11:\"description\";s:57:\"Grow your business through blogs with this ColorMag demo.\";s:8:\"template\";a:2:{i:0;s:8:\"colormag\";i:1;s:12:\"colormag-pro\";}s:8:\"category\";a:3:{i:0;s:3:\"all\";i:1;s:4:\"news\";i:2;s:6:\"others\";}s:11:\"pagebuilder\";a:1:{i:0;s:9:\"elementor\";}s:12:\"plugins_list\";O:8:\"stdClass\":2:{s:9:\"elementor\";O:8:\"stdClass\":2:{s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:23:\"elementor/elementor.php\";}s:13:\"everest-forms\";O:8:\"stdClass\":2:{s:4:\"name\";s:13:\"Everest Forms\";s:4:\"slug\";s:31:\"everest-forms/everest-forms.php\";}}s:12:\"core_options\";O:8:\"stdClass\":2:{s:8:\"blogname\";s:26:\"ColorMag Business Magazine\";s:13:\"page_on_front\";s:4:\"Home\";}s:21:\"elementor_data_update\";O:8:\"stdClass\":9:{s:4:\"home\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:4:\"Home\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":5:{s:21:\"ColorMag-Posts-Grid-5\";O:8:\"stdClass\":1:{s:1:\"6\";s:10:\"Employment\";}s:22:\"ColorMag-Posts-Block-1\";O:8:\"stdClass\":1:{s:1:\"5\";s:9:\"Corporate\";}s:22:\"ColorMag-Posts-Block-4\";O:8:\"stdClass\":1:{s:1:\"8\";s:5:\"Money\";}s:22:\"ColorMag-Posts-Block-6\";O:8:\"stdClass\":1:{s:1:\"4\";s:11:\"Investments\";}s:22:\"ColorMag-Posts-Block-9\";O:8:\"stdClass\":1:{s:1:\"9\";s:6:\"Market\";}}}}s:9:\"corporate\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:9:\"Corporate\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":1:{s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":1:{s:1:\"5\";s:9:\"Corporate\";}}}}s:12:\"global-trade\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:12:\"Global Trade\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":1:{s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":1:{s:2:\"14\";s:12:\"Global Trade\";}}}}s:9:\"companies\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:9:\"Companies\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":1:{s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":1:{s:2:\"15\";s:9:\"Companies\";}}}}s:16:\"entrepreneurship\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:16:\"Entrepreneurship\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":1:{s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":1:{s:2:\"16\";s:16:\"Entrepreneurship\";}}}}s:10:\"employment\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:10:\"Employment\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":1:{s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":1:{s:1:\"6\";s:10:\"Employment\";}}}}s:10:\"investment\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:10:\"Investment\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":1:{s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":1:{s:1:\"4\";s:11:\"Investments\";}}}}s:6:\"market\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:6:\"Market\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":1:{s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":1:{s:1:\"9\";s:6:\"Market\";}}}}s:5:\"money\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:5:\"Money\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":1:{s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":1:{s:1:\"8\";s:5:\"Money\";}}}}}s:22:\"customizer_data_update\";O:8:\"stdClass\":1:{s:18:\"nav_menu_locations\";O:8:\"stdClass\":1:{s:7:\"primary\";s:7:\"Primary\";}}}s:13:\"colormag-dark\";O:8:\"stdClass\":10:{s:5:\"title\";s:13:\"ColorMag Dark\";s:7:\"preview\";s:42:\"https://demo.themegrill.com/colormag-dark/\";s:11:\"description\";s:63:\"Use this ColorMag demo to display news in your online magazine.\";s:8:\"template\";a:2:{i:0;s:8:\"colormag\";i:1;s:12:\"colormag-pro\";}s:8:\"category\";a:2:{i:0;s:3:\"all\";i:1;s:4:\"news\";}s:11:\"pagebuilder\";a:1:{i:0;s:9:\"elementor\";}s:12:\"plugins_list\";O:8:\"stdClass\":2:{s:9:\"elementor\";O:8:\"stdClass\":2:{s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:23:\"elementor/elementor.php\";}s:13:\"everest-forms\";O:8:\"stdClass\":2:{s:4:\"name\";s:13:\"Everest Forms\";s:4:\"slug\";s:31:\"everest-forms/everest-forms.php\";}}s:12:\"core_options\";O:8:\"stdClass\":2:{s:8:\"blogname\";s:13:\"ColorMag Dark\";s:13:\"page_on_front\";s:4:\"Home\";}s:21:\"elementor_data_update\";O:8:\"stdClass\":10:{s:4:\"home\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:4:\"Home\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":4:{s:22:\"ColorMag-Posts-Block-1\";O:8:\"stdClass\":2:{s:1:\"9\";s:7:\"Fashion\";s:2:\"11\";s:4:\"News\";}s:22:\"ColorMag-Posts-Block-4\";O:8:\"stdClass\":1:{s:2:\"10\";s:17:\"Food & Health\";}s:22:\"ColorMag-Posts-Block-6\";O:8:\"stdClass\":3:{s:1:\"4\";s:6:\"Travel\";s:1:\"6\";s:5:\"World\";s:1:\"7\";s:10:\"Technology\";}s:21:\"ColorMag-Posts-Grid-5\";O:8:\"stdClass\":1:{s:1:\"8\";s:13:\"Entertainment\";}}}}s:13:\"entertainment\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:13:\"Entertainment\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":1:{s:1:\"8\";s:13:\"Entertainment\";}s:22:\"ColorMag-Posts-Block-4\";O:8:\"stdClass\":1:{s:1:\"8\";s:13:\"Entertainment\";}}}}s:7:\"fashion\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:7:\"Fashion\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":1:{s:1:\"9\";s:7:\"Fashion\";}s:22:\"ColorMag-Posts-Block-4\";O:8:\"stdClass\":1:{s:1:\"9\";s:7:\"Fashion\";}}}}s:11:\"food-health\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:13:\"Food & Health\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":1:{s:2:\"10\";s:17:\"Food & Health\";}s:22:\"ColorMag-Posts-Block-4\";O:8:\"stdClass\":1:{s:2:\"10\";s:17:\"Food & Health\";}}}}s:4:\"news\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:4:\"News\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":1:{s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":3:{s:1:\"2\";s:8:\"Politics\";s:1:\"3\";s:6:\"Sports\";s:1:\"6\";s:5:\"World\";}}}}s:8:\"politics\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:8:\"Politics\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":1:{s:1:\"2\";s:8:\"Politics\";}s:22:\"ColorMag-Posts-Block-4\";O:8:\"stdClass\":1:{s:1:\"2\";s:8:\"Politics\";}}}}s:6:\"sports\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:6:\"Sports\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":1:{s:1:\"3\";s:6:\"Sports\";}s:22:\"ColorMag-Posts-Block-4\";O:8:\"stdClass\":1:{s:1:\"3\";s:6:\"Sports\";}}}}s:10:\"technology\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:10:\"Technology\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":1:{s:1:\"7\";s:10:\"Technology\";}s:22:\"ColorMag-Posts-Block-4\";O:8:\"stdClass\":1:{s:1:\"7\";s:10:\"Technology\";}}}}s:6:\"travel\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:6:\"Travel\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":1:{s:1:\"4\";s:6:\"Travel\";}s:22:\"ColorMag-Posts-Block-4\";O:8:\"stdClass\":1:{s:1:\"4\";s:6:\"Travel\";}}}}s:5:\"world\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:5:\"World\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-2\";O:8:\"stdClass\":1:{s:1:\"6\";s:5:\"World\";}s:22:\"ColorMag-Posts-Block-4\";O:8:\"stdClass\":1:{s:1:\"6\";s:5:\"World\";}}}}}s:22:\"customizer_data_update\";O:8:\"stdClass\":1:{s:18:\"nav_menu_locations\";O:8:\"stdClass\":1:{s:7:\"primary\";s:7:\"Primary\";}}}s:12:\"colormag-pro\";O:8:\"stdClass\":11:{s:5:\"isPro\";b:1;s:5:\"title\";s:12:\"ColorMag Pro\";s:7:\"preview\";s:41:\"https://demo.themegrill.com/colormag-pro/\";s:11:\"description\";s:74:\"The premium version of the default ColorMag demo for your online magazine.\";s:8:\"template\";a:1:{i:0;s:12:\"colormag-pro\";}s:8:\"category\";a:3:{i:0;s:3:\"all\";i:1;s:4:\"news\";i:2;s:4:\"blog\";}s:11:\"pagebuilder\";a:1:{i:0;s:7:\"default\";}s:12:\"plugins_list\";O:8:\"stdClass\":1:{s:13:\"everest-forms\";O:8:\"stdClass\":2:{s:4:\"name\";s:13:\"Everest Forms\";s:4:\"slug\";s:31:\"everest-forms/everest-forms.php\";}}s:12:\"core_options\";O:8:\"stdClass\":1:{s:8:\"blogname\";s:12:\"ColorMag Pro\";}s:19:\"widgets_data_update\";O:8:\"stdClass\":1:{s:19:\"dropdown_categories\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":8:{s:37:\"colormag_featured_posts_slider_widget\";O:8:\"stdClass\":1:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:8:\"Research\";}}s:33:\"colormag_highlighted_posts_widget\";O:8:\"stdClass\":1:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:10:\"Technology\";}}s:30:\"colormag_featured_posts_widget\";O:8:\"stdClass\":1:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:8:\"Business\";}}s:39:\"colormag_featured_posts_vertical_widget\";O:8:\"stdClass\":5:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:6:\"Health\";}s:1:\"3\";O:8:\"stdClass\":1:{s:8:\"category\";s:7:\"Fashion\";}s:1:\"4\";O:8:\"stdClass\":1:{s:8:\"category\";s:8:\"Politics\";}s:1:\"9\";O:8:\"stdClass\":1:{s:8:\"category\";s:10:\"Technology\";}s:2:\"10\";O:8:\"stdClass\":1:{s:8:\"category\";s:6:\"Travel\";}}s:28:\"colormag_default_news_widget\";O:8:\"stdClass\":1:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:9:\"Adventure\";}}s:27:\"colormag_ticker_news_widget\";O:8:\"stdClass\":1:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:6:\"Travel\";}}s:27:\"colormag_slider_news_widget\";O:8:\"stdClass\":1:{s:1:\"7\";O:8:\"stdClass\":1:{s:8:\"category\";s:6:\"Sports\";}}s:40:\"colormag_featured_posts_small_thumbnails\";O:8:\"stdClass\":1:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:10:\"Technology\";}}}}}s:22:\"customizer_data_update\";O:8:\"stdClass\":1:{s:18:\"nav_menu_locations\";O:8:\"stdClass\":2:{s:7:\"primary\";s:7:\"Primary\";s:6:\"footer\";s:6:\"Footer\";}}}s:20:\"colormag-pro-fashion\";O:8:\"stdClass\":11:{s:5:\"isPro\";b:1;s:5:\"title\";s:20:\"ColorMag Pro Fashion\";s:7:\"preview\";s:49:\"https://demo.themegrill.com/colormag-pro-fashion/\";s:11:\"description\";s:66:\"Be the fashion advisor for your audience using this ColorMag Demo.\";s:8:\"template\";a:1:{i:0;s:12:\"colormag-pro\";}s:8:\"category\";a:4:{i:0;s:3:\"all\";i:1;s:4:\"blog\";i:2;s:4:\"news\";i:3;s:6:\"others\";}s:11:\"pagebuilder\";a:1:{i:0;s:7:\"default\";}s:12:\"plugins_list\";O:8:\"stdClass\":1:{s:13:\"everest-forms\";O:8:\"stdClass\":2:{s:4:\"name\";s:13:\"Everest Forms\";s:4:\"slug\";s:31:\"everest-forms/everest-forms.php\";}}s:12:\"core_options\";O:8:\"stdClass\":1:{s:8:\"blogname\";s:20:\"ColorMag Pro Fashion\";}s:19:\"widgets_data_update\";O:8:\"stdClass\":1:{s:19:\"dropdown_categories\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":8:{s:37:\"colormag_featured_posts_slider_widget\";O:8:\"stdClass\":1:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:6:\"Trends\";}}s:33:\"colormag_highlighted_posts_widget\";O:8:\"stdClass\":1:{s:1:\"3\";O:8:\"stdClass\":1:{s:8:\"category\";s:12:\"Mens Fashion\";}}s:30:\"colormag_featured_posts_widget\";O:8:\"stdClass\":1:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:11:\"Accessories\";}}s:39:\"colormag_featured_posts_vertical_widget\";O:8:\"stdClass\":4:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:6:\"Makeup\";}s:1:\"3\";O:8:\"stdClass\":1:{s:8:\"category\";s:12:\"Mens Fashion\";}s:1:\"4\";O:8:\"stdClass\":1:{s:8:\"category\";s:14:\"Womans Fashion\";}s:1:\"9\";O:8:\"stdClass\":1:{s:8:\"category\";s:7:\"Wedding\";}}s:28:\"colormag_default_news_widget\";O:8:\"stdClass\":1:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:6:\"Outfit\";}}s:27:\"colormag_ticker_news_widget\";O:8:\"stdClass\":2:{s:1:\"3\";O:8:\"stdClass\":1:{s:8:\"category\";s:6:\"Makeup\";}s:1:\"4\";O:8:\"stdClass\":1:{s:8:\"category\";s:12:\"Mens Fashion\";}}s:27:\"colormag_slider_news_widget\";O:8:\"stdClass\":1:{s:1:\"7\";O:8:\"stdClass\":1:{s:8:\"category\";s:9:\"Glamorous\";}}s:40:\"colormag_featured_posts_small_thumbnails\";O:8:\"stdClass\":1:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:6:\"Outfit\";}}}}}s:22:\"customizer_data_update\";O:8:\"stdClass\":1:{s:18:\"nav_menu_locations\";O:8:\"stdClass\":2:{s:7:\"primary\";s:7:\"Primary\";s:6:\"footer\";s:6:\"Footer\";}}}s:23:\"colormag-pro-technology\";O:8:\"stdClass\":11:{s:5:\"isPro\";b:1;s:5:\"title\";s:23:\"ColorMag Pro Technology\";s:7:\"preview\";s:52:\"https://demo.themegrill.com/colormag-pro-technology/\";s:11:\"description\";s:66:\"Use this ColorMag demo to update blogs on the latest technologies.\";s:8:\"template\";a:1:{i:0;s:12:\"colormag-pro\";}s:8:\"category\";a:4:{i:0;s:3:\"all\";i:1;s:4:\"blog\";i:2;s:4:\"news\";i:3;s:6:\"others\";}s:11:\"pagebuilder\";a:1:{i:0;s:7:\"default\";}s:12:\"plugins_list\";O:8:\"stdClass\":1:{s:13:\"everest-forms\";O:8:\"stdClass\":2:{s:4:\"name\";s:13:\"Everest Forms\";s:4:\"slug\";s:31:\"everest-forms/everest-forms.php\";}}s:12:\"core_options\";O:8:\"stdClass\":1:{s:8:\"blogname\";s:23:\"ColorMag Pro Technology\";}s:19:\"widgets_data_update\";O:8:\"stdClass\":1:{s:19:\"dropdown_categories\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":9:{s:37:\"colormag_featured_posts_slider_widget\";O:8:\"stdClass\":1:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:8:\"Featured\";}}s:33:\"colormag_highlighted_posts_widget\";O:8:\"stdClass\":1:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:11:\"Highlighted\";}}s:30:\"colormag_featured_posts_widget\";O:8:\"stdClass\":2:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:11:\"Accessories\";}s:1:\"4\";O:8:\"stdClass\":1:{s:8:\"category\";s:6:\"Camera\";}}s:39:\"colormag_featured_posts_vertical_widget\";O:8:\"stdClass\":5:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:7:\"Android\";}s:1:\"3\";O:8:\"stdClass\":1:{s:8:\"category\";s:5:\"Apple\";}s:1:\"4\";O:8:\"stdClass\":1:{s:8:\"category\";s:6:\"Tablet\";}s:1:\"5\";O:8:\"stdClass\":1:{s:8:\"category\";s:6:\"Mobile\";}s:1:\"8\";O:8:\"stdClass\":1:{s:8:\"category\";s:4:\"Game\";}}s:28:\"colormag_default_news_widget\";O:8:\"stdClass\":1:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:6:\"Laptop\";}}s:27:\"colormag_ticker_news_widget\";O:8:\"stdClass\":1:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:10:\"Television\";}}s:27:\"colormag_slider_news_widget\";O:8:\"stdClass\":1:{s:1:\"7\";O:8:\"stdClass\":1:{s:8:\"category\";s:9:\"Glamorous\";}}s:40:\"colormag_featured_posts_small_thumbnails\";O:8:\"stdClass\":2:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:11:\"Accessories\";}s:1:\"3\";O:8:\"stdClass\":1:{s:8:\"category\";s:6:\"Tablet\";}}s:31:\"colormag_news_in_picture_widget\";O:8:\"stdClass\":1:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:11:\"Top Product\";}}}}}s:22:\"customizer_data_update\";O:8:\"stdClass\":1:{s:18:\"nav_menu_locations\";O:8:\"stdClass\":2:{s:7:\"primary\";s:12:\"Primary Menu\";s:6:\"footer\";s:11:\"Footer Menu\";}}}s:19:\"colormag-pro-sports\";O:8:\"stdClass\":11:{s:5:\"isPro\";b:1;s:5:\"title\";s:19:\"ColorMag Pro Sports\";s:7:\"preview\";s:48:\"https://demo.themegrill.com/colormag-pro-sports/\";s:11:\"description\";s:59:\"Share your sports news and updates with this ColorMag Demo.\";s:8:\"template\";a:1:{i:0;s:12:\"colormag-pro\";}s:8:\"category\";a:3:{i:0;s:3:\"all\";i:1;s:4:\"news\";i:2;s:4:\"blog\";}s:11:\"pagebuilder\";a:1:{i:0;s:7:\"default\";}s:12:\"plugins_list\";O:8:\"stdClass\":1:{s:13:\"everest-forms\";O:8:\"stdClass\":2:{s:4:\"name\";s:13:\"Everest Forms\";s:4:\"slug\";s:31:\"everest-forms/everest-forms.php\";}}s:12:\"core_options\";O:8:\"stdClass\":1:{s:8:\"blogname\";s:19:\"ColorMag Pro Sports\";}s:19:\"widgets_data_update\";O:8:\"stdClass\":1:{s:19:\"dropdown_categories\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":8:{s:37:\"colormag_featured_posts_slider_widget\";O:8:\"stdClass\":1:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:8:\"Featured\";}}s:33:\"colormag_highlighted_posts_widget\";O:8:\"stdClass\":1:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:11:\"Highlighted\";}}s:30:\"colormag_featured_posts_widget\";O:8:\"stdClass\":1:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:7:\"Athlete\";}}s:39:\"colormag_featured_posts_vertical_widget\";O:8:\"stdClass\":4:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:5:\"Women\";}s:1:\"5\";O:8:\"stdClass\":1:{s:8:\"category\";s:13:\"Snow Olympics\";}s:1:\"6\";O:8:\"stdClass\":1:{s:8:\"category\";s:4:\"Race\";}s:1:\"7\";O:8:\"stdClass\":1:{s:8:\"category\";s:14:\"Figure Skating\";}}s:28:\"colormag_default_news_widget\";O:8:\"stdClass\":1:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:8:\"Football\";}}s:27:\"colormag_slider_news_widget\";O:8:\"stdClass\":1:{s:1:\"7\";O:8:\"stdClass\":1:{s:8:\"category\";s:7:\"Athlete\";}}s:40:\"colormag_featured_posts_small_thumbnails\";O:8:\"stdClass\":1:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:8:\"Featured\";}}s:31:\"colormag_news_in_picture_widget\";O:8:\"stdClass\":1:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:11:\"Top Product\";}}}}}s:22:\"customizer_data_update\";O:8:\"stdClass\":1:{s:18:\"nav_menu_locations\";O:8:\"stdClass\":1:{s:7:\"primary\";s:12:\"Primary Menu\";}}}s:20:\"colormag-pro-recipes\";O:8:\"stdClass\":10:{s:5:\"isPro\";b:1;s:5:\"title\";s:20:\"ColorMag Food Recipe\";s:7:\"preview\";s:49:\"https://demo.themegrill.com/colormag-pro-recipes/\";s:11:\"description\";s:67:\"Want to show your food recipes? Here’s the ColorMag demo for you.\";s:8:\"template\";a:1:{i:0;s:12:\"colormag-pro\";}s:8:\"category\";a:2:{i:0;s:3:\"all\";i:1;s:6:\"others\";}s:11:\"pagebuilder\";a:1:{i:0;s:9:\"elementor\";}s:12:\"plugins_list\";O:8:\"stdClass\":2:{s:9:\"elementor\";O:8:\"stdClass\":2:{s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:23:\"elementor/elementor.php\";}s:13:\"everest-forms\";O:8:\"stdClass\":2:{s:4:\"name\";s:13:\"Everest Forms\";s:4:\"slug\";s:31:\"everest-forms/everest-forms.php\";}}s:12:\"core_options\";O:8:\"stdClass\":2:{s:8:\"blogname\";s:19:\"ColorMag Pro Recipe\";s:13:\"page_on_front\";s:8:\"Homepage\";}s:21:\"elementor_data_update\";O:8:\"stdClass\":13:{s:8:\"homepage\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:8:\"Homepage\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":6:{s:22:\"ColorMag-Posts-Block-6\";O:8:\"stdClass\":2:{s:2:\"10\";s:7:\"Popular\";s:2:\"14\";s:4:\"News\";}s:22:\"ColorMag-Posts-Block-7\";O:8:\"stdClass\":1:{s:1:\"9\";s:7:\"Risotto\";}s:22:\"ColorMag-Posts-Block-8\";O:8:\"stdClass\":1:{s:1:\"4\";s:4:\"Cake\";}s:22:\"ColorMag-Posts-Block-9\";O:8:\"stdClass\":2:{s:1:\"6\";s:13:\"Quick recipes\";s:1:\"8\";s:6:\"Pizzas\";}s:21:\"ColorMag-Posts-Grid-3\";O:8:\"stdClass\":1:{s:1:\"5\";s:6:\"Desert\";}s:21:\"ColorMag-Posts-Grid-4\";O:8:\"stdClass\":1:{s:1:\"6\";s:13:\"Quick recipes\";}}}}s:6:\"baking\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:6:\"Baking\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-5\";O:8:\"stdClass\":1:{s:1:\"3\";s:6:\"Baking\";}s:22:\"ColorMag-Posts-Block-9\";O:8:\"stdClass\":1:{s:2:\"14\";s:4:\"News\";}}}}s:9:\"breakfast\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:9:\"Breakfast\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-5\";O:8:\"stdClass\":1:{s:2:\"13\";s:9:\"Breakfast\";}s:22:\"ColorMag-Posts-Block-6\";O:8:\"stdClass\":1:{s:2:\"14\";s:4:\"News\";}}}}s:6:\"desert\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:6:\"Desert\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-5\";O:8:\"stdClass\":1:{s:1:\"5\";s:6:\"Desert\";}s:22:\"ColorMag-Posts-Block-6\";O:8:\"stdClass\":1:{s:2:\"14\";s:4:\"News\";}}}}s:4:\"news\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:4:\"News\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-5\";O:8:\"stdClass\":1:{s:2:\"14\";s:4:\"News\";}s:22:\"ColorMag-Posts-Block-6\";O:8:\"stdClass\":1:{s:2:\"14\";s:4:\"News\";}}}}s:7:\"noodels\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:7:\"Noodels\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-5\";O:8:\"stdClass\":1:{s:1:\"7\";s:7:\"Noddles\";}s:22:\"ColorMag-Posts-Block-6\";O:8:\"stdClass\":1:{s:2:\"14\";s:4:\"News\";}}}}s:5:\"pasta\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:5:\"Pasta\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-5\";O:8:\"stdClass\":1:{s:2:\"12\";s:5:\"Pasta\";}s:22:\"ColorMag-Posts-Block-6\";O:8:\"stdClass\":1:{s:2:\"14\";s:4:\"News\";}}}}s:6:\"pizzas\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:6:\"Pizzas\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-5\";O:8:\"stdClass\":1:{s:1:\"8\";s:6:\"Pizzas\";}s:22:\"ColorMag-Posts-Block-6\";O:8:\"stdClass\":1:{s:2:\"14\";s:4:\"News\";}}}}s:7:\"popular\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:7:\"Popular\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-5\";O:8:\"stdClass\":1:{s:2:\"10\";s:7:\"Popular\";}s:22:\"ColorMag-Posts-Block-6\";O:8:\"stdClass\":1:{s:2:\"14\";s:4:\"News\";}}}}s:13:\"quick-recipes\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:13:\"Quick Recipes\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-5\";O:8:\"stdClass\":1:{s:1:\"6\";s:13:\"Quick recipes\";}s:22:\"ColorMag-Posts-Block-6\";O:8:\"stdClass\":1:{s:2:\"14\";s:4:\"News\";}}}}s:7:\"risotto\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:7:\"Risotto\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-5\";O:8:\"stdClass\":1:{s:1:\"9\";s:7:\"Risotto\";}s:22:\"ColorMag-Posts-Block-6\";O:8:\"stdClass\":1:{s:2:\"14\";s:4:\"News\";}}}}s:8:\"smoothie\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:8:\"Smoothie\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-5\";O:8:\"stdClass\":1:{s:2:\"11\";s:8:\"Smoothie\";}s:22:\"ColorMag-Posts-Block-6\";O:8:\"stdClass\":1:{s:2:\"14\";s:4:\"News\";}}}}s:22:\"customizer_data_update\";O:8:\"stdClass\":1:{s:18:\"nav_menu_locations\";O:8:\"stdClass\":1:{s:7:\"primary\";s:7:\"primary\";}}}}s:24:\"colormag-pro-health-blog\";O:8:\"stdClass\":12:{s:5:\"isPro\";b:1;s:5:\"title\";s:20:\"ColorMag Health Blog\";s:7:\"preview\";s:53:\"https://demo.themegrill.com/colormag-pro-health-blog/\";s:11:\"description\";s:58:\"Give healthy tips to your viewers with this ColorMag Demo.\";s:8:\"template\";a:1:{i:0;s:12:\"colormag-pro\";}s:8:\"category\";a:3:{i:0;s:3:\"all\";i:1;s:4:\"blog\";i:2;s:6:\"others\";}s:11:\"pagebuilder\";a:1:{i:0;s:9:\"elementor\";}s:12:\"plugins_list\";O:8:\"stdClass\":2:{s:9:\"elementor\";O:8:\"stdClass\":2:{s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:23:\"elementor/elementor.php\";}s:13:\"everest-forms\";O:8:\"stdClass\":2:{s:4:\"name\";s:13:\"Everest Forms\";s:4:\"slug\";s:31:\"everest-forms/everest-forms.php\";}}s:12:\"core_options\";O:8:\"stdClass\":2:{s:8:\"blogname\";s:20:\"ColorMag Health Blog\";s:13:\"page_on_front\";s:4:\"Home\";}s:19:\"widgets_data_update\";O:8:\"stdClass\":1:{s:19:\"dropdown_categories\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":1:{s:40:\"colormag_featured_posts_small_thumbnails\";O:8:\"stdClass\":1:{s:1:\"2\";O:8:\"stdClass\":1:{s:8:\"category\";s:17:\"Tips & Guides\";}}}}}s:21:\"elementor_data_update\";O:8:\"stdClass\":8:{s:4:\"home\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:4:\"Home\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":8:{s:22:\"ColorMag-Posts-Block-1\";O:8:\"stdClass\":1:{s:2:\"13\";s:20:\"Food & Nutrition\";}s:22:\"ColorMag-Posts-Block-4\";O:8:\"stdClass\":1:{s:1:\"9\";s:17:\"Tips & Guides\";}s:22:\"ColorMag-Posts-Block-6\";O:8:\"stdClass\":1:{s:2:\"17\";s:7:\"Disease\";}s:22:\"ColorMag-Posts-Block-7\";O:8:\"stdClass\":2:{s:2:\"15\";s:5:\"Drugs\";s:2:\"14\";s:4:\"Tech\";}s:22:\"ColorMag-Posts-Block-8\";O:8:\"stdClass\":1:{s:1:\"3\";s:7:\"General\";}s:22:\"ColorMag-Posts-Block-9\";O:8:\"stdClass\":2:{s:1:\"6\";s:13:\"Quick recipes\";s:1:\"8\";s:6:\"Pizzas\";}s:21:\"ColorMag-Posts-Grid-4\";O:8:\"stdClass\":1:{s:1:\"7\";s:7:\"Fitness\";}s:21:\"ColorMag-Posts-Grid-6\";O:8:\"stdClass\":1:{s:1:\"6\";s:13:\"Quick recipes\";}}}}s:7:\"disease\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:7:\"Disease\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-5\";O:8:\"stdClass\":2:{s:2:\"13\";s:20:\"Food & Nutrition\";s:2:\"17\";s:7:\"Disease\";}s:22:\"ColorMag-Posts-Block-7\";O:8:\"stdClass\":1:{s:1:\"3\";s:7:\"General\";}}}}s:5:\"drugs\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:5:\"Drugs\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-5\";O:8:\"stdClass\":1:{s:2:\"15\";s:5:\"Drugs\";}s:22:\"ColorMag-Posts-Block-7\";O:8:\"stdClass\":1:{s:1:\"3\";s:7:\"General\";}}}}s:7:\"fitness\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:7:\"Fitness\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-5\";O:8:\"stdClass\":1:{s:1:\"7\";s:7:\"Fitness\";}s:22:\"ColorMag-Posts-Block-7\";O:8:\"stdClass\":1:{s:1:\"3\";s:7:\"General\";}}}}s:14:\"food-nutrition\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:16:\"Food & Nutrition\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-5\";O:8:\"stdClass\":1:{s:2:\"13\";s:20:\"Food & Nutrition\";}s:22:\"ColorMag-Posts-Block-7\";O:8:\"stdClass\":1:{s:1:\"3\";s:7:\"General\";}}}}s:7:\"general\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:7:\"General\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-5\";O:8:\"stdClass\":1:{s:1:\"3\";s:7:\"General\";}s:22:\"ColorMag-Posts-Block-7\";O:8:\"stdClass\":1:{s:1:\"3\";s:7:\"General\";}}}}s:4:\"tech\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:4:\"Tech\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-5\";O:8:\"stdClass\":1:{s:2:\"14\";s:4:\"Tech\";}s:22:\"ColorMag-Posts-Block-7\";O:8:\"stdClass\":1:{s:1:\"3\";s:7:\"General\";}}}}s:11:\"tips-guides\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:13:\"Tips & Guides\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-5\";O:8:\"stdClass\":1:{s:2:\"13\";s:20:\"Food & Nutrition\";}s:22:\"ColorMag-Posts-Block-7\";O:8:\"stdClass\":1:{s:1:\"3\";s:7:\"General\";}}}}}s:22:\"customizer_data_update\";O:8:\"stdClass\":1:{s:18:\"nav_menu_locations\";O:8:\"stdClass\":1:{s:7:\"primary\";s:7:\"Primary\";}}}s:18:\"colormag-pro-music\";O:8:\"stdClass\":11:{s:5:\"isPro\";b:1;s:5:\"title\";s:18:\"ColorMag Pro Music\";s:7:\"preview\";s:47:\"https://demo.themegrill.com/colormag-pro-music/\";s:11:\"description\";s:58:\"You can show your taste of music using this ColorMag Demo.\";s:8:\"template\";a:1:{i:0;s:12:\"colormag-pro\";}s:8:\"category\";a:2:{i:0;s:3:\"all\";i:1;s:6:\"others\";}s:11:\"pagebuilder\";a:1:{i:0;s:9:\"elementor\";}s:12:\"plugins_list\";O:8:\"stdClass\":2:{s:9:\"elementor\";O:8:\"stdClass\":2:{s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:23:\"elementor/elementor.php\";}s:13:\"everest-forms\";O:8:\"stdClass\":2:{s:4:\"name\";s:13:\"Everest Forms\";s:4:\"slug\";s:31:\"everest-forms/everest-forms.php\";}}s:12:\"core_options\";O:8:\"stdClass\":2:{s:8:\"blogname\";s:18:\"ColorMag Pro Music\";s:13:\"page_on_front\";s:4:\"Home\";}s:21:\"elementor_data_update\";O:8:\"stdClass\":7:{s:4:\"home\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:4:\"Home\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":5:{s:22:\"ColorMag-Posts-Block-3\";O:8:\"stdClass\":1:{s:1:\"7\";s:5:\"Video\";}s:22:\"ColorMag-Posts-Block-4\";O:8:\"stdClass\":1:{s:1:\"6\";s:5:\"Event\";}s:22:\"ColorMag-Posts-Block-6\";O:8:\"stdClass\":2:{s:1:\"6\";s:5:\"Event\";s:2:\"10\";s:4:\"News\";}s:22:\"ColorMag-Posts-Block-7\";O:8:\"stdClass\":4:{s:1:\"3\";s:5:\"Music\";s:2:\"11\";s:4:\"Rock\";s:2:\"12\";s:4:\"Jazz\";s:2:\"13\";s:3:\"Pop\";}s:21:\"ColorMag-Posts-Grid-3\";O:8:\"stdClass\":1:{s:1:\"6\";s:5:\"Event\";}}}}s:6:\"events\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:6:\"Events\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-4\";O:8:\"stdClass\":2:{s:1:\"4\";s:10:\"High light\";s:1:\"6\";s:5:\"Event\";}s:22:\"ColorMag-Posts-Block-9\";O:8:\"stdClass\":1:{s:2:\"10\";s:4:\"News\";}}}}s:4:\"jazz\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:4:\"Jazz\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-5\";O:8:\"stdClass\":1:{s:2:\"12\";s:4:\"Jazz\";}s:22:\"ColorMag-Posts-Block-7\";O:8:\"stdClass\":2:{s:1:\"4\";s:10:\"High light\";s:1:\"6\";s:5:\"Event\";}}}}s:4:\"news\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:4:\"News\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":3:{s:22:\"ColorMag-Posts-Block-5\";O:8:\"stdClass\":1:{s:1:\"4\";s:10:\"High light\";}s:22:\"ColorMag-Posts-Block-7\";O:8:\"stdClass\":2:{s:1:\"4\";s:10:\"High light\";s:1:\"6\";s:5:\"Event\";}s:22:\"ColorMag-Posts-Block-9\";O:8:\"stdClass\":1:{s:1:\"6\";s:5:\"Event\";}}}}s:3:\"pop\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:3:\"Pop\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-5\";O:8:\"stdClass\":1:{s:2:\"13\";s:3:\"Pop\";}s:22:\"ColorMag-Posts-Block-7\";O:8:\"stdClass\":1:{s:2:\"10\";s:4:\"News\";}}}}s:4:\"rock\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:4:\"Rock\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":2:{s:22:\"ColorMag-Posts-Block-5\";O:8:\"stdClass\":1:{s:2:\"11\";s:4:\"Rock\";}s:22:\"ColorMag-Posts-Block-7\";O:8:\"stdClass\":1:{s:2:\"10\";s:4:\"News\";}}}}s:6:\"videos\";O:8:\"stdClass\":2:{s:10:\"post_title\";s:6:\"Videos\";s:11:\"data_update\";O:8:\"stdClass\":1:{s:8:\"category\";O:8:\"stdClass\":1:{s:22:\"ColorMag-Posts-Block-3\";O:8:\"stdClass\":1:{s:1:\"7\";s:5:\"Video\";}}}}}s:22:\"customizer_data_update\";O:8:\"stdClass\":1:{s:18:\"nav_menu_locations\";O:8:\"stdClass\":1:{s:7:\"primary\";s:7:\"Primary\";}}}}}', 'no'),
(193, 'colormag_admin_notice_welcome', '1', 'yes'),
(204, 'nav_menu_options', 'a:1:{s:8:\"auto_add\";a:0:{}}', 'yes'),
(206, 'category_children', 'a:0:{}', 'yes');
-- --------------------------------------------------------
--
-- Table structure for table `wp_postmeta`
--
CREATE TABLE `wp_postmeta` (
`meta_id` bigint(20) UNSIGNED NOT NULL,
`post_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `wp_postmeta`
--
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1, 2, '_wp_page_template', 'default'),
(2, 3, '_wp_page_template', 'default'),
(3, 6, '_wp_attached_file', '2019/05/colormag-logo.png'),
(4, 6, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:265;s:6:\"height\";i:90;s:4:\"file\";s:25:\"2019/05/colormag-logo.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"colormag-logo-150x90.png\";s:5:\"width\";i:150;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"colormag-featured-post-small\";a:4:{s:4:\"file\";s:24:\"colormag-logo-130x90.png\";s:5:\"width\";i:130;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5, 6, '_starter_content_theme', 'colormag'),
(7, 7, '_wp_attached_file', '2019/05/fireman.jpg'),
(8, 7, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:800;s:6:\"height\";i:445;s:4:\"file\";s:19:\"2019/05/fireman.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"fireman-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"fireman-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"fireman-768x427.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"colormag-highlighted-post\";a:4:{s:4:\"file\";s:19:\"fireman-392x272.jpg\";s:5:\"width\";i:392;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"colormag-featured-post-medium\";a:4:{s:4:\"file\";s:19:\"fireman-390x205.jpg\";s:5:\"width\";i:390;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"colormag-featured-post-small\";a:4:{s:4:\"file\";s:18:\"fireman-130x90.jpg\";s:5:\"width\";i:130;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(9, 7, '_starter_content_theme', 'colormag'),
(11, 8, '_wp_attached_file', '2019/05/coffee.jpg'),
(12, 8, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:800;s:6:\"height\";i:445;s:4:\"file\";s:18:\"2019/05/coffee.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"coffee-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"coffee-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"coffee-768x427.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"colormag-highlighted-post\";a:4:{s:4:\"file\";s:18:\"coffee-392x272.jpg\";s:5:\"width\";i:392;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"colormag-featured-post-medium\";a:4:{s:4:\"file\";s:18:\"coffee-390x205.jpg\";s:5:\"width\";i:390;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"colormag-featured-post-small\";a:4:{s:4:\"file\";s:17:\"coffee-130x90.jpg\";s:5:\"width\";i:130;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(13, 8, '_starter_content_theme', 'colormag'),
(15, 9, '_wp_attached_file', '2019/05/yummy.jpg'),
(16, 9, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:800;s:6:\"height\";i:445;s:4:\"file\";s:17:\"2019/05/yummy.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"yummy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"yummy-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"yummy-768x427.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"colormag-highlighted-post\";a:4:{s:4:\"file\";s:17:\"yummy-392x272.jpg\";s:5:\"width\";i:392;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"colormag-featured-post-medium\";a:4:{s:4:\"file\";s:17:\"yummy-390x205.jpg\";s:5:\"width\";i:390;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"colormag-featured-post-small\";a:4:{s:4:\"file\";s:16:\"yummy-130x90.jpg\";s:5:\"width\";i:130;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(17, 9, '_starter_content_theme', 'colormag'),
(19, 10, '_wp_attached_file', '2019/05/relay-race.jpg'),
(20, 10, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:800;s:6:\"height\";i:445;s:4:\"file\";s:22:\"2019/05/relay-race.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"relay-race-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"relay-race-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"relay-race-768x427.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"colormag-highlighted-post\";a:4:{s:4:\"file\";s:22:\"relay-race-392x272.jpg\";s:5:\"width\";i:392;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"colormag-featured-post-medium\";a:4:{s:4:\"file\";s:22:\"relay-race-390x205.jpg\";s:5:\"width\";i:390;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"colormag-featured-post-small\";a:4:{s:4:\"file\";s:21:\"relay-race-130x90.jpg\";s:5:\"width\";i:130;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(21, 10, '_starter_content_theme', 'colormag'),
(23, 11, '_wp_attached_file', '2019/05/sea.jpg'),
(24, 11, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:800;s:6:\"height\";i:445;s:4:\"file\";s:15:\"2019/05/sea.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"sea-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"sea-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"sea-768x427.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"colormag-highlighted-post\";a:4:{s:4:\"file\";s:15:\"sea-392x272.jpg\";s:5:\"width\";i:392;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"colormag-featured-post-medium\";a:4:{s:4:\"file\";s:15:\"sea-390x205.jpg\";s:5:\"width\";i:390;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"colormag-featured-post-small\";a:4:{s:4:\"file\";s:14:\"sea-130x90.jpg\";s:5:\"width\";i:130;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(25, 11, '_starter_content_theme', 'colormag'),
(27, 12, '_wp_attached_file', '2019/05/ad-medium.jpg'),
(28, 12, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:300;s:6:\"height\";i:250;s:4:\"file\";s:21:\"2019/05/ad-medium.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"ad-medium-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"ad-medium-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"colormag-featured-post-medium\";a:4:{s:4:\"file\";s:21:\"ad-medium-300x205.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"colormag-featured-post-small\";a:4:{s:4:\"file\";s:20:\"ad-medium-130x90.jpg\";s:5:\"width\";i:130;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(29, 12, '_starter_content_theme', 'colormag'),
(31, 13, '_wp_attached_file', '2019/05/ad-large.jpg'),
(32, 13, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:728;s:6:\"height\";i:90;s:4:\"file\";s:20:\"2019/05/ad-large.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"ad-large-150x90.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"ad-large-300x37.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:37;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"colormag-highlighted-post\";a:4:{s:4:\"file\";s:19:\"ad-large-392x90.jpg\";s:5:\"width\";i:392;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"colormag-featured-post-medium\";a:4:{s:4:\"file\";s:19:\"ad-large-390x90.jpg\";s:5:\"width\";i:390;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"colormag-featured-post-small\";a:4:{s:4:\"file\";s:19:\"ad-large-130x90.jpg\";s:5:\"width\";i:130;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(33, 13, '_starter_content_theme', 'colormag'),
(36, 14, '_customize_changeset_uuid', '887f2fba-d615-44ce-a422-7a05e0d0b3ad'),
(37, 15, '_wp_page_template', 'page-templates/contact.php'),
(39, 15, '_customize_changeset_uuid', '887f2fba-d615-44ce-a422-7a05e0d0b3ad'),
(40, 16, '_thumbnail_id', '8'),
(42, 16, '_customize_changeset_uuid', '887f2fba-d615-44ce-a422-7a05e0d0b3ad'),
(43, 17, '_thumbnail_id', '9'),
(45, 17, '_customize_changeset_uuid', '887f2fba-d615-44ce-a422-7a05e0d0b3ad'),
(46, 18, '_thumbnail_id', '10'),
(48, 18, '_customize_changeset_uuid', '887f2fba-d615-44ce-a422-7a05e0d0b3ad'),
(49, 19, '_thumbnail_id', '11'),
(51, 19, '_customize_changeset_uuid', '887f2fba-d615-44ce-a422-7a05e0d0b3ad'),
(52, 20, '_thumbnail_id', '7'),
(54, 20, '_customize_changeset_uuid', '887f2fba-d615-44ce-a422-7a05e0d0b3ad'),
(60, 29, '_menu_item_type', 'custom'),
(61, 29, '_menu_item_menu_item_parent', '0'),
(62, 29, '_menu_item_object_id', '29'),
(63, 29, '_menu_item_object', 'custom'),
(64, 29, '_menu_item_target', ''),
(65, 29, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(66, 29, '_menu_item_xfn', ''),
(67, 29, '_menu_item_url', 'https://downloads.wordpress.org/theme/colormag.zip'),
(68, 30, '_menu_item_type', 'custom'),
(69, 30, '_menu_item_menu_item_parent', '0'),
(70, 30, '_menu_item_object_id', '30'),
(71, 30, '_menu_item_object', 'custom'),
(72, 30, '_menu_item_target', ''),
(73, 30, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(74, 30, '_menu_item_xfn', ''),
(75, 30, '_menu_item_url', 'https://themegrill.com/themes/colormag/'),
(76, 31, '_menu_item_type', 'custom'),
(77, 31, '_menu_item_menu_item_parent', '0'),
(78, 31, '_menu_item_object_id', '31'),
(79, 31, '_menu_item_object', 'custom'),
(80, 31, '_menu_item_target', ''),
(81, 31, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(82, 31, '_menu_item_xfn', ''),
(83, 31, '_menu_item_url', 'https://themegrill.com/themes/colormag/'),
(84, 32, '_menu_item_type', 'post_type'),
(85, 32, '_menu_item_menu_item_parent', '0'),
(86, 32, '_menu_item_object_id', '14'),
(87, 32, '_menu_item_object', 'page'),
(88, 32, '_menu_item_target', ''),
(89, 32, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(90, 32, '_menu_item_xfn', ''),
(91, 32, '_menu_item_url', ''),
(92, 33, '_menu_item_type', 'post_type'),
(93, 33, '_menu_item_menu_item_parent', '0'),
(94, 33, '_menu_item_object_id', '15'),
(95, 33, '_menu_item_object', 'page'),
(96, 33, '_menu_item_target', ''),
(97, 33, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(98, 33, '_menu_item_xfn', ''),
(99, 33, '_menu_item_url', ''),
(100, 21, '_wp_trash_meta_status', 'publish'),
(101, 21, '_wp_trash_meta_time', '1557455921'),
(102, 34, '_edit_lock', '1557455983:1'),
(103, 34, '_wp_trash_meta_status', 'publish'),
(104, 34, '_wp_trash_meta_time', '1557456026'),
(105, 35, '_wp_trash_meta_status', 'publish'),
(106, 35, '_wp_trash_meta_time', '1557456043'),
(107, 36, '_edit_lock', '1557456644:1'),
(108, 36, '_wp_trash_meta_status', 'publish'),
(109, 36, '_wp_trash_meta_time', '1557456683'),
(110, 37, '_edit_lock', '1557456764:1'),
(111, 37, '_wp_trash_meta_status', 'publish'),
(112, 37, '_wp_trash_meta_time', '1557456780');
-- --------------------------------------------------------
--
-- Table structure for table `wp_posts`
--
CREATE TABLE `wp_posts` (
`ID` bigint(20) UNSIGNED NOT NULL,
`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 COLLATE utf8mb4_unicode_ci NOT NULL,
`post_title` text COLLATE utf8mb4_unicode_ci NOT NULL,
`post_excerpt` text COLLATE utf8mb4_unicode_ci NOT NULL,
`post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
`ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
`post_password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`to_ping` text COLLATE utf8mb4_unicode_ci NOT NULL,
`pinged` text COLLATE utf8mb4_unicode_ci NOT NULL,
`post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`post_parent` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`menu_order` int(11) NOT NULL DEFAULT '0',
`post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_count` bigint(20) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `wp_posts`
--
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1, 1, '2019-05-10 09:26:41', '2019-05-10 02:26:41', '<!-- wp:paragraph -->\n<p>Selamat datang di WordPress. Ini adalah pos pertama Anda. Edit atau hapus pos ini, lalu mulailah menulis!</p>\n<!-- /wp:paragraph -->', 'Halo dunia!', '', 'publish', 'open', 'open', '', 'halo-dunia', '', '', '2019-05-10 09:26:41', '2019-05-10 02:26:41', '', 0, 'http://localhost/wp/K-BESAR/?p=1', 0, 'post', '', 1),
(2, 1, '2019-05-10 09:26:41', '2019-05-10 02:26:41', '<!-- 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/wp/K-BESAR/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->', 'Laman Contoh', '', 'publish', 'closed', 'open', '', 'laman-contoh', '', '', '2019-05-10 09:26:41', '2019-05-10 02:26:41', '', 0, 'http://localhost/wp/K-BESAR/?page_id=2', 0, 'page', '', 0),
(3, 1, '2019-05-10 09:26:41', '2019-05-10 02:26:41', '<!-- wp:heading --><h2>Siapa kami</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Alamat situs web kami adalah: http://localhost/wp/K-BESAR.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Data pribadi apa yang kami kumpulkan dan mengapa kami mengumpulkannya</h2><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Komentar</h3><!-- /wp:heading --><!-- wp:paragraph --><p>Saat pengunjung meninggalkan komentar pada situs, kita mengumpulkan data yang ditampilkan pada form komentar, alamat IP pengunjung dan user agent browser untuk membantu pendeteksian spam.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>String anonim yang dibuat dari alamat email Anda (juga disebut hash) dapat diberikan ke layanan Gravatar untuk melihat apakah Anda menggunakannya. Kebijakan privasi layanan Gravatar tersedia di sini: https://automattic.com/privacy/. Setelah persetujuan atas komentar Anda, gambar profil Anda dapat dilihat oleh publik dalam konteks komentar Anda.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Media</h3><!-- /wp:heading --><!-- wp:paragraph --><p>Jika Anda mengunggah gambar ke situs web, Anda harus menghindari mengunggah gambar dengan data lokasi tertanam (GPS EXIF) yang disertakan. Pengunjung ke situs web dapat mengunduh dan mengekstrak data lokasi apa pun dari gambar di situs web.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Formulir Kontak</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Cookies</h3><!-- /wp:heading --><!-- wp:paragraph --><p>Jika Anda meninggalkan komentar di situs kami, Anda dapat memilih untuk menyimpan nama, alamat email, dan situs web Anda dalam cookie. Ini untuk kenyamanan Anda sehingga Anda tidak perlu mengisi detail Anda lagi ketika Anda meninggalkan komentar lain. Cookie ini akan bertahan selama satu tahun.</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>Saat Anda log masuk, kami akan menyiapkan beberapa cookie untuk menyimpan informasi log masuk Anda dan tampilan yang Anda pilih. Cookie log masuk berlaku selama dua hari, dan cookie pengaturan tampilan berlaku selama satu tahun. Jika Anda memilih "Ingatkan Saya", log masuk anda akan bertahan selama dua minggu. Jika Anda log keluar dari akun, cookie log masuk akan dihapus.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>Jika Anda menyunting atau menerbitkan artikel, cookie tambahan akan disimpan di browser Anda. Cookie ini tidak menyertakan data pribadi dan hanya menunjukkan ID posting dari artikel yang baru saja Anda sunting. Kadaluwarsa setelah 1 hari.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Konten yang disematkan dari situs web lain</h3><!-- /wp:heading --><!-- wp:paragraph --><p>Artikel-artikel di dalam situs ini dapat menyertakan konten terembed (seperti video, gambar, artikel, dll). Konten terembed dari situs web lain akan berlaku sama dengan pengunjung yang mengunjungi situs web lain.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>Situs-situs web ini dapat mengumpulkan data tentang Anda, menggunakan cookies, menanamkan pelacak dari pihak ketiga, dan memonitor interaksi Anda dengan muatan tertanam, termasuk menggunakannya untuk melacak interaksi Anda jika Anda memiliki sebuah akun dan masuk ke dalam situs web tersebut.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Analitik</h3><!-- /wp:heading --><!-- wp:heading --><h2>Dengan siapa kami membagi data Anda</h2><!-- /wp:heading --><!-- wp:heading --><h2>Berapa lama kami menyimpan data Anda</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Jika Anda meninggalkan komentar, komentar dan metadatanya dipertahankan tanpa batas. Ini agar kami dapat mengenali dan menyetujui komentar tindak lanjut secara otomatis dan tidak menahannya dalam antrean moderasi.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>Untuk pengguna yang mendaftar pada website kami (jika ada), kami juga menyimpan informasi pribadi yang mereka berikan dalam profil pengguna mereka. Semua pengguna dapat melihat, mengedit, atau menghapus informasi pribadi mereka kapan saja (kecuali mereka tidak dapat mengubah nama pengguna mereka). Administrator situs juga dapat melihat dan mengedit informasi tersebut.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Hak apa yang Anda miliki atas data ANda</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Jika anda mempunyai akun di situs ini, atau telah meninggalkan komentar, anda dapat meminta untuk mendapat data personal dalam file export dari kami, termasuk data yang anda berikan kepada kami. Anda juga dapat meminta kami menghapus data personal mengenai anda. Ini tidak termasuk data yang wajib kami simpan untuk keperluan administratif, hukum, atau keamanan.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Ke mana kami kirim data Anda</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Komentar pengunjung dapat diperiksa melalui layanan deteksi spam otomatis.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Informasi kontak Anda</h2><!-- /wp:heading --><!-- wp:heading --><h2>Informasi tambahan</h2><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Bagaimana kami melindungi data Anda</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Apa prosedur kebocoran data yang kami miliki</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Pihak ketiga mana saja data yang kami terima berasal</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Apa pengambilan keputusan otomatis dan/atau profil yang kami lakukan dengan data pengguna</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Persyaratan pengungkapan regulasi industri</h3><!-- /wp:heading -->', 'Kebijakan Privasi', '', 'draft', 'closed', 'open', '', 'kebijakan-privasi', '', '', '2019-05-10 09:26:41', '2019-05-10 02:26:41', '', 0, 'http://localhost/wp/K-BESAR/?page_id=3', 0, 'page', '', 0),
(4, 1, '2019-05-10 09:27:27', '0000-00-00 00:00:00', '', 'Konsep Otomatis', '', 'auto-draft', 'open', 'open', '', '', '', '', '2019-05-10 09:27:27', '0000-00-00 00:00:00', '', 0, 'http://localhost/wp/K-BESAR/?p=4', 0, 'post', '', 0),
(5, 1, '2019-05-10 09:33:02', '2019-05-10 02:33:02', '{\"id\":5,\"form_field_id\":\"1\",\"form_fields\":{\"fullname\":{\"id\":\"fullname\",\"type\":\"text\",\"label\":\"Name\",\"meta-key\":\"name\",\"description\":\"\",\"required\":\"1\",\"placeholder\":\"\",\"css\":\"\"},\"email\":{\"id\":\"email\",\"type\":\"email\",\"label\":\"Email\",\"meta-key\":\"email\",\"description\":\"\",\"required\":\"1\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"subject\":{\"id\":\"subject\",\"type\":\"text\",\"label\":\"Subject\",\"meta-key\":\"subject\",\"description\":\"\",\"required\":\"1\",\"placeholder\":\"\",\"css\":\"\"},\"message\":{\"id\":\"message\",\"type\":\"textarea\",\"label\":\"Message\",\"meta-key\":\"message\",\"description\":\"\",\"placeholder\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"Contact Form\",\"form_desc\":\"\",\"successful_form_submission_message\":\"Thanks for contacting us! We will be in touch with you shortly.\",\"redirect_to\":\"0\",\"custom_page\":\"2\",\"external_url\":\"\",\"layout_class\":\"default\",\"form_class\":\"\",\"submit_button_text\":\"Submit\",\"email\":{\"connection_1\":{\"connection_name\":\"Admin Notification\",\"evf_to_email\":\"[email protected]\",\"evf_from_name\":\"K-BESAR\",\"evf_from_email\":\"[email protected]\",\"evf_reply_to\":\"{field_id=\\\"email\\\"}\",\"evf_email_subject\":\"New Form Entry \",\"evf_email_message\":\"{all_fields}\"}}},\"structure\":{\"row_1\":{\"grid_1\":[\"fullname\",\"email\",\"subject\",\"message\"]}}}', 'Contact Form', '', 'publish', 'closed', 'closed', '', 'contact-form', '', '', '2019-05-10 09:33:02', '2019-05-10 02:33:02', '', 0, 'http://localhost/wp/K-BESAR/?post_type=everest_form&p=5', 0, 'everest_form', '', 0),
(6, 1, '2019-05-10 09:38:31', '2019-05-10 02:38:31', '', 'ColorMag Logo', '', 'inherit', 'open', 'closed', '', 'colormag-logo', '', '', '2019-05-10 09:38:31', '2019-05-10 02:38:31', '', 0, 'http://localhost/wp/K-BESAR/wp-content/uploads/2019/05/colormag-logo.png', 0, 'attachment', 'image/png', 0),
(7, 1, '2019-05-10 09:38:31', '2019-05-10 02:38:31', '', 'Featured image fireman', '', 'inherit', 'open', 'closed', '', 'featured-image-fireman', '', '', '2019-05-10 09:38:31', '2019-05-10 02:38:31', '', 0, 'http://localhost/wp/K-BESAR/wp-content/uploads/2019/05/fireman.jpg', 0, 'attachment', 'image/jpeg', 0),
(8, 1, '2019-05-10 09:38:31', '2019-05-10 02:38:31', '', 'Featured image coffee', '', 'inherit', 'open', 'closed', '', 'featured-image-coffee', '', '', '2019-05-10 09:38:31', '2019-05-10 02:38:31', '', 0, 'http://localhost/wp/K-BESAR/wp-content/uploads/2019/05/coffee.jpg', 0, 'attachment', 'image/jpeg', 0),
(9, 1, '2019-05-10 09:38:32', '2019-05-10 02:38:32', '', 'Featured image yummy', '', 'inherit', 'open', 'closed', '', 'featured-image-yummy', '', '', '2019-05-10 09:38:32', '2019-05-10 02:38:32', '', 0, 'http://localhost/wp/K-BESAR/wp-content/uploads/2019/05/yummy.jpg', 0, 'attachment', 'image/jpeg', 0),
(10, 1, '2019-05-10 09:38:32', '2019-05-10 02:38:32', '', 'Featured image relay race', '', 'inherit', 'open', 'closed', '', 'featured-image-relay-race', '', '', '2019-05-10 09:38:32', '2019-05-10 02:38:32', '', 0, 'http://localhost/wp/K-BESAR/wp-content/uploads/2019/05/relay-race.jpg', 0, 'attachment', 'image/jpeg', 0),
(11, 1, '2019-05-10 09:38:32', '2019-05-10 02:38:32', '', 'Featured image paradise for holiday', '', 'inherit', 'open', 'closed', '', 'featured-image-paradise-for-holiday', '', '', '2019-05-10 09:38:32', '2019-05-10 02:38:32', '', 0, 'http://localhost/wp/K-BESAR/wp-content/uploads/2019/05/sea.jpg', 0, 'attachment', 'image/jpeg', 0),
(12, 1, '2019-05-10 09:38:32', '2019-05-10 02:38:32', '', 'Featured image ad medium', '', 'inherit', 'open', 'closed', '', 'featured-image-ad-medium', '', '', '2019-05-10 09:38:32', '2019-05-10 02:38:32', '', 0, 'http://localhost/wp/K-BESAR/wp-content/uploads/2019/05/ad-medium.jpg', 0, 'attachment', 'image/jpeg', 0),
(13, 1, '2019-05-10 09:38:32', '2019-05-10 02:38:32', '', 'Featured image ad large', '', 'inherit', 'open', 'closed', '', 'featured-image-ad-large', '', '', '2019-05-10 09:38:32', '2019-05-10 02:38:32', '', 0, 'http://localhost/wp/K-BESAR/wp-content/uploads/2019/05/ad-large.jpg', 0, 'attachment', 'image/jpeg', 0),
(14, 1, '2019-05-10 09:38:32', '2019-05-10 02:38:32', 'ThemeGrill layout content', 'Layout', '', 'publish', 'closed', 'closed', '', 'layout', '', '', '2019-05-10 09:38:32', '2019-05-10 02:38:32', '', 0, 'http://localhost/wp/K-BESAR/?page_id=14', 0, 'page', '', 0),
(15, 1, '2019-05-10 09:38:33', '2019-05-10 02:38:33', 'Ini laman dengan informasi kontak dasar, seperti alamat dan nomor telepon. Anda juga bisa menggunakan plugin untuk menambahkan formulir kontak.', 'Kontak', '', 'publish', 'closed', 'closed', '', 'kontak', '', '', '2019-05-10 09:38:33', '2019-05-10 02:38:33', '', 0, 'http://localhost/wp/K-BESAR/?page_id=15', 0, 'page', '', 0),
(16, 1, '2019-05-10 09:38:33', '2019-05-10 02:38:33', 'Vivamus vestibulum ut magna vitae facilisis. Maecenas laoreet lobortis tristique. Aenean accumsan malesuada convallis. Suspendisse egestas luctus nisl, sit amet', 'Coffee is health food: Myth or fact?', '', 'publish', 'open', 'open', '', 'coffee-is-health-food-myth-or-fact', '', '', '2019-05-10 09:38:33', '2019-05-10 02:38:33', '', 0, 'http://localhost/wp/K-BESAR/?p=16', 0, 'post', '', 0),
(17, 1, '2019-05-10 09:38:34', '2019-05-10 02:38:34', 'Fusce non nunc mi. Integer placerat nulla id quam varius dapibus. Nulla sit amet tellus et purus lobortis efficitur. Vivamus tempus posuere ipsum in suscipit. Quisque pulvinar fringilla cursus. Morbi malesuada laoreet dui, vitae consequat arcu vehicula vel. Fusce vel turpis non ante mollis bibendum a ac risus. Morbi ornare ipsum sit amet enim rhoncus, sed eleifend felis tristique. Mauris sed sollicitudin libero. In nec lacus quis erat rhoncus molestie.', 'Get more nutrition in every bite', '', 'publish', 'open', 'open', '', 'get-more-nutrition-in-every-bite', '', '', '2019-05-10 09:38:34', '2019-05-10 02:38:34', '', 0, 'http://localhost/wp/K-BESAR/?p=17', 0, 'post', '', 0),
(18, 1, '2019-05-10 09:38:34', '2019-05-10 02:38:34', 'The young team of Franziska Hildebrand, Franziska Preuss, Vanessa Hinz and Dahlmeier clocked 1 hour, 11 minutes, 54.6 seconds to beat France by just over 1 minute. Italy took bronze, 1:06.1 behind. Germany missed six targets overall, avoiding any laps around the penalty loop. Maria Dorin Habert of France, who has two individual gold medals at these worlds, passed Russia and France on the last leg and to take her team from fourth to second.', 'Women’s Relay Competition', '', 'publish', 'open', 'open', '', 'womens-relay-competition', '', '', '2019-05-10 09:38:34', '2019-05-10 02:38:34', '', 0, 'http://localhost/wp/K-BESAR/?p=18', 0, 'post', '', 0),
(19, 1, '2019-05-10 09:38:34', '2019-05-10 02:38:34', 'Chocolate bar marzipan sweet marzipan. Danish tart bear claw donut cake bonbon biscuit powder croissant. Liquorice cake cookie. Dessert cotton candy macaroon gummies sweet gingerbread sugar plum. Biscuit tart cake. Candy jelly ice cream halvah jelly-o jelly beans brownie pastry sweet. Candy sweet roll dessert. Lemon drops jelly-o fruitcake topping. Soufflé jelly beans bonbon.', 'A Paradise for Holiday', '', 'publish', 'open', 'open', '', 'a-paradise-for-holiday', '', '', '2019-05-10 09:38:34', '2019-05-10 02:38:34', '', 0, 'http://localhost/wp/K-BESAR/?p=19', 0, 'post', '', 0),
(20, 1, '2019-05-10 09:38:35', '2019-05-10 02:38:35', 'Nunc consectetur ipsum nisi, ut pellentesque felis tempus vitae. Integer eget lacinia nunc. Vestibulum consectetur convallis augue id egestas. Nullam rhoncus, arcu in tincidunt ultricies, velit diam imperdiet lacus, sed faucibus mi massa vel nunc. In ac viverra augue, a luctus nisl. Donec interdum enim tempus, aliquet metus maximus, euismod quam. Sed pretium finibus rhoncus. Phasellus libero diam, rutrum non ipsum ut, ultricies sodales sapien. Duis viverra purus lorem.', 'Destruction in Montania', '', 'publish', 'open', 'open', '', 'destruction-in-montania', '', '', '2019-05-10 09:38:35', '2019-05-10 02:38:35', '', 0, 'http://localhost/wp/K-BESAR/?p=20', 0, 'post', '', 0),
(21, 1, '2019-05-10 09:38:30', '2019-05-10 02:38:30', '{\n \"widget_colormag_728x90_advertisement_widget[2]\": {\n \"starter_content\": true,\n \"value\": {\n \"encoded_serialized_instance\": \"YToyOntzOjE3OiI3Mjh4OTBfaW1hZ2VfbGluayI7czo0MToiaHR0cHM6Ly9kZW1vLnRoZW1lZ3JpbGwuY29tL2NvbG9ybWFnLXByby8iO3M6MTY6IjcyOHg5MF9pbWFnZV91cmwiO3M6NzE6Imh0dHA6Ly9sb2NhbGhvc3Qvd3AvSy1CRVNBUi93cC1jb250ZW50L3RoZW1lcy9jb2xvcm1hZy9pbWcvYWQtbGFyZ2UuanBnIjt9\",\n \"title\": \"\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"b1e076425c934b66e2d1caca4f3d74be\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:37:31\"\n },\n \"sidebars_widgets[colormag_header_sidebar]\": {\n \"starter_content\": true,\n \"value\": [\n \"colormag_728x90_advertisement_widget-2\"\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:37:31\"\n },\n \"widget_colormag_featured_posts_slider_widget[2]\": {\n \"starter_content\": true,\n \"value\": {\n \"encoded_serialized_instance\": \"YToxOntzOjY6Im51bWJlciI7aToyO30=\",\n \"title\": \"\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"15cbf03efafd59ca8e0745a015da3bd7\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:37:31\"\n },\n \"sidebars_widgets[colormag_front_page_slider_area]\": {\n \"starter_content\": true,\n \"value\": [\n \"colormag_featured_posts_slider_widget-2\"\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:37:31\"\n },\n \"widget_colormag_highlighted_posts_widget[2]\": {\n \"starter_content\": true,\n \"value\": {\n \"encoded_serialized_instance\": \"YToxOntzOjY6Im51bWJlciI7aTo0O30=\",\n \"title\": \"\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"cf8b1973efec469dd4da900d142ad906\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:37:31\"\n },\n \"sidebars_widgets[colormag_front_page_area_beside_slider]\": {\n \"starter_content\": true,\n \"value\": [\n \"colormag_highlighted_posts_widget-2\"\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:37:31\"\n },\n \"widget_colormag_featured_posts_vertical_widget[2]\": {\n \"starter_content\": true,\n \"value\": {\n \"encoded_serialized_instance\": \"YToyOntzOjU6InRpdGxlIjtzOjQ6Ik5FV1MiO3M6NjoibnVtYmVyIjtpOjI7fQ==\",\n \"title\": \"NEWS\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"5c836168fca760ef81cfda1d948fd09f\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:37:31\"\n },\n \"widget_text[2]\": {\n \"starter_content\": true,\n \"value\": {\n \"encoded_serialized_instance\": \"YToyOntzOjU6InRpdGxlIjtzOjE0OiJQcmVtaXVtIFRoZW1lcyI7czo0OiJ0ZXh0IjtzOjc0NjoiPHVsPgoJCQkJCQkJCQkJPGxpPjxhIGhyZWY9Imh0dHBzOi8vdGhlbWVncmlsbC5jb20vdGhlbWVzL3NwYWNpb3VzLXByby8iPlNwYWNpb3VzIFBybzwvYT48L2xpPgoJCQkJCQkJCQkJPGxpPjxhIGhyZWY9Imh0dHBzOi8vdGhlbWVncmlsbC5jb20vdGhlbWVzL2Zvb2RodW50LXByby8iPkZvb2RIdW50IFBybzwvYT48L2xpPgoJCQkJCQkJCQkJPGxpPjxhIGhyZWY9Imh0dHBzOi8vdGhlbWVncmlsbC5jb20vdGhlbWVzL2NvbG9ybmV3cy1wcm8vIj5Db2xvck5ld3MgUHJvPC9hPjwvbGk+CgkJCQkJCQkJCQk8bGk+PGEgaHJlZj0iaHR0cHM6Ly90aGVtZWdyaWxsLmNvbS90aGVtZXMvYWNjZWxlcmF0ZS1wcm8vIj5BY2NlbGVyYXRlIFBybzwvYT48L2xpPgoJCQkJCQkJCQkJPGxpPjxhIGhyZWY9Imh0dHBzOi8vdGhlbWVncmlsbC5jb20vdGhlbWVzL2VzdGVlbS1wcm8vIj5Fc3RlZW0gUHJvPC9hPjwvbGk+CgkJCQkJCQkJCQk8bGk+PGEgaHJlZj0iaHR0cHM6Ly9odHRwOi8vdGhlbWVncmlsbC5jb20vdGhlbWVzL3JhZGlhdGUtcHJvLyI+UmFkaWF0ZSBQcm88L2E+PC9saT4KCQkJCQkJCQkJCTxsaT48YSBocmVmPSJodHRwczovL3RoZW1lZ3JpbGwuY29tL3RoZW1lcy9maXRjbHViLXByby8iPkZpdGNsdWIgUHJvPC9hPjwvbGk+CgkJCQkJCQkJCQk8bGk+PGEgaHJlZj0iaHR0cHM6Ly90aGVtZWdyaWxsLmNvbS90aGVtZXMvaGltYWxheWFzLXByby8iPkhpbWFsYXlhcyBQcm88L2E+PC9saT4KCQkJCQkJCQkJPC91bD4iO30=\",\n \"title\": \"Premium Themes\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"ae368aa713c38d78e3041046b09dd54d\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:37:31\"\n },\n \"widget_colormag_125x125_advertisement_widget[2]\": {\n \"starter_content\": true,\n \"value\": {\n \"encoded_serialized_instance\": \"YTo5OntzOjU6InRpdGxlIjtzOjE1OiJURzogMTI1eDEyNSBBZHMiO3M6MjA6IjEyNXgxMjVfaW1hZ2VfbGlua18xIjtzOjIzOiJodHRwczovL3RoZW1lZ3JpbGwuY29tLyI7czoxOToiMTI1eDEyNV9pbWFnZV91cmxfMSI7czo3MToiaHR0cDovL2xvY2FsaG9zdC93cC9LLUJFU0FSL3dwLWNvbnRlbnQvdGhlbWVzL2NvbG9ybWFnL2ltZy9hZC1zbWFsbC5qcGciO3M6MjA6IjEyNXgxMjVfaW1hZ2VfbGlua18yIjtzOjIzOiJodHRwczovL3RoZW1lZ3JpbGwuY29tLyI7czoxOToiMTI1eDEyNV9pbWFnZV91cmxfMiI7czo3MToiaHR0cDovL2xvY2FsaG9zdC93cC9LLUJFU0FSL3dwLWNvbnRlbnQvdGhlbWVzL2NvbG9ybWFnL2ltZy9hZC1zbWFsbC5qcGciO3M6MjA6IjEyNXgxMjVfaW1hZ2VfbGlua18zIjtzOjIzOiJodHRwczovL3RoZW1lZ3JpbGwuY29tLyI7czoxOToiMTI1eDEyNV9pbWFnZV91cmxfMyI7czo3MToiaHR0cDovL2xvY2FsaG9zdC93cC9LLUJFU0FSL3dwLWNvbnRlbnQvdGhlbWVzL2NvbG9ybWFnL2ltZy9hZC1zbWFsbC5qcGciO3M6MjA6IjEyNXgxMjVfaW1hZ2VfbGlua180IjtzOjIzOiJodHRwczovL3RoZW1lZ3JpbGwuY29tLyI7czoxOToiMTI1eDEyNV9pbWFnZV91cmxfNCI7czo3MToiaHR0cDovL2xvY2FsaG9zdC93cC9LLUJFU0FSL3dwLWNvbnRlbnQvdGhlbWVzL2NvbG9ybWFnL2ltZy9hZC1zbWFsbC5qcGciO30=\",\n \"title\": \"TG: 125x125 Ads\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"f6c4c4295a7a276b2de687966f009ae8\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:37:31\"\n },\n \"sidebars_widgets[colormag_right_sidebar]\": {\n \"starter_content\": true,\n \"value\": [\n \"colormag_featured_posts_vertical_widget-2\",\n \"text-2\",\n \"colormag_125x125_advertisement_widget-2\"\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:37:31\"\n },\n \"widget_colormag_featured_posts_widget[2]\": {\n \"starter_content\": true,\n \"value\": {\n \"encoded_serialized_instance\": \"YToyOntzOjU6InRpdGxlIjtzOjY6IkhFQUxUSCI7czo2OiJudW1iZXIiO2k6NTt9\",\n \"title\": \"HEALTH\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"5a96819614c515f45dae4ff5e81e8e48\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:37:31\"\n },\n \"sidebars_widgets[colormag_front_page_content_top_section]\": {\n \"starter_content\": true,\n \"value\": [\n \"colormag_featured_posts_widget-2\"\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:37:31\"\n },\n \"widget_colormag_featured_posts_vertical_widget[3]\": {\n \"starter_content\": true,\n \"value\": {\n \"encoded_serialized_instance\": \"YToyOntzOjU6InRpdGxlIjtzOjc6IkZBU0hJT04iO3M6NjoibnVtYmVyIjtpOjQ7fQ==\",\n \"title\": \"FASHION\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"4d10665a7f8e945c99163227bd9c5d9b\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:37:31\"\n },\n \"sidebars_widgets[colormag_front_page_content_middle_left_section]\": {\n \"starter_content\": true,\n \"value\": [\n \"colormag_featured_posts_vertical_widget-3\"\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:37:31\"\n },\n \"widget_colormag_featured_posts_vertical_widget[4]\": {\n \"starter_content\": true,\n \"value\": {\n \"encoded_serialized_instance\": \"YToyOntzOjU6InRpdGxlIjtzOjY6IlNQT1JUUyI7czo2OiJudW1iZXIiO2k6NDt9\",\n \"title\": \"SPORTS\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"0fd8cd7f0c22cdffde5cc534220fdc51\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:37:31\"\n },\n \"sidebars_widgets[colormag_front_page_content_middle_right_section]\": {\n \"starter_content\": true,\n \"value\": [\n \"colormag_featured_posts_vertical_widget-4\"\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:37:31\"\n },\n \"widget_colormag_featured_posts_widget[3]\": {\n \"starter_content\": true,\n \"value\": {\n \"encoded_serialized_instance\": \"YTozOntzOjU6InRpdGxlIjtzOjEwOiJURUNITk9MT0dZIjtzOjQ6InRleHQiO3M6Mzk6IkNoZWNrIG91dCB0ZWNobm9sb2d5IGNoYW5naW5nIHRoZSBsaWZlLiI7czo2OiJudW1iZXIiO2k6NDt9\",\n \"title\": \"TECHNOLOGY\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"2ecd66126e95bfab51a7ae7704e66625\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:37:31\"\n },\n \"sidebars_widgets[colormag_front_page_content_bottom_section]\": {\n \"starter_content\": true,\n \"value\": [\n \"colormag_featured_posts_widget-3\"\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:37:31\"\n },\n \"widget_text[3]\": {\n \"starter_content\": true,\n \"value\": {\n \"encoded_serialized_instance\": \"YToyOntzOjU6InRpdGxlIjtzOjg6IkFib3V0IFVzIjtzOjQ6InRleHQiO3M6MzU4OiI8YSB0aXRsZT0ibG9nbyIgaHJlZj0iaHR0cDovL2xvY2FsaG9zdC93cC9LLUJFU0FSIj48aW1nIHNyYz0iaHR0cDovL2xvY2FsaG9zdC93cC9LLUJFU0FSL3dwLWNvbnRlbnQvdGhlbWVzL2NvbG9ybWFnL2ltZy9jb2xvcm1hZy1sb2dvLnBuZyIgYWx0PSJMb2dvIiAvPjwvYT4gPGJyPiBXZSBsb3ZlIFdvcmRQcmVzcyBhbmQgd2UgYXJlIGhlcmUgdG8gcHJvdmlkZSB5b3Ugd2l0aCBwcm9mZXNzaW9uYWwgbG9va2luZyBXb3JkUHJlc3MgdGhlbWVzIHNvIHRoYXQgeW91IGNhbiB0YWtlIHlvdXIgd2Vic2l0ZSBvbmUgc3RlcCBhaGVhZC4gV2UgZm9jdXMgb24gc2ltcGxpY2l0eSwgZWxlZ2FudCBkZXNpZ24gYW5kIGNsZWFuIGNvZGUuIjt9\",\n \"title\": \"About Us\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"d815c72e2b3b5a9fce1d830bbfafdc66\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:37:31\"\n },\n \"sidebars_widgets[colormag_footer_sidebar_one]\": {\n \"starter_content\": true,\n \"value\": [\n \"text-3\"\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:37:31\"\n },\n \"widget_text[4]\": {\n \"starter_content\": true,\n \"value\": {\n \"encoded_serialized_instance\": \"YToyOntzOjU6InRpdGxlIjtzOjEyOiJVc2VmdWwgTGlua3MiO3M6NDoidGV4dCI7czo2NTQ6Ijx1bD4KCQkJCQkJCQkJCTxsaT48YSBocmVmPSJodHRwczovL3RoZW1lZ3JpbGwuY29tLyI+VGhlbWVHcmlsbDwvYT48L2xpPgoJCQkJCQkJCQkJPGxpPjxhIGhyZWY9Imh0dHBzOi8vdGhlbWVncmlsbC5jb20vc3VwcG9ydC1mb3J1bS8iPlN1cHBvcnQ8L2E+PC9saT4KCQkJCQkJCQkJCTxsaT48YSBocmVmPSJodHRwczovL3RoZW1lZ3JpbGwuY29tL3RoZW1lLWluc3RydWN0aW9uL2NvbG9ybWFnLyI+RG9jdW1lbnRhdGlvbjwvYT48L2xpPgoJCQkJCQkJCQkJPGxpPjxhIGhyZWY9Imh0dHBzOi8vdGhlbWVncmlsbC5jb20vZnJlcXVlbnRseS1hc2tlZC1xdWVzdGlvbnMvIj5GQVE8L2E+PC9saT4KCQkJCQkJCQkJCTxsaT48YSBocmVmPSJodHRwczovL3RoZW1lZ3JpbGwuY29tL3RoZW1lcy8iPlRoZW1lczwvYT48L2xpPgoJCQkJCQkJCQkJPGxpPjxhIGhyZWY9Imh0dHBzOi8vdGhlbWVncmlsbC5jb20vcGx1Z2lucy8iPlBsdWdpbnM8L2E+PC9saT4KCQkJCQkJCQkJCTxsaT48YSBocmVmPSJodHRwczovL3RoZW1lZ3JpbGwuY29tL2Jsb2cvIj5CbG9nPC9hPjwvbGk+CgkJCQkJCQkJCQk8bGk+PGEgaHJlZj0iaHR0cHM6Ly90aGVtZWdyaWxsLmNvbS9wbGFucy1wcmljaW5nLyI+UGxhbnMgJmFtcDsgUHJpY2luZzwvYT48L2xpPgoJCQkJCQkJCQk8L3VsPiI7fQ==\",\n \"title\": \"Useful Links\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"b3d7dbe9b8c29ebe2aeeceb58f1773aa\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:37:31\"\n },\n \"sidebars_widgets[colormag_footer_sidebar_two]\": {\n \"starter_content\": true,\n \"value\": [\n \"text-4\"\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:37:31\"\n },\n \"widget_text[5]\": {\n \"starter_content\": true,\n \"value\": {\n \"encoded_serialized_instance\": \"YToyOntzOjU6InRpdGxlIjtzOjEyOiJPdGhlciBUaGVtZXMiO3M6NDoidGV4dCI7czo3NDc6Ijx1bD4KCQkJCQkJCQkJCTxsaT48YSBocmVmPSJodHRwczovL3RoZW1lZ3JpbGwuY29tL3RoZW1lcy9lbnZpbmNlLyI+RW52aW5jZTwvYT48L2xpPgoJCQkJCQkJCQkJPGxpPjxhIGhyZWY9Imh0dHBzOi8vdGhlbWVncmlsbC5jb20vdGhlbWVzL2VzdG9yZS8iPmVTdG9yZTwvYT48L2xpPgoJCQkJCQkJCQkJPGxpPjxhIGhyZWY9Imh0dHBzOi8vdGhlbWVncmlsbC5jb20vdGhlbWVzL2FtcGxlLyI+QW1wbGU8L2E+PC9saT4KCQkJCQkJCQkJCTxsaT48YSBocmVmPSJodHRwczovL3RoZW1lZ3JpbGwuY29tL3RoZW1lcy9zcGFjaW91cy8iPlNwYWNpb3VzPC9hPjwvbGk+CgkJCQkJCQkJCQk8bGk+PGEgaHJlZj0iaHR0cHM6Ly90aGVtZWdyaWxsLmNvbS90aGVtZXMvYWNjZWxlcmF0ZS8iPkFjY2VsZXJhdGU8L2E+PC9saT4KCQkJCQkJCQkJCTxsaT48YSBocmVmPSJodHRwczovL3RoZW1lZ3JpbGwuY29tL3RoZW1lcy9yYWRpYXRlLyI+UmFkaWF0ZTwvYT48L2xpPgoJCQkJCQkJCQkJPGxpPjxhIGhyZWY9Imh0dHBzOi8vdGhlbWVncmlsbC5jb20vdGhlbWVzL2VzdGVlbS8iPkVzdGVlbTwvYT48L2xpPgoJCQkJCQkJCQkJPGxpPjxhIGhyZWY9Imh0dHBzOi8vdGhlbWVncmlsbC5jb20vdGhlbWVzL2hpbWFsYXlhcy8iPkhpbWFsYXlhczwvYT48L2xpPgoJCQkJCQkJCQkJPGxpPjxhIGhyZWY9Imh0dHBzOi8vdGhlbWVncmlsbC5jb20vdGhlbWVzL2NvbG9ybmV3cy8iPkNvbG9yTmV3czwvYT48L2xpPgoJCQkJCQkJCQk8L3VsPiI7fQ==\",\n \"title\": \"Other Themes\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"e95df8d62d5d9022bbe76f61c3a97d48\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:37:31\"\n },\n \"sidebars_widgets[colormag_footer_sidebar_three]\": {\n \"starter_content\": true,\n \"value\": [\n \"text-5\"\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:37:31\"\n },\n \"widget_colormag_300x250_advertisement_widget[2]\": {\n \"starter_content\": true,\n \"value\": {\n \"encoded_serialized_instance\": \"YTozOntzOjU6InRpdGxlIjtzOjEyOiJDb2xvck1hZyBQcm8iO3M6MTg6IjMwMHgyNTBfaW1hZ2VfbGluayI7czo0MToiaHR0cHM6Ly9kZW1vLnRoZW1lZ3JpbGwuY29tL2NvbG9ybWFnLXByby8iO3M6MTc6IjMwMHgyNTBfaW1hZ2VfdXJsIjtzOjcyOiJodHRwOi8vbG9jYWxob3N0L3dwL0stQkVTQVIvd3AtY29udGVudC90aGVtZXMvY29sb3JtYWcvaW1nL2FkLW1lZGl1bS5qcGciO30=\",\n \"title\": \"ColorMag Pro\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"81300747f5d05085174909c0ed361361\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:37:31\"\n },\n \"widget_text[6]\": {\n \"starter_content\": true,\n \"value\": {\n \"encoded_serialized_instance\": \"YToxOntzOjQ6InRleHQiO3M6NzE6IkNvbnRhaW5zIGFsbCBmZWF0dXJlcyBvZiBmcmVlIHZlcnNpb24gYW5kIG1hbnkgbmV3IGFkZGl0aW9uYWwgZmVhdHVyZXMuIjt9\",\n \"title\": \"\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"d4ab643c7faf66359e118113d2d48382\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:37:31\"\n },\n \"sidebars_widgets[colormag_footer_sidebar_four]\": {\n \"starter_content\": true,\n \"value\": [\n \"colormag_300x250_advertisement_widget-2\",\n \"text-6\"\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:37:31\"\n },\n \"nav_menus_created_posts\": {\n \"starter_content\": true,\n \"value\": [\n 6,\n 7,\n 8,\n 9,\n 10,\n 11,\n 12,\n 13,\n 14,\n 15,\n 16,\n 17,\n 18,\n 19,\n 20\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:37:31\"\n },\n \"nav_menu[-1]\": {\n \"value\": {\n \"name\": \"Primary\",\n \"description\": \"\",\n \"parent\": 0,\n \"auto_add\": false\n },\n \"type\": \"nav_menu\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:38:30\"\n },\n \"nav_menu_item[-1]\": {\n \"value\": {\n \"object_id\": 0,\n \"object\": \"\",\n \"menu_item_parent\": 0,\n \"position\": 0,\n \"type\": \"custom\",\n \"title\": \"Download\",\n \"url\": \"https://downloads.wordpress.org/theme/colormag.zip\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"\",\n \"nav_menu_term_id\": -1,\n \"_invalid\": false,\n \"type_label\": \"Tautan Tersuai\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:38:30\"\n },\n \"nav_menu_item[-2]\": {\n \"value\": {\n \"object_id\": 0,\n \"object\": \"\",\n \"menu_item_parent\": 0,\n \"position\": 1,\n \"type\": \"custom\",\n \"title\": \"Theme Info\",\n \"url\": \"https://themegrill.com/themes/colormag/\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"\",\n \"nav_menu_term_id\": -1,\n \"_invalid\": false,\n \"type_label\": \"Tautan Tersuai\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:38:30\"\n },\n \"nav_menu_item[-3]\": {\n \"value\": {\n \"object_id\": 0,\n \"object\": \"\",\n \"menu_item_parent\": 0,\n \"position\": 2,\n \"type\": \"custom\",\n \"title\": \"View pro\",\n \"url\": \"https://themegrill.com/themes/colormag/\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"\",\n \"nav_menu_term_id\": -1,\n \"_invalid\": false,\n \"type_label\": \"Tautan Tersuai\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:38:30\"\n },\n \"nav_menu_item[-4]\": {\n \"value\": {\n \"object_id\": 14,\n \"object\": \"page\",\n \"menu_item_parent\": 0,\n \"position\": 3,\n \"type\": \"post_type\",\n \"title\": \"Layout\",\n \"url\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Layout\",\n \"nav_menu_term_id\": -1,\n \"_invalid\": false,\n \"type_label\": \"Laman\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:38:30\"\n },\n \"nav_menu_item[-5]\": {\n \"value\": {\n \"object_id\": 15,\n \"object\": \"page\",\n \"menu_item_parent\": 0,\n \"position\": 4,\n \"type\": \"post_type\",\n \"title\": \"Kontak\",\n \"url\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Kontak\",\n \"nav_menu_term_id\": -1,\n \"_invalid\": false,\n \"type_label\": \"Laman\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:38:30\"\n },\n \"colormag::nav_menu_locations[primary]\": {\n \"starter_content\": true,\n \"value\": -1,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:37:31\"\n },\n \"blogname\": {\n \"starter_content\": true,\n \"value\": \"ColorMag\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:37:31\"\n },\n \"blogdescription\": {\n \"starter_content\": true,\n \"value\": \"ColorMag Demo site\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:37:31\"\n },\n \"colormag::custom_logo\": {\n \"starter_content\": true,\n \"value\": 6,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:37:31\"\n },\n \"colormag::colormag_breaking_news\": {\n \"starter_content\": true,\n \"value\": 1,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:37:31\"\n },\n \"colormag::colormag_date_display\": {\n \"starter_content\": true,\n \"value\": 1,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:37:31\"\n },\n \"colormag::colormag_header_logo_placement\": {\n \"starter_content\": true,\n \"value\": \"header_logo_only\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:37:31\"\n },\n \"colormag::colormag_hide_blog_front\": {\n \"starter_content\": true,\n \"value\": 1,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:37:31\"\n },\n \"colormag::colormag_search_icon_in_menu\": {\n \"starter_content\": true,\n \"value\": 1,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:37:31\"\n },\n \"colormag::colormag_random_post_in_menu\": {\n \"starter_content\": true,\n \"value\": 1,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:37:31\"\n },\n \"colormag::colormag_social_link_activate\": {\n \"starter_content\": true,\n \"value\": 1,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:37:31\"\n },\n \"colormag::colormag_home_icon_display\": {\n \"starter_content\": true,\n \"value\": 1,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:37:31\"\n },\n \"colormag::colormag_primary_sticky_menu\": {\n \"starter_content\": true,\n \"value\": 1,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:37:31\"\n },\n \"colormag::colormag_related_posts_activate\": {\n \"starter_content\": true,\n \"value\": 1,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:37:31\"\n },\n \"colormag::colormag_social_facebook\": {\n \"starter_content\": true,\n \"value\": \"#\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:37:31\"\n },\n \"colormag::colormag_social_twitter\": {\n \"starter_content\": true,\n \"value\": \"#\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:37:31\"\n },\n \"colormag::colormag_social_googleplus\": {\n \"starter_content\": true,\n \"value\": \"#\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:37:31\"\n },\n \"colormag::colormag_social_instagram\": {\n \"starter_content\": true,\n \"value\": \"#\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:37:31\"\n },\n \"colormag::colormag_social_pinterest\": {\n \"starter_content\": true,\n \"value\": \"#\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:37:31\"\n },\n \"colormag::colormag_social_youtube\": {\n \"starter_content\": true,\n \"value\": \"#\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:37:31\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', '887f2fba-d615-44ce-a422-7a05e0d0b3ad', '', '', '2019-05-10 09:38:30', '2019-05-10 02:38:30', '', 0, 'http://localhost/wp/K-BESAR/?p=21', 0, 'customize_changeset', '', 0),
(22, 1, '2019-05-10 09:38:32', '2019-05-10 02:38:32', 'ThemeGrill layout content', 'Layout', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2019-05-10 09:38:32', '2019-05-10 02:38:32', '', 14, 'http://localhost/wp/K-BESAR/2019/05/10/14-revision-v1/', 0, 'revision', '', 0),
(23, 1, '2019-05-10 09:38:33', '2019-05-10 02:38:33', 'Ini laman dengan informasi kontak dasar, seperti alamat dan nomor telepon. Anda juga bisa menggunakan plugin untuk menambahkan formulir kontak.', 'Kontak', '', 'inherit', 'closed', 'closed', '', '15-revision-v1', '', '', '2019-05-10 09:38:33', '2019-05-10 02:38:33', '', 15, 'http://localhost/wp/K-BESAR/2019/05/10/15-revision-v1/', 0, 'revision', '', 0),
(24, 1, '2019-05-10 09:38:33', '2019-05-10 02:38:33', 'Vivamus vestibulum ut magna vitae facilisis. Maecenas laoreet lobortis tristique. Aenean accumsan malesuada convallis. Suspendisse egestas luctus nisl, sit amet', 'Coffee is health food: Myth or fact?', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2019-05-10 09:38:33', '2019-05-10 02:38:33', '', 16, 'http://localhost/wp/K-BESAR/2019/05/10/16-revision-v1/', 0, 'revision', '', 0),
(25, 1, '2019-05-10 09:38:34', '2019-05-10 02:38:34', 'Fusce non nunc mi. Integer placerat nulla id quam varius dapibus. Nulla sit amet tellus et purus lobortis efficitur. Vivamus tempus posuere ipsum in suscipit. Quisque pulvinar fringilla cursus. Morbi malesuada laoreet dui, vitae consequat arcu vehicula vel. Fusce vel turpis non ante mollis bibendum a ac risus. Morbi ornare ipsum sit amet enim rhoncus, sed eleifend felis tristique. Mauris sed sollicitudin libero. In nec lacus quis erat rhoncus molestie.', 'Get more nutrition in every bite', '', 'inherit', 'closed', 'closed', '', '17-revision-v1', '', '', '2019-05-10 09:38:34', '2019-05-10 02:38:34', '', 17, 'http://localhost/wp/K-BESAR/2019/05/10/17-revision-v1/', 0, 'revision', '', 0),
(26, 1, '2019-05-10 09:38:34', '2019-05-10 02:38:34', 'The young team of Franziska Hildebrand, Franziska Preuss, Vanessa Hinz and Dahlmeier clocked 1 hour, 11 minutes, 54.6 seconds to beat France by just over 1 minute. Italy took bronze, 1:06.1 behind. Germany missed six targets overall, avoiding any laps around the penalty loop. Maria Dorin Habert of France, who has two individual gold medals at these worlds, passed Russia and France on the last leg and to take her team from fourth to second.', 'Women’s Relay Competition', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2019-05-10 09:38:34', '2019-05-10 02:38:34', '', 18, 'http://localhost/wp/K-BESAR/2019/05/10/18-revision-v1/', 0, 'revision', '', 0),
(27, 1, '2019-05-10 09:38:34', '2019-05-10 02:38:34', 'Chocolate bar marzipan sweet marzipan. Danish tart bear claw donut cake bonbon biscuit powder croissant. Liquorice cake cookie. Dessert cotton candy macaroon gummies sweet gingerbread sugar plum. Biscuit tart cake. Candy jelly ice cream halvah jelly-o jelly beans brownie pastry sweet. Candy sweet roll dessert. Lemon drops jelly-o fruitcake topping. Soufflé jelly beans bonbon.', 'A Paradise for Holiday', '', 'inherit', 'closed', 'closed', '', '19-revision-v1', '', '', '2019-05-10 09:38:34', '2019-05-10 02:38:34', '', 19, 'http://localhost/wp/K-BESAR/2019/05/10/19-revision-v1/', 0, 'revision', '', 0),
(28, 1, '2019-05-10 09:38:35', '2019-05-10 02:38:35', 'Nunc consectetur ipsum nisi, ut pellentesque felis tempus vitae. Integer eget lacinia nunc. Vestibulum consectetur convallis augue id egestas. Nullam rhoncus, arcu in tincidunt ultricies, velit diam imperdiet lacus, sed faucibus mi massa vel nunc. In ac viverra augue, a luctus nisl. Donec interdum enim tempus, aliquet metus maximus, euismod quam. Sed pretium finibus rhoncus. Phasellus libero diam, rutrum non ipsum ut, ultricies sodales sapien. Duis viverra purus lorem.', 'Destruction in Montania', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2019-05-10 09:38:35', '2019-05-10 02:38:35', '', 20, 'http://localhost/wp/K-BESAR/2019/05/10/20-revision-v1/', 0, 'revision', '', 0),
(29, 1, '2019-05-10 09:38:36', '2019-05-10 02:38:36', '', 'Download', '', 'publish', 'closed', 'closed', '', 'download', '', '', '2019-05-10 09:38:36', '2019-05-10 02:38:36', '', 0, 'http://localhost/wp/K-BESAR/2019/05/10/download/', 0, 'nav_menu_item', '', 0),
(30, 1, '2019-05-10 09:38:36', '2019-05-10 02:38:36', '', 'Theme Info', '', 'publish', 'closed', 'closed', '', 'theme-info', '', '', '2019-05-10 09:38:36', '2019-05-10 02:38:36', '', 0, 'http://localhost/wp/K-BESAR/2019/05/10/theme-info/', 1, 'nav_menu_item', '', 0),
(31, 1, '2019-05-10 09:38:37', '2019-05-10 02:38:37', '', 'View pro', '', 'publish', 'closed', 'closed', '', 'view-pro', '', '', '2019-05-10 09:38:37', '2019-05-10 02:38:37', '', 0, 'http://localhost/wp/K-BESAR/2019/05/10/view-pro/', 2, 'nav_menu_item', '', 0),
(32, 1, '2019-05-10 09:38:38', '2019-05-10 02:38:38', ' ', '', '', 'publish', 'closed', 'closed', '', '32', '', '', '2019-05-10 09:38:38', '2019-05-10 02:38:38', '', 0, 'http://localhost/wp/K-BESAR/2019/05/10/32/', 3, 'nav_menu_item', '', 0),
(33, 1, '2019-05-10 09:38:39', '2019-05-10 02:38:39', ' ', '', '', 'publish', 'closed', 'closed', '', '33', '', '', '2019-05-10 09:38:39', '2019-05-10 02:38:39', '', 0, 'http://localhost/wp/K-BESAR/2019/05/10/33/', 4, 'nav_menu_item', '', 0),
(34, 1, '2019-05-10 09:40:26', '2019-05-10 02:40:26', '{\n \"blogname\": {\n \"value\": \"K-BESAR\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:40:26\"\n },\n \"blogdescription\": {\n \"value\": \"KABAR BERITA SARANG || BERITANYA ORANG SARANG REMBANG\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:40:26\"\n },\n \"colormag::colormag_header_logo_placement\": {\n \"value\": \"show_both\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:40:26\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', '562d8152-77f6-410d-af6c-43e8fb8103a5', '', '', '2019-05-10 09:40:26', '2019-05-10 02:40:26', '', 0, 'http://localhost/wp/K-BESAR/?p=34', 0, 'customize_changeset', '', 0),
(35, 1, '2019-05-10 09:40:43', '2019-05-10 02:40:43', '{\n \"colormag::colormag_header_logo_placement\": {\n \"value\": \"header_logo_only\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:40:43\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', 'f958ba87-0256-4a9d-8f34-7c0e80d8f8e0', '', '', '2019-05-10 09:40:43', '2019-05-10 02:40:43', '', 0, 'http://localhost/wp/K-BESAR/2019/05/10/f958ba87-0256-4a9d-8f34-7c0e80d8f8e0/', 0, 'customize_changeset', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(36, 1, '2019-05-10 09:51:22', '2019-05-10 02:51:22', '{\n \"colormag::background_color\": {\n \"value\": \"#eaeaea\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:50:44\"\n },\n \"show_on_front\": {\n \"value\": \"posts\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:51:22\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', 'b8540c21-f0ef-4cda-a758-1f1d8b64a035', '', '', '2019-05-10 09:51:22', '2019-05-10 02:51:22', '', 0, 'http://localhost/wp/K-BESAR/?p=36', 0, 'customize_changeset', '', 0),
(37, 1, '2019-05-10 09:53:00', '2019-05-10 02:53:00', '{\n \"colormag::colormag_date_display\": {\n \"value\": true,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:51:44\"\n },\n \"colormag::colormag_date_display_type\": {\n \"value\": \"theme_default\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:53:00\"\n },\n \"colormag::colormag_social_link_activate\": {\n \"value\": true,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:52:44\"\n },\n \"colormag::colormag_social_link_location_option\": {\n \"value\": \"both\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:52:44\"\n },\n \"colormag::colormag_social_facebook_checkbox\": {\n \"value\": true,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:52:44\"\n },\n \"colormag::colormag_home_icon_display\": {\n \"value\": true,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-05-10 02:53:00\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', 'c941bce6-3b39-4e75-ab5a-fe5858a38850', '', '', '2019-05-10 09:53:00', '2019-05-10 02:53:00', '', 0, 'http://localhost/wp/K-BESAR/?p=37', 0, 'customize_changeset', '', 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp_termmeta`
--
CREATE TABLE `wp_termmeta` (
`meta_id` bigint(20) UNSIGNED NOT NULL,
`term_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `wp_terms`
--
CREATE TABLE `wp_terms` (
`term_id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`term_group` bigint(10) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `wp_terms`
--
INSERT INTO `wp_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES
(1, 'Tak Berkategori', 'tak-berkategori', 0),
(2, 'Primary', 'primary', 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp_term_relationships`
--
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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `wp_term_relationships`
--
INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES
(1, 1, 0),
(16, 1, 0),
(17, 1, 0),
(18, 1, 0),
(19, 1, 0),
(20, 1, 0),
(29, 2, 0),
(30, 2, 0),
(31, 2, 0),
(32, 2, 0),
(33, 2, 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp_term_taxonomy`
--
CREATE TABLE `wp_term_taxonomy` (
`term_taxonomy_id` bigint(20) UNSIGNED NOT NULL,
`term_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`description` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`parent` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`count` bigint(20) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `wp_term_taxonomy`
--
INSERT INTO `wp_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES
(1, 1, 'category', '', 0, 6),
(2, 2, 'nav_menu', '', 0, 5);
-- --------------------------------------------------------
--
-- Table structure for table `wp_usermeta`
--
CREATE TABLE `wp_usermeta` (
`umeta_id` bigint(20) UNSIGNED NOT NULL,
`user_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `wp_usermeta`
--
INSERT INTO `wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES
(1, 1, 'nickname', 'untillNess'),
(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:\"2a5c9c03f293f09780c4a7b8639d57777b3d9e691fda1e88da14d4f82e5e0b9e\";a:4:{s:10:\"expiration\";i:1557628042;s:2:\"ip\";s:3:\"::1\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.131 Safari/537.36\";s:5:\"login\";i:1557455242;}}'),
(17, 1, 'wp_dashboard_quick_press_last_post_id', '4'),
(18, 1, 'wp_user-settings', 'mfold=o'),
(19, 1, 'wp_user-settings-time', '1557455306'),
(20, 1, 'colormag_ignore_new_theme_notice', 'true');
-- --------------------------------------------------------
--
-- Table structure for table `wp_users`
--
CREATE TABLE `wp_users` (
`ID` bigint(20) UNSIGNED NOT NULL,
`user_login` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_pass` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_nicename` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_activation_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_status` int(11) NOT NULL DEFAULT '0',
`display_name` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `wp_users`
--
INSERT INTO `wp_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES
(1, 'untillNess', '$P$BE5MEUswbTudr2MM8WDQ6q1tla7hHo0', 'untillness', '[email protected]', '', '2019-05-10 02:26:39', '', 0, 'untillNess');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `wp_commentmeta`
--
ALTER TABLE `wp_commentmeta`
ADD PRIMARY KEY (`meta_id`),
ADD KEY `comment_id` (`comment_id`),
ADD KEY `meta_key` (`meta_key`(191));
--
-- Indexes for table `wp_comments`
--
ALTER TABLE `wp_comments`
ADD PRIMARY KEY (`comment_ID`),
ADD KEY `comment_post_ID` (`comment_post_ID`),
ADD KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
ADD KEY `comment_date_gmt` (`comment_date_gmt`),
ADD KEY `comment_parent` (`comment_parent`),
ADD KEY `comment_author_email` (`comment_author_email`(10));
--
-- Indexes for table `wp_evf_entries`
--
ALTER TABLE `wp_evf_entries`
ADD PRIMARY KEY (`entry_id`),
ADD KEY `form_id` (`form_id`);
--
-- Indexes for table `wp_evf_entrymeta`
--
ALTER TABLE `wp_evf_entrymeta`
ADD PRIMARY KEY (`meta_id`),
ADD KEY `entry_id` (`entry_id`),
ADD KEY `meta_key` (`meta_key`(32));
--
-- Indexes for table `wp_evf_sessions`
--
ALTER TABLE `wp_evf_sessions`
ADD PRIMARY KEY (`session_id`),
ADD UNIQUE KEY `session_key` (`session_key`);
--
-- Indexes for table `wp_links`
--
ALTER TABLE `wp_links`
ADD PRIMARY KEY (`link_id`),
ADD KEY `link_visible` (`link_visible`);
--
-- Indexes for table `wp_options`
--
ALTER TABLE `wp_options`
ADD PRIMARY KEY (`option_id`),
ADD UNIQUE KEY `option_name` (`option_name`);
--
-- Indexes for table `wp_postmeta`
--
ALTER TABLE `wp_postmeta`
ADD PRIMARY KEY (`meta_id`),
ADD KEY `post_id` (`post_id`),
ADD KEY `meta_key` (`meta_key`(191));
--
-- Indexes for table `wp_posts`
--
ALTER TABLE `wp_posts`
ADD PRIMARY KEY (`ID`),
ADD KEY `post_name` (`post_name`(191)),
ADD KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
ADD KEY `post_parent` (`post_parent`),
ADD KEY `post_author` (`post_author`);
--
-- Indexes for table `wp_termmeta`
--
ALTER TABLE `wp_termmeta`
ADD PRIMARY KEY (`meta_id`),
ADD KEY `term_id` (`term_id`),
ADD KEY `meta_key` (`meta_key`(191));
--
-- Indexes for table `wp_terms`
--
ALTER TABLE `wp_terms`
ADD PRIMARY KEY (`term_id`),
ADD KEY `slug` (`slug`(191)),
ADD KEY `name` (`name`(191));
--
-- Indexes for table `wp_term_relationships`
--
ALTER TABLE `wp_term_relationships`
ADD PRIMARY KEY (`object_id`,`term_taxonomy_id`),
ADD KEY `term_taxonomy_id` (`term_taxonomy_id`);
--
-- Indexes for table `wp_term_taxonomy`
--
ALTER TABLE `wp_term_taxonomy`
ADD PRIMARY KEY (`term_taxonomy_id`),
ADD UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
ADD KEY `taxonomy` (`taxonomy`);
--
-- Indexes for table `wp_usermeta`
--
ALTER TABLE `wp_usermeta`
ADD PRIMARY KEY (`umeta_id`),
ADD KEY `user_id` (`user_id`),
ADD KEY `meta_key` (`meta_key`(191));
--
-- Indexes for table `wp_users`
--
ALTER TABLE `wp_users`
ADD PRIMARY KEY (`ID`),
ADD KEY `user_login_key` (`user_login`),
ADD KEY `user_nicename` (`user_nicename`),
ADD KEY `user_email` (`user_email`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `wp_commentmeta`
--
ALTER TABLE `wp_commentmeta`
MODIFY `meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `wp_comments`
--
ALTER TABLE `wp_comments`
MODIFY `comment_ID` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `wp_evf_entries`
--
ALTER TABLE `wp_evf_entries`
MODIFY `entry_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `wp_evf_entrymeta`
--
ALTER TABLE `wp_evf_entrymeta`
MODIFY `meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `wp_evf_sessions`
--
ALTER TABLE `wp_evf_sessions`
MODIFY `session_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `wp_links`
--
ALTER TABLE `wp_links`
MODIFY `link_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `wp_options`
--
ALTER TABLE `wp_options`
MODIFY `option_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=207;
--
-- AUTO_INCREMENT for table `wp_postmeta`
--
ALTER TABLE `wp_postmeta`
MODIFY `meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=113;
--
-- AUTO_INCREMENT for table `wp_posts`
--
ALTER TABLE `wp_posts`
MODIFY `ID` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=38;
--
-- AUTO_INCREMENT for table `wp_termmeta`
--
ALTER TABLE `wp_termmeta`
MODIFY `meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `wp_terms`
--
ALTER TABLE `wp_terms`
MODIFY `term_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `wp_term_taxonomy`
--
ALTER TABLE `wp_term_taxonomy`
MODIFY `term_taxonomy_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `wp_usermeta`
--
ALTER TABLE `wp_usermeta`
MODIFY `umeta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21;
--
-- AUTO_INCREMENT for table `wp_users`
--
ALTER TABLE `wp_users`
MODIFY `ID` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
COMMIT;
/*!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 */;