-
Notifications
You must be signed in to change notification settings - Fork 0
/
work_spark.sql
2869 lines (2615 loc) · 663 KB
/
work_spark.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
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- phpMyAdmin SQL Dump
-- version 4.8.3
-- https://www.phpmyadmin.net/
--
-- Хост: 127.0.0.1:3306
-- Время создания: Июл 31 2019 г., 16:33
-- Версия сервера: 5.6.41
-- Версия PHP: 7.1.22
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 */;
--
-- База данных: `work_spark`
--
-- --------------------------------------------------------
--
-- Структура таблицы `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_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Структура таблицы `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_520_ci NOT NULL,
`comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_content` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT '0',
`comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1',
`comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_type` varchar(20) COLLATE utf8mb4_unicode_520_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_520_ci;
--
-- Дамп данных таблицы `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, 'Автор комментария', '[email protected]', 'https://wordpress.org/', '', '2019-07-30 22:02:29', '2019-07-30 19:02:29', 'Привет! Это комментарий.\nЧтобы начать модерировать, редактировать и удалять комментарии, перейдите на экран «Комментарии» в консоли.\nАватары авторов комментариев загружаются с сервиса <a href=\"https://ru.gravatar.com\">Gravatar</a>.', 0, '1', '', '', 0, 0),
(2, 10, 'ActionScheduler', '', '', '', '2019-07-30 19:27:25', '2019-07-30 19:27:25', 'action created', 0, '1', 'ActionScheduler', 'action_log', 0, 0),
(3, 10, 'ActionScheduler', '', '', '', '2019-07-30 19:27:42', '2019-07-30 19:27:42', 'action started', 0, '1', 'ActionScheduler', 'action_log', 0, 0),
(4, 10, 'ActionScheduler', '', '', '', '2019-07-30 19:27:42', '2019-07-30 19:27:42', 'action complete', 0, '1', 'ActionScheduler', 'action_log', 0, 0),
(5, 11, 'ActionScheduler', '', '', '', '2019-07-30 19:27:42', '2019-07-30 19:27:42', 'action created', 0, '1', 'ActionScheduler', 'action_log', 0, 0);
-- --------------------------------------------------------
--
-- Структура таблицы `wp_links`
--
CREATE TABLE `wp_links` (
`link_id` bigint(20) UNSIGNED NOT NULL,
`link_url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_target` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_description` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_visible` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'Y',
`link_owner` bigint(20) UNSIGNED NOT NULL DEFAULT '1',
`link_rating` int(11) NOT NULL DEFAULT '0',
`link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`link_rel` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_notes` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`link_rss` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- --------------------------------------------------------
--
-- Структура таблицы `wp_nextend2_image_storage`
--
CREATE TABLE `wp_nextend2_image_storage` (
`id` int(11) NOT NULL,
`hash` varchar(32) NOT NULL,
`image` text NOT NULL,
`value` mediumtext NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Дамп данных таблицы `wp_nextend2_image_storage`
--
INSERT INTO `wp_nextend2_image_storage` (`id`, `hash`, `image`, `value`) VALUES
(1, '790001536e95529d1b2d91085efebbbb', '$upload$/2019/07/1472042903_31.jpg', 'eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),
(2, '9bc5fdfba176e8728918c25314250337', '$upload$/2019/07/images.jpg', 'eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),
(3, '7148fa26ad6dd9ee953b6c3f5f30c99d', 'https://smartslider3.com/sample/programmer.jpg', 'eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),
(4, '6681af77aa8c9f342a3f8a98939dca43', 'https://smartslider3.com/sample/free1.jpg', 'eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),
(5, '2ebcc61fcb32c829e4927fbfd782ff7a', 'https://smartslider3.com/sample/photographer.jpg', 'eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ==');
-- --------------------------------------------------------
--
-- Структура таблицы `wp_nextend2_section_storage`
--
CREATE TABLE `wp_nextend2_section_storage` (
`id` int(11) NOT NULL,
`application` varchar(20) NOT NULL,
`section` varchar(128) NOT NULL,
`referencekey` varchar(128) NOT NULL,
`value` mediumtext NOT NULL,
`system` int(11) NOT NULL DEFAULT '0',
`editable` int(11) NOT NULL DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Дамп данных таблицы `wp_nextend2_section_storage`
--
INSERT INTO `wp_nextend2_section_storage` (`id`, `application`, `section`, `referencekey`, `value`, `system`, `editable`) VALUES
(10000, 'system', 'global', 'n2_ss3_version', '3.3.21r4359', 1, 1),
(10032, 'cache', 'notweb/n2-ss-1', 'data.manifest', '{\"generator\":[]}', 0, 1),
(10033, 'cache', 'notweb/n2-ss-1', 'variations.manifest', '1', 0, 1),
(10034, 'cache', 'notweb/n2-ss-1', 'sliderru_RU1.manifest', '{\"hash\":\"\",\"nextCacheRefresh\":1762864054,\"currentPath\":\"ec4b58c308af6abdb5968fbd34fd472b\",\"version\":\"3.3.21\"}', 0, 1),
(10035, 'cache', 'notweb/n2-ss-1', 'sliderru_RU1', '{\"html\":\"<div class=\\\"n2-section-smartslider \\\" role=\\\"region\\\" aria-label=\\\"Slider\\\"><style>div#n2-ss-1{width:1200px;float:left;margin:0px 0px 0px 0px;}html[dir=\\\"rtl\\\"] div#n2-ss-1{float:right;}div#n2-ss-1 .n2-ss-slider-1{position:relative;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;height:600px;border-style:solid;border-width:0px;border-color:#3e3e3e;border-color:RGBA(62,62,62,1);border-radius:0px;background-clip:padding-box;background-repeat:repeat;background-position:50% 50%;background-size:cover;background-attachment:scroll;}div#n2-ss-1 .n2-ss-slider-background-video-container{position:absolute;left:0;top:0;width:100%;height:100%;overflow:hidden;}div#n2-ss-1 .n2-ss-slider-2{position:relative;width:100%;height:100%;}.x-firefox div#n2-ss-1 .n2-ss-slider-2{opacity:0.99999;}div#n2-ss-1 .n2-ss-slider-3{position:relative;width:100%;height:100%;overflow:hidden;outline:1px solid rgba(0,0,0,0);z-index:10;}div#n2-ss-1 .n2-ss-slide-backgrounds,div#n2-ss-1 .n2-ss-slider-3 > .n-particles-js-canvas-el,div#n2-ss-1 .n2-ss-slider-3 > .n2-ss-divider{position:absolute;left:0;top:0;width:100%;height:100%;}div#n2-ss-1 .n2-ss-slide-backgrounds{z-index:10;}div#n2-ss-1 .n2-ss-slider-3 > .n-particles-js-canvas-el{z-index:12;}div#n2-ss-1 .n2-ss-slide-backgrounds > *{overflow:hidden;}div#n2-ss-1 .n2-ss-slide{position:absolute;top:0;left:0;width:100%;height:100%;z-index:20;display:block;-webkit-backface-visibility:hidden;}div#n2-ss-1 .n2-ss-layers-container{position:relative;width:1200px;height:600px;}div#n2-ss-1 .n2-ss-parallax-clip > .n2-ss-layers-container{position:absolute;right:0;}div#n2-ss-1 .n2-ss-slide{perspective:1000px;}div#n2-ss-1[data-ie] .n2-ss-slide{perspective:none;transform:perspective(1000px);}div#n2-ss-1 .n2-ss-slide-active{z-index:21;}div#n2-ss-1 .nextend-arrow{cursor:pointer;overflow:hidden;line-height:0 !important;z-index:20;}div#n2-ss-1 .nextend-arrow img{position:relative;min-height:0;min-width:0;vertical-align:top;width:auto;height:auto;max-width:100%;max-height:100%;display:inline;}div#n2-ss-1 .nextend-arrow img.n2-arrow-hover-img{display:none;}div#n2-ss-1 .nextend-arrow:HOVER img.n2-arrow-hover-img{display:inline;}div#n2-ss-1 .nextend-arrow:HOVER img.n2-arrow-normal-img{display:none;}div#n2-ss-1 .nextend-arrow-animated{overflow:hidden;}div#n2-ss-1 .nextend-arrow-animated > div{position:relative;}div#n2-ss-1 .nextend-arrow-animated .n2-active{position:absolute;}div#n2-ss-1 .nextend-arrow-animated-fade{transition:background 0.3s, opacity 0.4s;}div#n2-ss-1 .nextend-arrow-animated-horizontal > div{transition:all 0.4s;left:0;}div#n2-ss-1 .nextend-arrow-animated-horizontal .n2-active{top:0;}div#n2-ss-1 .nextend-arrow-previous.nextend-arrow-animated-horizontal:HOVER > div,div#n2-ss-1 .nextend-arrow-next.nextend-arrow-animated-horizontal .n2-active{left:-100%;}div#n2-ss-1 .nextend-arrow-previous.nextend-arrow-animated-horizontal .n2-active,div#n2-ss-1 .nextend-arrow-next.nextend-arrow-animated-horizontal:HOVER > div{left:100%;}div#n2-ss-1 .nextend-arrow.nextend-arrow-animated-horizontal:HOVER .n2-active{left:0;}div#n2-ss-1 .nextend-arrow-animated-vertical > div{transition:all 0.4s;top:0;}div#n2-ss-1 .nextend-arrow-animated-vertical .n2-active{left:0;}div#n2-ss-1 .nextend-arrow-animated-vertical .n2-active{top:-100%;}div#n2-ss-1 .nextend-arrow-animated-vertical:HOVER > div{top:100%;}div#n2-ss-1 .nextend-arrow-animated-vertical:HOVER .n2-active{top:0;}div#n2-ss-1 .n2-ss-control-bullet{visibility:hidden;text-align:center;justify-content:center;}div#n2-ss-1 .n2-ss-control-bullet-horizontal.n2-ss-control-bullet-fullsize{width:100%;}div#n2-ss-1 .n2-ss-control-bullet-vertical.n2-ss-control-bullet-fullsize{height:100%;flex-flow:column;}div#n2-ss-1 .nextend-bullet-bar{display:inline-flex;visibility:visible;align-items:center;flex-wrap:wrap;}div#n2-ss-1 .n2-bar-justify-content-left{justify-content:flex-start;}div#n2-ss-1 .n2-bar-justify-content-center{justify-content:center;}div#n2-ss-1 .n2-bar-justify-content-right{justify-content:flex-end;}div#n2-ss-1 .n2-ss-control-bullet-vertical > .nextend-bullet-bar{flex-flow:column;}div#n2-ss-1 .n2-ss-control-bullet-fullsize > .nextend-bullet-bar{display:flex;}div#n2-ss-1 .n2-ss-control-bullet-horizontal.n2-ss-control-bullet-fullsize > .nextend-bullet-bar{flex:1 1 auto;}div#n2-ss-1 .n2-ss-control-bullet-vertical.n2-ss-control-bullet-fullsize > .nextend-bullet-bar{height:100%;}div#n2-ss-1 .nextend-bullet-bar .n2-bullet{cursor:pointer;transition:background-color 0.4s;}div#n2-ss-1 .nextend-bullet-bar .n2-bullet.n2-active{cursor:default;}div#n2-ss-1 div.n2-ss-bullet-thumbnail-container{position:absolute;opacity:0;z-index:10000000;}div#n2-ss-1 .n2-ss-bullet-thumbnail-container .n2-ss-bullet-thumbnail{background-size:cover;background-repeat:no-repeat;background-position:center;}div#n2-ss-1 .n2-ss-layer .n2-font-b3345663dc8b9cef8e1c2d7598218f7d-hover{font-family: \'Raleway\',\'Arial\';color: #0b0b0b;font-size:225%;text-shadow: none;line-height: 1.5;font-weight: normal;font-style: normal;text-decoration: none;text-align: center;letter-spacing: 10px;word-spacing: normal;text-transform: uppercase;}div#n2-ss-1 .n2-style-34aabac2d1a1f42ea86057074a5dba21-heading{background: #ffffff;background: RGBA(255,255,255,0.8);opacity:1;padding:0.4em 1em 0.4em 1em ;box-shadow: none;border-width: 0px;border-style: solid;border-color: #000000; border-color: RGBA(0,0,0,1);border-radius:0px;}div#n2-ss-1 .n2-ss-layer .n2-font-f7cfdde6001a78b89d1f32639ff1ac5c-hover{font-family: \'Raleway\',\'Arial\';color: #ffffff;font-size:137.5%;text-shadow: none;line-height: 1;font-weight: normal;font-style: normal;text-decoration: none;text-align: center;letter-spacing: 2px;word-spacing: normal;text-transform: none;}div#n2-ss-1 .n2-style-ef33d9149525c4afb4ba031e6eb66c9e-heading{background: #000000;background: RGBA(0,0,0,0.8);opacity:1;padding:0.8em 1em 0.8em 1em ;box-shadow: none;border-width: 0px;border-style: solid;border-color: #000000; border-color: RGBA(0,0,0,1);border-radius:0px;}div#n2-ss-1 .n2-style-09efebcef1f2f45d29438e0cabcf79bc-dot{background: #000000;background: RGBA(0,0,0,0.67);opacity:1;padding:5px 5px 5px 5px ;box-shadow: none;border-width: 0px;border-style: solid;border-color: #000000; border-color: RGBA(0,0,0,1);border-radius:50px;margin: 4px;}div#n2-ss-1 .n2-style-09efebcef1f2f45d29438e0cabcf79bc-dot.n2-active, div#n2-ss-1 .n2-style-09efebcef1f2f45d29438e0cabcf79bc-dot:HOVER, div#n2-ss-1 .n2-style-09efebcef1f2f45d29438e0cabcf79bc-dot:FOCUS{background: #09b474;}div#n2-ss-1 .n2-style-42845aa02120076deb3a5681d1d750ac-simple{background: #000000;background: RGBA(0,0,0,0.5);opacity:1;padding:3px 3px 3px 3px ;box-shadow: none;border-width: 0px;border-style: solid;border-color: #000000; border-color: RGBA(0,0,0,1);border-radius:3px;margin: 5px;}<\\/style><div id=\\\"n2-ss-1-align\\\" class=\\\"n2-ss-align\\\"><div class=\\\"n2-padding\\\"><div id=\\\"n2-ss-1\\\" data-creator=\\\"Smart Slider 3\\\" class=\\\"n2-ss-slider n2-ow n2-has-hover n2notransition n2-ss-load-fade \\\" data-minFontSizedesktopPortrait=\\\"1\\\" data-minFontSizedesktopLandscape=\\\"1\\\" data-minFontSizetabletPortrait=\\\"1\\\" data-minFontSizetabletLandscape=\\\"1\\\" data-minFontSizemobilePortrait=\\\"1\\\" data-minFontSizemobileLandscape=\\\"1\\\" style=\\\"font-size: 1rem;\\\" data-fontsize=\\\"16\\\">\\r\\n <div class=\\\"n2-ss-slider-1 n2-ss-swipe-element n2-ow\\\" style=\\\"\\\">\\r\\n <div class=\\\"n2-ss-slider-2 n2-ow\\\">\\r\\n <div class=\\\"n2-ss-slider-3 n2-ow\\\" style=\\\"\\\">\\r\\n\\r\\n <div class=\\\"n2-ss-slide-backgrounds\\\"><\\/div><div data-first=\\\"1\\\" data-slide-duration=\\\"0\\\" data-id=\\\"1\\\" data-title=\\\"Slide One\\\" data-thumbnail=\\\"https:\\/\\/smartslider3.com\\/sample\\/developerthumbnail.jpg\\\" style=\\\"\\\" class=\\\" n2-ss-slide n2-ss-canvas n2-ow n2-ss-slide-1\\\"><div class=\\\"n2-ss-slide-background n2-ow\\\" data-mode=\\\"fill\\\"><div data-hash=\\\"7148fa26ad6dd9ee953b6c3f5f30c99d\\\" data-desktop=\\\"https:\\/\\/smartslider3.com\\/sample\\/programmer.jpg\\\" class=\\\"n2-ss-slide-background-image\\\" data-blur=\\\"0\\\"><img src=\\\"https:\\/\\/smartslider3.com\\/sample\\/programmer.jpg\\\" alt=\\\"\\\" \\/><\\/div><\\/div><div class=\\\"n2-ss-layers-container n2-ow\\\" data-csstextalign=\\\"center\\\" style=\\\"\\\"><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"overflow:;\\\" data-csstextalign=\\\"inherit\\\" data-has-maxwidth=\\\"0\\\" data-desktopportraitmaxwidth=\\\"0\\\" data-cssselfalign=\\\"inherit\\\" data-desktopportraitselfalign=\\\"inherit\\\" data-pm=\\\"content\\\" data-desktopportraitpadding=\\\"10|*|10|*|10|*|10|*|px+\\\" data-desktopportraitinneralign=\\\"inherit\\\" data-sstype=\\\"content\\\" data-hasbackground=\\\"0\\\" data-rotation=\\\"0\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"1\\\" data-desktopportraitfontsize=\\\"100\\\" data-mobileportraitfontsize=\\\"60\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ss-section-main-content n2-ss-layer-content n2-ow\\\" style=\\\"padding:0.625em 0.625em 0.625em 0.625em ;\\\" data-verticalalign=\\\"center\\\"><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"margin:0.625em 0em 0.625em 0em ;overflow:visible;\\\" data-pm=\\\"normal\\\" data-desktopportraitmargin=\\\"10|*|0|*|10|*|0|*|px+\\\" data-desktopportraitheight=\\\"0\\\" data-has-maxwidth=\\\"0\\\" data-desktopportraitmaxwidth=\\\"0\\\" data-cssselfalign=\\\"inherit\\\" data-desktopportraitselfalign=\\\"inherit\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><h2 id=\\\"n2-ss-1item1\\\" class=\\\"n2-font-b3345663dc8b9cef8e1c2d7598218f7d-hover n2-style-34aabac2d1a1f42ea86057074a5dba21-heading n2-ss-item-content n2-ow\\\" style=\\\"display:inline-block;\\\">Martin Dwyer<\\/h2><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"margin:0em 0em 0em 0em ;overflow:visible;\\\" data-pm=\\\"normal\\\" data-desktopportraitmargin=\\\"0|*|0|*|0|*|0|*|px+\\\" data-desktopportraitheight=\\\"0\\\" data-has-maxwidth=\\\"0\\\" data-desktopportraitmaxwidth=\\\"0\\\" data-cssselfalign=\\\"inherit\\\" data-desktopportraitselfalign=\\\"inherit\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><h2 id=\\\"n2-ss-1item2\\\" class=\\\"n2-font-f7cfdde6001a78b89d1f32639ff1ac5c-hover n2-style-ef33d9149525c4afb4ba031e6eb66c9e-heading n2-ss-item-content n2-ow\\\" style=\\\"display:inline-block;white-space:nowrap;\\\">Application Developer<\\/h2><\\/div><\\/div><\\/div><\\/div><\\/div><div data-slide-duration=\\\"0\\\" data-id=\\\"2\\\" data-title=\\\"Slide Two\\\" data-thumbnail=\\\"https:\\/\\/smartslider3.com\\/sample\\/artdirectorthumbnail.jpg\\\" style=\\\"\\\" class=\\\" n2-ss-slide n2-ss-canvas n2-ow n2-ss-slide-2\\\"><div class=\\\"n2-ss-slide-background n2-ow\\\" data-mode=\\\"fill\\\"><div data-hash=\\\"6681af77aa8c9f342a3f8a98939dca43\\\" data-desktop=\\\"https:\\/\\/smartslider3.com\\/sample\\/free1.jpg\\\" class=\\\"n2-ss-slide-background-image\\\" data-blur=\\\"0\\\"><img src=\\\"https:\\/\\/smartslider3.com\\/sample\\/free1.jpg\\\" alt=\\\"\\\" \\/><\\/div><\\/div><div class=\\\"n2-ss-layers-container n2-ow\\\" data-csstextalign=\\\"center\\\" style=\\\"\\\"><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"overflow:;\\\" data-csstextalign=\\\"inherit\\\" data-has-maxwidth=\\\"0\\\" data-desktopportraitmaxwidth=\\\"0\\\" data-cssselfalign=\\\"inherit\\\" data-desktopportraitselfalign=\\\"inherit\\\" data-pm=\\\"content\\\" data-desktopportraitpadding=\\\"10|*|10|*|10|*|10|*|px+\\\" data-desktopportraitinneralign=\\\"inherit\\\" data-sstype=\\\"content\\\" data-hasbackground=\\\"0\\\" data-rotation=\\\"0\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"1\\\" data-desktopportraitfontsize=\\\"100\\\" data-mobileportraitfontsize=\\\"60\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ss-section-main-content n2-ss-layer-content n2-ow\\\" style=\\\"padding:0.625em 0.625em 0.625em 0.625em ;\\\" data-verticalalign=\\\"center\\\"><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"margin:0.625em 0em 0.625em 0em ;overflow:visible;\\\" data-pm=\\\"normal\\\" data-desktopportraitmargin=\\\"10|*|0|*|10|*|0|*|px+\\\" data-desktopportraitheight=\\\"0\\\" data-has-maxwidth=\\\"0\\\" data-desktopportraitmaxwidth=\\\"0\\\" data-cssselfalign=\\\"inherit\\\" data-desktopportraitselfalign=\\\"inherit\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><h2 id=\\\"n2-ss-1item3\\\" class=\\\"n2-font-b3345663dc8b9cef8e1c2d7598218f7d-hover n2-style-34aabac2d1a1f42ea86057074a5dba21-heading n2-ss-item-content n2-ow\\\" style=\\\"display:inline-block;\\\">Rachel Wright<\\/h2><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"margin:0em 0em 0em 0em ;overflow:visible;\\\" data-pm=\\\"normal\\\" data-desktopportraitmargin=\\\"0|*|0|*|0|*|0|*|px+\\\" data-desktopportraitheight=\\\"0\\\" data-has-maxwidth=\\\"0\\\" data-desktopportraitmaxwidth=\\\"0\\\" data-cssselfalign=\\\"inherit\\\" data-desktopportraitselfalign=\\\"inherit\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><h2 id=\\\"n2-ss-1item4\\\" class=\\\"n2-font-f7cfdde6001a78b89d1f32639ff1ac5c-hover n2-style-ef33d9149525c4afb4ba031e6eb66c9e-heading n2-ss-item-content n2-ow\\\" style=\\\"display:inline-block;white-space:nowrap;\\\">Art Director & Photographer<\\/h2><\\/div><\\/div><\\/div><\\/div><\\/div><div data-slide-duration=\\\"0\\\" data-id=\\\"3\\\" data-title=\\\"Slide Three\\\" data-thumbnail=\\\"https:\\/\\/smartslider3.com\\/sample\\/photographerthumbnail.jpg\\\" style=\\\"\\\" class=\\\" n2-ss-slide n2-ss-canvas n2-ow n2-ss-slide-3\\\"><div class=\\\"n2-ss-slide-background n2-ow\\\" data-mode=\\\"fill\\\"><div data-hash=\\\"2ebcc61fcb32c829e4927fbfd782ff7a\\\" data-desktop=\\\"https:\\/\\/smartslider3.com\\/sample\\/photographer.jpg\\\" class=\\\"n2-ss-slide-background-image\\\" data-blur=\\\"0\\\"><img src=\\\"https:\\/\\/smartslider3.com\\/sample\\/photographer.jpg\\\" alt=\\\"\\\" \\/><\\/div><\\/div><div class=\\\"n2-ss-layers-container n2-ow\\\" data-csstextalign=\\\"center\\\" style=\\\"\\\"><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"overflow:;\\\" data-csstextalign=\\\"inherit\\\" data-has-maxwidth=\\\"0\\\" data-desktopportraitmaxwidth=\\\"0\\\" data-cssselfalign=\\\"inherit\\\" data-desktopportraitselfalign=\\\"inherit\\\" data-pm=\\\"content\\\" data-desktopportraitpadding=\\\"10|*|10|*|10|*|10|*|px+\\\" data-desktopportraitinneralign=\\\"inherit\\\" data-sstype=\\\"content\\\" data-hasbackground=\\\"0\\\" data-rotation=\\\"0\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"1\\\" data-desktopportraitfontsize=\\\"100\\\" data-mobileportraitfontsize=\\\"60\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ss-section-main-content n2-ss-layer-content n2-ow\\\" style=\\\"padding:0.625em 0.625em 0.625em 0.625em ;\\\" data-verticalalign=\\\"center\\\"><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"margin:0.625em 0em 0.625em 0em ;overflow:visible;\\\" data-pm=\\\"normal\\\" data-desktopportraitmargin=\\\"10|*|0|*|10|*|0|*|px+\\\" data-desktopportraitheight=\\\"0\\\" data-has-maxwidth=\\\"0\\\" data-desktopportraitmaxwidth=\\\"0\\\" data-cssselfalign=\\\"inherit\\\" data-desktopportraitselfalign=\\\"inherit\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><h2 id=\\\"n2-ss-1item5\\\" class=\\\"n2-font-b3345663dc8b9cef8e1c2d7598218f7d-hover n2-style-34aabac2d1a1f42ea86057074a5dba21-heading n2-ss-item-content n2-ow\\\" style=\\\"display:inline-block;\\\">Andrew Butler<\\/h2><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"margin:0em 0em 0em 0em ;overflow:visible;\\\" data-pm=\\\"normal\\\" data-desktopportraitmargin=\\\"0|*|0|*|0|*|0|*|px+\\\" data-desktopportraitheight=\\\"0\\\" data-has-maxwidth=\\\"0\\\" data-desktopportraitmaxwidth=\\\"0\\\" data-cssselfalign=\\\"inherit\\\" data-desktopportraitselfalign=\\\"inherit\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><h2 id=\\\"n2-ss-1item6\\\" class=\\\"n2-font-f7cfdde6001a78b89d1f32639ff1ac5c-hover n2-style-ef33d9149525c4afb4ba031e6eb66c9e-heading n2-ss-item-content n2-ow\\\" style=\\\"display:inline-block;\\\">Photographer & Illustrator<\\/h2><\\/div><\\/div><\\/div><\\/div><\\/div> <\\/div>\\r\\n <\\/div>\\r\\n <div data-ssleft=\\\"0+15\\\" data-sstop=\\\"height\\/2-previousheight\\/2\\\" id=\\\"n2-ss-1-arrow-previous\\\" class=\\\"n2-ss-widget n2-ss-widget-display-desktop n2-ss-widget-display-tablet n2-ss-widget-display-mobile nextend-arrow n2-ow nextend-arrow-previous nextend-arrow-animated-fade n2-ib\\\" style=\\\"position: absolute;\\\" role=\\\"button\\\" aria-label=\\\"Previous slide\\\" tabindex=\\\"0\\\"><img class=\\\"n2-ow\\\" data-no-lazy=\\\"1\\\" data-hack=\\\"data-lazy-src\\\" src=\\\"data:image\\/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTEuNDMzIDE1Ljk5MkwyMi42OSA1LjcxMmMuMzkzLS4zOS4zOTMtMS4wMyAwLTEuNDItLjM5My0uMzktMS4wMy0uMzktMS40MjMgMGwtMTEuOTggMTAuOTRjLS4yMS4yMS0uMy40OS0uMjg1Ljc2LS4wMTUuMjguMDc1LjU2LjI4NC43N2wxMS45OCAxMC45NGMuMzkzLjM5IDEuMDMuMzkgMS40MjQgMCAuMzkzLS40LjM5My0xLjAzIDAtMS40MmwtMTEuMjU3LTEwLjI5IiBmaWxsPSIjZmZmZmZmIiBvcGFjaXR5PSIwLjgiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPg==\\\" alt=\\\"previous arrow\\\" \\/><\\/div>\\n<div data-ssright=\\\"0+15\\\" data-sstop=\\\"height\\/2-nextheight\\/2\\\" id=\\\"n2-ss-1-arrow-next\\\" class=\\\"n2-ss-widget n2-ss-widget-display-desktop n2-ss-widget-display-tablet n2-ss-widget-display-mobile nextend-arrow n2-ow nextend-arrow-next nextend-arrow-animated-fade n2-ib\\\" style=\\\"position: absolute;\\\" role=\\\"button\\\" aria-label=\\\"Next slide\\\" tabindex=\\\"0\\\"><img class=\\\"n2-ow\\\" data-no-lazy=\\\"1\\\" data-hack=\\\"data-lazy-src\\\" src=\\\"data:image\\/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTAuNzIyIDQuMjkzYy0uMzk0LS4zOS0xLjAzMi0uMzktMS40MjcgMC0uMzkzLjM5LS4zOTMgMS4wMyAwIDEuNDJsMTEuMjgzIDEwLjI4LTExLjI4MyAxMC4yOWMtLjM5My4zOS0uMzkzIDEuMDIgMCAxLjQyLjM5NS4zOSAxLjAzMy4zOSAxLjQyNyAwbDEyLjAwNy0xMC45NGMuMjEtLjIxLjMtLjQ5LjI4NC0uNzcuMDE0LS4yNy0uMDc2LS41NS0uMjg2LS43NkwxMC43MiA0LjI5M3oiIGZpbGw9IiNmZmZmZmYiIG9wYWNpdHk9IjAuOCIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+\\\" alt=\\\"next arrow\\\" \\/><\\/div>\\n <\\/div>\\r\\n <div data-position=\\\"below\\\" data-offset=\\\"10\\\" class=\\\"n2-ss-widget n2-ss-widget-display-desktop n2-ss-widget-display-tablet n2-ss-widget-display-mobile n2-flex n2-ss-control-bullet n2-ss-control-bullet-horizontal\\\" style=\\\"margin-top:10px;\\\"><div class=\\\" nextend-bullet-bar n2-ow n2-bar-justify-content-center\\\"><\\/div><\\/div>\\n<\\/div><div class=\\\"n2-clear\\\"><\\/div><div id=\\\"n2-ss-1-spinner\\\" style=\\\"display: none;\\\"><div><div class=\\\"n2-ss-spinner-simple-white-container\\\"><div class=\\\"n2-ss-spinner-simple-white\\\"><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><div id=\\\"n2-ss-1-placeholder\\\" style=\\\"position: relative;z-index:2;background-color:RGBA(0,0,0,0);max-height:3000px; background-color:RGBA(255,255,255,0);\\\"><img style=\\\"width: 100%; max-width:3000px; display: block;opacity:0;margin:0px;\\\" class=\\\"n2-ow\\\" src=\\\"data:image\\/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMCIgd2lkdGg9IjEyMDAiIGhlaWdodD0iNjAwIiA+PC9zdmc+\\\" alt=\\\"Slider\\\" \\/><\\/div><\\/div>\",\"assets\":{\"css\":{\"staticGroup\":{\"smartslider\":\"C:\\\\OSPanel\\\\domains\\\\wpwork\\\\wp-content\\\\plugins\\\\smart-slider-3\\\\library\\\\media\\/smartslider.min.css\"},\"files\":[],\"urls\":[],\"codes\":[],\"firstCodes\":[],\"inline\":[\".n2-ss-spinner-simple-white-container {\\r\\n position: absolute;\\r\\n top: 50%;\\r\\n left: 50%;\\r\\n margin: -20px;\\r\\n background: #fff;\\r\\n width: 20px;\\r\\n height: 20px;\\r\\n padding: 10px;\\r\\n border-radius: 50%;\\r\\n z-index: 1000;\\r\\n}\\r\\n\\r\\n.n2-ss-spinner-simple-white {\\r\\n outline: 1px solid RGBA(0,0,0,0);\\r\\n width:100%;\\r\\n height: 100%;\\r\\n}\\r\\n\\r\\n.n2-ss-spinner-simple-white:before {\\r\\n position: absolute;\\r\\n top: 50%;\\r\\n left: 50%;\\r\\n width: 20px;\\r\\n height: 20px;\\r\\n margin-top: -11px;\\r\\n margin-left: -11px;\\r\\n}\\r\\n\\r\\n.n2-ss-spinner-simple-white:not(:required):before {\\r\\n content: \'\';\\r\\n border-radius: 50%;\\r\\n border-top: 2px solid #333;\\r\\n border-right: 2px solid transparent;\\r\\n animation: n2SimpleWhite .6s linear infinite;\\r\\n}\\r\\n@keyframes n2SimpleWhite {\\r\\n to {transform: rotate(360deg);}\\r\\n}\"],\"globalInline\":[]},\"less\":{\"staticGroup\":[],\"files\":[],\"urls\":[],\"codes\":[],\"firstCodes\":[],\"inline\":[],\"globalInline\":[]},\"js\":{\"staticGroup\":{\"smartslider-simple-type-frontend\":\"C:\\\\OSPanel\\\\domains\\\\wpwork\\\\wp-content\\\\plugins\\\\smart-slider-3\\\\library\\\\media\\/plugins\\\\type\\\\simple\\\\simple\\/dist\\/smartslider-simple-type-frontend.min.js\"},\"files\":[],\"urls\":[],\"codes\":[],\"firstCodes\":[],\"inline\":[\"N2R([\\\"nextend-frontend\\\",\\\"smartslider-frontend\\\",\\\"smartslider-simple-type-frontend\\\"],function(){new N2Classes.SmartSliderSimple(\'#n2-ss-1\', {\\\"admin\\\":false,\\\"translate3d\\\":1,\\\"callbacks\\\":\\\"\\\",\\\"background.video.mobile\\\":1,\\\"randomize\\\":{\\\"randomize\\\":0,\\\"randomizeFirst\\\":0},\\\"align\\\":\\\"normal\\\",\\\"isDelayed\\\":0,\\\"load\\\":{\\\"fade\\\":1,\\\"scroll\\\":0},\\\"playWhenVisible\\\":1,\\\"playWhenVisibleAt\\\":0.5,\\\"responsive\\\":{\\\"desktop\\\":1,\\\"tablet\\\":1,\\\"mobile\\\":1,\\\"onResizeEnabled\\\":true,\\\"type\\\":\\\"auto\\\",\\\"downscale\\\":1,\\\"upscale\\\":1,\\\"minimumHeight\\\":0,\\\"maximumHeight\\\":3000,\\\"maximumSlideWidth\\\":3000,\\\"maximumSlideWidthLandscape\\\":3000,\\\"maximumSlideWidthTablet\\\":3000,\\\"maximumSlideWidthTabletLandscape\\\":3000,\\\"maximumSlideWidthMobile\\\":3000,\\\"maximumSlideWidthMobileLandscape\\\":3000,\\\"maximumSlideWidthConstrainHeight\\\":0,\\\"forceFull\\\":0,\\\"forceFullOverflowX\\\":\\\"body\\\",\\\"forceFullHorizontalSelector\\\":\\\"\\\",\\\"constrainRatio\\\":1,\\\"sliderHeightBasedOn\\\":\\\"real\\\",\\\"decreaseSliderHeight\\\":0,\\\"focusUser\\\":1,\\\"deviceModes\\\":{\\\"desktopPortrait\\\":1,\\\"desktopLandscape\\\":0,\\\"tabletPortrait\\\":1,\\\"tabletLandscape\\\":0,\\\"mobilePortrait\\\":1,\\\"mobileLandscape\\\":0},\\\"normalizedDeviceModes\\\":{\\\"unknownUnknown\\\":[\\\"unknown\\\",\\\"Unknown\\\"],\\\"desktopPortrait\\\":[\\\"desktop\\\",\\\"Portrait\\\"],\\\"desktopLandscape\\\":[\\\"desktop\\\",\\\"Portrait\\\"],\\\"tabletPortrait\\\":[\\\"tablet\\\",\\\"Portrait\\\"],\\\"tabletLandscape\\\":[\\\"tablet\\\",\\\"Portrait\\\"],\\\"mobilePortrait\\\":[\\\"mobile\\\",\\\"Portrait\\\"],\\\"mobileLandscape\\\":[\\\"mobile\\\",\\\"Portrait\\\"]},\\\"verticalRatioModifiers\\\":{\\\"unknownUnknown\\\":1,\\\"desktopPortrait\\\":1,\\\"desktopLandscape\\\":1,\\\"tabletPortrait\\\":1,\\\"tabletLandscape\\\":1,\\\"mobilePortrait\\\":1,\\\"mobileLandscape\\\":1},\\\"minimumFontSizes\\\":{\\\"desktopPortrait\\\":1,\\\"desktopLandscape\\\":1,\\\"tabletPortrait\\\":1,\\\"tabletLandscape\\\":1,\\\"mobilePortrait\\\":1,\\\"mobileLandscape\\\":1},\\\"ratioToDevice\\\":{\\\"Portrait\\\":{\\\"tablet\\\":0.7,\\\"mobile\\\":0.5},\\\"Landscape\\\":{\\\"tablet\\\":0,\\\"mobile\\\":0}},\\\"sliderWidthToDevice\\\":{\\\"desktopPortrait\\\":1200,\\\"desktopLandscape\\\":1200,\\\"tabletPortrait\\\":840,\\\"tabletLandscape\\\":0,\\\"mobilePortrait\\\":600,\\\"mobileLandscape\\\":0},\\\"basedOn\\\":\\\"combined\\\",\\\"orientationMode\\\":\\\"width_and_height\\\",\\\"overflowHiddenPage\\\":0,\\\"desktopPortraitScreenWidth\\\":1200,\\\"tabletPortraitScreenWidth\\\":800,\\\"mobilePortraitScreenWidth\\\":440,\\\"tabletLandscapeScreenWidth\\\":800,\\\"mobileLandscapeScreenWidth\\\":440,\\\"focus\\\":{\\\"offsetTop\\\":\\\"#wpadminbar\\\",\\\"offsetBottom\\\":\\\"\\\"}},\\\"controls\\\":{\\\"mousewheel\\\":0,\\\"touch\\\":\\\"horizontal\\\",\\\"keyboard\\\":1,\\\"blockCarouselInteraction\\\":1},\\\"lazyLoad\\\":0,\\\"lazyLoadNeighbor\\\":0,\\\"blockrightclick\\\":0,\\\"maintainSession\\\":0,\\\"autoplay\\\":{\\\"enabled\\\":1,\\\"start\\\":1,\\\"duration\\\":8000,\\\"autoplayToSlide\\\":-1,\\\"autoplayToSlideIndex\\\":-1,\\\"allowReStart\\\":0,\\\"pause\\\":{\\\"click\\\":1,\\\"mouse\\\":\\\"0\\\",\\\"mediaStarted\\\":1},\\\"resume\\\":{\\\"click\\\":0,\\\"mouse\\\":\\\"0\\\",\\\"mediaEnded\\\":1,\\\"slidechanged\\\":0}},\\\"perspective\\\":1000,\\\"layerMode\\\":{\\\"playOnce\\\":0,\\\"playFirstLayer\\\":1,\\\"mode\\\":\\\"skippable\\\",\\\"inAnimation\\\":\\\"mainInEnd\\\"},\\\"initCallbacks\\\":[\\\"N2D(\\\\\\\"SmartSliderWidgetArrowImage\\\\\\\",function(i,e){function s(e,s,t,h){this.slider=e,this.slider.started(i.proxy(this.start,this,s,t,h))}return s.prototype.start=function(e,s,t){return this.slider.sliderElement.data(\\\\\\\"arrow\\\\\\\")?!1:(this.slider.sliderElement.data(\\\\\\\"arrow\\\\\\\",this),this.deferred=i.Deferred(),this.slider.sliderElement.on(\\\\\\\"SliderDevice\\\\\\\",i.proxy(this.onDevice,this)).trigger(\\\\\\\"addWidget\\\\\\\",this.deferred),this.previous=i(\\\\\\\"#\\\\\\\"+this.slider.elementID+\\\\\\\"-arrow-previous\\\\\\\").on(\\\\\\\"click\\\\\\\",i.proxy(function(i){i.stopPropagation(),this.slider[this.slider.getDirectionPrevious()]()},this)),this.previousResize=this.previous.find(\\\\\\\".n2-resize\\\\\\\"),0===this.previousResize.length&&(this.previousResize=this.previous),this.next=i(\\\\\\\"#\\\\\\\"+this.slider.elementID+\\\\\\\"-arrow-next\\\\\\\").on(\\\\\\\"click\\\\\\\",i.proxy(function(i){i.stopPropagation(),this.slider[this.slider.getDirectionNext()]()},this)),this.nextResize=this.next.find(\\\\\\\".n2-resize\\\\\\\"),0===this.nextResize.length&&(this.nextResize=this.next),this.desktopRatio=e,this.tabletRatio=s,this.mobileRatio=t,void i.when(this.previous.n2imagesLoaded(),this.next.n2imagesLoaded()).always(i.proxy(this.loaded,this)))},s.prototype.loaded=function(){this.previous.css(\\\\\\\"display\\\\\\\",\\\\\\\"inline-block\\\\\\\"),this.previousResize.css(\\\\\\\"display\\\\\\\",\\\\\\\"inline-block\\\\\\\"),this.previousWidth=this.previousResize.width(),this.previousHeight=this.previousResize.height(),this.previousResize.css(\\\\\\\"display\\\\\\\",\\\\\\\"\\\\\\\"),this.previous.css(\\\\\\\"display\\\\\\\",\\\\\\\"\\\\\\\"),this.next.css(\\\\\\\"display\\\\\\\",\\\\\\\"inline-block\\\\\\\"),this.nextResize.css(\\\\\\\"display\\\\\\\",\\\\\\\"inline-block\\\\\\\"),this.nextWidth=this.nextResize.width(),this.nextHeight=this.nextResize.height(),this.nextResize.css(\\\\\\\"display\\\\\\\",\\\\\\\"\\\\\\\"),this.next.css(\\\\\\\"display\\\\\\\",\\\\\\\"\\\\\\\"),this.previousResize.find(\\\\\\\"img\\\\\\\").css(\\\\\\\"width\\\\\\\",\\\\\\\"100%\\\\\\\"),this.nextResize.find(\\\\\\\"img\\\\\\\").css(\\\\\\\"width\\\\\\\",\\\\\\\"100%\\\\\\\"),this.onDevice(null,{device:this.slider.responsive.getDeviceMode()}),this.deferred.resolve()},s.prototype.onDevice=function(i,e){var s=1;switch(e.device){case\\\\\\\"tablet\\\\\\\":s=this.tabletRatio;break;case\\\\\\\"mobile\\\\\\\":s=this.mobileRatio;break;default:s=this.desktopRatio}this.previousResize.width(this.previousWidth*s),this.previousResize.height(this.previousHeight*s),this.nextResize.width(this.nextWidth*s),this.nextResize.height(this.nextHeight*s)},s});\\\",\\\"new N2Classes.SmartSliderWidgetArrowImage(this, 1, 0.7, 0.5);\\\",\\\"N2D(\\\\\\\"SmartSliderWidgetBulletTransition\\\\\\\",function(t,e){function i(e,i){this.slider=e,this.slider.started(t.proxy(this.start,this,i))}return i.prototype.start=function(e){if(this.slider.sliderElement.data(\\\\\\\"bullet\\\\\\\"))return!1;if(this.slider.sliderElement.data(\\\\\\\"bullet\\\\\\\",this),this.axis=\\\\\\\"horizontal\\\\\\\",this.offset=0,this.parameters=e,this.bar=this.slider.sliderElement.find(\\\\\\\".nextend-bullet-bar\\\\\\\"),this.event=\\\\\\\"universalclick\\\\\\\",\\\\\\\"mouseenter\\\\\\\"===this.parameters.action&&(this.event=\\\\\\\"universalenter\\\\\\\"),this.slider.sliderElement.on({slideCountChanged:t.proxy(this.onSlideCountChanged,this),sliderSwitchTo:t.proxy(this.onSlideSwitch,this)}),this.slider.firstSlideReady.done(t.proxy(this.onFirstSlideSet,this)),0===e.overlay){var i=!1;switch(e.area){case 1:i=\\\\\\\"Top\\\\\\\";break;case 12:i=\\\\\\\"Bottom\\\\\\\";break;case 5:i=\\\\\\\"Left\\\\\\\",this.axis=\\\\\\\"vertical\\\\\\\";break;case 8:i=\\\\\\\"Right\\\\\\\",this.axis=\\\\\\\"vertical\\\\\\\"}i&&(this.offset=parseFloat(this.bar.data(\\\\\\\"offset\\\\\\\")),this.slider.responsive.addStaticMargin(i,this))}},i.prototype.onFirstSlideSet=function(t){this.onSlideCountChanged(),this.$dots.eq(t.index).addClass(\\\\\\\"n2-active\\\\\\\").attr(\\\\\\\"aria-current\\\\\\\",\\\\\\\"true\\\\\\\")},i.prototype.onDotClick=function(e,i){this.slider.directionalChangeTo(e),t(i.target).blur()},i.prototype.onSlideSwitch=function(t,e){this.$dots.filter(\\\\\\\".n2-active\\\\\\\").removeClass(\\\\\\\"n2-active\\\\\\\").removeAttr(\\\\\\\"aria-current\\\\\\\"),this.$dots.eq(e).addClass(\\\\\\\"n2-active\\\\\\\").attr(\\\\\\\"aria-current\\\\\\\",\\\\\\\"true\\\\\\\")},i.prototype.isVisible=function(){return this.bar.is(\\\\\\\":visible\\\\\\\")},i.prototype.getSize=function(){return\\\\\\\"horizontal\\\\\\\"===this.axis?this.bar.height()+this.offset:this.bar.width()+this.offset},i.prototype.showThumbnail=function(e,i){var s=this.getThumbnail(e);NextendTween.to(s,.3,{opacity:1}),this.$dots.eq(e).one(\\\\\\\"universalleave.thumbnailleave\\\\\\\",t.proxy(this.hideThumbnail,this,e,s))},i.prototype.hideThumbnail=function(t,e,i){i.stopPropagation(),NextendTween.to(e,.3,{opacity:0,onComplete:function(){e.remove()}})},i.prototype.getThumbnail=function(e){var i=this.$dots.eq(e),s=this.slider.sliderElement.offset(),a=i.offset(),r=i.outerWidth(),o=i.outerHeight(),n=t(\\\\\\\"<div\\\\\\/>\\\\\\\").append(t(\\\\\\\"<div\\\\\\/>\\\\\\\").css({width:this.parameters.thumbnailWidth,height:this.parameters.thumbnailHeight,backgroundImage:\'url(\\\\\\\"\'+this.slider.slides[e].getThumbnail()+\'\\\\\\\")\'}).addClass(\\\\\\\"n2-ss-bullet-thumbnail\\\\\\\")).addClass(this.parameters.thumbnailStyle).addClass(\\\\\\\"n2-ss-bullet-thumbnail-container\\\\\\\").appendTo(this.slider.sliderElement);switch(this.parameters.thumbnailPosition){case\\\\\\\"right\\\\\\\":n.css({left:a.left-s.left+r,top:a.top-s.top+o\\\\\\/2-n.outerHeight(!0)\\\\\\/2});break;case\\\\\\\"left\\\\\\\":n.css({left:a.left-s.left-n.outerWidth(!0),top:a.top-s.top+o\\\\\\/2-n.outerHeight(!0)\\\\\\/2});break;case\\\\\\\"top\\\\\\\":n.css({left:a.left-s.left+r\\\\\\/2-n.outerWidth(!0)\\\\\\/2,top:a.top-s.top-n.outerHeight(!0)});break;case\\\\\\\"bottom\\\\\\\":n.css({left:a.left-s.left+r\\\\\\/2-n.outerWidth(!0)\\\\\\/2,top:a.top-s.top+o})}return i.data(\\\\\\\"thumbnail\\\\\\\",n),n},i.prototype.onSlideCountChanged=function(){this.bar.html(\\\\\\\"\\\\\\\");for(var e=0;e<this.slider.slides.length;e++){var i=this.slider.slides[e],s=t(\'<div class=\\\\\\\"n2-ow n2-bullet \'+this.parameters.dotClasses+\'\\\\\\\" tabindex=\\\\\\\"0\\\\\\\"><\\\\\\/div>\').attr(\\\\\\\"role\\\\\\\",\\\\\\\"button\\\\\\\").attr(\\\\\\\"aria-label\\\\\\\",i.getTitle()).appendTo(this.bar);switch(s.wrap(t(\'<div class=\\\\\\\"n2-ow\\\\\\\"><\\\\\\/div>\').on(this.event,t.proxy(this.onDotClick,this,e))).on(\\\\\\\"n2Activate\\\\\\\",t.proxy(this.onDotClick,this,e)),this.parameters.mode){case\\\\\\\"numeric\\\\\\\":s.html(e+1);break;case\\\\\\\"title\\\\\\\":s.html(i.getTitle())}if(1===this.parameters.thumbnail){var a=i.getThumbnail();a&&s.on({universalenter:t.proxy(this.showThumbnail,this,e)},{leaveOnSecond:!0})}}this.$dots=this.bar.find(\\\\\\\">div>*\\\\\\\")},i});\\\",\\\"new N2Classes.SmartSliderWidgetBulletTransition(this, {\\\\\\\"overlay\\\\\\\":1,\\\\\\\"area\\\\\\\":12,\\\\\\\"dotClasses\\\\\\\":\\\\\\\"n2-style-09efebcef1f2f45d29438e0cabcf79bc-dot \\\\\\\",\\\\\\\"mode\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"action\\\\\\\":\\\\\\\"click\\\\\\\",\\\\\\\"thumbnail\\\\\\\":1,\\\\\\\"thumbnailWidth\\\\\\\":120,\\\\\\\"thumbnailHeight\\\\\\\":81,\\\\\\\"thumbnailStyle\\\\\\\":\\\\\\\"n2-style-42845aa02120076deb3a5681d1d750ac-simple \\\\\\\",\\\\\\\"thumbnailPosition\\\\\\\":\\\\\\\"top\\\\\\\"});\\\"],\\\"allowBGImageAttachmentFixed\\\":false,\\\"bgAnimationsColor\\\":\\\"RGBA(51,51,51,1)\\\",\\\"bgAnimations\\\":0,\\\"mainanimation\\\":{\\\"type\\\":\\\"horizontal\\\",\\\"duration\\\":600,\\\"delay\\\":0,\\\"ease\\\":\\\"easeOutQuad\\\",\\\"parallax\\\":0,\\\"shiftedBackgroundAnimation\\\":0},\\\"carousel\\\":1,\\\"dynamicHeight\\\":0});});\"],\"globalInline\":[]},\"googleFonts\":{\"staticGroup\":[],\"files\":{\"Raleway\":[\"300\",\"400\"]},\"urls\":[],\"codes\":[],\"firstCodes\":[],\"inline\":[],\"globalInline\":[]},\"image\":{\"images\":[\"https:\\/\\/smartslider3.com\\/sample\\/programmer.jpg\",\"https:\\/\\/smartslider3.com\\/sample\\/free1.jpg\",\"https:\\/\\/smartslider3.com\\/sample\\/photographer.jpg\"]}}}', 0, 1);
-- --------------------------------------------------------
--
-- Структура таблицы `wp_nextend2_smartslider3_generators`
--
CREATE TABLE `wp_nextend2_smartslider3_generators` (
`id` int(11) NOT NULL,
`group` varchar(254) NOT NULL,
`type` varchar(254) NOT NULL,
`params` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Структура таблицы `wp_nextend2_smartslider3_sliders`
--
CREATE TABLE `wp_nextend2_smartslider3_sliders` (
`id` int(11) NOT NULL,
`alias` varchar(255) DEFAULT NULL,
`title` varchar(100) NOT NULL,
`type` varchar(30) NOT NULL,
`params` mediumtext NOT NULL,
`time` datetime NOT NULL,
`thumbnail` varchar(255) NOT NULL,
`ordering` int(11) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Дамп данных таблицы `wp_nextend2_smartslider3_sliders`
--
INSERT INTO `wp_nextend2_smartslider3_sliders` (`id`, `alias`, `title`, `type`, `params`, `time`, `thumbnail`, `ordering`) VALUES
(1, NULL, 'Sample Slider', 'simple', '{\"controlsScroll\":\"0\",\"controlsDrag\":\"1\",\"controlsTouch\":\"horizontal\",\"controlsKeyboard\":\"1\",\"thumbnail\":\"\",\"align\":\"normal\",\"backgroundMode\":\"fill\",\"animation\":\"horizontal\",\"animation-duration\":\"600\",\"animation-delay\":\"0\",\"animation-easing\":\"easeOutQuad\",\"animation-parallax-overlap\":\"0\",\"background-animation\":\"\",\"background-animation-speed\":\"normal\",\"animation-shifted-background-animation\":\"auto\",\"kenburns-animation\":\"50|*|50|*|\",\"kenburns-animation-speed\":\"default\",\"kenburns-animation-strength\":\"default\",\"carousel\":\"1\",\"background\":\"\",\"background-fixed\":\"0\",\"background-size\":\"cover\",\"backgroundVideoMp4\":\"\",\"backgroundVideoMuted\":\"1\",\"backgroundVideoLoop\":\"1\",\"backgroundVideoMode\":\"fill\",\"dynamic-height\":\"0\",\"loop-single-slide\":\"0\",\"padding\":\"0|*|0|*|0|*|0\",\"border-width\":\"0\",\"border-color\":\"3E3E3Eff\",\"border-radius\":\"0\",\"slider-preset\":\"\",\"slider-css\":\"\",\"slide-css\":\"\",\"width\":\"1200\",\"height\":\"600\",\"desktop-portrait-minimum-font-size\":\"1\",\"desktop-landscape\":\"0\",\"desktop-landscape-width\":\"1440\",\"desktop-landscape-height\":\"0\",\"desktop-landscape-minimum-font-size\":\"1\",\"fontsize\":\"16\",\"desktop\":\"1\",\"tablet\":\"1\",\"mobile\":\"1\",\"margin\":\"0|*|0|*|0|*|0\",\"tablet-portrait\":\"0\",\"tablet-portrait-width\":\"800\",\"tablet-portrait-height\":\"0\",\"tablet-portrait-minimum-font-size\":\"1\",\"tablet-landscape\":\"0\",\"tablet-landscape-width\":\"1024\",\"tablet-landscape-height\":\"0\",\"tablet-landscape-minimum-font-size\":\"1\",\"mobile-portrait\":\"0\",\"mobile-portrait-width\":\"440\",\"mobile-portrait-height\":\"0\",\"mobile-portrait-minimum-font-size\":\"1\",\"mobile-landscape\":\"0\",\"mobile-landscape-width\":\"740\",\"mobile-landscape-height\":\"0\",\"mobile-landscape-minimum-font-size\":\"1\",\"responsive-mode\":\"auto\",\"responsiveScaleDown\":\"1\",\"responsiveScaleUp\":\"1\",\"responsiveSliderHeightMin\":\"0\",\"responsiveSliderHeightMax\":\"3000\",\"responsiveSlideWidthMax\":\"3000\",\"autoplay\":\"1\",\"autoplayDuration\":\"8000\",\"autoplayStart\":\"1\",\"autoplayfinish\":\"0|*|loop|*|current\",\"autoplayAllowReStart\":\"0\",\"autoplayStopClick\":\"1\",\"autoplayStopMouse\":\"0\",\"autoplayStopMedia\":\"1\",\"autoplayResumeClick\":\"0\",\"autoplayResumeMouse\":\"0\",\"autoplayResumeMedia\":\"1\",\"playfirstlayer\":\"1\",\"playonce\":\"0\",\"layer-animation-play-in\":\"end\",\"layer-animation-play-mode\":\"skippable\",\"parallax-enabled\":\"1\",\"parallax-enabled-mobile\":\"0\",\"parallax-3d\":\"0\",\"parallax-animate\":\"1\",\"parallax-horizontal\":\"mouse\",\"parallax-vertical\":\"mouse\",\"parallax-mouse-origin\":\"slider\",\"parallax-scroll-move\":\"both\",\"perspective\":\"1000\",\"imageload\":\"0\",\"imageloadNeighborSlides\":\"0\",\"optimize\":\"0\",\"optimize-quality\":\"70\",\"optimize-background-image-custom\":\"0\",\"optimize-background-image-width\":\"800\",\"optimize-background-image-height\":\"600\",\"optimizeThumbnailWidth\":\"100\",\"optimizeThumbnailHeight\":\"60\",\"layer-image-optimize\":\"0\",\"layer-image-tablet\":\"50\",\"layer-image-mobile\":\"30\",\"layer-image-base64\":\"0\",\"layer-image-base64-size\":\"5\",\"playWhenVisible\":\"1\",\"fadeOnLoad\":\"1\",\"fadeOnScroll\":\"0\",\"spinner\":\"simpleWhite\",\"custom-spinner\":\"\",\"custom-spinner-width\":\"100\",\"custom-spinner-height\":\"100\",\"custom-display\":\"1\",\"dependency\":\"\",\"delay\":\"0\",\"is-delayed\":\"0\",\"randomize\":\"0\",\"randomizeFirst\":\"0\",\"randomize-cache\":\"1\",\"variations\":\"5\",\"maximumslidecount\":\"1000\",\"global-lightbox\":\"0\",\"global-lightbox-label\":\"0\",\"maintain-session\":\"0\",\"blockrightclick\":\"0\",\"overflow-hidden-page\":\"0\",\"bg-parallax-tablet\":\"1\",\"bg-parallax-mobile\":\"1\",\"callbacks\":\"\",\"widgetarrow\":\"imageEmpty\",\"widget-arrow-display-desktop\":\"1\",\"widget-arrow-display-tablet\":\"1\",\"widget-arrow-display-mobile\":\"1\",\"widget-arrow-exclude-slides\":\"\",\"widget-arrow-display-hover\":\"0\",\"widget-arrow-responsive-desktop\":\"1\",\"widget-arrow-responsive-tablet\":\"0.7\",\"widget-arrow-responsive-mobile\":\"0.5\",\"widget-arrow-previous-image\":\"\",\"widget-arrow-previous\":\"$ss$/plugins/widgetarrow/image/image/previous/thin-horizontal.svg\",\"widget-arrow-previous-color\":\"ffffffcc\",\"widget-arrow-previous-hover\":\"0\",\"widget-arrow-previous-hover-color\":\"ffffffcc\",\"widget-arrow-style\":\"\",\"widget-arrow-previous-position-mode\":\"simple\",\"widget-arrow-previous-position-area\":\"6\",\"widget-arrow-previous-position-stack\":\"1\",\"widget-arrow-previous-position-offset\":\"15\",\"widget-arrow-previous-position-horizontal\":\"left\",\"widget-arrow-previous-position-horizontal-position\":\"0\",\"widget-arrow-previous-position-horizontal-unit\":\"px\",\"widget-arrow-previous-position-vertical\":\"top\",\"widget-arrow-previous-position-vertical-position\":\"0\",\"widget-arrow-previous-position-vertical-unit\":\"px\",\"widget-arrow-next-position-mode\":\"simple\",\"widget-arrow-next-position-area\":\"7\",\"widget-arrow-next-position-stack\":\"1\",\"widget-arrow-next-position-offset\":\"15\",\"widget-arrow-next-position-horizontal\":\"left\",\"widget-arrow-next-position-horizontal-position\":\"0\",\"widget-arrow-next-position-horizontal-unit\":\"px\",\"widget-arrow-next-position-vertical\":\"top\",\"widget-arrow-next-position-vertical-position\":\"0\",\"widget-arrow-next-position-vertical-unit\":\"px\",\"widget-arrow-animation\":\"fade\",\"widget-arrow-mirror\":\"1\",\"widget-arrow-next-image\":\"\",\"widget-arrow-next\":\"$ss$/plugins/widgetarrow/image/image/next/thin-horizontal.svg\",\"widget-arrow-next-color\":\"ffffffcc\",\"widget-arrow-next-hover\":\"0\",\"widget-arrow-next-hover-color\":\"ffffffcc\",\"widgetbullet\":\"transition\",\"widget-bullet-display-desktop\":\"1\",\"widget-bullet-display-tablet\":\"1\",\"widget-bullet-display-mobile\":\"1\",\"widget-bullet-exclude-slides\":\"\",\"widget-bullet-display-hover\":\"0\",\"widget-bullet-thumbnail-show-image\":\"1\",\"widget-bullet-thumbnail-width\":\"120\",\"widget-bullet-thumbnail-height\":\"81\",\"widget-bullet-thumbnail-style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siYmFja2dyb3VuZGNvbG9yIjoiMDAwMDAwODAiLCJwYWRkaW5nIjoiM3wqfDN8KnwzfCp8M3wqfHB4IiwiYm94c2hhZG93IjoiMHwqfDB8KnwwfCp8MHwqfDAwMDAwMGZmIiwiYm9yZGVyIjoiMHwqfHNvbGlkfCp8MDAwMDAwZmYiLCJib3JkZXJyYWRpdXMiOiIzIiwiZXh0cmEiOiJtYXJnaW46IDVweDsifV19\",\"widget-bullet-thumbnail-side\":\"before\",\"widget-bullet-position-mode\":\"simple\",\"widget-bullet-position-area\":\"12\",\"widget-bullet-position-stack\":\"1\",\"widget-bullet-position-offset\":\"10\",\"widget-bullet-position-horizontal\":\"left\",\"widget-bullet-position-horizontal-position\":\"0\",\"widget-bullet-position-horizontal-unit\":\"px\",\"widget-bullet-position-vertical\":\"top\",\"widget-bullet-position-vertical-position\":\"0\",\"widget-bullet-position-vertical-unit\":\"px\",\"widget-bullet-action\":\"click\",\"widget-bullet-style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siYmFja2dyb3VuZGNvbG9yIjoiMDAwMDAwYWIiLCJwYWRkaW5nIjoiNXwqfDV8Knw1fCp8NXwqfHB4IiwiYm94c2hhZG93IjoiMHwqfDB8KnwwfCp8MHwqfDAwMDAwMGZmIiwiYm9yZGVyIjoiMHwqfHNvbGlkfCp8MDAwMDAwZmYiLCJib3JkZXJyYWRpdXMiOiI1MCIsImV4dHJhIjoibWFyZ2luOiA0cHg7In0seyJleHRyYSI6IiIsImJhY2tncm91bmRjb2xvciI6IjA5YjQ3NGZmIn1dfQ==\",\"widget-bullet-bar\":\"\",\"widget-bullet-bar-full-size\":\"0\",\"widget-bullet-align\":\"center\",\"widget-bullet-orientation\":\"auto\",\"widget-bullet-overlay\":\"0\",\"widgetautoplay\":\"disabled\",\"widget-autoplay-display-desktop\":\"1\",\"widget-autoplay-display-tablet\":\"1\",\"widget-autoplay-display-mobile\":\"1\",\"widget-autoplay-exclude-slides\":\"\",\"widget-autoplay-display-hover\":\"0\",\"widgetindicator\":\"disabled\",\"widget-indicator-display-desktop\":\"1\",\"widget-indicator-display-tablet\":\"1\",\"widget-indicator-display-mobile\":\"1\",\"widget-indicator-exclude-slides\":\"\",\"widget-indicator-display-hover\":\"0\",\"widgetbar\":\"disabled\",\"widget-bar-display-desktop\":\"1\",\"widget-bar-display-tablet\":\"1\",\"widget-bar-display-mobile\":\"1\",\"widget-bar-exclude-slides\":\"\",\"widget-bar-display-hover\":\"0\",\"widgetthumbnail\":\"disabled\",\"widget-thumbnail-display-desktop\":\"1\",\"widget-thumbnail-display-tablet\":\"1\",\"widget-thumbnail-display-mobile\":\"1\",\"widget-thumbnail-exclude-slides\":\"\",\"widget-thumbnail-display-hover\":\"0\",\"widget-thumbnail-show-image\":\"1\",\"widget-thumbnail-width\":\"100\",\"widget-thumbnail-height\":\"60\",\"widgetshadow\":\"disabled\",\"widget-shadow-display-desktop\":\"1\",\"widget-shadow-display-tablet\":\"1\",\"widget-shadow-display-mobile\":\"1\",\"widget-shadow-exclude-slides\":\"\",\"widgetfullscreen\":\"disabled\",\"widget-fullscreen-display-desktop\":\"1\",\"widget-fullscreen-display-tablet\":\"1\",\"widget-fullscreen-display-mobile\":\"1\",\"widget-fullscreen-exclude-slides\":\"\",\"widget-fullscreen-display-hover\":\"0\",\"widgethtml\":\"disabled\",\"widget-html-display-desktop\":\"1\",\"widget-html-display-tablet\":\"1\",\"widget-html-display-mobile\":\"1\",\"widget-html-exclude-slides\":\"\",\"widget-html-display-hover\":\"0\",\"widgets\":\"arrow\"}', '2015-11-01 14:14:20', '', 0),
(2, NULL, 'Слайдер', 'simple', '{\"aria-label\":\"\\u0421\\u043b\\u0430\\u0439\\u0434\\u0435\\u0440\",\"alias-id\":\"\",\"alias-smoothscroll\":\"\",\"alias-slideswitch\":\"\",\"controlsTouch\":\"horizontal\",\"controlsScroll\":\"0\",\"controlsKeyboard\":\"1\",\"thumbnail\":\"\",\"align\":\"normal\",\"backgroundMode\":\"fill\",\"animation\":\"horizontal\",\"animation-duration\":\"800\",\"background-animation\":\"\",\"background-animation-color\":\"333333ff\",\"background-animation-speed\":\"normal\",\"width\":\"1200\",\"height\":\"500\",\"margin\":\"0|*|0|*|0|*|0\",\"responsive-mode\":\"fullwidth\",\"responsiveSliderHeightMin\":\"0\",\"responsiveSliderHeightMax\":\"3000\",\"responsiveForceFull\":\"1\",\"responsiveForceFullOverflowX\":\"body\",\"responsiveForceFullHorizontalSelector\":\"body\",\"responsiveSliderOrientation\":\"width_and_height\",\"responsiveSlideWidth\":\"1\",\"responsiveSlideWidthMax\":\"3000\",\"responsiveSlideWidthDesktopLandscape\":\"0\",\"responsiveSlideWidthMaxDesktopLandscape\":\"1600\",\"responsiveSlideWidthTablet\":\"0\",\"responsiveSlideWidthMaxTablet\":\"3000\",\"responsiveSlideWidthTabletLandscape\":\"0\",\"responsiveSlideWidthMaxTabletLandscape\":\"1200\",\"responsiveSlideWidthMobile\":\"0\",\"responsiveSlideWidthMaxMobile\":\"480\",\"responsiveSlideWidthMobileLandscape\":\"0\",\"responsiveSlideWidthMaxMobileLandscape\":\"740\",\"responsiveSlideWidthConstrainHeight\":\"0\",\"autoplay\":\"0\",\"autoplayDuration\":\"8000\",\"autoplayStopClick\":\"1\",\"autoplayStopMouse\":\"0\",\"autoplayStopMedia\":\"1\",\"optimize\":\"0\",\"optimize-quality\":\"70\",\"optimize-background-image-custom\":\"0\",\"optimize-background-image-width\":\"800\",\"optimize-background-image-height\":\"600\",\"optimizeThumbnailWidth\":\"100\",\"optimizeThumbnailHeight\":\"60\",\"playWhenVisible\":\"1\",\"playWhenVisibleAt\":\"50\",\"dependency\":\"\",\"delay\":\"0\",\"is-delayed\":\"0\",\"overflow-hidden-page\":\"0\",\"clear-both\":\"0\",\"clear-both-after\":\"1\",\"media-query-hide-slider\":\"0\",\"media-query-under-over\":\"max-width\",\"media-query-width\":\"640\",\"responsiveFocusUser\":\"1\",\"custom-css-codes\":\"\",\"callbacks\":\"\",\"classes\":\"\",\"related-posts\":\"\",\"widgetarrow\":\"imageEmpty\",\"widget-arrow-display-hover\":\"0\",\"widget-arrow-previous\":\"$ss$\\/plugins\\/widgetarrow\\/image\\/image\\/previous\\/thin-horizontal.svg\",\"widget-arrow-previous-color\":\"ffffffcc\",\"widget-arrow-previous-hover\":\"0\",\"widget-arrow-previous-hover-color\":\"ffffffcc\",\"widget-arrow-style\":\"\",\"widget-arrow-previous-position-mode\":\"simple\",\"widget-arrow-previous-position-area\":\"6\",\"widget-arrow-previous-position-stack\":\"1\",\"widget-arrow-previous-position-offset\":\"15\",\"widget-arrow-previous-position-horizontal\":\"left\",\"widget-arrow-previous-position-horizontal-position\":\"0\",\"widget-arrow-previous-position-horizontal-unit\":\"px\",\"widget-arrow-previous-position-vertical\":\"top\",\"widget-arrow-previous-position-vertical-position\":\"0\",\"widget-arrow-previous-position-vertical-unit\":\"px\",\"widget-arrow-next-position-mode\":\"simple\",\"widget-arrow-next-position-area\":\"7\",\"widget-arrow-next-position-stack\":\"1\",\"widget-arrow-next-position-offset\":\"15\",\"widget-arrow-next-position-horizontal\":\"left\",\"widget-arrow-next-position-horizontal-position\":\"0\",\"widget-arrow-next-position-horizontal-unit\":\"px\",\"widget-arrow-next-position-vertical\":\"top\",\"widget-arrow-next-position-vertical-position\":\"0\",\"widget-arrow-next-position-vertical-unit\":\"px\",\"widget-arrow-previous-alt\":\"previous arrow\",\"widget-arrow-next-alt\":\"next arrow\",\"widget-arrow-base64\":\"1\",\"widgetbullet\":\"disabled\",\"widget-bullet-display-hover\":\"0\",\"widget-bullet-thumbnail-show-image\":\"0\",\"widget-bullet-thumbnail-width\":\"100\",\"widget-bullet-thumbnail-height\":\"60\",\"widget-bullet-thumbnail-style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siYmFja2dyb3VuZGNvbG9yIjoiMDAwMDAwODAiLCJwYWRkaW5nIjoiM3wqfDN8KnwzfCp8M3wqfHB4IiwiYm94c2hhZG93IjoiMHwqfDB8KnwwfCp8MHwqfDAwMDAwMGZmIiwiYm9yZGVyIjoiMHwqfHNvbGlkfCp8MDAwMDAwZmYiLCJib3JkZXJyYWRpdXMiOiIzIiwiZXh0cmEiOiJtYXJnaW46IDVweDtiYWNrZ3JvdW5kLXNpemU6Y292ZXI7In1dfQ==\",\"widget-bullet-thumbnail-side\":\"before\",\"widgetautoplay\":\"disabled\",\"widget-autoplay-display-hover\":\"0\",\"widgetbar\":\"disabled\",\"widget-bar-display-hover\":\"0\",\"widgetthumbnail\":\"disabled\",\"widget-thumbnail-display-hover\":\"0\",\"widget-thumbnail-width\":\"100\",\"widget-thumbnail-height\":\"60\",\"widgetshadow\":\"disabled\",\"widgets\":\"arrow\"}', '2019-07-31 08:18:22', '', 1);
-- --------------------------------------------------------
--
-- Структура таблицы `wp_nextend2_smartslider3_sliders_xref`
--
CREATE TABLE `wp_nextend2_smartslider3_sliders_xref` (
`group_id` int(11) NOT NULL,
`slider_id` int(11) NOT NULL,
`ordering` int(11) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Дамп данных таблицы `wp_nextend2_smartslider3_sliders_xref`
--
INSERT INTO `wp_nextend2_smartslider3_sliders_xref` (`group_id`, `slider_id`, `ordering`) VALUES
(0, 2, 0);
-- --------------------------------------------------------
--
-- Структура таблицы `wp_nextend2_smartslider3_slides`
--
CREATE TABLE `wp_nextend2_smartslider3_slides` (
`id` int(11) NOT NULL,
`title` varchar(200) NOT NULL,
`slider` int(11) NOT NULL,
`publish_up` datetime NOT NULL,
`publish_down` datetime NOT NULL,
`published` tinyint(1) NOT NULL,
`first` int(11) NOT NULL,
`slide` longtext,
`description` text NOT NULL,
`thumbnail` varchar(255) NOT NULL,
`params` text NOT NULL,
`ordering` int(11) NOT NULL,
`generator_id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Дамп данных таблицы `wp_nextend2_smartslider3_slides`
--
INSERT INTO `wp_nextend2_smartslider3_slides` (`id`, `title`, `slider`, `publish_up`, `publish_down`, `published`, `first`, `slide`, `description`, `thumbnail`, `params`, `ordering`, `generator_id`) VALUES
(1, 'Slide One', 1, '2015-11-01 12:27:34', '2025-11-11 12:27:34', 1, 0, '[{\"type\":\"content\",\"animations\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"10|*|10|*|10|*|10|*|px+\",\"desktopportraitselfalign\":\"inherit\",\"mobileportraitfontsize\":60,\"opened\":1,\"id\":null,\"class\":\"\",\"crop\":\"\",\"parallax\":0,\"adaptivefont\":1,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Content\",\"namesynced\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"verticalalign\":\"center\",\"layers\":[{\"type\":\"layer\",\"animations\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"10|*|0|*|10|*|0|*|px+\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"id\":null,\"class\":\"\",\"crop\":\"visible\",\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Martin Dwyer\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"heading\":\"Martin Dwyer\",\"href\":\"#\",\"href-target\":\"_self\",\"priority\":\"2\",\"fullwidth\":\"0\",\"nowrap\":\"0\",\"title\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6IjBiMGIwYmZmIiwic2l6ZSI6IjM2fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUmFsZXdheSxBcmlhbCIsImxpbmVoZWlnaHQiOiIxLjUiLCJib2xkIjowLCJpdGFsaWMiOjAsInVuZGVybGluZSI6MCwiYWxpZ24iOiJjZW50ZXIiLCJsZXR0ZXJzcGFjaW5nIjoiMTBweCIsIndvcmRzcGFjaW5nIjoibm9ybWFsIiwidGV4dHRyYW5zZm9ybSI6InVwcGVyY2FzZSJ9LHsiZXh0cmEiOiIifSx7ImV4dHJhIjoiIn1dfQ==\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiJmZmZmZmZjYyIsIm9wYWNpdHkiOjEwMCwicGFkZGluZyI6IjAuNHwqfDF8KnwwLjR8KnwxfCp8ZW0iLCJib3hzaGFkb3ciOiIwfCp8MHwqfDB8KnwwfCp8MDAwMDAwZmYiLCJib3JkZXIiOiIwfCp8c29saWR8KnwwMDAwMDBmZiIsImJvcmRlcnJhZGl1cyI6IjAifSx7ImV4dHJhIjoiIn1dfQ==\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"split-text-backface-visibility\":\"1\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"class\":\"\"}}},{\"type\":\"layer\",\"animations\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px+\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"id\":null,\"class\":\"\",\"crop\":\"visible\",\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Application Developer\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"heading\":\"Application Developer\",\"href\":\"#\",\"href-target\":\"_self\",\"priority\":\"2\",\"fullwidth\":\"0\",\"nowrap\":\"1\",\"title\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmZmIiwic2l6ZSI6IjIyfHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUmFsZXdheSxBcmlhbCIsImxpbmVoZWlnaHQiOiIxIiwiYm9sZCI6MCwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoiY2VudGVyIiwibGV0dGVyc3BhY2luZyI6IjJweCIsIndvcmRzcGFjaW5nIjoibm9ybWFsIiwidGV4dHRyYW5zZm9ybSI6Im5vbmUifSx7ImV4dHJhIjoiIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siYmFja2dyb3VuZGNvbG9yIjoiMDAwMDAwY2MiLCJwYWRkaW5nIjoiMC44fCp8MXwqfDAuOHwqfDF8KnxlbSIsImJveHNoYWRvdyI6IjB8KnwwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImJvcmRlciI6IjB8Knxzb2xpZHwqfDAwMDAwMGZmIiwiYm9yZGVycmFkaXVzIjoiMCIsImV4dHJhIjoiIn0seyJleHRyYSI6IiJ9XX0=\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"split-text-backface-visibility\":\"1\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"class\":\"\"}}}]}]', '', 'https://smartslider3.com/sample/developerthumbnail.jpg', '{\"background-type\":\"image\",\"backgroundVideoMp4\":\"\",\"backgroundVideoMuted\":\"1\",\"backgroundVideoLoop\":\"1\",\"preload\":\"auto\",\"backgroundVideoMode\":\"fill\",\"backgroundImage\":\"https://smartslider3.com/sample/programmer.jpg\",\"backgroundFocusX\":\"50\",\"backgroundFocusY\":\"50\",\"backgroundImageOpacity\":\"100\",\"backgroundImageBlur\":\"0\",\"backgroundAlt\":\"\",\"backgroundTitle\":\"\",\"backgroundColor\":\"ffffff00\",\"backgroundGradient\":\"off\",\"backgroundColorEnd\":\"ffffff00\",\"backgroundMode\":\"default\",\"background-animation\":\"\",\"background-animation-speed\":\"default\",\"kenburns-animation\":\"50|*|50|*|\",\"kenburns-animation-speed\":\"default\",\"kenburns-animation-strength\":\"default\",\"thumbnailType\":\"default\",\"href\":\"#\",\"href-target\":\"_self\",\"guides\":\"eyJob3Jpem9udGFsIjpbXSwidmVydGljYWwiOltdfQ==\",\"first\":\"0\",\"static-slide\":\"0\",\"slide-duration\":\"0\",\"version\":\"3.2.0\"}', 0, 0),
(2, 'Slide Two', 1, '2015-11-01 12:27:34', '2025-11-11 12:27:34', 1, 0, '[{\"type\":\"content\",\"animations\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"10|*|10|*|10|*|10|*|px+\",\"desktopportraitselfalign\":\"inherit\",\"mobileportraitfontsize\":60,\"opened\":1,\"id\":null,\"class\":\"\",\"crop\":\"\",\"parallax\":0,\"adaptivefont\":1,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Content\",\"namesynced\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"verticalalign\":\"center\",\"layers\":[{\"type\":\"layer\",\"animations\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"10|*|0|*|10|*|0|*|px+\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"id\":null,\"class\":\"\",\"crop\":\"visible\",\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Rachel Wright\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"heading\":\"Rachel Wright\",\"href\":\"#\",\"href-target\":\"_self\",\"priority\":\"2\",\"fullwidth\":\"0\",\"nowrap\":\"0\",\"title\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6IjBiMGIwYmZmIiwic2l6ZSI6IjM2fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUmFsZXdheSxBcmlhbCIsImxpbmVoZWlnaHQiOiIxLjUiLCJib2xkIjowLCJpdGFsaWMiOjAsInVuZGVybGluZSI6MCwiYWxpZ24iOiJjZW50ZXIiLCJsZXR0ZXJzcGFjaW5nIjoiMTBweCIsIndvcmRzcGFjaW5nIjoibm9ybWFsIiwidGV4dHRyYW5zZm9ybSI6InVwcGVyY2FzZSJ9LHsiZXh0cmEiOiIifSx7ImV4dHJhIjoiIn1dfQ==\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiJmZmZmZmZjYyIsIm9wYWNpdHkiOjEwMCwicGFkZGluZyI6IjAuNHwqfDF8KnwwLjR8KnwxfCp8ZW0iLCJib3hzaGFkb3ciOiIwfCp8MHwqfDB8KnwwfCp8MDAwMDAwZmYiLCJib3JkZXIiOiIwfCp8c29saWR8KnwwMDAwMDBmZiIsImJvcmRlcnJhZGl1cyI6IjAifSx7ImV4dHJhIjoiIn1dfQ==\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"split-text-backface-visibility\":\"1\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"class\":\"\"}}},{\"type\":\"layer\",\"animations\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px+\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"id\":null,\"class\":\"\",\"crop\":\"visible\",\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Art Director & Photographer\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"heading\":\"Art Director & Photographer\",\"href\":\"#\",\"href-target\":\"_self\",\"priority\":\"2\",\"fullwidth\":\"0\",\"nowrap\":\"1\",\"title\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmZmIiwic2l6ZSI6IjIyfHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUmFsZXdheSxBcmlhbCIsImxpbmVoZWlnaHQiOiIxIiwiYm9sZCI6MCwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoiY2VudGVyIiwibGV0dGVyc3BhY2luZyI6IjJweCIsIndvcmRzcGFjaW5nIjoibm9ybWFsIiwidGV4dHRyYW5zZm9ybSI6Im5vbmUifSx7ImV4dHJhIjoiIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siYmFja2dyb3VuZGNvbG9yIjoiMDAwMDAwY2MiLCJwYWRkaW5nIjoiMC44fCp8MXwqfDAuOHwqfDF8KnxlbSIsImJveHNoYWRvdyI6IjB8KnwwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImJvcmRlciI6IjB8Knxzb2xpZHwqfDAwMDAwMGZmIiwiYm9yZGVycmFkaXVzIjoiMCIsImV4dHJhIjoiIn0seyJleHRyYSI6IiJ9XX0=\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"split-text-backface-visibility\":\"1\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"class\":\"\"}}}]}]', '', 'https://smartslider3.com/sample/artdirectorthumbnail.jpg', '{\"background-type\":\"image\",\"backgroundVideoMp4\":\"\",\"backgroundVideoMuted\":\"1\",\"backgroundVideoLoop\":\"1\",\"preload\":\"auto\",\"backgroundVideoMode\":\"fill\",\"backgroundImage\":\"https://smartslider3.com/sample/free1.jpg\",\"backgroundFocusX\":\"50\",\"backgroundFocusY\":\"50\",\"backgroundImageOpacity\":\"100\",\"backgroundImageBlur\":\"0\",\"backgroundAlt\":\"\",\"backgroundTitle\":\"\",\"backgroundColor\":\"ffffff00\",\"backgroundGradient\":\"off\",\"backgroundColorEnd\":\"ffffff00\",\"backgroundMode\":\"default\",\"background-animation\":\"\",\"background-animation-speed\":\"default\",\"kenburns-animation\":\"50|*|50|*|\",\"kenburns-animation-speed\":\"default\",\"kenburns-animation-strength\":\"default\",\"thumbnailType\":\"default\",\"href\":\"#\",\"href-target\":\"_self\",\"guides\":\"eyJob3Jpem9udGFsIjpbXSwidmVydGljYWwiOltdfQ==\",\"first\":\"0\",\"static-slide\":\"0\",\"slide-duration\":\"0\",\"version\":\"3.2.0\"}', 1, 0),
(3, 'Slide Three', 1, '2015-11-01 12:27:34', '2025-11-11 12:27:34', 1, 0, '[{\"type\":\"content\",\"animations\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"10|*|10|*|10|*|10|*|px+\",\"desktopportraitselfalign\":\"inherit\",\"mobileportraitfontsize\":60,\"opened\":1,\"id\":null,\"class\":\"\",\"crop\":\"\",\"parallax\":0,\"adaptivefont\":1,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Content\",\"namesynced\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"verticalalign\":\"center\",\"layers\":[{\"type\":\"layer\",\"animations\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"10|*|0|*|10|*|0|*|px+\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"id\":null,\"class\":\"\",\"crop\":\"visible\",\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Andrew Butler\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"heading\":\"Andrew Butler\",\"href\":\"#\",\"href-target\":\"_self\",\"priority\":\"2\",\"fullwidth\":\"0\",\"nowrap\":\"0\",\"title\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6IjBiMGIwYmZmIiwic2l6ZSI6IjM2fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUmFsZXdheSxBcmlhbCIsImxpbmVoZWlnaHQiOiIxLjUiLCJib2xkIjowLCJpdGFsaWMiOjAsInVuZGVybGluZSI6MCwiYWxpZ24iOiJjZW50ZXIiLCJsZXR0ZXJzcGFjaW5nIjoiMTBweCIsIndvcmRzcGFjaW5nIjoibm9ybWFsIiwidGV4dHRyYW5zZm9ybSI6InVwcGVyY2FzZSJ9LHsiZXh0cmEiOiIifSx7ImV4dHJhIjoiIn1dfQ==\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiJmZmZmZmZjYyIsIm9wYWNpdHkiOjEwMCwicGFkZGluZyI6IjAuNHwqfDF8KnwwLjR8KnwxfCp8ZW0iLCJib3hzaGFkb3ciOiIwfCp8MHwqfDB8KnwwfCp8MDAwMDAwZmYiLCJib3JkZXIiOiIwfCp8c29saWR8KnwwMDAwMDBmZiIsImJvcmRlcnJhZGl1cyI6IjAifSx7ImV4dHJhIjoiIn1dfQ==\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"split-text-backface-visibility\":\"1\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"class\":\"\"}}},{\"type\":\"layer\",\"animations\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px+\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"id\":null,\"class\":\"\",\"crop\":\"visible\",\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Photographer & Illustrator\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"heading\":\"Photographer & Illustrator\",\"href\":\"#\",\"href-target\":\"_self\",\"priority\":\"2\",\"fullwidth\":\"0\",\"nowrap\":\"0\",\"title\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmZmIiwic2l6ZSI6IjIyfHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUmFsZXdheSxBcmlhbCIsImxpbmVoZWlnaHQiOiIxIiwiYm9sZCI6MCwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoiY2VudGVyIiwibGV0dGVyc3BhY2luZyI6IjJweCIsIndvcmRzcGFjaW5nIjoibm9ybWFsIiwidGV4dHRyYW5zZm9ybSI6Im5vbmUifSx7ImV4dHJhIjoiIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siYmFja2dyb3VuZGNvbG9yIjoiMDAwMDAwY2MiLCJwYWRkaW5nIjoiMC44fCp8MXwqfDAuOHwqfDF8KnxlbSIsImJveHNoYWRvdyI6IjB8KnwwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImJvcmRlciI6IjB8Knxzb2xpZHwqfDAwMDAwMGZmIiwiYm9yZGVycmFkaXVzIjoiMCIsImV4dHJhIjoiIn0seyJleHRyYSI6IiJ9XX0=\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"split-text-backface-visibility\":\"1\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"class\":\"\"}}}]}]', '', 'https://smartslider3.com/sample/photographerthumbnail.jpg', '{\"background-type\":\"image\",\"backgroundVideoMp4\":\"\",\"backgroundVideoMuted\":\"1\",\"backgroundVideoLoop\":\"1\",\"preload\":\"auto\",\"backgroundVideoMode\":\"fill\",\"backgroundImage\":\"https://smartslider3.com/sample/photographer.jpg\",\"backgroundFocusX\":\"50\",\"backgroundFocusY\":\"50\",\"backgroundImageOpacity\":\"100\",\"backgroundImageBlur\":\"0\",\"backgroundAlt\":\"\",\"backgroundTitle\":\"\",\"backgroundColor\":\"ffffff00\",\"backgroundGradient\":\"off\",\"backgroundColorEnd\":\"ffffff00\",\"backgroundMode\":\"default\",\"background-animation\":\"\",\"background-animation-speed\":\"default\",\"kenburns-animation\":\"50|*|50|*|\",\"kenburns-animation-speed\":\"default\",\"kenburns-animation-strength\":\"default\",\"thumbnailType\":\"default\",\"href\":\"#\",\"href-target\":\"_self\",\"guides\":\"eyJob3Jpem9udGFsIjpbXSwidmVydGljYWwiOltdfQ==\",\"first\":\"0\",\"static-slide\":\"0\",\"slide-duration\":\"0\",\"version\":\"3.2.0\"}', 2, 0),
(4, '1472042903_31', 2, '2019-07-30 05:19:31', '2029-07-31 05:19:31', 1, 0, '[]', '', '$upload$/2019/07/1472042903_31.jpg', '{\"backgroundImage\":\"$upload$\\/2019\\/07\\/1472042903_31.jpg\",\"version\":\"3.3.21\"}', 0, 0),
(5, 'images', 2, '2019-07-30 05:20:21', '2029-07-31 05:20:21', 1, 0, '[]', '', '$upload$/2019/07/images.jpg', '{\"backgroundImage\":\"$upload$\\/2019\\/07\\/images.jpg\",\"version\":\"3.3.21\"}', 1, 0),
(6, 'images', 2, '2019-07-30 05:20:27', '2029-07-31 05:20:27', 1, 0, '[]', '', '$upload$/2019/07/images.jpg', '{\"backgroundImage\":\"$upload$\\/2019\\/07\\/images.jpg\",\"version\":\"3.3.21\"}', 2, 0);
-- --------------------------------------------------------
--
-- Структура таблицы `wp_options`
--
CREATE TABLE `wp_options` (
`option_id` bigint(20) UNSIGNED NOT NULL,
`option_name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`option_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`autoload` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Дамп данных таблицы `wp_options`
--
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1, 'siteurl', 'http://wpwork', 'yes'),
(2, 'home', 'http://wpwork', 'yes'),
(3, 'blogname', 'Work_test', 'yes'),
(4, 'blogdescription', 'Ещё один сайт на WordPress', 'yes'),
(5, 'users_can_register', '0', 'yes'),
(6, 'admin_email', '[email protected]', 'yes'),
(7, 'start_of_week', '1', 'yes'),
(8, 'use_balanceTags', '0', 'yes'),
(9, 'use_smilies', '1', 'yes'),
(10, 'require_name_email', '1', 'yes'),
(11, 'comments_notify', '1', 'yes'),
(12, 'posts_per_rss', '10', 'yes'),
(13, 'rss_use_excerpt', '0', 'yes'),
(14, 'mailserver_url', 'mail.example.com', 'yes'),
(15, 'mailserver_login', '[email protected]', 'yes'),
(16, 'mailserver_pass', 'password', 'yes'),
(17, 'mailserver_port', '110', 'yes'),
(18, 'default_category', '1', 'yes'),
(19, 'default_comment_status', 'open', 'yes'),
(20, 'default_ping_status', 'open', 'yes'),
(21, 'default_pingback_flag', '1', 'yes'),
(22, 'posts_per_page', '10', 'yes'),
(23, 'date_format', 'd.m.Y', 'yes'),
(24, 'time_format', 'H:i', 'yes'),
(25, 'links_updated_date_format', 'd.m.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:152:{s:24:\"^wc-auth/v([1]{1})/(.*)?\";s:63:\"index.php?wc-auth-version=$matches[1]&wc-auth-route=$matches[2]\";s:22:\"^wc-api/v([1-3]{1})/?$\";s:51:\"index.php?wc-api-version=$matches[1]&wc-api-route=/\";s:24:\"^wc-api/v([1-3]{1})(.*)?\";s:61:\"index.php?wc-api-version=$matches[1]&wc-api-route=$matches[2]\";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:32:\"category/(.+?)/wc-api(/(.*))?/?$\";s:54:\"index.php?category_name=$matches[1]&wc-api=$matches[3]\";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:29:\"tag/([^/]+)/wc-api(/(.*))?/?$\";s:44:\"index.php?tag=$matches[1]&wc-api=$matches[3]\";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:55:\"product-category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:50:\"product-category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:31:\"product-category/(.+?)/embed/?$\";s:44:\"index.php?product_cat=$matches[1]&embed=true\";s:43:\"product-category/(.+?)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_cat=$matches[1]&paged=$matches[2]\";s:25:\"product-category/(.+?)/?$\";s:33:\"index.php?product_cat=$matches[1]\";s:52:\"product-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:47:\"product-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:28:\"product-tag/([^/]+)/embed/?$\";s:44:\"index.php?product_tag=$matches[1]&embed=true\";s:40:\"product-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_tag=$matches[1]&paged=$matches[2]\";s:22:\"product-tag/([^/]+)/?$\";s:33:\"index.php?product_tag=$matches[1]\";s:35:\"product/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"product/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"product/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"product/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"product/([^/]+)/embed/?$\";s:40:\"index.php?product=$matches[1]&embed=true\";s:28:\"product/([^/]+)/trackback/?$\";s:34:\"index.php?product=$matches[1]&tb=1\";s:36:\"product/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&paged=$matches[2]\";s:43:\"product/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&cpage=$matches[2]\";s:33:\"product/([^/]+)/wc-api(/(.*))?/?$\";s:48:\"index.php?product=$matches[1]&wc-api=$matches[3]\";s:39:\"product/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:50:\"product/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:32:\"product/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?product=$matches[1]&page=$matches[2]\";s:24:\"product/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"product/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"product/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"product/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:38:\"index.php?&page_id=2&cpage=$matches[1]\";s:17:\"wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";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:26:\"comments/wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";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:29:\"search/(.+)/wc-api(/(.*))?/?$\";s:42:\"index.php?s=$matches[1]&wc-api=$matches[3]\";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:32:\"author/([^/]+)/wc-api(/(.*))?/?$\";s:52:\"index.php?author_name=$matches[1]&wc-api=$matches[3]\";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:54:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&wc-api=$matches[5]\";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:41:\"([0-9]{4})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:66:\"index.php?year=$matches[1]&monthnum=$matches[2]&wc-api=$matches[4]\";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:28:\"([0-9]{4})/wc-api(/(.*))?/?$\";s:45:\"index.php?year=$matches[1]&wc-api=$matches[3]\";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:62:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/wc-api(/(.*))?/?$\";s:99:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&wc-api=$matches[6]\";s:62:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:73:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";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:25:\"(.?.+?)/wc-api(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&wc-api=$matches[3]\";s:28:\"(.?.+?)/order-pay(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&order-pay=$matches[3]\";s:33:\"(.?.+?)/order-received(/(.*))?/?$\";s:57:\"index.php?pagename=$matches[1]&order-received=$matches[3]\";s:25:\"(.?.+?)/orders(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&orders=$matches[3]\";s:29:\"(.?.+?)/view-order(/(.*))?/?$\";s:53:\"index.php?pagename=$matches[1]&view-order=$matches[3]\";s:28:\"(.?.+?)/downloads(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&downloads=$matches[3]\";s:31:\"(.?.+?)/edit-account(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-account=$matches[3]\";s:31:\"(.?.+?)/edit-address(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-address=$matches[3]\";s:34:\"(.?.+?)/payment-methods(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&payment-methods=$matches[3]\";s:32:\"(.?.+?)/lost-password(/(.*))?/?$\";s:56:\"index.php?pagename=$matches[1]&lost-password=$matches[3]\";s:34:\"(.?.+?)/customer-logout(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&customer-logout=$matches[3]\";s:37:\"(.?.+?)/add-payment-method(/(.*))?/?$\";s:61:\"index.php?pagename=$matches[1]&add-payment-method=$matches[3]\";s:40:\"(.?.+?)/delete-payment-method(/(.*))?/?$\";s:64:\"index.php?pagename=$matches[1]&delete-payment-method=$matches[3]\";s:45:\"(.?.+?)/set-default-payment-method(/(.*))?/?$\";s:69:\"index.php?pagename=$matches[1]&set-default-payment-method=$matches[3]\";s:31:\".?.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\".?.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";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:33:\"smart-slider-3/smart-slider-3.php\";i:1;s:27:\"woocommerce/woocommerce.php\";}', 'yes'),
(34, 'category_base', '', 'yes'),
(35, 'ping_sites', 'http://rpc.pingomatic.com/', 'yes'),
(36, 'comment_max_links', '2', 'yes'),
(37, 'gmt_offset', '3', 'yes'),
(38, 'default_email_category', '1', 'yes'),
(39, 'recently_edited', '', 'no'),
(40, 'template', 'twentynine', 'yes'),
(41, 'stylesheet', 'twentynine', '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', '1', 'yes'),
(52, 'default_link_category', '2', 'yes'),
(53, 'show_on_front', 'page', '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:0:{}', 'yes'),
(80, 'widget_rss', 'a:0:{}', 'yes'),
(81, 'uninstall_plugins', 'a:0:{}', 'no'),
(82, 'timezone_string', '', 'yes'),
(83, 'page_for_posts', '0', 'yes'),
(84, 'page_on_front', '2', '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:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:122:{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:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:7:\"nextend\";b:1;s:14:\"nextend_config\";b:1;s:19:\"nextend_visual_edit\";b:1;s:21:\"nextend_visual_delete\";b:1;s:11:\"smartslider\";b:1;s:18:\"smartslider_config\";b:1;s:16:\"smartslider_edit\";b:1;s:18:\"smartslider_delete\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:42:{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:7:\"nextend\";b:1;s:14:\"nextend_config\";b:1;s:19:\"nextend_visual_edit\";b:1;s:21:\"nextend_visual_delete\";b:1;s:11:\"smartslider\";b:1;s:18:\"smartslider_config\";b:1;s:16:\"smartslider_edit\";b:1;s:18:\"smartslider_delete\";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;}}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop manager\";s:12:\"capabilities\";a:92:{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:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:18:\"edit_theme_options\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;}}}', 'yes'),
(95, 'fresh_site', '0', 'yes'),
(96, 'WPLANG', 'ru_RU', '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:5:{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\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:13:\"array_version\";i:3;}', 'yes'),
(103, 'cron', 'a:14:{i:1564578086;a:1:{s:26:\"action_scheduler_run_queue\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:0:{}s:8:\"interval\";i:60;}}}i:1564578152;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:1564578849;a:1:{s:28:\"woocommerce_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:1564578977;a:1:{s:32:\"woocommerce_cancel_unpaid_orders\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1564599751;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:1564599752;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1564599768;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:1564599771;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1564600449;a:1:{s:33:\"woocommerce_cleanup_personal_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1564600459;a:1:{s:30:\"woocommerce_tracker_send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1564606800;a:1:{s:27:\"woocommerce_scheduled_sales\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1564611249;a:1:{s:24:\"woocommerce_cleanup_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1565049600;a:1:{s:25:\"woocommerce_geoip_updater\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:7:\"monthly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:2635200;}}}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:3:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1564515068;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\";}}}s:18:\"nav_menu_locations\";a:0:{}}', 'yes'),
(126, '_site_transient_timeout_browser_5eaddbe64bb311a7ba788adfd9ffdfcb', '1565118169', 'no'),
(127, '_site_transient_browser_5eaddbe64bb311a7ba788adfd9ffdfcb', 'a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"75.0.3770.142\";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'),
(128, '_site_transient_timeout_php_check_e44f21d3db939dba4d400857da08796e', '1565118170', 'no'),
(129, '_site_transient_php_check_e44f21d3db939dba4d400857da08796e', 'a:5:{s:19:\"recommended_version\";s:3:\"7.3\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:0;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}', 'no'),
(143, 'can_compress_scripts', '1', 'no'),
(144, 'current_theme', 'Twenty Seventeen/twentynine', 'yes'),
(145, 'theme_mods_twentyseventeen', 'a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1564513712;s:4:\"data\";a:4:{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\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}}', 'yes'),
(146, 'theme_switched', '', 'yes'),
(149, 'theme_mods_twentynine', 'a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1564514378;s:4:\"data\";a:4:{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\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}}', 'yes'),
(158, 'woocommerce_store_address', 'Test', 'yes'),
(159, 'woocommerce_store_address_2', '', 'yes'),
(160, 'woocommerce_store_city', 'Kharkiv', 'yes'),
(161, 'woocommerce_default_country', 'UA:*', 'yes'),
(162, 'woocommerce_store_postcode', '67890', 'yes'),
(163, 'woocommerce_allowed_countries', 'all', 'yes'),
(164, 'woocommerce_all_except_countries', '', 'yes'),
(165, 'woocommerce_specific_allowed_countries', '', 'yes'),
(166, 'woocommerce_ship_to_countries', '', 'yes'),
(167, 'woocommerce_specific_ship_to_countries', '', 'yes'),
(168, 'woocommerce_default_customer_address', 'geolocation', 'yes'),
(169, 'woocommerce_calc_taxes', 'no', 'yes'),
(170, 'woocommerce_enable_coupons', 'yes', 'yes'),
(171, 'woocommerce_calc_discounts_sequentially', 'no', 'no'),
(172, 'woocommerce_currency', 'UAH', 'yes'),
(173, 'woocommerce_currency_pos', 'left', 'yes'),
(174, 'woocommerce_price_thousand_sep', ',', 'yes'),
(175, 'woocommerce_price_decimal_sep', '.', 'yes'),
(176, 'woocommerce_price_num_decimals', '2', 'yes'),
(177, 'woocommerce_shop_page_id', '6', 'yes'),
(178, 'woocommerce_cart_redirect_after_add', 'no', 'yes'),
(179, 'woocommerce_enable_ajax_add_to_cart', 'yes', 'yes'),
(180, 'woocommerce_placeholder_image', '5', 'yes'),
(181, 'woocommerce_weight_unit', 'kg', 'yes'),
(182, 'woocommerce_dimension_unit', 'cm', 'yes'),
(183, 'woocommerce_enable_reviews', 'yes', 'yes'),
(184, 'woocommerce_review_rating_verification_label', 'yes', 'no'),
(185, 'woocommerce_review_rating_verification_required', 'no', 'no'),
(186, 'woocommerce_enable_review_rating', 'yes', 'yes'),
(187, 'woocommerce_review_rating_required', 'yes', 'no'),
(188, 'woocommerce_manage_stock', 'yes', 'yes'),
(189, 'woocommerce_hold_stock_minutes', '60', 'no'),
(190, 'woocommerce_notify_low_stock', 'yes', 'no'),
(191, 'woocommerce_notify_no_stock', 'yes', 'no'),
(192, 'woocommerce_stock_email_recipient', '[email protected]', 'no'),
(193, 'woocommerce_notify_low_stock_amount', '2', 'no'),
(194, 'woocommerce_notify_no_stock_amount', '0', 'yes'),
(195, 'woocommerce_hide_out_of_stock_items', 'no', 'yes'),
(196, 'woocommerce_stock_format', '', 'yes'),
(197, 'woocommerce_file_download_method', 'force', 'no'),
(198, 'woocommerce_downloads_require_login', 'no', 'no'),
(199, 'woocommerce_downloads_grant_access_after_payment', 'yes', 'no'),
(200, 'woocommerce_prices_include_tax', 'no', 'yes'),
(201, 'woocommerce_tax_based_on', 'shipping', 'yes'),
(202, 'woocommerce_shipping_tax_class', 'inherit', 'yes'),
(203, 'woocommerce_tax_round_at_subtotal', 'no', 'yes'),
(204, 'woocommerce_tax_classes', 'Пониженная ставка\r\nНулевая ставка', 'yes'),
(205, 'woocommerce_tax_display_shop', 'excl', 'yes'),
(206, 'woocommerce_tax_display_cart', 'excl', 'yes'),
(207, 'woocommerce_price_display_suffix', '', 'yes'),
(208, 'woocommerce_tax_total_display', 'itemized', 'no'),
(209, 'woocommerce_enable_shipping_calc', 'yes', 'no'),
(210, 'woocommerce_shipping_cost_requires_address', 'no', 'yes'),
(211, 'woocommerce_ship_to_destination', 'billing', 'no'),
(212, 'woocommerce_shipping_debug_mode', 'no', 'yes'),
(213, 'woocommerce_enable_guest_checkout', 'yes', 'no'),
(214, 'woocommerce_enable_checkout_login_reminder', 'no', 'no'),
(215, 'woocommerce_enable_signup_and_login_from_checkout', 'no', 'no'),
(216, 'woocommerce_enable_myaccount_registration', 'no', 'no'),
(217, 'woocommerce_registration_generate_username', 'yes', 'no'),
(218, 'woocommerce_registration_generate_password', 'yes', 'no'),
(219, 'woocommerce_erasure_request_removes_order_data', 'no', 'no'),
(220, 'woocommerce_erasure_request_removes_download_data', 'no', 'no'),
(221, 'woocommerce_allow_bulk_remove_personal_data', 'no', 'no'),
(222, 'woocommerce_registration_privacy_policy_text', 'Ваши личные данные будут использоваться для упрощения вашей работы с сайтом, управления доступом к вашей учётной записи и для других целей, описанных в нашей [privacy_policy].', 'yes'),
(223, 'woocommerce_checkout_privacy_policy_text', 'Ваши личные данные будут использоваться для обработки ваших заказов, упрощения вашей работы с сайтом и для других целей, описанных в нашей [privacy_policy].', 'yes'),
(224, 'woocommerce_delete_inactive_accounts', 'a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}', 'no'),
(225, 'woocommerce_trash_pending_orders', '', 'no'),
(226, 'woocommerce_trash_failed_orders', '', 'no'),
(227, 'woocommerce_trash_cancelled_orders', '', 'no'),
(228, 'woocommerce_anonymize_completed_orders', 'a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}', 'no'),
(229, 'woocommerce_email_from_name', 'Work_test', 'no'),
(230, 'woocommerce_email_from_address', '[email protected]', 'no'),
(231, 'woocommerce_email_header_image', '', 'no'),
(232, 'woocommerce_email_footer_text', '{site_title}<br/>Built with <a href=\"https://woocommerce.com/\">WooCommerce</a>', 'no'),
(233, 'woocommerce_email_base_color', '#96588a', 'no'),
(234, 'woocommerce_email_background_color', '#f7f7f7', 'no'),
(235, 'woocommerce_email_body_background_color', '#ffffff', 'no'),
(236, 'woocommerce_email_text_color', '#3c3c3c', 'no'),
(237, 'woocommerce_cart_page_id', '7', 'yes'),
(238, 'woocommerce_checkout_page_id', '8', 'yes'),
(239, 'woocommerce_myaccount_page_id', '9', 'yes'),
(240, 'woocommerce_terms_page_id', '', 'no'),
(241, 'woocommerce_force_ssl_checkout', 'no', 'yes'),
(242, 'woocommerce_unforce_ssl_checkout', 'no', 'yes'),
(243, 'woocommerce_checkout_pay_endpoint', 'order-pay', 'yes'),
(244, 'woocommerce_checkout_order_received_endpoint', 'order-received', 'yes'),
(245, 'woocommerce_myaccount_add_payment_method_endpoint', 'add-payment-method', 'yes'),
(246, 'woocommerce_myaccount_delete_payment_method_endpoint', 'delete-payment-method', 'yes'),
(247, 'woocommerce_myaccount_set_default_payment_method_endpoint', 'set-default-payment-method', 'yes'),
(248, 'woocommerce_myaccount_orders_endpoint', 'orders', 'yes'),
(249, 'woocommerce_myaccount_view_order_endpoint', 'view-order', 'yes'),
(250, 'woocommerce_myaccount_downloads_endpoint', 'downloads', 'yes'),
(251, 'woocommerce_myaccount_edit_account_endpoint', 'edit-account', 'yes'),
(252, 'woocommerce_myaccount_edit_address_endpoint', 'edit-address', 'yes'),
(253, 'woocommerce_myaccount_payment_methods_endpoint', 'payment-methods', 'yes'),
(254, 'woocommerce_myaccount_lost_password_endpoint', 'lost-password', 'yes'),
(255, 'woocommerce_logout_endpoint', 'customer-logout', 'yes'),
(256, 'woocommerce_api_enabled', 'no', 'yes'),
(257, 'woocommerce_allow_tracking', 'yes', 'no'),
(258, 'woocommerce_show_marketplace_suggestions', 'yes', 'no'),
(259, 'woocommerce_single_image_width', '600', 'yes'),
(260, 'woocommerce_thumbnail_image_width', '300', 'yes'),
(261, 'woocommerce_checkout_highlight_required_fields', 'yes', 'yes'),
(262, 'woocommerce_demo_store', 'no', 'no'),
(263, 'woocommerce_permalinks', 'a:5:{s:12:\"product_base\";s:7:\"product\";s:13:\"category_base\";s:16:\"product-category\";s:8:\"tag_base\";s:11:\"product-tag\";s:14:\"attribute_base\";s:0:\"\";s:22:\"use_verbose_page_rules\";b:0;}', 'yes'),
(264, 'current_theme_supports_woocommerce', 'no', 'yes'),
(265, 'woocommerce_queue_flush_rewrite_rules', 'no', 'yes'),
(267, 'product_cat_children', 'a:0:{}', 'yes'),
(268, 'default_product_cat', '15', 'yes'),
(271, 'woocommerce_version', '3.6.5', 'yes'),
(272, 'woocommerce_db_version', '3.6.5', 'yes'),
(273, 'recently_activated', 'a:1:{s:39:\"woocommerce-admin/woocommerce-admin.php\";i:1564514926;}', 'yes'),
(274, 'woocommerce_admin_notices', 'a:1:{i:0;s:20:\"no_secure_connection\";}', 'yes'),
(275, '_transient_woocommerce_webhook_ids_status_active', 'a:0:{}', 'yes'),
(276, 'widget_woocommerce_widget_cart', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(277, 'widget_woocommerce_layered_nav_filters', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(278, 'widget_woocommerce_layered_nav', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(279, 'widget_woocommerce_price_filter', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(280, 'widget_woocommerce_product_categories', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(281, 'widget_woocommerce_product_search', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(282, 'widget_woocommerce_product_tag_cloud', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(283, 'widget_woocommerce_products', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(284, 'widget_woocommerce_recently_viewed_products', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(285, 'widget_woocommerce_top_rated_products', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(286, 'widget_woocommerce_recent_reviews', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(287, 'widget_woocommerce_rating_filter', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(289, '_transient_timeout_external_ip_address_127.0.0.1', '1565118867', 'no'),
(290, '_transient_external_ip_address_127.0.0.1', '185.67.252.67', 'no'),
(294, 'woocommerce_meta_box_errors', 'a:0:{}', 'yes'),
(298, '_transient_timeout_wc_report_sales_by_date', '1564661835', 'no'),
(299, '_transient_wc_report_sales_by_date', 'a:16:{s:32:\"f2ee63be280af9b2b46b0e7e57fe28e5\";a:0:{}s:32:\"08fbbcaec26df948377bd51ef82deced\";a:0:{}s:32:\"534503f6f2d1309eb82d4df6f723ffe9\";a:0:{}s:32:\"67b49fbc70087f18375d96ae3cfc8a59\";N;s:32:\"a7e9eb0d56e062c4f8b591516623e2a8\";a:0:{}s:32:\"d22108bdd24482ca5d47895da7aba779\";a:0:{}s:32:\"c6a191b66ece8f11d69adc150a2e1eda\";a:0:{}s:32:\"c6a02d9a32cc77369c71c04f2a85872c\";a:0:{}s:32:\"4226cf9040cbd5749574cf02ccd80133\";a:0:{}s:32:\"5b27d35f0dd2e3160d38b4b1a643af06\";a:0:{}s:32:\"06b11115abeec76f4a392db14c13c6aa\";a:0:{}s:32:\"edaf332cb1da8d82f6e4e5cc1cef0dc8\";N;s:32:\"dc1ff97b2b1cc79f6d498dc7576e9c61\";a:0:{}s:32:\"0b2441b6af430194388743fea4d9f1d5\";a:0:{}s:32:\"9dea361a4d87305c57ce73f044ab2bb1\";a:0:{}s:32:\"d840a5c9da07e489c331beb6aa75e227\";a:0:{}}', 'no'),
(300, '_transient_timeout_wc_admin_report', '1564600497', 'no'),
(301, '_transient_wc_admin_report', 'a:1:{s:32:\"9909e6b3029124a3fc918066e939c3fd\";a:0:{}}', 'no'),
(307, 'woocommerce_obw_last_completed_step', 'recommended', 'yes'),
(308, '_transient_timeout_wc_tracks_blog_details', '1564600599', 'no'),
(309, '_transient_wc_tracks_blog_details', 'a:4:{s:3:\"url\";s:13:\"http://wpwork\";s:9:\"blog_lang\";s:5:\"ru_RU\";s:7:\"blog_id\";N;s:14:\"products_count\";i:0;}', 'no'),
(310, 'woocommerce_product_type', 'both', 'yes'),
(312, 'woocommerce_tracker_last_send', '1564514210', 'yes'),
(313, 'woocommerce_cheque_settings', 'a:1:{s:7:\"enabled\";s:2:\"no\";}', 'yes'),
(314, 'woocommerce_bacs_settings', 'a:1:{s:7:\"enabled\";s:2:\"no\";}', 'yes'),
(315, 'woocommerce_cod_settings', 'a:1:{s:7:\"enabled\";s:2:\"no\";}', 'yes'),
(317, '_transient_shipping-transient-version', '1564514336', 'yes'),
(318, 'woocommerce_flat_rate_1_settings', 'a:3:{s:5:\"title\";s:25:\"Единая ставка\";s:10:\"tax_status\";s:7:\"taxable\";s:4:\"cost\";s:2:\"10\";}', 'yes'),
(319, 'woocommerce_flat_rate_2_settings', 'a:3:{s:5:\"title\";s:25:\"Единая ставка\";s:10:\"tax_status\";s:7:\"taxable\";s:4:\"cost\";s:1:\"5\";}', 'yes'),
(322, '_transient_timeout__woocommerce_helper_updates', '1564557575', 'no'),
(323, '_transient__woocommerce_helper_updates', 'a:4:{s:4:\"hash\";s:32:\"d751713988987e9331980363e24189ce\";s:7:\"updated\";i:1564514375;s:8:\"products\";a:0:{}s:6:\"errors\";a:1:{i:0;s:10:\"http-error\";}}', 'no'),
(326, 'theme_mods_storefront', 'a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1564515034;s:4:\"data\";a:7:{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\";}s:8:\"header-1\";a:0:{}s:8:\"footer-1\";a:0:{}s:8:\"footer-2\";a:0:{}s:8:\"footer-3\";a:0:{}s:8:\"footer-4\";a:0:{}}}}', 'yes'),
(328, 'storefront_nux_fresh_site', '0', 'yes'),
(329, 'woocommerce_catalog_rows', '4', 'yes'),
(330, 'woocommerce_catalog_columns', '3', 'yes'),
(331, 'woocommerce_maybe_regenerate_images_hash', '991b1ca641921cf0f5baf7a2fe85861b', 'yes'),
(342, 'storefront_nux_dismissed', '1', 'yes'),
(347, 'wc_admin_install_timestamp', '1564514845', 'yes'),
(348, 'wc_admin_version', '0.16.0', 'yes'),
(349, 'wc_admin_last_orders_milestone', '0', 'yes'),
(350, '_transient_product_query-transient-version', '1564576557', 'yes'),
(351, '_transient_timeout_wc_admin_unsnooze_admin_notes_checked', '1564518445', 'no'),
(352, '_transient_wc_admin_unsnooze_admin_notes_checked', 'yes', 'no'),
(353, '_transient_timeout_plugin_slugs', '1564637049', 'no'),
(354, '_transient_plugin_slugs', 'a:4:{i:0;s:31:\"master-slider/master-slider.php\";i:1;s:23:\"ml-slider/ml-slider.php\";i:2;s:33:\"smart-slider-3/smart-slider-3.php\";i:3;s:27:\"woocommerce/woocommerce.php\";}', 'no'),
(359, '_transient_wc_count_comments', 'O:8:\"stdClass\":7:{s:14:\"total_comments\";i:5;s:3:\"all\";i:5;s:8:\"approved\";s:1:\"5\";s:9:\"moderated\";i:0;s:4:\"spam\";i:0;s:5:\"trash\";i:0;s:12:\"post-trashed\";i:0;}', 'yes'),
(360, '_transient_as_comment_count', 'O:8:\"stdClass\":7:{s:8:\"approved\";s:1:\"1\";s:14:\"total_comments\";i:1;s:3:\"all\";i:1;s:9:\"moderated\";i:0;s:4:\"spam\";i:0;s:5:\"trash\";i:0;s:12:\"post-trashed\";i:0;}', 'yes'),
(384, '_transient_product-transient-version', '1564576557', 'yes'),
(448, '_transient_wc_attribute_taxonomies', 'a:1:{i:0;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:1:\"1\";s:14:\"attribute_name\";s:7:\"color-1\";s:15:\"attribute_label\";s:8:\"Цвет\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:10:\"menu_order\";s:16:\"attribute_public\";s:1:\"0\";}}', 'yes'),
(487, '_transient_timeout_wc_product_children_14', '1567109383', 'no'),
(488, '_transient_wc_product_children_14', 'a:2:{s:3:\"all\";a:3:{i:0;i:17;i:1;i:18;i:2;i:16;}s:7:\"visible\";a:3:{i:0;i:17;i:1;i:18;i:2;i:16;}}', 'no'),
(489, '_transient_timeout_wc_var_prices_14', '1567168633', 'no'),
(490, '_transient_wc_var_prices_14', '{\"version\":\"1564576557\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"17\":\"50.00\",\"18\":\"100.00\",\"16\":\"150.00\"},\"regular_price\":{\"17\":\"100.00\",\"18\":\"150.00\",\"16\":\"200.00\"},\"sale_price\":{\"17\":\"50.00\",\"18\":\"100.00\",\"16\":\"150.00\"}}}', 'no'),
(491, '_transient_timeout_wc_product_children_0', '1567109398', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(492, '_transient_wc_product_children_0', 'a:2:{s:3:\"all\";a:0:{}s:7:\"visible\";a:0:{}}', 'no'),
(499, '_transient_timeout_wc_product_children_20', '1567109422', 'no'),
(500, '_transient_wc_product_children_20', 'a:2:{s:3:\"all\";a:3:{i:0;i:21;i:1;i:22;i:2;i:23;}s:7:\"visible\";a:3:{i:0;i:21;i:1;i:22;i:2;i:23;}}', 'no'),
(501, '_transient_timeout_wc_var_prices_20', '1567168633', 'no'),
(502, '_transient_wc_var_prices_20', '{\"version\":\"1564576557\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"21\":\"50.00\",\"22\":\"100.00\",\"23\":\"150.00\"},\"regular_price\":{\"21\":\"100.00\",\"22\":\"150.00\",\"23\":\"200.00\"},\"sale_price\":{\"21\":\"50.00\",\"22\":\"100.00\",\"23\":\"150.00\"}}}', 'no'),
(522, '_transient_timeout_wc_product_children_28', '1567109556', 'no'),
(523, '_transient_wc_product_children_28', 'a:2:{s:3:\"all\";a:3:{i:0;i:29;i:1;i:30;i:2;i:31;}s:7:\"visible\";a:3:{i:0;i:29;i:1;i:30;i:2;i:31;}}', 'no'),
(524, '_transient_timeout_wc_var_prices_28', '1567168633', 'no'),
(525, '_transient_wc_var_prices_28', '{\"version\":\"1564576557\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"29\":\"50.00\",\"30\":\"100.00\",\"31\":\"150.00\"},\"regular_price\":{\"29\":\"100.00\",\"30\":\"150.00\",\"31\":\"200.00\"},\"sale_price\":{\"29\":\"50.00\",\"30\":\"100.00\",\"31\":\"150.00\"}}}', 'no'),
(532, '_transient_timeout_wc_product_children_32', '1567109598', 'no'),
(533, '_transient_wc_product_children_32', 'a:2:{s:3:\"all\";a:3:{i:0;i:33;i:1;i:34;i:2;i:35;}s:7:\"visible\";a:3:{i:0;i:33;i:1;i:34;i:2;i:35;}}', 'no'),
(534, '_transient_timeout_wc_var_prices_32', '1567168633', 'no'),
(535, '_transient_wc_var_prices_32', '{\"version\":\"1564576557\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"33\":\"50.00\",\"34\":\"100.00\",\"35\":\"150.00\"},\"regular_price\":{\"33\":\"100.00\",\"34\":\"150.00\",\"35\":\"200.00\"},\"sale_price\":{\"33\":\"50.00\",\"34\":\"100.00\",\"35\":\"150.00\"}}}', 'no'),
(543, '_transient_timeout_wc_product_children_36', '1567109637', 'no'),
(544, '_transient_wc_product_children_36', 'a:2:{s:3:\"all\";a:3:{i:0;i:37;i:1;i:38;i:2;i:39;}s:7:\"visible\";a:3:{i:0;i:37;i:1;i:38;i:2;i:39;}}', 'no'),
(545, '_transient_timeout_wc_var_prices_36', '1567168633', 'no'),
(546, '_transient_wc_var_prices_36', '{\"version\":\"1564576557\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"37\":\"50.00\",\"38\":\"100.00\",\"39\":\"150.00\"},\"regular_price\":{\"37\":\"100.00\",\"38\":\"150.00\",\"39\":\"200.00\"},\"sale_price\":{\"37\":\"50.00\",\"38\":\"100.00\",\"39\":\"150.00\"}}}', 'no'),
(555, '_transient_timeout_wc_product_children_40', '1567109712', 'no'),
(556, '_transient_wc_product_children_40', 'a:2:{s:3:\"all\";a:3:{i:0;i:41;i:1;i:42;i:2;i:43;}s:7:\"visible\";a:3:{i:0;i:41;i:1;i:42;i:2;i:43;}}', 'no'),
(557, '_transient_timeout_wc_var_prices_40', '1567168633', 'no'),
(558, '_transient_wc_var_prices_40', '{\"version\":\"1564576557\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"41\":\"50.00\",\"42\":\"100.00\",\"43\":\"150.00\"},\"regular_price\":{\"41\":\"100.00\",\"42\":\"150.00\",\"43\":\"200.00\"},\"sale_price\":{\"41\":\"50.00\",\"42\":\"100.00\",\"43\":\"150.00\"}}}', 'no'),
(670, '_transient_timeout_wc_product_loop_5ac1f7e2bc9af945569e2c628fd104fb', '1567114460', 'no'),
(671, '_transient_wc_product_loop_5ac1f7e2bc9af945569e2c628fd104fb', 'a:2:{s:7:\"version\";s:10:\"1564522451\";s:5:\"value\";O:8:\"stdClass\":5:{s:3:\"ids\";a:10:{i:0;i:14;i:1;i:20;i:2;i:24;i:3;i:28;i:4;i:32;i:5;i:36;i:6;i:40;i:7;i:44;i:8;i:48;i:9;i:52;}s:5:\"total\";i:10;s:11:\"total_pages\";i:1;s:8:\"per_page\";i:12;s:12:\"current_page\";i:1;}}', 'no'),
(706, '_transient_timeout_wc_product_loop_df232fd33a61ab3240a7bd27973b42d9', '1567116259', 'no'),
(707, '_transient_wc_product_loop_df232fd33a61ab3240a7bd27973b42d9', 'a:2:{s:7:\"version\";s:10:\"1564524254\";s:5:\"value\";O:8:\"stdClass\":5:{s:3:\"ids\";a:4:{i:0;i:52;i:1;i:48;i:2;i:44;i:3;i:40;}s:5:\"total\";i:4;s:11:\"total_pages\";i:1;s:8:\"per_page\";i:4;s:12:\"current_page\";i:1;}}', 'no'),
(734, '_transient_timeout_wc_product_children_48', '1567115162', 'no'),
(735, '_transient_wc_product_children_48', 'a:2:{s:3:\"all\";a:3:{i:0;i:49;i:1;i:50;i:2;i:51;}s:7:\"visible\";a:3:{i:0;i:49;i:1;i:50;i:2;i:51;}}', 'no'),
(736, '_transient_timeout_wc_var_prices_48', '1567168568', 'no'),
(737, '_transient_wc_var_prices_48', '{\"version\":\"1564576557\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"49\":\"45.00\",\"50\":\"67.00\",\"51\":\"12.00\"},\"regular_price\":{\"49\":\"45.00\",\"50\":\"67.00\",\"51\":\"12.00\"},\"sale_price\":{\"49\":\"45.00\",\"50\":\"67.00\",\"51\":\"12.00\"}}}', 'no'),
(748, '_transient_timeout_wc_product_children_44', '1567115507', 'no'),
(749, '_transient_wc_product_children_44', 'a:2:{s:3:\"all\";a:3:{i:0;i:45;i:1;i:46;i:2;i:47;}s:7:\"visible\";a:3:{i:0;i:45;i:1;i:46;i:2;i:47;}}', 'no'),
(750, '_transient_timeout_wc_var_prices_44', '1567168568', 'no'),
(751, '_transient_wc_var_prices_44', '{\"version\":\"1564576557\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"45\":\"67.00\",\"46\":\"50.00\",\"47\":\"10.00\"},\"regular_price\":{\"45\":\"67.00\",\"46\":\"50.00\",\"47\":\"10.00\"},\"sale_price\":{\"45\":\"67.00\",\"46\":\"50.00\",\"47\":\"10.00\"}}}', 'no'),
(787, '_transient_timeout_wc_product_children_24', '1567116069', 'no'),
(788, '_transient_wc_product_children_24', 'a:2:{s:3:\"all\";a:3:{i:0;i:25;i:1;i:26;i:2;i:27;}s:7:\"visible\";a:3:{i:0;i:25;i:1;i:26;i:2;i:27;}}', 'no'),
(789, '_transient_timeout_wc_var_prices_24', '1567168568', 'no'),
(790, '_transient_wc_var_prices_24', '{\"version\":\"1564576557\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"25\":\"13.00\",\"26\":\"14.00\",\"27\":\"15.00\"},\"regular_price\":{\"25\":\"13.00\",\"26\":\"14.00\",\"27\":\"15.00\"},\"sale_price\":{\"25\":\"13.00\",\"26\":\"14.00\",\"27\":\"15.00\"}}}', 'no'),
(834, '_transient_timeout_wc_product_loop_279faa81bb1a343397116f303e6e0a8b', '1567140892', 'no'),
(835, '_transient_wc_product_loop_279faa81bb1a343397116f303e6e0a8b', 'a:2:{s:7:\"version\";s:10:\"1564524254\";s:5:\"value\";O:8:\"stdClass\":5:{s:3:\"ids\";a:4:{i:0;i:14;i:1;i:20;i:2;i:24;i:3;i:28;}s:5:\"total\";i:4;s:11:\"total_pages\";i:1;s:8:\"per_page\";i:4;s:12:\"current_page\";i:1;}}', 'no'),
(843, '_transient_timeout_wc_product_loop_9f7c9f8bb8766b82581e21a3ab7bc80d', '1567141655', 'no'),
(844, '_transient_wc_product_loop_9f7c9f8bb8766b82581e21a3ab7bc80d', 'a:2:{s:7:\"version\";s:10:\"1564524254\";s:5:\"value\";O:8:\"stdClass\":5:{s:3:\"ids\";a:4:{i:0;i:40;i:1;i:36;i:2;i:32;i:3;i:28;}s:5:\"total\";i:4;s:11:\"total_pages\";i:1;s:8:\"per_page\";i:4;s:12:\"current_page\";i:1;}}', 'no'),
(845, '_transient_timeout_wc_product_loop_abac5819c5dcc9617ae0bdd2a5b98716', '1567168568', 'no'),
(846, '_transient_wc_product_loop_abac5819c5dcc9617ae0bdd2a5b98716', 'a:2:{s:7:\"version\";s:10:\"1564576557\";s:5:\"value\";O:8:\"stdClass\":5:{s:3:\"ids\";a:4:{i:0;i:44;i:1;i:48;i:2;i:52;i:3;i:24;}s:5:\"total\";i:4;s:11:\"total_pages\";i:1;s:8:\"per_page\";i:4;s:12:\"current_page\";i:1;}}', 'no'),
(849, '_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a', '1564560700', 'no'),
(850, '_site_transient_poptags_40cd750bba9870f18aada2478b24840a', 'O:8:\"stdClass\":100:{s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";i:4603;}s:11:\"woocommerce\";a:3:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";i:3558;}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";i:2634;}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";i:2503;}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";i:1929;}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";i:1746;}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";i:1738;}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";i:1470;}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";i:1444;}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";i:1443;}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";i:1435;}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";i:1375;}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";i:1334;}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";i:1295;}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";i:1148;}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";i:1129;}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";i:1101;}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";i:1070;}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";i:1027;}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";i:944;}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";i:855;}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";i:845;}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";i:840;}s:8:\"security\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";i:806;}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";i:745;}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";i:738;}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";i:732;}s:6:\"slider\";a:3:{s:4:\"name\";s:6:\"slider\";s:4:\"slug\";s:6:\"slider\";s:5:\"count\";i:723;}s:10:\"e-commerce\";a:3:{s:4:\"name\";s:10:\"e-commerce\";s:4:\"slug\";s:10:\"e-commerce\";s:5:\"count\";i:714;}s:9:\"analytics\";a:3:{s:4:\"name\";s:9:\"analytics\";s:4:\"slug\";s:9:\"analytics\";s:5:\"count\";i:702;}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";i:699;}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";i:686;}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";i:678;}s:6:\"search\";a:3:{s:4:\"name\";s:6:\"search\";s:4:\"slug\";s:6:\"search\";s:5:\"count\";i:664;}s:4:\"form\";a:3:{s:4:\"name\";s:4:\"form\";s:4:\"slug\";s:4:\"form\";s:5:\"count\";i:662;}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";i:653;}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";i:633;}s:4:\"menu\";a:3:{s:4:\"name\";s:4:\"menu\";s:4:\"slug\";s:4:\"menu\";s:5:\"count\";i:625;}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"ajax\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";i:624;}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";i:619;}s:6:\"editor\";a:3:{s:4:\"name\";s:6:\"editor\";s:4:\"slug\";s:6:\"editor\";s:5:\"count\";i:593;}s:5:\"embed\";a:3:{s:4:\"name\";s:5:\"embed\";s:4:\"slug\";s:5:\"embed\";s:5:\"count\";i:591;}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";i:572;}s:3:\"css\";a:3:{s:4:\"name\";s:3:\"css\";s:4:\"slug\";s:3:\"css\";s:5:\"count\";i:568;}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";i:561;}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";i:556;}s:12:\"contact-form\";a:3:{s:4:\"name\";s:12:\"contact form\";s:4:\"slug\";s:12:\"contact-form\";s:5:\"count\";i:550;}s:5:\"share\";a:3:{s:4:\"name\";s:5:\"share\";s:4:\"slug\";s:5:\"share\";s:5:\"count\";i:544;}s:5:\"theme\";a:3:{s:4:\"name\";s:5:\"theme\";s:4:\"slug\";s:5:\"theme\";s:5:\"count\";i:535;}s:10:\"responsive\";a:3:{s:4:\"name\";s:10:\"responsive\";s:4:\"slug\";s:10:\"responsive\";s:5:\"count\";i:527;}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";i:527;}s:9:\"dashboard\";a:3:{s:4:\"name\";s:9:\"dashboard\";s:4:\"slug\";s:9:\"dashboard\";s:5:\"count\";i:519;}s:6:\"custom\";a:3:{s:4:\"name\";s:6:\"custom\";s:4:\"slug\";s:6:\"custom\";s:5:\"count\";i:515;}s:9:\"affiliate\";a:3:{s:4:\"name\";s:9:\"affiliate\";s:4:\"slug\";s:9:\"affiliate\";s:5:\"count\";i:513;}s:3:\"ads\";a:3:{s:4:\"name\";s:3:\"ads\";s:4:\"slug\";s:3:\"ads\";s:5:\"count\";i:508;}s:7:\"payment\";a:3:{s:4:\"name\";s:7:\"payment\";s:4:\"slug\";s:7:\"payment\";s:5:\"count\";i:499;}s:10:\"categories\";a:3:{s:4:\"name\";s:10:\"categories\";s:4:\"slug\";s:10:\"categories\";s:5:\"count\";i:496;}s:6:\"button\";a:3:{s:4:\"name\";s:6:\"button\";s:4:\"slug\";s:6:\"button\";s:5:\"count\";i:478;}s:4:\"tags\";a:3:{s:4:\"name\";s:4:\"tags\";s:4:\"slug\";s:4:\"tags\";s:5:\"count\";i:477;}s:7:\"contact\";a:3:{s:4:\"name\";s:7:\"contact\";s:4:\"slug\";s:7:\"contact\";s:5:\"count\";i:476;}s:4:\"user\";a:3:{s:4:\"name\";s:4:\"user\";s:4:\"slug\";s:4:\"user\";s:5:\"count\";i:473;}s:3:\"api\";a:3:{s:4:\"name\";s:3:\"api\";s:4:\"slug\";s:3:\"api\";s:5:\"count\";i:472;}s:6:\"mobile\";a:3:{s:4:\"name\";s:6:\"mobile\";s:4:\"slug\";s:6:\"mobile\";s:5:\"count\";i:458;}s:5:\"users\";a:3:{s:4:\"name\";s:5:\"users\";s:4:\"slug\";s:5:\"users\";s:5:\"count\";i:453;}s:6:\"events\";a:3:{s:4:\"name\";s:6:\"events\";s:4:\"slug\";s:6:\"events\";s:5:\"count\";i:444;}s:15:\"payment-gateway\";a:3:{s:4:\"name\";s:15:\"payment gateway\";s:4:\"slug\";s:15:\"payment-gateway\";s:5:\"count\";i:431;}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";i:430;}s:9:\"slideshow\";a:3:{s:4:\"name\";s:9:\"slideshow\";s:4:\"slug\";s:9:\"slideshow\";s:5:\"count\";i:422;}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";i:416;}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";i:416;}s:10:\"navigation\";a:3:{s:4:\"name\";s:10:\"navigation\";s:4:\"slug\";s:10:\"navigation\";s:5:\"count\";i:413;}s:9:\"marketing\";a:3:{s:4:\"name\";s:9:\"marketing\";s:4:\"slug\";s:9:\"marketing\";s:5:\"count\";i:409;}s:10:\"statistics\";a:3:{s:4:\"name\";s:10:\"statistics\";s:4:\"slug\";s:10:\"statistics\";s:5:\"count\";i:400;}s:8:\"calendar\";a:3:{s:4:\"name\";s:8:\"calendar\";s:4:\"slug\";s:8:\"calendar\";s:5:\"count\";i:400;}s:4:\"chat\";a:3:{s:4:\"name\";s:4:\"chat\";s:4:\"slug\";s:4:\"chat\";s:5:\"count\";i:393;}s:5:\"popup\";a:3:{s:4:\"name\";s:5:\"popup\";s:4:\"slug\";s:5:\"popup\";s:5:\"count\";i:393;}s:4:\"news\";a:3:{s:4:\"name\";s:4:\"news\";s:4:\"slug\";s:4:\"news\";s:5:\"count\";i:386;}s:10:\"shortcodes\";a:3:{s:4:\"name\";s:10:\"shortcodes\";s:4:\"slug\";s:10:\"shortcodes\";s:5:\"count\";i:384;}s:10:\"newsletter\";a:3:{s:4:\"name\";s:10:\"newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:5:\"count\";i:381;}s:12:\"social-media\";a:3:{s:4:\"name\";s:12:\"social media\";s:4:\"slug\";s:12:\"social-media\";s:5:\"count\";i:377;}s:5:\"forms\";a:3:{s:4:\"name\";s:5:\"forms\";s:4:\"slug\";s:5:\"forms\";s:5:\"count\";i:369;}s:9:\"gutenberg\";a:3:{s:4:\"name\";s:9:\"gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:5:\"count\";i:369;}s:4:\"code\";a:3:{s:4:\"name\";s:4:\"code\";s:4:\"slug\";s:4:\"code\";s:5:\"count\";i:364;}s:7:\"plugins\";a:3:{s:4:\"name\";s:7:\"plugins\";s:4:\"slug\";s:7:\"plugins\";s:5:\"count\";i:362;}s:3:\"url\";a:3:{s:4:\"name\";s:3:\"url\";s:4:\"slug\";s:3:\"url\";s:5:\"count\";i:356;}s:9:\"multisite\";a:3:{s:4:\"name\";s:9:\"multisite\";s:4:\"slug\";s:9:\"multisite\";s:5:\"count\";i:356;}s:8:\"redirect\";a:3:{s:4:\"name\";s:8:\"redirect\";s:4:\"slug\";s:8:\"redirect\";s:5:\"count\";i:356;}s:4:\"meta\";a:3:{s:4:\"name\";s:4:\"meta\";s:4:\"slug\";s:4:\"meta\";s:5:\"count\";i:350;}s:14:\"contact-form-7\";a:3:{s:4:\"name\";s:14:\"contact form 7\";s:4:\"slug\";s:14:\"contact-form-7\";s:5:\"count\";i:347;}s:4:\"list\";a:3:{s:4:\"name\";s:4:\"list\";s:4:\"slug\";s:4:\"list\";s:5:\"count\";i:346;}s:11:\"performance\";a:3:{s:4:\"name\";s:11:\"performance\";s:4:\"slug\";s:11:\"performance\";s:5:\"count\";i:341;}s:12:\"notification\";a:3:{s:4:\"name\";s:12:\"notification\";s:4:\"slug\";s:12:\"notification\";s:5:\"count\";i:332;}s:16:\"custom-post-type\";a:3:{s:4:\"name\";s:16:\"custom post type\";s:4:\"slug\";s:16:\"custom-post-type\";s:5:\"count\";i:325;}s:11:\"advertising\";a:3:{s:4:\"name\";s:11:\"advertising\";s:4:\"slug\";s:11:\"advertising\";s:5:\"count\";i:325;}s:8:\"tracking\";a:3:{s:4:\"name\";s:8:\"tracking\";s:4:\"slug\";s:8:\"tracking\";s:5:\"count\";i:322;}s:16:\"google-analytics\";a:3:{s:4:\"name\";s:16:\"google analytics\";s:4:\"slug\";s:16:\"google-analytics\";s:5:\"count\";i:320;}s:6:\"simple\";a:3:{s:4:\"name\";s:6:\"simple\";s:4:\"slug\";s:6:\"simple\";s:5:\"count\";i:318;}s:4:\"html\";a:3:{s:4:\"name\";s:4:\"html\";s:4:\"slug\";s:4:\"html\";s:5:\"count\";i:315;}s:7:\"adsense\";a:3:{s:4:\"name\";s:7:\"adsense\";s:4:\"slug\";s:7:\"adsense\";s:5:\"count\";i:311;}s:6:\"author\";a:3:{s:4:\"name\";s:6:\"author\";s:4:\"slug\";s:6:\"author\";s:5:\"count\";i:310;}}', 'no'),
(862, '_site_transient_update_core', 'O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:65:\"https://downloads.wordpress.org/release/ru_RU/wordpress-5.2.2.zip\";s:6:\"locale\";s:5:\"ru_RU\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:65:\"https://downloads.wordpress.org/release/ru_RU/wordpress-5.2.2.zip\";s:10:\"no_content\";b:0;s:11:\"new_bundled\";b:0;s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.2.2\";s:7:\"version\";s:5:\"5.2.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:1564575380;s:15:\"version_checked\";s:5:\"5.2.2\";s:12:\"translations\";a:0:{}}', 'no'),
(863, '_site_transient_update_plugins', 'O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1564575391;s:7:\"checked\";a:2:{s:33:\"smart-slider-3/smart-slider-3.php\";s:6:\"3.3.21\";s:27:\"woocommerce/woocommerce.php\";s:5:\"3.6.5\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:2:{s:33:\"smart-slider-3/smart-slider-3.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:28:\"w.org/plugins/smart-slider-3\";s:4:\"slug\";s:14:\"smart-slider-3\";s:6:\"plugin\";s:33:\"smart-slider-3/smart-slider-3.php\";s:11:\"new_version\";s:6:\"3.3.21\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/smart-slider-3/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/smart-slider-3.3.3.21.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/smart-slider-3/assets/icon-256x256.png?rev=1284893\";s:2:\"1x\";s:67:\"https://ps.w.org/smart-slider-3/assets/icon-128x128.png?rev=1284893\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/smart-slider-3/assets/banner-1544x500.png?rev=1902662\";s:2:\"1x\";s:69:\"https://ps.w.org/smart-slider-3/assets/banner-772x250.png?rev=1902662\";}s:11:\"banners_rtl\";a:0:{}}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:25:\"w.org/plugins/woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:6:\"plugin\";s:27:\"woocommerce/woocommerce.php\";s:11:\"new_version\";s:5:\"3.6.5\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-256x256.png?rev=2075035\";s:2:\"1x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-128x128.png?rev=2075035\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=2075035\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=2075035\";}s:11:\"banners_rtl\";a:0:{}}}}', 'no'),
(864, '_site_transient_update_themes', 'O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1564575391;s:7:\"checked\";a:5:{s:10:\"storefront\";s:5:\"2.5.1\";s:10:\"twentynine\";s:3:\"2.2\";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:0:{}}', 'no'),
(865, 'n2_ss3_version', '3.3.21r4359', 'yes'),
(866, 'widget_smartslider3', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(893, '_transient_timeout_wc_product_loop_ed092e724d0838e99cd6564e5c2f7139', '1567143361', 'no'),
(894, '_transient_wc_product_loop_ed092e724d0838e99cd6564e5c2f7139', 'a:2:{s:7:\"version\";s:10:\"1564524254\";s:5:\"value\";O:8:\"stdClass\":5:{s:3:\"ids\";a:6:{i:0;i:14;i:1;i:20;i:2;i:28;i:3;i:32;i:4;i:36;i:5;i:40;}s:5:\"total\";i:6;s:11:\"total_pages\";i:1;s:8:\"per_page\";i:12;s:12:\"current_page\";i:1;}}', 'no'),
(903, '_transient_timeout_wc_shipping_method_count', '1567143890', 'no'),
(904, '_transient_wc_shipping_method_count', 'a:2:{s:7:\"version\";s:10:\"1564514336\";s:5:\"value\";i:2;}', 'no'),
(921, '_site_transient_timeout_theme_roots', '1564577189', 'no'),
(922, '_site_transient_theme_roots', 'a:5:{s:10:\"storefront\";s:7:\"/themes\";s:10:\"twentynine\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:13:\"twentysixteen\";s:7:\"/themes\";}', 'no'),
(924, '_site_transient_timeout_community-events-1aecf33ab8525ff212ebdffbb438372e', '1564618608', 'no'),
(925, '_site_transient_community-events-1aecf33ab8525ff212ebdffbb438372e', 'a:2:{s:8:\"location\";a:1:{s:2:\"ip\";s:9:\"127.0.0.0\";}s:6:\"events\";a:0:{}}', 'no'),
(926, '_transient_timeout_feed_126d1ca39d75da07beec8b892738427b', '1564618610', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(927, '_transient_feed_126d1ca39d75da07beec8b892738427b', '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:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Блог | Русский\";s:7:\"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:24:\"https://ru.wordpress.org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Русский\";s: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:\"Thu, 09 May 2019 14:19: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:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"ru-RU\";s: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-45703\";s:7:\"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: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:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"WordPress Translation Day 4 — Санкт-Петербург\";s:7:\"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:152:\"https://ru.wordpress.org/news/2019/05/wordpress-translation-day-4-%d1%81%d0%b0%d0%bd%d0%ba%d1%82-%d0%bf%d0%b5%d1%82%d0%b5%d1%80%d0%b1%d1%83%d1%80%d0%b3/\";s: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 11:53:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:14:\"Новости\";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:25:\"Общие вопросы\";s:7:\"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://ru.wordpress.org/?p=2099\";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:685:\"Друзья! Ни для кого не секрет, что 11-го мая проходит всемирный суточный марафон перевода WordPress. В рамках https://wptranslationday.org/ в Петербурге очная часть пройдет по адресу 9-я Советская, 18 (пространство funhouse, цоколь) с 12.00 до 21.00. Вход свободный в любое время. В программе — философия WordPress полиглотов, инструктаж, практическая часть, где мы переводим непереведенные плагины, темы, […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:3:\"Yui\";s: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:1478:\"\n<p>Друзья! Ни для кого не секрет, что 11-го мая проходит всемирный суточный марафон перевода WordPress. В рамках <a href=\"https://wptranslationday.org/\">https://wptranslationday.org/</a> в Петербурге очная часть <a href=\"https://www.meetup.com/St-Petersburg-WordPress-Meetup/events/261316455/\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"пройдет (opens in a new tab)\">пройдет</a> по адресу 9-я Советская, 18 (пространство funhouse, цоколь) с 12.00 до 21.00. Вход свободный в любое время.</p>\n\n\n\n<p>В программе — философия WordPress полиглотов, инструктаж, практическая часть, где мы переводим непереведенные плагины, темы, и т.д. Заочно можно участвовать присоединившись в Телеграм-группу @wcspb <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f642.png\" alt=\"🙂\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n\n\n\n<p>Берем свои ноутбуки, знание русского языка (и немного английского), и отличное настроение!</p>\n\n\n\n<p>Полиглоты, лингвисты, программисты объединяйтесь!</p>\n\n\n\n<p></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}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:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"WP Moscow #6. Собственная тема на Elementor, кейс по WordPress + React JS\";s:7:\"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:222:\"https://ru.wordpress.org/news/2019/02/wp-moscow-6-%d1%81%d0%be%d0%b1%d1%81%d1%82%d0%b2%d0%b5%d0%bd%d0%bd%d0%b0%d1%8f-%d1%82%d0%b5%d0%bc%d0%b0-%d0%bd%d0%b0-elementor-%d0%ba%d0%b5%d0%b9%d1%81-%d0%bf%d0%be-wordpress-react-js/\";s: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, 22 Feb 2019 05:10: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:2:{i:0;a:5:{s:4:\"data\";s:14:\"Новости\";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:25:\"Общие вопросы\";s:7:\"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://ru.wordpress.org/?p=2081\";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:563:\"Очередной митап по WordPress состоится в четверг 28 февраля. Запланировано два доклада: «Создание собственной темы для WordPress сайта при помощи плагина Elementor»Леонид Лукин «Как сделать впечатляющий промо-сайт на WordPress + React JS. Разбор кейса.»Андрей Панферов Вход свободной по предварительной регистрации. Начало в 19.00.\";s: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:17:\"Denis Yanchevskiy\";s: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:742:\"\n<p>Очередной митап по WordPress состоится в четверг 28 февраля.</p>\n\n\n\n<p>Запланировано два доклада:</p>\n\n\n\n<p><strong>«Создание собственной темы для WordPress сайта при помощи плагина Elementor»</strong><br>Леонид Лукин</p>\n\n\n\n<p><strong>«Как сделать впечатляющий промо-сайт на WordPress + React JS. Разбор кейса.»</strong><br>Андрей Панферов</p>\n\n\n\n<p>Вход свободной по <a href=\"https://www.meetup.com/ru-RU/wordpress-moscow/events/258755820/\">предварительной регистрации</a>.</p>\n\n\n\n<p>Начало в 19.00.</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:\"\";}}}}}i:2;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:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"WP Moscow #5 | Тонкости продаж, Gutenberg и ACF\";s:7:\"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:157:\"https://ru.wordpress.org/news/2019/01/wp-moscow-5-%d1%82%d0%be%d0%bd%d0%ba%d0%be%d1%81%d1%82%d0%b8-%d0%bf%d1%80%d0%be%d0%b4%d0%b0%d0%b6-gutenberg-%d0%b8-acf/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 22 Jan 2019 16:14:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:14:\"Новости\";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:25:\"Общие вопросы\";s:7:\"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://ru.wordpress.org/?p=2074\";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:424:\"Очередной митап по WordPress состоится в четверг 31 января. Запланировано два доклада: «Как продавать услуги по разработке сайтов»Андрей Панферов «ACF PRO + Gutenberg»Николай Миронов Вход свободной по предварительной регистрации. Начало в 19.00.\";s: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:17:\"Denis Yanchevskiy\";s: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:603:\"\n<p>Очередной митап по WordPress состоится в четверг 31 января.</p>\n\n\n\n<p>Запланировано два доклада:</p>\n\n\n\n<p><strong>«Как продавать услуги по разработке сайтов»</strong><br>Андрей Панферов</p>\n\n\n\n<p><strong>«ACF PRO + Gutenberg»</strong><br>Николай Миронов</p>\n\n\n\n<p>Вход свободной по <a href=\"https://www.meetup.com/ru-RU/wordpress-moscow/events/258124643/\">предварительной регистрации</a>.</p>\n\n\n\n<p>Начало в 19.00.</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:\"\";}}}}}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:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"WP Moscow #4 | Обсудим настройки тем и дизайн\";s:7:\"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:211:\"https://ru.wordpress.org/news/2018/11/wp-moscow-4-%d0%be%d0%b1%d1%81%d1%83%d0%b4%d0%b8%d0%bc-%d0%bd%d0%b0%d1%81%d1%82%d1%80%d0%be%d0%b9%d0%ba%d0%b8-%d1%82%d0%b5%d0%bc-%d0%b8-%d0%b4%d0%b8%d0%b7%d0%b0%d0%b9%d0%bd/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Nov 2018 13:22: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:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:14:\"Новости\";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:25:\"Общие вопросы\";s:7:\"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://ru.wordpress.org/?p=2065\";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:467:\"Очередной митап по WordPress состоится в четверг 15 ноября. Запланировано два доклада: «Настройки темы: Customizer или Advanced Custom Fields?»Денис Янчевский «В чем отличие UX дизайна от UI дизайна?»Фёдор Гребенников Вход свободной по предварительной регистрации. Начало в 18.00.\";s: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:17:\"Denis Yanchevskiy\";s: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:646:\"\n<p>Очередной митап по WordPress состоится в четверг 15 ноября.</p>\n\n\n\n<p>Запланировано два доклада:</p>\n\n\n\n<p><strong>«Настройки темы: Customizer или Advanced Custom Fields?»</strong><br>Денис Янчевский</p>\n\n\n\n<p><strong>«В чем отличие UX дизайна от UI дизайна?»</strong><br>Фёдор Гребенников</p>\n\n\n\n<p>Вход свободной по <a href=\"https://www.meetup.com/ru-RU/wordpress-moscow/events/255766420/\">предварительной регистрации</a>.</p>\n\n\n\n<p>Начало в 18.00.</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:\"\";}}}}}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:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"WP Moscow #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:198:\"https://ru.wordpress.org/news/2018/10/wp-moscow-3-%d0%b4%d0%be%d0%ba%d0%bb%d0%b0%d0%b4%d1%8b-%d0%b6%d0%b8%d0%b2%d0%be%d0%b5-%d0%be%d0%b1%d1%89%d0%b5%d0%bd%d0%b8%d0%b5-%d0%bf%d0%b8%d1%86%d1%86%d0%b0/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 14 Oct 2018 23:14: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:2:{i:0;a:5:{s:4:\"data\";s:14:\"Новости\";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:25:\"Общие вопросы\";s:7:\"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://ru.wordpress.org/?p=2057\";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:666:\"Очередной митап по WordPress состоится в субботу 20 октября. Запланировано три доклада: «SEO? Изучить не надо игнорировать — где ставить запятую веб-разработчику?» Павел Карпов «Перевод проекта с премиум-темы на чистый код» Владимир Скляр «Видите ли вы хаос в коде плагинов и тем? А он есть!» Николай Коробочкин Вход свободной по предварительной регистрации. Начало в 12.00.\";s: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:17:\"Denis Yanchevskiy\";s: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:870:\"<p>Очередной митап по WordPress состоится в субботу 20 октября.</p>\n<p>Запланировано три доклада:</p>\n<p><strong>«SEO? Изучить не надо игнорировать — где ставить запятую веб-разработчику?»</strong><br />\nПавел Карпов</p>\n<p><strong>«Перевод проекта с премиум-темы на чистый код»</strong><br />\nВладимир Скляр</p>\n<p><strong>«Видите ли вы хаос в коде плагинов и тем? А он есть!»</strong><br />\nНиколай Коробочкин</p>\n<p>Вход свободной по <a href=\"https://www.meetup.com/ru-RU/Moscow-WordPress-Meetup/events/255225381/\">предварительной регистрации</a>.</p>\n<p>Начало в 12.00.</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:\"\";}}}}}i:5;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:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:110:\"Электронная коммерция с 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://ru.wordpress.org/news/2018/09/meetup-moscow-1809/\";s: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, 17 Sep 2018 19:41: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:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:14:\"Новости\";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:25:\"Общие вопросы\";s:7:\"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://ru.wordpress.org/?p=2048\";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:583:\"Первый тематический митап про WooCommerce (и не только) состоится в Москве 20 сентября. Обсуждаем особенности создания интернет-магазинов на WordPress, плагины, темы, оптимизацию работы сайта. Приглашаем всех, кто интересуется электронной коммерцией, имеет опыт или планирует открыть свой интернет-магазин. Подробности по ссылке\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:3:\"Yui\";s: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:697:\"\n<p>Первый тематический митап про WooCommerce (и не только) состоится в Москве 20 сентября. Обсуждаем особенности создания интернет-магазинов на WordPress, плагины, темы, оптимизацию работы сайта.</p>\n\n\n\n<p>Приглашаем всех, кто интересуется электронной коммерцией, имеет опыт или планирует открыть свой интернет-магазин.</p>\n\n\n\n<p><a href=\"https://www.meetup.com/ru-RU/Moscow-WordPress-Meetup/events/254204545/\">Подробности по ссылке</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;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:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"Конференция WordCamp Москва 2018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://ru.wordpress.org/news/2018/07/wordcamp-moscow2018/\";s: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, 10 Jul 2018 17:06:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:14:\"Новости\";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:25:\"Общие вопросы\";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:15:\"WordCamp Russia\";s:7:\"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://ru.wordpress.org/?p=2017\";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:446:\"В этом году WordCamp Moscow впервые будет длиться два дня! Мероприятие пройдет 18 и 19 августа в центре Digital October! Посетите сайт конференции, чтобы ознакомиться с подробностями, стать спикером, спонсором или зарегистрироваться для участия в конференции!\";s: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:3:\"Yui\";s: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:568:\"<p>В этом году WordCamp Moscow впервые будет длиться два дня! Мероприятие пройдет <strong>18 и 19 августа</strong> в центре Digital October!</p>\n<p><a href=\"https://2018.moscow.wordcamp.org/\" target=\"_blank\" rel=\"noopener noreferrer\">Посетите сайт конференции</a>, чтобы ознакомиться с подробностями, стать спикером, спонсором или зарегистрироваться для участия в конференции!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;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:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"Конференция WordCamp Санкт-Петербург 2018\";s:7:\"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://ru.wordpress.org/news/2018/05/wordcamp-stpetersburg2018/\";s: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, 02 May 2018 07:03:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:14:\"Новости\";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:25:\"Общие вопросы\";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:15:\"WordCamp Russia\";s:7:\"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://ru.wordpress.org/?p=1994\";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:575:\"Конференция состоится 26 мая 2018 при поддержке компании SEMrush. Хотите поучаствовать, поделиться сообществом своим опытом или просто рассказать что-то интересное из мира WordPress? Приходите, будет интересно! Полезные знакомства, новые доклады, футболка с символикой WordPress, пицца и after-party. Подробности на сайте конференции.\";s: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:3:\"Yui\";s: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:706:\"<p>Конференция состоится 26 мая 2018 при поддержке компании SEMrush.<br />\nХотите поучаствовать, поделиться сообществом своим опытом или просто рассказать что-то интересное из мира WordPress?<br />\nПриходите, будет интересно!<br />\nПолезные знакомства, новые доклады, футболка с символикой WordPress, пицца и after-party.<br />\nПодробности <a href=\"https://2018.saintpetersburg.wordcamp.org/\" target=\"_blank\" rel=\"noopener noreferrer\">на сайте конференции.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;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:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"Выпуск WordPress 4.9.4 (требуется ручное обновление)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://ru.wordpress.org/news/2018/02/%d0%b2%d1%8b%d0%bf%d1%83%d1%81%d0%ba-wordpress-4-9-4/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 06 Feb 2018 16:46:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:22:\"Исправления\";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:12:\"Релизы\";s:7:\"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://ru.wordpress.org/?p=1886\";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:661:\"Доступна версия WordPress 4.9.4, исправляющая внесенную в выпуске 4.9.3 ошибку с автообновлением. Если вы успели (возможно автоматически) обновить свой сайт (или сайты) до 4.9.3, то вам нужно обновить WordPress до версии 4.9.4, используя кнопку в Консоль > Обновления, либо иным удобным вам способом (wp-cli, через ftp или ssh). Скачать архив дистрибутива можно здесь. Детали ошибки […]\";s: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:3:\"Yui\";s: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:905:\"<p>Доступна версия WordPress 4.9.4, исправляющая внесенную в выпуске 4.9.3 ошибку с автообновлением. Если вы успели (возможно автоматически) обновить свой сайт (или сайты) до 4.9.3, то вам нужно обновить WordPress до версии 4.9.4, используя кнопку в <em>Консоль > Обновления, </em>либо иным удобным вам способом (wp-cli, через ftp или ssh). Скачать архив дистрибутива можно <a href=\"https://ru.wordpress.org/releases/\">здесь</a>.</p>\n<p>Детали ошибки <a href=\"https://make.wordpress.org/core/2018/02/06/wordpress-4-9-4-release-the-technical-details/\" target=\"_blank\" rel=\"noopener\">доступны</a> в блоге Make 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:\"\";}}}}}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:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"Всемирный день перевода WordPress 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:59:\"https://ru.wordpress.org/news/2017/09/wp-translation-day-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, 29 Sep 2017 18:55:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Новости\";s:7:\"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://ru.wordpress.org/?p=1841\";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:655:\"Всемирный день перевода — это мероприятие, которое проходит по всему миру в один день в формате вебинаров или митапов, когда каждый может принять участие в переводе плагинов, тем, документации и ядра WordPress на свой родной язык. Быть разработчиком для этого совсем не обязательно, участвовать может любой желающий. Если вы давно хотели внести свой вклад в […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Denis Yanchevskiy\";s: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:4393:\"<p><a href=\"https://wptranslationday.org/\">Всемирный день перевода</a> — это мероприятие, которое проходит по всему миру в один день в формате вебинаров или митапов, когда каждый может принять участие в переводе плагинов, тем, документации и ядра WordPress на свой родной язык.</p>\n<p><a href=\"https://wptranslationday.org/\"><img class=\"alignnone wp-image-1842 size-full\" src=\"https://ru.wordpress.org/files/2017/09/4by3.jpg\" alt=\"\" width=\"1024\" height=\"768\" srcset=\"https://ru.wordpress.org/files/2017/09/4by3.jpg 1024w, https://ru.wordpress.org/files/2017/09/4by3-300x225.jpg 300w, https://ru.wordpress.org/files/2017/09/4by3-768x576.jpg 768w, https://ru.wordpress.org/files/2017/09/4by3-440x330.jpg 440w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></a></p>\n<p>Быть разработчиком для этого совсем не обязательно, участвовать может любой желающий. Если вы давно хотели внести свой вклад в развитие WordPress — сейчас самое время!</p>\n<p>В России в рамках мероприятия планируется встреча в Ростове-на-Дону, а также вебинар для тех, кто будет переводить у себя дома.</p>\n<p><strong>Когда</strong></p>\n<p>День перевода WordPress пройдёт в субботу, 30 сентября.</p>\n<p><strong>Где</strong></p>\n<ul>\n<li>Ростов-на-Дону: ул. Большая Садовая, д. 81/31 (кафе Starbucks). Начало в 12:00.</li>\n<li>Вебинар: <a href=\"https://www.crowdcast.io/e/gwtd3/22\">https://www.crowdcast.io/e/gwtd3/22</a>, начало в 20:00 по московскому времени. Вы узнаете, как переводить WordPress, плагины и темы на русский язык, сможете выбрать проект и приступить к переводу.</li>\n</ul>\n<p>Расписание всех вебинаров мероприятия: <a href=\"https://wptranslationday.org/#primary\">https://wptranslationday.org/#primary</a>.</p>\n<p><strong>Полезные ресурсы</strong></p>\n<ul>\n<li><a href=\"https://ru.wordpress.org/support/topic/%D0%BA%D0%B0%D0%BA-%D0%BF%D0%B5%D1%80%D0%B5%D0%B2%D0%B5%D1%81%D1%82%D0%B8-%D1%82%D0%B5%D0%BC%D1%83-%D0%B8%D0%BB%D0%B8-%D0%BF%D0%BB%D0%B0%D0%B3%D0%B8%D0%BD/\">Как перевести тему или плагин?</a></li>\n<li><a href=\"https://codex.wordpress.org/Вниманию_переводчиков#.D0.A1.D1.82.D0.B8.D0.BB.D1.8C_.D0.BF.D0.B5.D1.80.D0.B5.D0.B2.D0.BE.D0.B4.D0.B0\">Рекомендации по стилю перевода</a></li>\n<li><a href=\"https://codex.wordpress.org/Вниманию_переводчиков#.D0.9A.D0.B0.D0.BA_.D1.81.D0.B4.D0.B5.D0.BB.D0.B0.D1.82.D1.8C_.D1.85.D0.BE.D1.80.D0.BE.D1.88.D0.B8.D0.B9_.D0.BF.D0.B5.D1.80.D0.B5.D0.B2.D0.BE.D0.B4.3F\">Как сделать хороший перевод</a></li>\n<li><a href=\"https://translate.wordpress.org/locale/ru/default/glossary\">Словарь терминов</a></li>\n<li><a href=\"https://make.wordpress.org/polyglots/handbook/about/get-involved/first-steps/\">Первые шаги переводчика</a></li>\n<li><a href=\"https://make.wordpress.org/polyglots/handbook/tools/glotpress-translate-wordpress-org/\">Как работать с сайтом translate.wordpress.org (GlotPress)</a></li>\n</ul>\n<p>Для координации и обсуждения вопросов стоит зарегистрироваться в <a href=\"https://ruwp.slack.com/\">Slack-группе русскоязычного сообщества WordPress</a> и зайти на канал <code>#translations</code>. При регистрации введите адрес вида <code>[email protected]</code> (он же используется и в <a href=\"https://make.wordpress.org/chat/\">английском Slack</a>), где <code>username</code> — ваш логин на WordPress.org.</p>\n<p>Да пребудут с нами понятные интерфейсы и качественная локализация!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s: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:35:\"https://ru.wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n hourly \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n 1 \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 31 Jul 2019 12:16:50 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Wed, 31 Jul 2019 12:02:02 GMT\";s:4:\"link\";s:61:\"<https://ru.wordpress.org/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:\"20130911010210\";}', 'no'),
(928, '_transient_timeout_feed_mod_126d1ca39d75da07beec8b892738427b', '1564618610', 'no'),
(929, '_transient_feed_mod_126d1ca39d75da07beec8b892738427b', '1564575410', 'no'),
(930, '_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9', '1564618611', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(931, '_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:91:\"WPTavern: WordPress Security Team Discusses Backporting Security Releases to Fewer Versions\";s:7:\"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=92029\";s:7:\"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:102:\"https://wptavern.com/wordpress-security-team-discusses-backporting-security-releases-to-fewer-versions\";s: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:6181:\"<p>The WordPress Security Team is <a href=\"https://make.wordpress.org/core/2019/07/29/should-security-fixes-continue-to-be-backported-to-very-old-versions-of-wordpress/\" rel=\"noopener noreferrer\" target=\"_blank\">exploring different approaches</a> to backporting security fixes to older versions of the software. The effort that goes into supporting versions back to <a href=\"https://wordpress.org/news/2013/10/basie/\" rel=\"noopener noreferrer\" target=\"_blank\">3.7</a> (the release that introduced automatic background updates) increases with each major version released.</p>\n<p>“For the Core Security team, that means when security updates need to be released, we have to take the testing and release process not just to the current version of WordPress, but we have to test the changes, create code patches, and then release to every major version all the way back to 3.7,” security team lead Jake Spurlock said. “With 5.3 around the corner that puts us at over fifteen major versions of WordPress to support long term.”</p>\n<p>Spurlock said 3.7 represents <a href=\"https://wordpress.org/about/stats/\" rel=\"noopener noreferrer\" target=\"_blank\">0.1% of all WordPress sites</a> but noted that supporting older versions requires “a large amount of time and energy and hurts the team’s ability to work effectively.”</p>\n<p>When asked how much of a time investment is in involved, Spurlock said it varies depending how many tickets/issues have to be ported. All patches are reviewed, tested, and committed by several team members. There are approximately 50 security experts on the team, many of which are employed by Automattic, although some are volunteers.</p>\n<p>“The problem with developing security releases for older versions of WordPress lies in the amount of testing and then reengineering that is specific to each older version of WordPress,” Spurlock said. “As an example. WordPress 4.2 received a fairly large refactor, and so taking a fix back before that time means extra testing, and ensuring that paths works for patches and more. Getting the testing suite to work on older versions has been difficult too with the code changes that accompany each version.”</p>\n<p>Spurlock called for feedback and ideas on how the security team can support fewer versions of WordPress while keeping users secure. An active discussion is underway and opinions range from enthusiastic support for the idea to opposition.</p>\n<p>Some who weighed in prefer to focus on urging users to update via emails to admins on older installs and/or a “please upgrade” widget ported back to older versions. As big version jumps can be intimidating for users, some recommended WordPress provide better ways to do incremental updates from older versions to the next most recent.</p>\n<p>“If the goal is to keep WordPress users secure against hackers and other rogue agents, you should continue supporting older versions with security releases,” WordPress core contributor Rami Yushuvaev said.</p>\n<p>“WordPress 3.7 represents 0.1% of all WordPress sites but WordPress 3.0 – 3.6 represents 1.6% of all WordPress sites. You don’t want to increase the number of sites using un-secure versions. With the current policy, ‘old version’ is not the same as ‘un-secure version.’</p>\n<p>“I think you should educate users to use updated software, not to stop releasing security releases for older versions.”</p>\n<p>Several commenters are in favor of limiting backporting security fixes to a set number of versions, as outlined by former WordPress security lead, Aaron Campbell:</p>\n<blockquote><p>I like the idea if supporting X versions back. That allows users to know that they don’t have to update to the latest version no matter what our release cycles are, and also makes sure we can eventually hone in on how many versions are actually tenable to support.</p>\n<p>Supporting X years back would allow users to know they can avoid upgrading for a certain amount of time, but it would also mean that the security team wouldn’t always be supporting the same number of versions and if a release ever took longer than our supported time then all users would be expected to upgrade to the latest version (exceptions could always be made, but it’s harder to rely on those).</p></blockquote>\n<p>Stephen Edgar, one of the maintainers of WordPress’ build tools component, suggested implementing automatic major version upgrades to keep moving users forward to supported versions in waves.</p>\n<p>“Maybe continue to ship them until ‘major’ updates are implemented,” Edgar said. “The current thinking is to add major updates to 3.7 first, bumping 3.7 to 3.8 via automatic updates. Once that’s completed then security updates would no longer be backported to the 3.7 branch.</p>\n<p>“And similarly, once 3.8 major updates are implemented, i.e. 3.8 gets bumped to x.x then again, backports to 3.8 would cease at the same time and so forth through the branches.”</p>\n<p>Edgar also noted that providing users a way to opt into automatic updates for major core releases is one of the <a href=\"https://make.wordpress.org/core/2018/12/08/9-priorities-for-2019/\" rel=\"noopener noreferrer\" target=\"_blank\">nine projects</a> that Matt Mullenweg had identified for working on in 2019.</p>\n<p>Several other commenters said they would like to see WordPress implement semantic versioning and adopt a long-term support (LTS) policy. WordPress would then clearly communicate the number of years those versions would be supported. Older sites could then be auto-updated to the LTS version.</p>\n<p>No decision has been made on the ideas proposed and the discussion is still ongoing. If you have experience maintaining older sites or have input on how WordPress can best keep users secure while decreasing the work load, leave a comment on the <a href=\"https://make.wordpress.org/core/2019/07/29/should-security-fixes-continue-to-be-backported-to-very-old-versions-of-wordpress/\" rel=\"noopener noreferrer\" target=\"_blank\">Make WordPress Core post</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 31 Jul 2019 00:17:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:110:\"WPTavern: WordSesh EMEA Coming September 25: A New Virtual WordPress Event for Europe, Middle East, and Africa\";s:7:\"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=91993\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:118:\"https://wptavern.com/wordsesh-emea-coming-september-25-a-new-virtual-wordpress-event-for-europe-middle-east-and-africa\";s: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:4160:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/07/wordsesh-emea.png?ssl=1\"><img /></a></p>\n<p><a href=\"https://wordsesh.com\" rel=\"noopener noreferrer\" target=\"_blank\">WordSesh</a> is launching a new event aimed at WordPress enthusiasts living in the Middle East, Europe, and Africa. The 12-hour virtual event is scheduled for September 25, 2019, from 7:00-19:00 UTC. While the event has always been open to participants across the world, WordSesh “EMEA” will be the first to offer a schedule that is tailored to attendees living in the Eastern hemisphere.</p>\n<p>Organizer Brian Richards said that hosting an event for this region has been on his mind ever since he took the reins of WordSesh in 2018.</p>\n<p>“I switched to a 12-hour format to make the event easier to manage and attend, but I recognized immediately that I was alienating a huge portion of the audience by setting those 12 hours to track across my own timezone,” Richards said. “The primary goal here is to create an event that is more convenient to attend for people across Europe, Middle East, and Africa.”</p>\n<p>WordSesh EMEA sessions will be conducted in English this time around and will also be live captioned just like the previous two events. The schedule will include ten 50-minute sessions (including Q&A) and three 15-minute sessions. All sessions will be recorded and available on WPSessions after the live event has ended.</p>\n<p><a href=\"https://wordsesh.com/speak/\" rel=\"noopener noreferrer\" target=\"_blank\">Applications for speakers</a> are already open. Each speaker receives a free coaching session for their presentation and a $250 stipend. The deadline to apply is August 9, 2019.</p>\n<p>Richards said he has already had a few talks submitted on topics like image performance, mental health, and Gatsby.</p>\n<p>“I’d love to see talks that angle around a case study or ‘recipe,’ (e.g. Here’s a thing I built, how I did it, and how you can too.),” he said. “I would also love to see more talks around the area of design, front-end workflows, and things like that. I’m most excited to host presenters who themselves are excited about an idea.”</p>\n<p>With WordSesh officially going global in support of different timezones, Richards said he anticipates the next region will be Asia Pacific and is enthusiastic to organize it.</p>\n<p>“I don’t know how many personal relationships I currently have across APAC to make a WordSesh for that region a reality – in terms of sponsors, speakers, and attendees – but it’s a big region and community, and it’s on my radar for 2020,” Richards said.</p>\n<p>WordSesh EMEA will be the second WordSesh held this year. There were more than 1,000 attendees registered for the May 2019 event and 700 participated live throughout the day.</p>\n<p>“WordSesh is one of the best attended WordPress events, which is very humbling,” Richards said. “I’m excited to see how many people attend WordSesh EMEA, given how much larger WCEU is relative to WCUS. WCEU 2019 had more than 2X the participants of WCUS 2018.”</p>\n<p>He said he doesn’t anticipate that kind of disparity in attendance since it’s the first time for this event, but wouldn’t be surprised if the attendance at this event surpasses the May 2019 event.</p>\n<p>The first WordSesh was held in April 2013 and is now six years running, thanks in part to Richards’ contagious enthusiasm for hosting it and his willingness to try new things in an effort to best serve the community. WordSesh EMEA will mark the seventh event in the series.</p>\n<p>“I think the WordSesh events are popular because the broad WordPress community is a distributed-first body – not only the contributors, but also the majority of the agencies, product shops, and even client relationships,” Richards said.</p>\n<p>“Thus, an event that caters to a distributed audience – watch from anywhere, replay at any time – feels like a pretty natural extension of how we already work and interact.”</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, 29 Jul 2019 22:47:50 +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: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:88:\"WPTavern: WordPress Contributors Explore the Possibility of a Global Accessibility Event\";s:7:\"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=91976\";s:7:\"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:99:\"https://wptavern.com/wordpress-contributors-explore-the-possibility-of-a-global-accessibility-event\";s: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:5112:\"<p>WordPress’ accessibility team is evaluating the possibility of organizing a virtual Global Accessibility Day, similar to the Polyglots’ Global Translation Day. This marathon-style contributor event has proven to be valuable for the Polyglots in terms of recruiting, onboarding, and <a href=\"https://wptavern.com/polyglots-team-experiences-record-annual-growth-expands-wordpress-reach-to-millions-with-new-translations\" rel=\"noopener noreferrer\" target=\"_blank\">fueling progress on translation projects</a>.</p>\n<p>Accessibility contributors proposed the idea at a meeting two weeks ago after discussing the team’s desire to have more representation at WordCamp contributor days. WordCamp Europe 2019 had a strong contingency of accessibility contributors, but being present on the ground in Berlin was not an option for the vast majority of the team.</p>\n<p>“I heard different people saying that this Contributor Day was extremely useful, because they had the opportunity to talk in person and exchange ideas with a lot of other people,” Stefano Minoia said. “This is really good: if we want to push forward a project like WordPress, it’s extremely important to have the opportunity of working together at least once a year in person.”</p>\n<p>Due to the relatively small size of the team and the expense associated with traveling to larger WordCamps, accessibility contributors do not often have the opportunity for in-person collaboration. A remote contributor day focused on accessibility was proposed as an alternative.</p>\n<p>“We’re a small group with very little sponsorship,” Joe Dolson said during the initial discussion. “I don’t go to most WordCamps anymore, because the time and expense is just too great for me. I’ll probably go to my local WordCamp only, this year, if I have the time.”</p>\n<p>Due to the nature of the work, Dolson anticipates the team may face some challenges in working around some of the constraints of collaborating through a virtual event.</p>\n<p>“There are some tasks that work really well as remote contributor days; others are harder,” he said. “I’ve personally found it difficult to do accessibility contributor sharing remotely.”</p>\n<p>A virtual contributor day could be helpful for some basic things like teaching new contributors how to use Trac, updating the handbook and documentation, and organizing sprints for jumpstarting larger tasks. There is no shortage of accessibility projects to work on, with the new block directory in the admin slated for this year, some major changes needed to <a href=\"https://docs.google.com/document/d/1KiTigFSgxKTTPTKZ43K7BUP50OSqrUUQ_OZYXdIB7oU/edit#heading=h.7pmszdlkigr5\" rel=\"noopener noreferrer\" target=\"_blank\">improve navigation to Gutenberg’s advanced settings block sidebar</a>, and more general Gutenberg issues.</p>\n<p>One development that is working in the team’s favor is that Slack has improved the screen reader experience in the <a href=\"https://slackhq.com/introducing-a-more-efficient-slack-desktop-experience\" rel=\"noopener noreferrer\" target=\"_blank\">most recent update</a>. Using threads was previously discouraged during accessibility team discussions due to their lack of navigability. Keyboard accessibility for getting around Slack should now be more streamlined than previous versions. This should help to improve remote collaboration for the accessibility team. Users can press CMD + ? to launch the list of <a href=\"http://The screen reader experience has been updated\" rel=\"noopener noreferrer\" target=\"_blank\">available keyboard shortcuts</a> in Slack.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">All you need to get around Slack now is:<br />• F6 to cycle through the UI<br />• TAB to navigate through focusable elements<br />• UP/DOWN to navigate through lists</p>\n<p>And if you feel adventurous LEFT/RIGHT keys to navigate between the message list & threads.<a href=\"https://t.co/ir2I52ZBFI\">https://t.co/ir2I52ZBFI</a> <a href=\"https://t.co/hNM1bHutfo\">https://t.co/hNM1bHutfo</a></p>\n<p>— George Zamfir (@georgezamfir) <a href=\"https://twitter.com/georgezamfir/status/1154367220321071104?ref_src=twsrc%5Etfw\">July 25, 2019</a></p></blockquote>\n<p></p>\n<p>As a first step towards organizing a 24-hour virtual event, WordPress’ accessibility team is working to put together a team of 10 or more people to lead the effort. Organizers will then determine the scope of the project, define the goals of the event, set a timeline, and begin the call for speakers and local meetups.</p>\n<p>“The scope of the day can change based on the team,” Dolson said. “If we can’t do 24 hours, that’s fine, but the team has to come first.”</p>\n<p>Anyone interested to help organize the event can sign up on the project’s public <a href=\"https://docs.google.com/spreadsheets/d/1xNbFKhGhTL3HNH7YkRVEtyI6e51QrJQIFgIPJkv2spM/edit?usp=sharing\" rel=\"noopener noreferrer\" target=\"_blank\">spreadsheet</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 29 Jul 2019 19:17:50 +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:58:\"WPTavern: WordCamp US 2019 to Offer Free On-Site Childcare\";s:7:\"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=91932\";s:7:\"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://wptavern.com/wordcamp-us-2019-to-offer-free-on-site-childcare\";s: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:2986:\"<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/07/Screen-Shot-2019-07-26-at-7.23.15-PM.png?ssl=1\"><img /></a>photo credit: <a href=\"https://unsplash.com/photos/1zR3WNSTnvY\">Aaron Burden</a>\n<p>WordCamp US <a href=\"https://2019.us.wordcamp.org/child-care/\" rel=\"noopener noreferrer\" target=\"_blank\">announced</a> today that the event will be offering free on-site childcare for children aged 6 weeks to 12 years old. Organizers have contracted <a href=\"https://www.ahelpinghandevents.com/\" rel=\"noopener noreferrer\" target=\"_blank\">A Helping Hand</a>, a licensed conference childcare service company based in Virginia Beach, VA, to provide childcare for all three days, with flexible drop off and pick up throughout the day as necessary.</p>\n<p>When WCUS tickets went on sale in May, parents who registered had the option to indicate whether they would be interested in on-site childcare during the conference, as organizers considered different childcare options. This is the first time WordCamp US has offered it as part of the event. WordCamp Europe has included childcare for years and a handful of other camps have also had it available in a varying capacities, including WordCamp Nordic, WordCamp Pittsburgh, and WordCamp Vienna.</p>\n<p>Parents interested in using this service at WordCamp US will need to <a href=\"https://2019.us.wordcamp.org/tickets/\" rel=\"noopener noreferrer\" target=\"_blank\">pre-register</a> by selecting a “Parent with Kids ticket.” Registrants will receive an email with a pre-registration link to complete the signup process on the childcare provider’s website. Both lunch and snacks will be provided, so parents will not be required to pick their kids up for lunch.</p>\n<p>The availability of childcare makes it possible for single parents to attend and speak at events. It can also be helpful for parents with small children who are unable to be separated from their caregivers for long periods of time. With WordCamp US opting to provide childcare at this year’s event, it’s clear that this is a growing trend to help promote diversity at WordPress conferences.</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>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 27 Jul 2019 01:11: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: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:65:\"WPTavern: Sound Off! How Has ManagedWP Weathered the Acquisition?\";s:7:\"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=91934\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://wptavern.com/sound-off-how-has-managedwp-weathered-the-acquisition\";s: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:2821:\"<p>Back in September of 2016, <a href=\"https://wptavern.com/godaddy-acquires-wordpress-site-management-service-managewp\">GoDaddy acquired ManageWP</a>. What was odd about the acquisition was the <a href=\"https://www.facebook.com/groups/advancedwp/permalink/1234125919982953/\">amount of backlash</a> that was generated by ManageWP customers. </p>\n\n\n\n<p>While most were happy for Vladimir Prelovac, founder of ManageWP, many customers worried about GoDaddy’s reputation, unsatisfactory service, and how such a great service would fit into GoDaddy without changing much in the process. </p>\n\n\n\n<p>Nearly three years later, Prelovac is no longer with the company as he quietly left soon after the acquisition. I reached out on Twitter to ManageWP customers who stayed with the service through the transition and asked if they’re pleased with their service and if it has improved. Here are a few of the responses I received.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">I think it’s gotten a bit better (to my surprise). I run into failures less often.</p>— Benjamin Heller (@BenjamminHeller) <a href=\"https://twitter.com/BenjamminHeller/status/1154631493865463808?ref_src=twsrc%5Etfw\">July 26, 2019</a></blockquote>\n</div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">No difference, still fantastic</p>— Richard Buff (@richardbuff) <a href=\"https://twitter.com/richardbuff/status/1154712831675252736?ref_src=twsrc%5Etfw\">July 26, 2019</a></blockquote>\n</div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Haven\'t really noticed any difference</p>— Darren Pinder (@dmpinder) <a href=\"https://twitter.com/dmpinder/status/1154658228552294401?ref_src=twsrc%5Etfw\">July 26, 2019</a></blockquote>\n</div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Personally it’s been about the same for me. No features really added that make my job as a developer/site maintainer easier but none have been taken away either and pricing hasn’t increased for no reason. <br /><br />I wish they would work on the web app more. It’s sluggish <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f615.png\" alt=\"😕\" class=\"wp-smiley\" /></p>— Daron Spence <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f339.png\" alt=\"🌹\" class=\"wp-smiley\" /> (@DaronSpence) <a href=\"https://twitter.com/DaronSpence/status/1154559862447079424?ref_src=twsrc%5Etfw\">July 26, 2019</a></blockquote>\n</div>\n\n\n\n<p>If you use ManageWP and have been a customer since the acquisition, let us know in the comments about how the service has evolved. Have you noticed any significant changes? </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 Jul 2019 21:30:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:99:\"WPTavern: WordCamp Central America Organizers Prepare Proposal for 2020 Event in Managua, Nicaragua\";s:7:\"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=90739\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:109:\"https://wptavern.com/wordcamp-central-america-organizers-prepare-proposal-for-2020-event-in-managua-nicaragua\";s: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:4109:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/06/Managua-Nicaragua.png?ssl=1\"><img /></a>Managua, Nicaragua – image credit: <a href=\"https://costarica.org/nicaragua/managua/\">CostaRica.org</a></p>\n<p>WordCamp Europe’s continuing success has inspired other parts of the WordPress world to work towards getting their own regional camps off the ground. With a little help from WCEU mentors and inspiration from WordCamp Nordic’s proposal, WordCamp Asia is now officially on the schedule for <a href=\"https://wptavern.com/wordcamp-asia-set-for-february-21-23-2020-in-bangkok-thailand\" rel=\"noopener noreferrer\" target=\"_blank\">February 21-23, 2020, in Bangkok, Thailand</a>. WordCamp Central America is on deck to be the next new regional WordCamp with a proposal targeting 2020 for an inaugural event in Managua, Nicaragua.</p>\n<p>Members of the Central American community began discussing the possibility of a larger event at the most recent <a href=\"https://2019.managua.wordcamp.org/\" rel=\"noopener noreferrer\" target=\"_blank\">WordCamp Managua 2019</a>. For the past five years, Central America has been home to a growing number of local WordPress communities, with 12 meetups across five countries and a total of more than 4,000 participants as of July 2019. Meetup organizers have hosted more than 230 events since 2014, averaging four events per month.</p>\n<p>In the working <a href=\"https://docs.google.com/document/d/1qa_-bHMtTY1JTwHxxa28Xutg2vpaB4A7A2J9t4pXkDs/edit\" rel=\"noopener noreferrer\" target=\"_blank\">proposal</a>, a document that was forked from the Nordic and Asian WordCamp proposals, organizers outlined why the timing is right for a regional camp in Central America:</p>\n<blockquote><p>The local WordPress communities have also experienced an exponential growth. In the last five years the local WordPress Meetup groups have increased fivefold. Moreover, the collaboration between the Central American communities is more active than ever; sharing experiences and resources, members attending events in neighboring countries, giving talks and volunteering in WordCamps.</p>\n<p>This can be explained not only by the relative closeness of our countries, but also by the shared culture, values and identity of the Central American people.</p>\n<p>We believe that hosting a Central American WordCamp will further strengthen the bonds between the local communities and give birth to new initiatives and collaborations between the local WordPress Meetup groups.</p></blockquote>\n<p>San José, Costa Rica, has the largest local WordPress community with more than 2,000 meetup members and 750 attendees at recent WordCamps. Managua, Nicaragua, the second largest community, was selected as the first host city due to its central location, direct flights from all major cities in the region, and wide availability of bus services. It is also one of the most affordable capital cities in the region and does not require visas for citizens of other Central American countries.</p>\n<p>Organizers are planning a three-day event, beginning with Contributor Day, with four tracks during the main conference days. They are eyeing early October 2020 to avoid conflicts with other WordCamps that are frequently attended by the local community.</p>\n<p>WordCamp Central America’s proposal has not yet been officially submitted but if it is approved, the event would be a strong addition to the region’s growing technology sector. It also has the potential to expand and amalgamate the local communities through shared knowledge and experience.</p>\n<p>If you want to get involved, check out the <a href=\"https://docs.google.com/document/d/1qa_-bHMtTY1JTwHxxa28Xutg2vpaB4A7A2J9t4pXkDs/edit?usp=sharing\" rel=\"noopener noreferrer\" target=\"_blank\">proposal</a> in progress and <a href=\"https://join.slack.com/t/wpcentroamerica/shared_invite/enQtNjQ4MzYwMzEzNjAzLTA4NDk4NzE5ZDNiZjlkYmYyN2Q5ODczMjhlYzVkNjkzZTQ0OGMzOTdmYWZlYTgzNWJhMDlkY2M5MTAwZTg0MTk\" rel=\"noopener noreferrer\" target=\"_blank\">join the dedicated Slack workspace</a> to participate in discussions.</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 Jul 2019 18:46: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: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:53:\"WPTavern: WP Super Cache 1.6.9 Patches Security Issue\";s:7:\"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=91905\";s:7:\"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/wp-super-cache-1-6-9-patches-security-issue\";s: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:1027:\"<p>There’s a new release of <a href=\"https://wordpress.org/plugins/wp-super-cache/#developers\">WP Super Cache (1.6.9) available</a> that <a href=\"https://odd.blog/2019/07/25/wp-super-cache-1-6-9-security-update/\">patches a security issue</a> discovered in the debug log. The vulnerability can only be exploited if users have debugging enabled. </p>\n\n\n\n<p>It’s highly recommended that all users upgrade to 1.6.9 to patch the security issue. Details of the vulnerability will be published after users have had time to upgrade. In addition to patching the security issue, this version also improves the debug log by hiding data such as the ABSPATH directory of the WordPress install and login cookies.</p>\n\n\n\n<p>“Unfortunately in the past users have copied the log file data into forum posts. A warning message has been added asking the site owner not to publish the debug log,” Donncha Ó Caoimh said. </p>\n\n\n\n<p>Also worth noting is that after updating to 1.6.9, existing debug logs will be deleted. </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 Jul 2019 00:25: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: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: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:87:\"WPTavern: Learn How to Build a Headless WordPress App with WPCasts’ Free Crash Course\";s:7:\"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=91867\";s:7:\"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/learn-how-to-build-a-headless-wordpress-app-with-wpcasts-free-crash-course\";s: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:4217:\"<p><a href=\"https://twitter.com/_WPCasts_tv_\" rel=\"noopener noreferrer\" target=\"_blank\">Alex Young</a>, creator of the <a href=\"https://wpcasts.tv/\" rel=\"noopener noreferrer\" target=\"_blank\">WPCasts</a> video tutorials site, has published a free crash course that offers a brief introduction to using WordPress as a headless CMS. The <a href=\"https://www.youtube.com/watch?v=9KGuI0UmpMw\" rel=\"noopener noreferrer\" target=\"_blank\">28-minute tutorial</a> covers the basics of setting up a bare bones React application that uses WPGraphQL to query ACF data.</p>\n<p>Young begins by installing four plugins: <a href=\"https://github.com/wp-graphql/wp-graphql\" rel=\"noopener noreferrer\" target=\"_blank\">WPGraphQL</a>, <a href=\"https://github.com/wp-graphql/wp-graphiql\" rel=\"noopener noreferrer\" target=\"_blank\">WPGraphiQL</a>, <a href=\"https://wordpress.org/plugins/advanced-custom-fields/\" rel=\"noopener noreferrer\" target=\"_blank\">Advanced Custom Fields</a>, and <a href=\"https://github.com/wp-graphql/wp-graphql-acf\" rel=\"noopener noreferrer\" target=\"_blank\">WPGraphQL for ACF</a>. He demonstrates how to use WPGraphiQL, which provides a GraphiQL IDE inside the WordPress admin, to test GraphQL queries before adding them to the app and check to ensure ACF data is being queried.</p>\n<p>Young gave a walkthrough of installing <a href=\"https://github.com/facebook/create-react-app\" rel=\"noopener noreferrer\" target=\"_blank\">Create React App</a> to quickly get a simple app up and running. When <a href=\"https://www.reddit.com/r/Wordpress/comments/chap8d/i_made_a_crash_course_on_headless_wordpress_with/eurfkrr/\" rel=\"noopener noreferrer\" target=\"_blank\">asked on Reddit</a> why he didn’t use Next.js or Gatsby, he said he just wanted to present the concept with something that might already be familiar to developers.</p>\n<p>“If I were going to launch this into production I would use Gatsby,” he said. “In this tutorial I used CRA since it’s a very simple install and I figured most people have used it before. I’ll eventually do a more in-depth and real-world example in the future. But I hope this video helps people understand the basic concept of using WP as a Headless CMS.”</p>\n<p>Young has produced 18 videos since launching <a href=\"https://www.youtube.com/channel/UC8eV_x9GaQhcoL4rexOJpXg\" rel=\"noopener noreferrer\" target=\"_blank\">WPCasts on YouTube</a> in March 2019. Although the channel has a corresponding website with more videos available for monthly and yearly subscribers, Young said he thinks it is important to release some introductory content for free.</p>\n<p>“I am a self-taught developer who relied heavily on YouTube, blogs, and individual developers creating free learning material (Chris Coyier, Wes Bos, etc.),” he said. “So by creating free content, I feel like I can help developers who are just starting out and need those resources just like I did.”</p>\n<p>Young’s day job at <a href=\"https://www.clearlink.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Clearlink</a> involves managing about approximately 20 WordPress sites with different purposes and features. He said he hopes to move these sites to a headless setup over the next few years.</p>\n<p>His WPCasts project is still very new but Young said he has received helpful feedback from the community that he is incorporating into future videos. The headless WordPress crash course tutorial seemed to hit at the right time when these setups are gaining popularity. His tutorial has been enthusiastically received, passing 600 views on YouTube in less than 24 hours.</p>\n<p>“I feel like Headless WordPress is the future of WP development,” Young said. “With powerful frameworks like Gatsby and Next, we have the best of both worlds – a fast and extendible frontend, and a CMS that has proven itself year after year.</p>\n<p>“With tools like WPGraphQL, ACF, and others, WordPress will be my tool of choice for the foreseeable future. I hope that the tutorials I’ve made and future tutorials will help others see the power of WordPress and break the misconception that WordPress is ‘just a blogging platform.\'”</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:\"Thu, 25 Jul 2019 20:07: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:8;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"WPTavern: WPWeekly Episode 361 – Introduction to the IndieWeb With David Shanske\";s:7:\"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=91889&preview=true&preview_id=91889\";s:7:\"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/wpweekly-episode-361-introduction-to-the-indieweb-with-david-shanske\";s: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:1793:\"<p>In this episode, <a href=\"http://jjj.me\">John James Jacoby</a> and I are joined by <a href=\"https://david.shanske.com/\">David Shanske</a>. David introduces us to a set of philosophies known as the IndieWeb, explains how it’s different from the Open Web, and how he’s been involved in the community. We discuss tools that help people own their data while still being able to take advantage of the benefits that social networks offer. We also talk about WordPress’ role and how capable it is out-of-the-box for participating in the IndieWeb.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://brid.gy/\">Bridgy</a> connects individual sites with social networks</p>\n<p><a href=\"https://indieweb.org/\">IndieWeb Wiki</a></p>\n<p><a href=\"https://indieweb.org/IndieWebCamps\">IndieWebCamps</a></p>\n<p><a href=\"https://wordpress.org/plugins/indieweb/\">IndieWeb WordPress Plugin</a></p>\n<p><a href=\"https://codex.wordpress.org/Defining_Relationships_with_XFN\">WordPress XFN</a></p>\n<p><a href=\"https://archive.org/details/indieweb-summit-2019-wordpress\">IndieWebifying Your WordPress – IndieWeb Summit 2019</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, July 31st 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 #361:</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, 25 Jul 2019 19:52: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:\"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: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:46:\"Donncha: WP Super Cache 1.6.9: security 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://odd.blog/?p=89502593\";s:7:\"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:65:\"https://odd.blog/2019/07/25/wp-super-cache-1-6-9-security-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1776:\"<p><a href=\"https://wordpress.org/plugins/wp-super-cache/\">WP Super Cache</a> is a full page caching plugin for WordPress.</p>\n\n\n\n<p>Version 1.6.9 has just been released and is a required upgrade for all users as it resolves a security issue in the debug log. The issue can only be exploited if debugging is enabled in the plugin which will not be the case for almost all users.</p>\n\n\n\n<p>The debug log is usually only enabled temporarily if a site owner is debugging a caching problem and isn’t something that should be left on permanently as it will slow down a site.</p>\n\n\n\n<p>If there is an existing debug log it will be deleted after updating the plugin.</p>\n\n\n\n<p>This release also improves the debug log by hiding sensitive data such as the ABSPATH directory of the WordPress install and login cookies. Unfortunately in the past users have copied the log file data into forum posts. A warning message has been added asking the site owner not to publish the debug log.</p>\n\n\n\n<p>Details of the security issue will be added to this post in time to allow sites to update their plugin.</p>\n\n<p><strong>Related Posts</strong><ul><li> <a href=\"https://odd.blog/2013/10/23/wp-super-cache-1-4/\" rel=\"bookmark\" title=\"Permanent Link: WP Super Cache 1.4\">WP Super Cache 1.4</a></li><li> <a href=\"https://odd.blog/2008/10/24/wp-super-cache-084-the-garbage-collector/\" rel=\"bookmark\" title=\"Permanent Link: WP Super Cache 0.8.4, the garbage collector\">WP Super Cache 0.8.4, the garbage collector</a></li><li> <a href=\"https://odd.blog/2009/01/09/wp-super-cache-087/\" rel=\"bookmark\" title=\"Permanent Link: WP Super Cache 0.8.7\">WP Super Cache 0.8.7</a></li></ul></p>\n<p><a href=\"https://odd.blog/2019/07/25/wp-super-cache-1-6-9-security-update/\" rel=\"nofollow\">Source</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 Jul 2019 12:57: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:7:\"Donncha\";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:86:\"WPTavern: WPCampus 2019 to Livestream Sessions Thursday, July 25 – Saturday, July 27\";s:7:\"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=91843\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://wptavern.com/wpcampus-2019-to-livestream-sessions-thursday-july-25-saturday-july-27\";s: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:1674:\"<p><a href=\"https://2019.wpcampus.org/\" rel=\"noopener noreferrer\" target=\"_blank\">WPCampus 2019</a> kicks off tomorrow at Lewis & Clark College in Portland, Oregon, for its fourth year running. The niche WordPress conference is focused on accessibility and WordPress in higher education. All sessions, with the exception of the workshops, will be live streamed with captioning, beginning at 2PM PDT on Thursday, July 25.</p>\n<p>The event includes a mix of general development topics, such as building themes with WP Rig 2.0, managing custom plugin deployments, and building custom Gutenberg blocks with ACF. It also features a variety of sessions on using multisite in higher education, along with topics related to university website design and management, such as mobile accessibility, information security, and using WordPress for individual digital asset management. Check out the full <a href=\"https://2019.wpcampus.org/schedule/\" rel=\"noopener noreferrer\" target=\"_blank\">schedule</a> for more detailed descriptions of sessions.</p>\n<p>It’s important to note that the schedule references sessions in Pacific Daylight Time. However, a timezone selector on the schedule page will allow you to see the each session’s corresponding time for your location. Visit <a href=\"https://2019.wpcampus.org/watch/\" rel=\"noopener noreferrer\" target=\"_blank\">2019.wpcampus.org/watch</a> on July 25th to watch live for free. Those watching remotely can also jump in on the <a href=\"https://twitter.com/hashtag/WPCampus?src=hashtag_click\" rel=\"noopener noreferrer\" target=\"_blank\">#WPCampus</a> Twitter hashtag to engage with others attending and watching the event.</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 Jul 2019 02:21:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:69:\"WPTavern: WPGraphQL for Advanced Custom Fields Now Available for Free\";s:7:\"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=91804\";s:7:\"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/wpgraphql-for-advanced-custom-fields-now-available-for-free\";s: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:5684:\"<p>The <a href=\"https://www.wpgraphql.com/acf/\" rel=\"noopener noreferrer\" target=\"_blank\">WPGraphQL for Advanced Custom Fields</a> plugin is <a href=\"https://www.wpgraphql.com/2019/07/23/re-introducing-wpgraphql-for-acf/\" rel=\"noopener noreferrer\" target=\"_blank\">now available for free</a> on GitHub after a short time as a commercial product. Jason Bahl, creator and maintainer of the <a href=\"https://www.wpgraphql.com\" rel=\"noopener noreferrer\" target=\"_blank\">WPGraphQL</a> project, released the extension in April 2019 with a pricing tier ranging from $49/annually (for one site’s support) to lifetime subscription options.</p>\n<p>Bahl created the plugin with the hopes of generating enough revenue to one day fund his efforts working on WPGraphQL full-time. Now that he has <a href=\"https://wptavern.com/jason-bahl-joins-the-gatsby-team-to-work-on-wpgraphql-full-time\" rel=\"noopener noreferrer\" target=\"_blank\">joined the Gatsby team to work full time on WPGraphQL</a>, he has the time and resources to make the ACF extension available for free.</p>\n<p>The plugin allows developers to interact with their ACF data using GraphQL queries. It works with both the free and pro versions of <a href=\"https://www.advancedcustomfields.com/\" rel=\"noopener noreferrer\" target=\"_blank\">ACF</a> and WPGraphQL v0.3.2 or newer.</p>\n<p>“When I first started working on the core WPGraphQL plugin, I thought it would be awesome to have meta fields automatically exposed to the WPGraphQL Schema,” Bahl said.</p>\n<p>“Since WordPress core doesn’t have a fields API, developers turn to plugins such as Advanced Custom Fields, Metabox.io, CMB2, Carbon Fields, Field Manager, or one of the many other metabox solutions for WordPress.”</p>\n<p>ACF is by far the most popular among these solutions with more than a million active installs. (Metabox.io has roughly half the user base with 400,000+ installs and CMB2 is the next most popular at an estimated 200,000 installs). Bahl started working towards supporting ACF a few years ago but didn’t have a production use case for it and left it untouched until demand for the plugin increased.</p>\n<p>“In the latter half of 2018 and early 2019 I got many requests via Slack, Twitter, and Github for a quality ACF extension, and I also noticed the top search terms on the WPGraphQL website were ‘ACF’ and ‘Advanced Custom Fields,’ he said.</p>\n<p>“I initially wanted to release the plugin as a free plugin, but there’s only so much I can do for free. Maintaining WPGraphQL on the side of my full-time job was already time consuming and I thought if I was making income I could support it better.”</p>\n<p>Since the plugin’s initial release on April 19, Bahl reports there have been 85 licenses purchased, which enabled him to devote more time to the project. Now that he is no longer attempting to self-sustain his projects, he and the Gatsby team decided the best course of action would be to make it free so that more of the community can benefit from the project. He anticipates being able to provide the same level of support since the plugin’s launch with more of his time allocated to focusing on the WPGraphQL ecosystem.</p>\n<p>Performance is the most common reason that necessitates developers using ACF to implement WPGraphQL on their sites. It offers staggering performance gains over using the WP REST API to query ACF data, as shown in the example below:</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Good call. . .I need to market the performance side better. . .here\'s an example of a REST API call using ACF to REST API and using WPGraphQL for ACF to select specific fields. </p>\n<p>*REST:* 24.8 KB, 1.22s<br />*GraphQL*: 1010 b, 377ms (not even 1kb payload!!!) <a href=\"https://t.co/0qS52bvlEY\">pic.twitter.com/0qS52bvlEY</a></p>\n<p>— GraphQL for WordPress (@wpgraphql) <a href=\"https://twitter.com/wpgraphql/status/1119309324646359040?ref_src=twsrc%5Etfw\">April 19, 2019</a></p></blockquote>\n<p></p>\n<p>“When developers try to build “headless” applications with WordPress, they often run into pain points with the WP REST API, and they turn to WPGraphQL to ease those pains,” Bahl said.</p>\n<p>“Many developers were registering ACF fields to their WPGraphQL Schema by hand, and that can be a tedious process if you have hundreds of fields. A plugin like WPGraphQL for Advanced Custom Fields saves developers a lot of development time, and allows them to take advantage of the features of GraphQL that make headless WordPress development a pleasant experience.”</p>\n<p>WPGraphQL for Advanced Custom Fields can be found on <a href=\"https://github.com/wp-graphql/wp-graphql-acf\" rel=\"noopener noreferrer\" target=\"_blank\">GitHub</a> and support and feature requests are handled through <a href=\"https://github.com/wp-graphql/wp-graphql-acf/issues\" rel=\"noopener noreferrer\" target=\"_blank\">Github issues</a>. The plugin is also <a href=\"https://packagist.org/packages/wp-graphql/wp-graphql-acf\" rel=\"noopener noreferrer\" target=\"_blank\">available on packagist.org</a> for those who want to include it in projects using Composer.</p>\n<p>Developers with general questions can join the <a href=\"https://wpgql-slack.herokuapp.com/\" rel=\"noopener noreferrer\" target=\"_blank\">WPGraphQL Slack workspace</a> or the project’s online community on <a href=\"https://spectrum.chat/wpgraphql\" rel=\"noopener noreferrer\" target=\"_blank\">Spectrum</a>. Bahl is active in both communities, helping developers find answers to their questions about using WPGraphQL to build headless applications.</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 Jul 2019 18:25:40 +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:62:\"HeroPress: Becoming A Successful WordPress Freelancer In India\";s:7:\"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=2938\";s:7:\"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:176:\"https://heropress.com/essays/becoming-a-successful-wordpress-freelancer-in-india/#utm_source=rss&utm_medium=rss&utm_campaign=becoming-a-successful-wordpress-freelancer-in-india\";s: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:11047:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2020/07/072419-min-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: Sometimes the best thing you can do is say no, even if it means that you have to lose money.\" /><h3>The Back Story</h3>\n<p>In the final year of my Engineering degree, my Head of Department summoned my friend and me to his office. Both of us were not the highest scoring students but we were the most active ones. For our major project rather than building just anything, he wanted us to build a PBX software that our college needed and was already paying for to an outside vendor.</p>\n<p>It was a difficult one, we didn’t know it was possible to make Phone calls from the browser. My friend and I spent the next 3 months researching and building the software. When we were about to deploy it, we realize that the software won’t talk to the driver of the PRI card. Only 15 days were left for the final exams and if we didn’t build the project on time, it would never see the light of the sun.</p>\n<p>We spend every waking hour on the software for the next 7 days and made it work. When it worked, our HOD used that software to call the Chairman of college, he congratulated us and we got the best project award for that. It was the moment when I said to myself, if I can pull this off, I can do anything and promised myself to do something significant in the world of computers.</p>\n<h3>Hello WordPress</h3>\n<p>It was 2012, the time when Web was taking over the World, desktop applications were being replaced by websites, and HTML, CSS and jQuery were becoming more and more powerful.</p>\n<p>I would spend hours and hours sitting in front of my desktop learning and playing with these technologies. My parents used to think that I was always wasting my time all day.</p>\n<blockquote><p>My dad was convinced that I’d join him in his business because I wasn’t good enough for anything else.</p></blockquote>\n<p>One day, I saw a post of my Facebook Friend. He wanted someone to build a website for him. I contacted him and gave him an estimate, he agreed and that was my first web project. The project was completed successfully and I got the payment. My confidence was in the sky.</p>\n<p>Fortunately, I got another project. This time it was a big one, an ecommerce website. I spent 4 months working on that and completed it successfully but I realized it was a lot of work and the pay was not good enough.</p>\n<p>I didn’t know WordPress back then but I knew there would be something that would make developing websites easier. A few months later when I checked WordPress, I was blown away to see the capabilities of this CMS. Adding features like Login with Facebook, Shopping cart, Contact Form, Captcha would only take a few minutes. The things which would take a day or even a week were as simple as installing a plugin and configuring the settings.</p>\n<p>I realized that the e-commerce project that I built on core PHP could have been done within 15 days if I had chosen WordPress. It was a win-win for me as my clients. Since then, WordPress is my de facto choice for all web projects.</p>\n<h3>About Today..</h3>\n<p>I’m an Independent WordPress contractor. I work on designing and implementing web pages, themes and plugins for WordPress, helping clients to troubleshoot and fix their WordPress websites, designing themes that are as functional as they are beautiful, working with startups to quickly set up their MVP, and developing websites for corporates which reflect their brand.</p>\n<blockquote><p>I’m leading a happy and balanced life. I’m content, I have a great set of customers. I have the liberty to change my working hours to manage time for my hobbies and family.</p></blockquote>\n<p>Sure I don’t make as much money as a CEO but I do have a balanced and happy life. And it does sound exciting but the path wasn’t all easy. In this article, I try to give my best advice which I learned the hard way and I so much wish someone had told me about all this when I was getting started.</p>\n<h3>1. Be a specialist</h3>\n<p>General Physicians don’t make as much money as specialists make. The world is huge, even a small field like Software Engineering is too big that you can’t master everything in it.</p>\n<p>You have to be the greatest in your field if you want to charge a premium amount. You need to be someone who has encountered and fixed every possible problem in that field. You should know your thing like the back of your hand. AND to be able to get there you need to find your thing and be very specific about it. You need to say NO to everything else.</p>\n<p>It sounds obvious and easy, right? It isn’t. I can bet that 90% of the people out there are not doing this. I’d say It is not their fault. We, humans, are curious creatures and we get bored easily, that is why when we see a new shiny technology we want to learn that.</p>\n<p>This is in our nature but our nature is keeping us from achieving greatness. You want to be great at something, be ready to embrace boredom and put in thousands of hours of practice.</p>\n<p>“Pick your niche and say no to everything else”</p>\n<h3>2. Understand that not every job is for you.</h3>\n<p>Someone on amazon is selling 1500 Live Ladybugs and what shocks me more is the fact that someone is even buying them. But, we shouldn’t be all judgemental because everything has a buyer and everything has a seller.</p>\n<p><a href=\"https://s20094.pcdn.co/wp-content/uploads/2020/07/ladybugs.png\"><img /></a></p>\n<p>When I had started freelancing on Upwork, I’d also get in the race-to-the-bottom along with the other freelancers who were willing to work for literally $3/h. I’d think that it will never be possible for me to get away from this race and making good money.</p>\n<p>It took me years, I had to work with many bad client projects for peanuts to realize that I’m a different product and I need a different buyer.</p>\n<p>I increased my rates 8 times and dedicated myself to give the best possible service I can to my clients. What happened next shook my whole belief system. Not only people were paying me the premium amount, I was getting more customers. As you go up there is lesser competition.</p>\n<h3>3. Not everyone who gives you money is your client. Some client might suck the joy out of work. Stay far away from them.</h3>\n<p>Let’s be honest, there are some people that we don’t like and there are some people who don’t like us. If you were in a job, there would be no choice but to bear with the irrational and arrogant boss of yours but thank god, you are a freelancer. You have the liberty to choose the people you want to work with.</p>\n<p>Sometimes the best thing you can do is say NO even if that means you have to lose money.</p>\n<h3>4. Know your worth and charge that much:</h3>\n<p>Imagine, if you are in a public place and a stranger comes up to you and asks you to buy his $5 bill for $1. What would you think? Most of us will not buy that $5 bill even if it is a great deal, you are getting an extra $4 in the exchange. Because we are hardwired to believe that all too-good-to-be-true deals are scams.</p>\n<p>While setting your hourly rates, it is important to make sure that you are charging a correct amount. Lowballing isn’t helpful for those clients which you want to work with. The right clients are the probably the businessmen who know that to get good work you have to spend good money and they are there to spend the money. Are you able to do the good work?</p>\n<h3>5. Experience what your client is experiencing; think what your client is thinking</h3>\n<p>I’m a web developer and I do need help from other freelancers at times to deliver my project. I hire the best freelancers on Upwork for my job and I notice everything that they do. I notice their way of sending the proposals, their way of presenting the work, their way of negotiation when I, as a client, ask for more free work.</p>\n<p>This activity will help you learn that there are so many things which you think are right in your head are so incorrect and can be so much better.</p>\n<h3>6. Don’t sell technologies, sell solutions</h3>\n<blockquote><p>“People don’t want to buy a quarter-inch drill, they want a quarter-inch hole.”<br />\nTheodore Levitt</p></blockquote>\n<p>Don’t be a React Developer, Photoshop Designer or Final Cut Pro Editor. Be a problem solver. Nobody hires a writer because he can use MS Word, a writer is hired because he can write persuasive writing. The copy that can convert visitors to customers. You need the ability to sell solutions, not technology.</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: Becoming A Successful WordPress Freelancer In India\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Becoming%20A%20Successful%20WordPress%20Freelancer%20In%20India&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fbecoming-a-successful-wordpress-freelancer-in-india%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Becoming A Successful WordPress Freelancer In India\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fbecoming-a-successful-wordpress-freelancer-in-india%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%2Fbecoming-a-successful-wordpress-freelancer-in-india%2F&title=Becoming+A+Successful+WordPress+Freelancer+In+India\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Becoming A Successful WordPress Freelancer In India\"></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/becoming-a-successful-wordpress-freelancer-in-india/&media=https://heropress.com/wp-content/uploads/2020/07/072419-min-150x150.jpg&description=Becoming A Successful WordPress Freelancer In India\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Becoming A Successful WordPress Freelancer In India\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/becoming-a-successful-wordpress-freelancer-in-india/\" title=\"Becoming A Successful WordPress Freelancer In India\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/becoming-a-successful-wordpress-freelancer-in-india/\">Becoming A Successful WordPress Freelancer In India</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 Jul 2019 17:29: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:14:\"Pramod Jodhani\";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:74:\"WPTavern: WordCamp Asia Set for February 21-23, 2020, in Bangkok, Thailand\";s:7:\"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=91775\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://wptavern.com/wordcamp-asia-set-for-february-21-23-2020-in-bangkok-thailand\";s: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:2041:\"<p>The first ever <a href=\"https://2020.asia.wordcamp.org\" rel=\"noopener noreferrer\" target=\"_blank\">WordCamp Asia</a> has launched a teaser website and announced February 21-23, 2020, as the dates for the event. This will be the first regional WordCamp for the continent, which is home to 127 WordPress meetup chapters with 73,000 members across 23 countries, according to <a href=\"https://2020.asia.wordcamp.org/2019/07/19/welcome-to-wordcamp-asia/\" rel=\"noopener noreferrer\" target=\"_blank\">stats</a> from lead organizer <a href=\"https://profiles.wordpress.org/nao/\" rel=\"noopener noreferrer\" target=\"_blank\">Naoko Takano</a>. After four years in planning, and 137 WordCamps in 18 Asian countries and 52 cities, the region is finally ready to collaborate on a larger event that will bring its many diverse communities together.</p>\n<p>“We hope that this first flagship event in the region can help the WordPress and open source community to grow even further,” Takano said. “We are really excited to be working on creating a place where community members can learn from and get inspired by each other.”</p>\n<p>The organizing team has a vision to make the WordCamp welcoming, nurturing, and experimental. They are working to make it an inclusive, affordable, and interactive event. WordCamp Asia’s three-day program will begin with Contributor Day, followed by two days of presentations with an estimated 1,000 attendees.</p>\n<p>Organizers have already put out the <a href=\"https://2020.asia.wordcamp.org/2019/07/23/call-for-media-partners/\" rel=\"noopener noreferrer\" target=\"_blank\">call for media partners</a>, including magazines, newspapers, TV stations, radio stations, bloggers, influencers, WordPress enthusiasts and freelance journalists. The call for speakers will be open until mid-November 2019. Check out WordCamp Asia’s <a href=\"https://2020.asia.wordcamp.org/roadmap/\" rel=\"noopener noreferrer\" target=\"_blank\">roadmap</a> to get an idea of what to expect as the preparations continue.</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 Jul 2019 00:59:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:79:\"WPTavern: New Experimental Plugin Brings the Block Editor to WordPress Comments\";s:7:\"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=91762\";s:7:\"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/new-experimental-plugin-brings-the-block-editor-to-wordpress-comments\";s: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:4021:\"<p><a href=\"https://tomjn.com/2019/07/20/gutenberg-comments/\" rel=\"noopener noreferrer\" target=\"_blank\">Block Comments</a> is a new experimental plugin from <a href=\"https://tomjn.com\" rel=\"noopener noreferrer\" target=\"_blank\">Tom Nowell</a> that replaces WordPress’ default comment form with a trimmed down version of the block editor. Nowell gave a presentation at WordCamp Europe 2019 about <a href=\"https://2019.europe.wordcamp.org/session/using-blocks-outside-the-editor/\" rel=\"noopener noreferrer\" target=\"_blank\">using blocks outside the editor</a>, including on the frontend. Block Comments is one example he brought to life using the block list component along with some wrapper components.</p>\n<p>The result is a comment form that offers the same UI as the WordPress editor but with a limited set of blocks appropriate for commenting and no block sidebar panel. This includes text-based and embed blocks, along with image upload via URL. It defaults to the paragraph block when the commenter clicks inside the form. Here is an example of using the block editor for a reply on the Twenty Nineteen theme:</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/07/Screen-Shot-2019-07-23-at-12.39.28-PM.png?ssl=1\"><img /></a></p>\n<p>For the most part, Block Comments should fit in with the style of the active theme, as shown below with an example using the Astrid theme. Nowell recommends users watch out for occasional clashes between the editor UI CSS and the theme’s CSS, since it is still early beta software.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/07/Screen-Shot-2019-07-23-at-12.44.17-PM.png?ssl=1\"><img /></a></p>\n<p>Incorporating the block editor into commenting could make formatting easier for commenters with more options for expressing themselves. The plugin includes blocks for lists, quotes, code, embeds, headings, pre-formatted text, and other formats, all with Gutenberg’s built in preview. Commenters can immediately see how the comment will appear without having to struggle with using the correct format tags.</p>\n<p>“I see it as a much more flexible form of those Tiny MCE visual comment forms,” Nowell said. “Except instead of just putting a toolbar on top and showing you bold and italic in-line, you can do more.”</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/07/Screen-Shot-2019-07-23-at-1.00.12-PM.png?ssl=1\"><img /></a></p>\n<p>Nowell said replies and threading work exactly the same with Block Comments enabled. The UI for the comment form is the only thing that changes, but the commenting system remains the same.</p>\n<p>Bringing the block editor to comments is not yet on WordPress’ roadmap. The UI is different from the comment forms users have become accustomed to over the years of commenting on the internet. Some commenters may find it confusing if this is their first experience with WordPress’ block editor. For those who have used WordPress 5.0+ previously, the Gutenberg-powered comment form brings a little more unity to the front and backend posting experiences.</p>\n<p>“It’s certainly not for every comment form, but I can see it being very useful in some situations, such as P2 blogs,” Nowell said. “As Gutenberg itself improves, it will too.”</p>\n<p>Block Comments is currently <a href=\"https://github.com/tomjn/block-comments\" rel=\"noopener noreferrer\" target=\"_blank\">available on GitHub</a> where users can report any issues or conflicts. It is recommended to be used with the Gutenberg plugin installed for best results. It also doesn’t play well with the Classic Editor plugin, since that plugin removes the block editor hooks and styles.</p>\n<p>I would not be surprised to see this experiment further developed for P2-powered blogs or even Jetpack comments , if the idea catches on. These avenues would provide a good testing ground for such a feature before it might be considered for WordPress core.</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 Jul 2019 20:35:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:61:\"BuddyPress: BuddyPress 4.4.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=307083\";s:7:\"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/07/buddypress-4-4-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:1228:\"<p>BuddyPress 4.4.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.4.0 release addresses two security issues:</p>\n\n\n\n<ul><li>A privilege escalation vulnerability was fixed that could allow user who is not a friend with another user to send him a group invite even though this “another user” has selected to restrict group invites from friends only (This is specific to the BP Nouveau template). Discovered by <a href=\"https://secasure.com/\">Yuvraj Dighe</a>.</li><li>An XSS vulnerability was fixed in the single Group’s RSS link meta for group names. Discovered by <a href=\"https://hackerone.com/wxy7174\">wxy7174</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.4.0 also fixes 2 bugs. For complete details, visit the <a href=\"https://codex.buddypress.org/releases/version-4-4-0/\">4.4.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:\"Tue, 23 Jul 2019 07:45:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"imath\";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:34:\"Matt: Animated WordPress Wallpaper\";s:7:\"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=49859\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://ma.tt/2019/07/animated-wordpress-wallpaper/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:729:\"<p>I didn’t realize this, but apparently MacOS has a built-in ability to show really stunning animated wallpapers, like <a href=\"https://dynamicwallpaper.club/wallpaper/j82e55k6yds\"><a href=\"https://dynamicwallpaper.club/wallpaper/j82e55k6yds\">this one created by Folletto</a></a> that subtly changes colors throughout the day in an incredibly engaging well:</p>\n\n\n\n<a href=\"https://dynamicwallpaper.club/wallpaper/j82e55k6yds\" target=\"_blank\" rel=\"noreferrer noopener\"><img /></a>\n\n\n\n<p>Check out Folletto’s blog for <a href=\"https://intenseminimalism.com/2019/dynamic-wallpapers-for-macos/\">another dynamic wallpaper and some of process behind creating it</a>. This would be awesome to have for iPhones as well.</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 Jul 2019 15:09:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:63:\"WPTavern: All-in-One WP Migration 7.0 Patches XSS Vulnerability\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=91751\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://wptavern.com/all-in-one-wp-migration-7-0-patches-xss-vulnerability\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1822:\"<p>Those who use the <a href=\"https://wordpress.org/plugins/all-in-one-wp-migration/\">All-in-One WP Migration</a> plugin are encouraged to update to version 7.0 as soon as possible as 6.97 contains an admin backend cross-site-scripting vulnerability. </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>An attacker would already have to be able to either compromise the database or gain access to a user account with high enough privileges to view the backup history, so some damage has already been done, but such an attacker could then also insert some XSS in order to compromise other admin users. </p><p>When double-clicking the backup description on the backup history overview page, in order to edit the description text, the text is not sanitized/escaped via html entities when generating the input field.</p><cite><a href=\"https://wpvulndb.com/vulnerabilities/9461\">Vulnerability Report</a></cite></blockquote>\n\n\n\n<p>Version 7.0 was released on the plugin directory about a day ago and patches the vulnerability. According to the stats on the WordPress plugin directory, All-in-One WP Migration is actively installed on more than two million sites. </p>\n\n\n\n<p>A proof of concept will be published on July 24th which gives site owners about a week to update. Unfortunately, users who view the changelog prior to updating will not be able to determine it patches a security issue due to the patch being labeled as <a href=\"https://wordpress.org/plugins/all-in-one-wp-migration/#developers\">a general fix</a>. </p>\n\n\n\n<h2>Updated July 19th</h2>\n\n\n\n<p>All-in-One WP Migration has <a href=\"https://wordpress.org/plugins/all-in-one-wp-migration/#developers\">released a new update</a> that addresses a different security issue that was introduced in 7.0. Users are strongly encouraged to update to 7.1 as soon as possible. </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 Jul 2019 21:19:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:70:\"WPTavern: WPWeekly Episode 360 – CBD and E-Commerce With Javier Cano\";s:7:\"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=91730&preview=true&preview_id=91730\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://wptavern.com/wpweekly-episode-360-cbd-and-e-commerce-with-javier-cano\";s: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:1247:\"<p>In this episode, <a href=\"http://jjj.me\">John James Jacoby</a> and I are joined by <a href=\"https://www.liquidweb.com/blog/author/jcano/\">Javier Cano</a>, Director of Marketing for Liquid Web. We discuss the challenges people are facing selling CBD products on e-commerce platforms such as Shopify and WooCommerce and what Liquid Web is doing to be an ally to the industry. We also talk about high-risk payment processors and the brick and mortar approach versus selling high-risk products online. Cano also shares his experiences from attending and speaking at recent CBD expos.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, July 24th 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 #360:</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, 18 Jul 2019 01:46:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:57:\"HeroPress: History and Future of Kids Heroes 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:56:\"https://heropress.com/?post_type=heropress-essays&p=2926\";s:7:\"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:166:\"https://heropress.com/essays/history-and-future-of-kids-heroes-in-wordpress/#utm_source=rss&utm_medium=rss&utm_campaign=history-and-future-of-kids-heroes-in-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:12579:\"<img width=\"560\" height=\"315\" src=\"https://s20094.pcdn.co/wp-content/uploads/2020/07/WordPress-and-its-surrounding-communities-have-the-opportunity-to-change-the-lives-of-kids-all-over-the-world..png\" class=\"attachment-large size-large wp-post-image\" alt=\"\" /><p>Kids events are not a new thing in the WordCamp and WordPress event space, however, the number of these events happening around the world are on the rise. Kids events focus on teaching children how to become content creators, creative thinkers, and even business owners. Numerous repeat attendees have morphed their personal blogs into businesses and these kids are only 8-13 years old. Kids events provide an opportunity for local communities to foster long term community growth. These events also offer opportunities for a more diverse event in that kids bring a new perspective to any event. WordPress and its surrounding communities have the opportunity to change the lives of kids all over the world.</p>\n<h2>History of Kids Events</h2>\n<p>The history of Kids Events is full of many Heroes who have worked tirelessly to ensure that children in our community are included in events. Most of these events happen in tandem with WordCamps, but that is not always the case. Here is the history of most of the Kids Events and the Heroes behind them.</p>\n<ul>\n<li>2010-03-06 – Kilkenny, Ireland – Sabrina Dent<a href=\"https://www.krishna.me/wordcamp-ireland-in-kilkenny-has-its-own-kids-camp/\"> https://www.krishna.me/wordcamp-ireland-in-kilkenny-has-its-own-kids-camp/</a></li>\n<li>2011-01-29 – Phoenix, AZ – Abbie Sanderson<a href=\"https://2015.dfw.wordcamp.org/2015/07/06/announcing-wordcamp-for-kids/\"> https://2015.dfw.wordcamp.org/2015/07/06/announcing-wordcamp-for-kids/</a></li>\n<li>2013-01-20 – Phoenix – Natalie MacLees<a href=\"https://2013.phoenix.wordcamp.org/schedule/sunday/\"> https://2013.phoenix.wordcamp.org/schedule/sunday/</a></li>\n<li>2013-04-06 – Miami</li>\n<li>2014-05-11 – Miami – Tammy Lister and Sarah Gooding <a href=\"https://2014.miami.wordcamp.org/wordcamp-miami-kids-workshop/\"> https://2014.miami.wordcamp.org/wordcamp-miami-kids-workshop/</a></li>\n<li>2014-01-19 – Phoenix – Bernice Lee and Andy Christian<a href=\"https://2014.phoenix.wordcamp.org/session/wordcamp-kids/\"> https://2014.phoenix.wordcamp.org/session/wordcamp-kids/</a></li>\n<li>2014-03-15 – Atlanta – Syed Balkhi, Sara Cannon, Micah Wood, and Russell Fair <a href=\"https://2014.atlanta.wordcamp.org/kidscamp-atlanta/\"> https://2014.atlanta.wordcamp.org/kidscamp-atlanta/</a></li>\n<li>2015-03-15 – St Louis – Russell Fair, Chris Koerner, Lucas Lima, Eric Juden, Michele Butcher-Jones <a href=\"https://2015.stlouis.wordcamp.org/session/kids-camp/\">https://2015.stlouis.wordcamp.org/session/kids-camp/</a></li>\n<li>2015-03-27 – Atlanta, GA – Russell Fair<a href=\"https://2015.atlanta.wordcamp.org/\"> https://2015.atlanta.wordcamp.org/</a></li>\n<li>2015-05-31 – Miami FL Nikhil V, Sarrah Vesselov, Shawn Hooper and Michele Butcher-Jones. <a href=\"https://2015.miami.wordcamp.org/wordcamp-for-kids-tickets-now-available/\">https://2015.miami.wordcamp.org/wordcamp-for-kids-tickets-now-available/</a></li>\n<li>2016-02-20 – Miami, FL – Sandy Edwards, Kimberly Lipari, Michele Butcher-Jones, Shawn Hooper, and Chris Christoff <a href=\"https://2016.miami.wordcamp.org/2016/02/05/details-on-weekend-kids-activities/#workshop\">https://2016.miami.wordcamp.org/2016/02/05/details-on-weekend-kids-activities/#workshop</a></li>\n<li>2016-09-26 – Dallas/Ft. Worth, TX – <a href=\"https://2015.dfw.wordcamp.org/2015/07/06/announcing-wordcamp-for-kids/\"> https://2015.dfw.wordcamp.org/2015/07/06/announcing-wordcamp-for-kids/</a></li>\n<li>2016-10-29 – Seattle –<a href=\"https://2016.seattle.wordcamp.org/speaker/nichole-betterley/\"> Nichole Betterley</a> –<a href=\"https://2016.seattle.wordcamp.org/session/kidscamp/\"> https://2016.seattle.wordcamp.org/session/kidscamp/</a></li>\n<li>2017-03-18 – Atlanta, GA – Sandy Edwards<a href=\"https://2017.atlanta.wordcamp.org/2017/01/28/kids-camp/\"> https://2017.atlanta.wordcamp.org/2017/01/28/kids-camp/</a></li>\n<li>2017-05-20 – Jacksonville, FL – Sandy Edwards<a href=\"https://2017.jacksonville.wordcamp.org/kidscamp/\"> https://2017.jacksonville.wordcamp.org/kidscamp/</a></li>\n<li>2017-08-21 – Austin – Sandi Batik<a href=\"https://2017.austin.wordcamp.org/kidscamp/\"> https://2017.austin.wordcamp.org/kidscamp/</a></li>\n<li>2017-11-11 – Orlando, FL – Sandy Edwards<a href=\"https://2017.orlando.wordcamp.org/kidscamp/\"> https://2017.orlando.wordcamp.org/kidscamp/</a></li>\n<li>2018-03-17 – Miami, FL – Chris Christoff, Sandy Edwards, Sam Smith, Paul Champeau, Angelica Yarde, Andrew Wikel, Josh Pollock, David Wolfpaw, Adam Warner, Brian Richards, Chris Edwards, Beka Rice, Joe Howard, Dr Nancy Richmond, Peta Bisset<a href=\"https://2018.miami.wordcamp.org/kids/\"> https://2018.miami.wordcamp.org/kids/</a></li>\n<li>2018-04-07 – Jacksonville, FL – Sandy Edwards<a href=\"https://2018.jacksonville.wordcamp.org/kidscamp/\"> https://2018.jacksonville.wordcamp.org/kidscamp/</a></li>\n<li>2018-04-13 – London, UK – Mike Little, Tom Chute, Bernhard Kau, Fred Bradley, Mathieu Sarrasin, Jessica Lyschik, Mollie Pugh <a href=\"https://2018.london.wordcamp.org/2018/04/06/introducing-the-workshop-for-children-at-wordcamp-london-2018/\">https://2018.london.wordcamp.org/2018/04/06/introducing-the-workshop-for-children-at-wordcamp-london-2018/</a></li>\n<li>2018-04-14 – Atlanta, GA – Sandy Edwards<a href=\"https://2018.atlanta.wordcamp.org/schedule/\"> https://2018.atlanta.wordcamp.org/schedule/</a></li>\n<li>2018-05-26 – Calgary, Canada – Christina Workman –<a href=\"https://2018.calgary.wordcamp.org/kidscamp/\"> https://2018.calgary.wordcamp.org/kidscamp/</a></li>\n<li>2018-07-22 – San Jose, Costa Rica – Roberto Remedios, Ana Maria Montero<a href=\"https://2018.sanjose.wordcamp.org/programa/kids-camp/\"> https://2018.sanjose.wordcamp.org/programa/kids-camp/</a></li>\n<li>2018-11-24 – Harrare, Africa – Thelma Mutete –<a href=\"https://2018.harare.wordcamp.org/2018/11/17/the-wordcamp-juniors-workshop/\"> https://2018.harare.wordcamp.org/2018/11/17/the-wordcamp-juniors-workshop/</a></li>\n<li>2018-11-10 – Orlando, FL – William Jackson, Aida Correa –<a href=\"https://www.krishna.me/wordcamp-ireland-in-kilkenny-has-its-own-kids-camp/\"> https://www.krishna.me/wordcamp-ireland-in-kilkenny-has-its-own-kids-camp/</a></li>\n<li>2019-03-07 – Nordic, Helsinki, Finland – Petya<a href=\"https://2019.nordic.wordcamp.org/contributor-day/wordpress-workshop-for-kids/\"> https://2019.nordic.wordcamp.org/contributor-day/wordpress-workshop-for-kids/</a></li>\n<li>2019-04-06 – Raleigh, NC – Sandy Edwards, Patrik Seus<a href=\"https://2019.raleigh.wordcamp.org/kidscamp/\"> https://2019.raleigh.wordcamp.org/kidscamp/</a></li>\n<li>2019-05-11 – Calgary, Canada – Christina Workman <a href=\"https://2019.calgary.wordcamp.org/2019/03/19/kidscamp-is-back/\"> https://2019.calgary.wordcamp.org/2019/03/19/kidscamp-is-back/</a></li>\n<li>2019-06-29 – Jacksonville, Fl – William Jackson, Aida Correa <a href=\"https://2019.jacksonville.wordcamp.org/kidscamp/\">https://2019.jacksonville.wordcamp.org/kidscamp/</a></li>\n<li>2019-07-20 – Boston, MA – Sandy Edwards, Jim Reevoir, and Elizabeth Desrosiers <a href=\"https://2019.boston.wordcamp.org/kidscamp/\">https://2019.boston.wordcamp.org/kidscamp/</a></li>\n</ul>\n<h2>More Kids Event Information</h2>\n<p>Kids programming with WordPress is here to provide a solid opportunity for minors to be included in the community. The programs offer events, workshops, and inclusion in the ever-growing WordPress community.</p>\n<p>The community as a whole has always provided educational and networking events to further personal development. Kids Programming is no different.</p>\n<p>Events focus on key skill sets such as public speaking, writing, networking, and communication. Children get to work with peers in exciting and fulfilling ways and leave the events with new friends. These friends often live in various places around the globe and create the opportunity for long-distance friendships fostered through technological resources.</p>\n<p>For example, my son lives in Orlando and has friends in Tampa, Jacksonville and even out of state. He keeps in touch through Facebook Messenger or Slack.</p>\n<p>The fact is our kids need a fun way to use real-world skills in a non-threatening environment. A place where they won’t be tested and where they can’t fail.</p>\n<p>These programs offer just that. With over 40 different volunteers helping to foster this program across the globe it is becoming a WordPress community staple.</p>\n<p>There is still much to do. Safety has to be our #1 priority when working with minors and that means keeping things pretty consistent. There is a group of amazing volunteers documenting the process of planning a kids event and class curriculum.</p>\n<p>The team is working on checklists and curriculum to make it super easy for a meetup chapter or WordCamp to add a kids event or kids program to their offering.</p>\n<p>The future for these programs is looking very bright. There is ever-growing interested in events, and more people wanting to be part of the kids’ event revolution.</p>\n<p>You too can be a hero. We need more people to write, edit, translate and test these programs. No experience is necessary and you don’t have to love kids either. This initiative allows so many children from different backgrounds and walks of life to be included in a super caring community. We see kids whose parents are already in the community and also kids who otherwise would never know the community exists. Your time is going to help create the next generation of WordPress! To get involved or update this list of Heroes just email <a href=\"mailto:[email protected]\">[email protected]</a>.</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: History and Future of Kids Heroes in WordPress\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=History%20and%20Future%20of%20Kids%20Heroes%20in%20WordPress&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fhistory-and-future-of-kids-heroes-in-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: History and Future of Kids Heroes in WordPress\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fhistory-and-future-of-kids-heroes-in-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%2Fhistory-and-future-of-kids-heroes-in-wordpress%2F&title=History+and+Future+of+Kids+Heroes+in+WordPress\" rel=\"nofollow\" target=\"_blank\" title=\"Share: History and Future of Kids Heroes in 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/history-and-future-of-kids-heroes-in-wordpress/&media=https://heropress.com/wp-content/uploads/2020/07/WordPress-and-its-surrounding-communities-have-the-opportunity-to-change-the-lives-of-kids-all-over-the-world.-150x150.png&description=History and Future of Kids Heroes in WordPress\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: History and Future of Kids Heroes in WordPress\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/history-and-future-of-kids-heroes-in-wordpress/\" title=\"History and Future of Kids Heroes in WordPress\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/history-and-future-of-kids-heroes-in-wordpress/\">History and Future of Kids Heroes in 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 Jul 2019 12:00: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:13:\"Sandy Edwards\";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:61:\"WPTavern: Newspack Opens Up Application Process for Phase Two\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=91719\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wptavern.com/newspack-opens-up-application-process-for-phase-two\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1699:\"<p>Earlier this year, Newspack <a href=\"https://newspack.blog/2019/04/03/newspack-chooses-12-publishers-new-platform/\">chose twelve publications</a> to take part in the initial rollout phase of the platform. Newspack is a collection of themes, plugins, and features geared towards newsrooms such as revenue generation wizards, mobile delivery, and search engine optimization. </p>\n\n\n\n<p>Steve Beatty, head of Newspack Communication says they’re seeking up to 50 newsrooms to be part of phase two which lasts from September 1st – February 29th, 2020. </p>\n\n\n\n<p>“What you’ll get: a new Newspack website, including the migration of your existing site; free hosting, security, updates, backups and support on WordPress.com through February 2020; membership in the Newspack community of users; access to Newspack developers; exclusive performance benchmarking against your peers; and more,” Beatty said.</p>\n\n\n\n<p>Organizations that are selected are expected to provide feedback, test new features, and help shape the overall direction of the platform. </p>\n\n\n\n<p>Free hosting for charter members will expire on February 29th, 2020. News organizations with revenue under $500K can expect to pay $1,000 per month and organizations that generate revenue of over $500K will pay $2,000 per month. Newspack is currently in negotiations to provide subsidies for organizations that encounter difficulties with the pricing structure. </p>\n\n\n\n<p>Those interested in participating in the charter program have until August 15th to <a href=\"https://docs.google.com/forms/d/e/1FAIpQLSdPF-XEbRDoOmSyGBYCyQZgleFcXNNnJExZCd9bsjw93jAXRg/viewform?vc=0&c=0&w=1\">fill out the application</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, 16 Jul 2019 20:36: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:\"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: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:44:\"WPTavern: In Case You Missed It – Issue 28\";s:7:\"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=91699&preview=true&preview_id=91699\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wptavern.com/in-case-you-missed-it-issue-28\";s: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:7685:\"<div class=\"wp-block-image\"><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/01/ICYMIFeaturedImage.png?ssl=1\" rel=\"attachment wp-att-50955\"><img /></a>photo credit: <a href=\"http://www.flickr.com/photos/112901923@N07/16153818039\">Night Moves</a> – <a href=\"https://creativecommons.org/licenses/by-nc/2.0/\">(license)</a></div>\n\n\n\n<p>There’s a lot of great WordPress content published in the community but not all of it is featured on the Tavern. This post is an assortment of items related to WordPress that caught my eye but didn’t make it into a full post.</p>\n\n\n\n<h2>Changes to WordPress PHP Coding Standards</h2>\n\n\n\n<p>Based on changes that were <a href=\"https://make.wordpress.org/core/2019/03/26/coding-standards-updates-for-php-5-6/\">proposed back in March</a>, the <a href=\"https://make.wordpress.org/core/handbook/best-practices/coding-standards/php/\">PHP Coding Standards</a> for WordPress have been altered. Note that these changes apply to WordPress core only and Gary Pendergast recommends that developers can and should choose practices that best suit your needs for plugins and themes. </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://make.wordpress.org/core/2019/07/12/php-coding-standards-changes/\">PHP Coding Standards Changes</a></blockquote>\n</div>\n\n\n\n<h2>Excluding Remote Employee Job Applicants Based on the State They Live In</h2>\n\n\n\n<p>Like Brad, the topic of not hiring job applicants for a remote company based on the state they live in because of tax laws is not something I’ve seen discussed. </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">A really interesting topic around remote companies, and one I haven\'t seen talked about much, is the idea of \"stateism\". Basically, not hiring from certain states because of their heavy handed laws (usually tax related). There are a few states I\'d rather avoid at this point.</p>— Brad Williams (@williamsba) <a href=\"https://twitter.com/williamsba/status/1149727445450481664?ref_src=twsrc%5Etfw\">July 12, 2019</a></blockquote>\n</div>\n\n\n\n<p>In certain situations, companies that go the extra mile to hire a remote worker can also turn that person into an advocate. </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Interesting. <a href=\"https://twitter.com/wpengine?ref_src=twsrc%5Etfw\">@wpengine</a> had to jump through some additional hoops to employ me remotely as a Canadian and I think that shows what a good employer they are and makes me advocate for them more. Worth thinking about beyond purely financial considerations.</p>— Chris Garrett (@chrisgarrett) <a href=\"https://twitter.com/chrisgarrett/status/1149729535782318081?ref_src=twsrc%5Etfw\">July 12, 2019</a></blockquote>\n</div>\n\n\n\n<p>If you’re involved in the hiring process for a remote company, I’d love to hear your thoughts on this topic in the comments.</p>\n\n\n\n<h2>Would You Like to See A Product Hunt for WordPress Products?</h2>\n\n\n\n<p>Once you create something awesome in the WordPress ecosystem, it’s tough to get the word out. Ben from LyrWP wants to know if anyone is interested in a <a href=\"https://www.producthunt.com/\">Product Hunt</a> website for Themes, Plugins, and Services. </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Would anyone be interested in a Producthunt purely for <a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a> themes, plugins and services? I think this needs doing. It\'s hard for <a href=\"https://twitter.com/hashtag/developers?src=hash&ref_src=twsrc%5Etfw\">#developers</a> to get the products they slave over out there without costing a bomb in marketing. Anybody else interested in this happening?</p>— Ben (@lyrwp) <a href=\"https://twitter.com/lyrwp/status/1149693535949590529?ref_src=twsrc%5Etfw\">July 12, 2019</a></blockquote>\n</div>\n\n\n\n<p>I think it’s a great idea and something I’d like to see become a reality. There are probably a ton of great products in the WordPress space that go unseen because there’s no easy way to reach a large mass of people outside of sites like the Tavern.</p>\n\n\n\n<p>However, Mario Peshev is concerned that such a site may end up posting infrequently or promote mediocre products. </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">I don\'t disagree with your stance. I just think that the overall quality of WP-baked solutions is pretty poor.<br /><br />Meaning that the site will end up promoting mediocre products or post infrequently, that\'s all.</p>— Mario Peshev (@no_fear_inc) <a href=\"https://twitter.com/no_fear_inc/status/1149746943389814784?ref_src=twsrc%5Etfw\">July 12, 2019</a></blockquote>\n</div>\n\n\n\n<p>If Peshev’s concern became a reality, there wouldn’t be much of a point to continue with the site and developers would be back to square one. </p>\n\n\n\n<p>Speaking of learning about new products, who remembers the <a href=\"https://weblogtoolscollection.com/archives/2013/01/16/wordpress-plugin-releases-for-116-3/\">Plugin Release posts</a> on WeblogToolsCollection.com?</p>\n\n\n\n<h2>Early Look at What A Block Directory in WP-Admin Could Look Like</h2>\n\n\n\n<p>Mel Choyce has shared a collection of concept images that depict what a Block Directory could look like inside of WP-Admin. She describes the inspiration for each image and how each screen would work. </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://make.wordpress.org/design/2019/07/11/block-directory-in-wp-admin-concepts/\">Block Directory in WP-Admin Concepts</a></blockquote>\n</div>\n\n\n\n<p>What I find interesting is that users will be able to try out new blocks before installing them. “Inside the modal, you’d also be able to demo a block before installing. <a href=\"https://profiles.wordpress.org/ck3lee/\">@ck3lee</a> has figured out how to make this possible,” Choyce said. </p>\n\n\n\n<p>It’s also great to see that the tech behind <a href=\"https://make.wordpress.org/core/2016/07/06/shiny-updates-in-4-6/\">Shiny Updates</a> will be used for quickly installing and activating new blocks. If you have feedback regarding the conceptual designs, please leave a comment on her post. </p>\n\n\n\n<h2>Notes From Lead Developer Conference</h2>\n\n\n\n<p>More than 20 Automatticians are attending the <a href=\"https://london2019.theleaddeveloper.com/\">Lead Developer Conference</a> in London, England, and are publishing notes from each day. You can check out <a href=\"https://developer.wordpress.com/2019/07/12/lead-developer-conference-day-one/\">Day 1 here</a>. </p>\n\n\n\n<h2>WPCampus 2019 Will Be LiveStreamed </h2>\n\n\n\n<p><a href=\"https://twitter.com/wpcampusorg/status/1149446903257604100\">Thanks to Pantheon</a>, all sessions excluding workshops at WPCampus will be livestreamed with captioning and available to watch for free. Simply visit the <a href=\"https://2019.wpcampus.org/watch/\">livestream page</a> on Friday, July 26 and Saturday, July 27.</p>\n\n\n\n<h2>Apply for a DonateWC WordCamp Sponsorship</h2>\n\n\n\n<p>DonateWC is <a href=\"https://donatewc.org/sponsorship-application-form/\">looking for applicants</a> for its sponsorship program. DonateWC provides underrepresented and minority groups within the WordPress community with the means to attend a WordCamp.</p>\n\n\n\n<p>That’s it for issue twenty-eight. If you recently discovered a cool resource or post related to WordPress, please share it with us in the comments.</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 Jul 2019 22:00: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:\"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:22;a:6:{s:4:\"data\";s:11:\"\n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"HeroPress: Syndication!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://heropress.com/?p=2922\";s:7:\"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://heropress.com/syndication/#utm_source=rss&utm_medium=rss&utm_campaign=syndication\";s: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:3038:\"<img width=\"960\" height=\"311\" src=\"https://s20094.pcdn.co/wp-content/uploads/2019/07/Screen-Shot-2019-07-12-at-3.47.42-PM-1024x332.png\" class=\"attachment-large size-large wp-post-image\" alt=\"WordPress.org banner\" />\n<p>As of today, HeroPress essays will be syndicated on <a href=\"https://wordpress.org/news/\">WordPress.org/news</a> once a month, on the first friday of the month.</p>\n\n\n\n<p>A few weeks ago Josepha The Great approached me and said she’d been tasked with getting Better News at that location, and HeroPress was one of her first thoughts. We discussed how it would work and here’s what we came up with.</p>\n\n\n\n<p>Once a month I’ll suggest an essay and someone at Automattic will paraphrase and condense the essay and publish it at WordPress.org/news along with links to the original. This gives us both the opportunity for a traffic boost.</p>\n\n\n\n<p>I’m super excited about this opportunity, and I’d like to thank Josepha Haden, Matt Mullenweg, Yvette Sonneveld, Alison Rothwell, and Aditya Kane for their work in making this happen.</p>\n\n\n\n<p>The first one is about <a href=\"https://wordpress.org/news/2019/07/people-of-wordpress-ugyen-dorji/\">Ugyen Dorji from Bhutan</a>, I hope you’ll check it out. Please leave a comment for Ugyen on HeroPress.com.</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: Syndication!\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Syndication%21&via=heropress&url=https%3A%2F%2Fheropress.com%2Fsyndication%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Syndication!\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fsyndication%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%2Fsyndication%2F&title=Syndication%21\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Syndication!\"></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/syndication/&media=https://heropress.com/wp-content/uploads/2019/07/Screen-Shot-2019-07-12-at-3.47.42-PM-150x150.png&description=Syndication!\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Syndication!\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/syndication/\" title=\"Syndication!\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/syndication/\">Syndication!</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:\"Fri, 12 Jul 2019 20:03:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:92:\"WPTavern: Experimental Block Areas Plugin Allows for Editing Content Sitewide 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=91642\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"https://wptavern.com/experimental-block-areas-plugin-allows-for-editing-content-sitewide-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:3790:\"<p>WordPress core committer <a href=\"https://felix-arntz.me\" rel=\"noopener noreferrer\" target=\"_blank\">Felix Arntz</a> is working on an experimental <a href=\"https://github.com/wprig/block-areas\" rel=\"noopener noreferrer\" target=\"_blank\">Block Areas</a> plugin that would enable users to create and edit content sitewide using the Gutenberg editor. Inspired by a conversation with <a href=\"https://twitter.com/mor10\" rel=\"noopener noreferrer\" target=\"_blank\">Morten Rand-Hendriksen</a> at WordCamp Europe, Arntz created the plugin to “explore what the theming of tomorrow could look like already today.”</p>\n<p>Block Areas allows users to define specific areas where they want to use the block editor (outside of regular posts). The block areas function similar to widget areas, but are created using a custom post type with a familiar admin UI.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/07/block-areas-admin-page.jpg?ssl=1\"><img /></a></p>\n<p>“They are implemented as a post type – with the key aspect that they can’t be accessed in the frontend via a certain URL, but your theme has to render them via a block_areas()->render( $slug ) method that the plugin exposes,” Arntz said. “The slug you pass to the method should match the block area slug (i.e. post slug) of one of the areas you have created in the admin.”</p>\n<p>The plugin comes with block areas for site header and footer to provide a starting point. However, adding the block areas to a theme is one technical hurdle that currently limits this experimental plugin to developers.</p>\n<p>The concept is reminiscent of the now seemingly abandoned <a href=\"https://wordpress.org/plugins/buckets/\" rel=\"noopener noreferrer\" target=\"_blank\">Buckets</a> plugin that <a href=\"https://wptavern.com/buckets-a-wordpress-widgets-alternative-for-placing-content-anywhere\" rel=\"noopener noreferrer\" target=\"_blank\">aimed to provide an alternative to WordPress widgets</a>. It allows admins to create reusable pieces of content and place them anywhere on their sites. Reusable buckets can be created with the same UI as the legacy post editor and then placed anywhere using a shortcode or via a button in the TinyMCE editor.</p>\n<p>In the case of Buckets, the idea was to preserve the users’ ability to create content using the visual editor and media manager. Block Areas seems to have a similar aim – to preserve users’ ability to use the block editor anywhere they want throughout the site. That is part of the general goal of Gutenberg Phase 2, which includes migrating widgets and menus to use the block editor.</p>\n<p>Block Areas is just one idea for providing a unified approach to reusable content inside WordPress. It is not an official project and may not be the approach that the Gutenberg team settles on for core. However, it offers a good opportunity for discussion and collaboration about the possibilities of taking the editor sitewide. This will open up a whole new genre of blocks for plugin developers.</p>\n<p>“Think about a block that renders the site title, the custom header, a menu, the copyright information – taking Gutenberg to the site level opens up a whole new set of typical blocks that would be required,” Arntz said. “Start thinking about which blocks you would need outside of your post content bubble today.”</p>\n<p>The <a href=\"https://github.com/wprig/block-areas\" rel=\"noopener noreferrer\" target=\"_blank\">Block Areas</a> plugin is available on GitHub if you want to experiment with it. Check out Arntz’s <a href=\"https://felix-arntz.me/blog/exploring-sitewide-gutenberg-usage-today/\" rel=\"noopener noreferrer\" target=\"_blank\">introduction post</a> for more implementation details.</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 Jul 2019 17:41:19 +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:52:\"WordPress.org blog: People of WordPress: Ugyen Dorji\";s:7:\"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=7013\";s:7:\"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/07/people-of-wordpress-ugyen-dorji/\";s: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:6435:\"<p><em>You’ve probably heard that WordPress is open source software, and may know that it’s created and run by volunteers. WordPress enthusiasts share many examples of how WordPress changed people’s lives for the better. This monthly series shares some of those lesser-known, amazing stories.</em></p>\n\n\n\n<h2><strong>Meet Ugyen Dorji from Bhutan</strong></h2>\n\n\n\n<p>Ugyen lives in <a href=\"https://en.wikipedia.org/wiki/Bhutan\">Bhutan</a>, a landlocked country situated between two giant neighbors, India to the south and China to the north. He works for ServMask Inc and is responsible for the Quality Assurance process for All-in-One WP Migration plugin. <br /><br />He believes in the Buddhist teaching that “the most valuable service is one rendered to our fellow humans,” and his contributions demonstrates this through his WordPress translation work and multi-lingual support projects for WordPress.</p>\n\n\n\n<img src=\"https://i2.wp.com/wordpress.org/news/files/2019/07/60340743_2330687777177099_8058690662683377664_o.jpg?fit=632%2C474&ssl=1\" alt=\"\" class=\"wp-image-7023\" />Bhutanese contributors to the Dzongkha locale on WordPress Translation Day\n\n\n\n<h2><strong>How Ugyen started his career with WordPress</strong></h2>\n\n\n\n<p>Back in 2016, Ugyen was looking for a new job after his former cloud company ran into financial difficulties.</p>\n\n\n\n<p>During one interview he was asked many questions about WordPress and, although he had a basic understanding of WordPress, he struggled to give detailed answers. After that interview he resolved to develop his skills and learn as much about WordPress as he could. </p>\n\n\n\n<p>A few months passed and he received a call from ServMask Inc, who had developed a plugin called All-in-One WP Migration. They offered him a position, fulfilling his wish to work with WordPress full-time. And because of that, Ugyen is now an active contributor to the WordPress community.</p>\n\n\n\n<h3><strong>WordCamp Bangkok 2018</strong></h3>\n\n\n\n<p>WordCamp Bangkok 2018 was a turning point event for Ugyen. WordCamps are a great opportunity to meet WordPress community members you don’t otherwise get to know, and he was able to attend his first WordCamp through the sponsorship of his company.</p>\n\n\n\n<p>The first day of WordCamp Bangkok was a Contributor Day, where people volunteer to work together to contribute to the development of WordPress. Ugyen joined the Community team to have conversations with WordPress users from all over the world. He was able to share his ideas for supporting new speakers, events and organizers to help build the WordPress community in places where it is not yet booming.</p>\n\n\n\n<p>During the main day of the event, Ugyen managed a photo booth for speakers, organizers, and attendees to capture their memories of WordCamp. He also got to take some time out to attend several presentations during the conference. What particularly stuck in Ugyen’s mind was learning that having a website content plan has been shown to lead to 100% growth in business development.</p>\n\n\n\n<h3>Co-Organizing<strong> Thimphu</strong>‘s <strong>WordPress Meetup</strong></h3>\n\n\n\n<p>After attending WordCamp Bangkok 2018 as well as a local Meetup event, Ugyen decided to introduce WordPress to his home country and cities. </p>\n\n\n\n<p>As one of the WordPress Translation Day organizers, he realized that his local language, Dzongkha, was not as fully translated as other languages in the WordPress Core Translation. That is when Ugyen knew that he wanted to help build his local community. He organized Thimphu’s first WordPress Meetup to coincide with WordPress Translation Day 4, and it was a huge success!</p>\n\n\n\n<p>Like all WordPress Meetups, the Thimpu WordPress Meetup is an easygoing, volunteer-organized, non-profit meetup which covers everything related to WordPress. But it also keeps in mind the <a href=\"https://en.wikipedia.org/wiki/Gross_National_Happiness\">Bhutanese Gross National Happiness</a> four pillars by aiming to preserve and promote their unique culture and national language. </p>\n\n\n\n<h2><strong>Big dreams get accomplished one step at a time</strong></h2>\n\n\n\n<p>Ugyen has taken an active role in preserving his national language by encouraging his community to use WordPress, including Dzongkha bloggers, online Dzongkha news outlets, and government websites.</p>\n\n\n\n<p>And while Ugyen has only been actively involved in the community for a short period, he has contributed much to the WordPress community, including:</p>\n\n\n\n<ul><li>becoming a Translation Contributor for WordPress Core Translation for Dzongkha;</li><li>participating in the <a href=\"https://wptranslationday.org/\">Global WordPress Translation Day 4</a> Livestream and organizing team;</li><li>inviting WordPress Meetup Thimphu members and WordPress experts from other countries to join the <a href=\"https://wpbhutan.slack.com/\">local Slack instance</a>;</li><li>encouraging ServMask Inc. to become an event sponsor;</li><li>providing the Dzongkha Development Commission the opportunity to involve their language experts.</li></ul>\n\n\n\n<p>When it comes to WordPress, Ugyen particularly focuses on encouraging local and international language WordPress bloggers; helping startups succeed with WordPress; and sharing what he has learned from WordPress with his Bhutanese WordPress community.</p>\n\n\n\n<p>As a contributor, Ugyen hopes to accomplish even more for the Bhutan and Asian WordPress Communities. His dreams for his local community are big, including teaching more people about open source, hosting a local WordCamp, and helping to organize WordCamp Asia in 2020 — all while raising awareness of his community.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://i0.wp.com/wordpress.org/news/files/2019/07/heropress_large_white_logo-1.jpg?fit=632%2C474&ssl=1\" alt=\"\" class=\"wp-image-7026\" width=\"110\" height=\"83\" /></div>\n\n\n\n<p><em>This post is based on an article originally published on HeroPress.com, a community initiative created by <a href=\"https://profiles.wordpress.org/topher1kenobe/\">Topher DeRosia</a>. HeroPress highlights people in the WordPress community who have overcome barriers and whose stories would otherwise go unheard.</em></p>\n\n\n\n<p><em>Meet more WordPress community members over at </em><a href=\"https://heropress.com/\"><em>HeroPress.com</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:\"Fri, 12 Jul 2019 17:20: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Aditya Kane\";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:38:\"Post Status: Preserving the Wilderness\";s:7:\"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=65050\";s:7:\"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://poststatus.com/preserving-the-wilderness-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:11760:\"<pre class=\"wp-block-verse\">Midway in our life\'s journey, I went astray <br /> from the straight road and woke to find myself <br /> alone in a dark wood. <br /><br />—Dante\'s <em>Inferno</em>, John Ciardi\'s translation<br /></pre>\n\n\n\n<p>If you’ve been trying to follow the ongoing debate over the future of the internet but got lost, gave up, or just tuned out, you’re probably in good company. Serious problems seem to generate unhelpfully broad and exaggerated headlines, like Alexis Madrigal at <em>The Atlantic </em>describing “<a href=\"https://www.theatlantic.com/technology/archive/2019/06/how-politicians-and-scholars-turned-against-big-tech/591052/\">the coalition out to kill tech as we know it</a>.” He provides a good breakdown of the many interest groups and the perspectives in play, however, from Antitrust Theorists to Shoshana Zuboff, who coined the term “<a href=\"https://www.theguardian.com/technology/2019/jan/20/shoshana-zuboff-age-of-surveillance-capitalism-google-facebook\">surveillance capitalism</a>.”</p>\n\n\n\n<blockquote><p>Writer and Kickstarter co-founder Yancey Strickler says the internet is becoming a “dark forest” as people retreat to “wild” spaces.</p></blockquote>\n\n\n\n<p>Madrigal is <a href=\"https://www.theatlantic.com/technology/archive/2019/06/facebook-and-youtubes-platform-excuse-dying/591466/\">probably right</a> that people are tired of hearing that publishing platforms like Facebook, YouTube, and Twitter have no role in policing “provably false information” posted by their users. <a href=\"https://poststatus.com/free-speech-privacy-and-web/\">Brian predicted this</a> several years ago before WordPress.com <a href=\"https://techcrunch.com/2018/08/16/new-wordpress-policy-allows-it-to-shut-down-blogs-of-sandy-hook-deniers/\">came under pressure</a> to shut down sites denying the Sandy Hook school shooting ever happened. Now the boundaries of acceptable content are more actively guarded but not consistently or well, and <a href=\"https://www.theverge.com/2019/2/25/18229714/cognizant-facebook-content-moderator-interviews-trauma-working-conditions-arizona\">in some cases like Facebook</a> or YouTube, if the cure is human moderation, <a href=\"https://www.theverge.com/2019/6/19/18681845/facebook-moderator-interviews-video-trauma-ptsd-cognizant-tampa\">it’s as bad as the disease</a>.</p>\n\n\n\n<p>Former Google product manager and <a href=\"https://humanetech.com/\">Center for Humane Technology</a> founder Tristan Harris is near the top of Madrigal’s list of tech-killers. Harris <a href=\"https://gizmodo.com/this-is-how-youre-being-manipulated-1835853810\">recently testified</a> before the US Senate with <a href=\"https://www.commerce.senate.gov/public/index.cfm/2019/6/optimizing-for-engagement-understanding-the-use-of-persuasive-technology-on-internet-platforms\">such stark examples of manipulative interfaces</a> that one senator said he was thankful he would “be dead and gone … when all this shit comes to fruition.” </p>\n\n\n\n<p>While Harris is good at generating outrage by publicizing truly outrageous things Google, Facebook, and others are doing, it’s not always clear what he thinks should be done. Does protecting our attention, or children’s developing brains, or democracy itself require platforms to police themselves or be policed by someone else?</p>\n\n\n\n<p>Compared to Harris, Pinboard owner and widely read blogger Maciej Ceglowski made a less dramatic but similarly urgent <a href=\"https://www.banking.senate.gov/imo/media/doc/Ceglowski%20Testimony%205-7-19.pdf\">statement</a> about privacy and data collection to the Senate back in May. (<a href=\"https://idlewords.com/talks/senate_testimony.2019.5.htm\">Web version and video link</a>.) A more recent post on Ceglowski’s blog called “<a href=\"https://idlewords.com/2019/06/the_new_wilderness.htm\">The New Wilderness</a>” argues we need laws protecting the digital environment from surveillance, so it retains a “wilderness” of “ambient privacy.” Like Harris, Ceglowski focuses on Facebook and Google as “the world’s most sophisticated dragnet surveillance operation, a duopoly that rakes in nearly two-thirds of the money spent on online ads.”</p>\n\n\n\n<p>In line with Ceglowski’s imagery, writer and Kickstarter co-founder Yancey Strickler says <a href=\"https://onezero.medium.com/the-dark-forest-theory-of-the-internet-7dc3e68a7cb1\">the internet is becoming a “dark forest”</a> as people retreat to “wild” spaces.</p>\n\n\n\n<p>Strickler isn’t talking about “wild” spaces on the web that offer unmoderated, possibly objectionable content; he means areas without algorithms that keep <a href=\"https://thebaffler.com/latest/unpopular-content-schwartz\">“unpopular” material</a> out of our monetized attention:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>These are all spaces where depressurized conversation is possible because of their non-indexed, non-optimized, and non-gamified environments.</p></blockquote>\n\n\n\n<p>The problem Strickler sees with our retreat from the “mainstream” parts of the internet is the possibility of their discredit and loss. We may already be past that point, <a href=\"https://taibbi.substack.com/p/russiagate-is-wmd-times-a-million\">as Matt Taibbi has argued about the press</a>.</p>\n\n\n\n<p>Cory Doctorow has been working this beat for a long time and has some excellent, recent contributions to the debate:</p>\n\n\n\n<ul><li>A discussion of <a href=\"https://corecursive.com/33-cory-doctorow-digital-rights/\">monopolies and why software has power</a> on the CoRecursive podcast with Adam Gordon Bell. <img src=\"https://s.w.org/images/core/emoji/11.2.0/72x72/1f399.png\" alt=\"🎙\" class=\"wp-smiley\" /></li><li>A contribution to the <em>New York Times’</em> “Op-Eds From the Future” series with a piece called “<a href=\"https://www.nytimes.com/2019/06/24/opinion/future-free-speech-social-media-platforms.html\">I Shouldn’t Have to Publish This in The New York Times</a>.” <img src=\"https://s.w.org/images/core/emoji/11.2.0/72x72/1f4f0.png\" alt=\"📰\" class=\"wp-smiley\" /></li></ul>\n\n\n\n<p>Doctorow’s Op-Ed from the future comes from a time “in which we have decided to solve the problems of Big Tech by making them liable for what their users say and do.” </p>\n\n\n\n<p>In this possible future:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>[A]ll our speech is vetted by algorithms that delete anything that looks like misinformation, harassment, copyright infringement, incitement to terrorism, etc — with the result that the only place where you can discuss anything of import is newspapers themselves. [<a href=\"https://poststatus.com/category/planet/feed/#note-1\">1</a>]</p></blockquote>\n\n\n\n<p>Doctorow describes the alternative to picking media winners and tech losers <a href=\"https://craphound.com/news/2019/06/24/i-shouldnt-have-to-publish-this-in-the-new-york-times-my-op-ed-from-the-future/\">on his blog</a>:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>We can either try to fix Big Tech (by making it use its monopoly profits to clean up its act) or we can fix the internet (by breaking them up and denying them access to monopoly profits) — but we can’t do both.</p></blockquote>\n\n\n\n<p>I’m not sure what Option A (self-regulation) would look like or how it could help, which is partly Doctorow’s point. If Option B (trust-busting) happens, it would probably leave a lot more space for wild things to grow. But even in the shadow of Big Tech monopolies, WordPress and other mature open source ecosystems still represent their antithesis, like a vast network of old-growth forests connected to small stands of young saplings. That analogy reminds me of <a href=\"https://mor10.com/wordpress-the-15-year-revolution/\">Morten Rand-Hendriksen’s reflections on WordPress’s 15th anniversary</a> and his hope that his “son will be building his own web experiences using software that traces its roots back to [WordPress].”</p>\n\n\n\n<p>The wild, biodiverse forest image is a good one for us because it is an image of social, interdependent, and very different individuals. Peter Wohlleben’s book on <em>The Hidden Life of Trees</em> could just as easily describe the cooperative, distributive, and passionately interconnected, democratic nature of open source communities at their best:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>When trees grow together, nutrients and water can be optimally divided among them all so that each tree can grow into the best tree it can be. If you “help” individual trees by getting rid of their supposed competition, the remaining trees are bereft. They send messages out to their neighbors in vain, because nothing remains but stumps. Every tree now muddles along on its own, giving rise to great differences in productivity. Some individuals photosynthesize like mad until sugar positively bubbles along their trunk. As a result, they are fit and grow better, but they aren’t particularly long-lived. This is because a tree can be only as strong as the forest that surrounds it. And there are now a lot of losers in the forest. Weaker members, who would once have been supported by the stronger ones, suddenly fall behind. Whether the reason for their decline is their location and lack of nutrients, a passing malaise, or genetic makeup, they now fall prey to insects and fungi.</p></blockquote>\n\n\n\n<p>Even the giants are in trouble if they are the last trees standing. Wohlleben explains they will end up presiding over a barren desert where little more than weeds can survive:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>“But isn’t that how evolution works?” you ask. The survival of the fittest? Their well-being depends on their community, and when the supposedly feeble trees disappear, the others lose as well. When that happens, the forest is no longer a single closed unit. Hot sun and swirling winds can now penetrate to the forest floor and disrupt the moist, cool climate. Even strong trees get sick a lot over the course of their lives. When this happens, they depend on their weaker neighbors for support. If they are no longer there, then all it takes is what would once have been a harmless insect attack to seal the fate even of giants.</p></blockquote>\n\n\n\n<p>If we maintain open source communities that are accessible and inclusive <br /> — for big and small, young and old, established businesses and new ones — then we are doing our part to keep the web wild and healthy. <img src=\"https://s.w.org/images/core/emoji/11.2.0/72x72/1f3de.png\" alt=\"🏞\" class=\"wp-smiley\" /></p>\n\n\n\n<h2>Notes</h2>\n\n\n\n<ol><li><a id=\"note-1\" href=\"https://medium.com/whither-news/news-publishers-go-to-war-with-the-internet-and-we-all-lose-cc8aca5336f5\">Jeff Jarvis thinks that’s what newspapers want</a> — a “war with the internet,” i.e. the major platform providers — out of the hope this might restore their previous command of advertising and attention. Jarvis is far less critical of big tech and <a href=\"https://www.theguardian.com/commentisfree/2013/aug/07/big-tech-protect-big-brother\">defended it in the past</a> as a check against “Big Brother,” i.e., powerful state actors. Today, Zuboff’s view of big tech as “Big Other” seems more accurate: <a href=\"https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2594754\">a threat to democratic norms</a> that, unlike the state, operates with almost no regulatory oversight.</li></ol>\";s: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 Jul 2019 13:49:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:103:\"WPTavern: JAMstack’s Growing Popularity Brings Increase in WordPress Plugins for Deploying to Netlify\";s:7:\"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=91155\";s:7:\"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:111:\"https://wptavern.com/jamstacks-growing-popularity-brings-increase-in-wordpress-plugins-for-deploying-to-netlify\";s: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:7823:\"<p>One of the more interesting trends this year is that WordPress developers are beginning to explore JAMstack setups for their sites. JAMstack is a term coined by <a href=\"https://www.netlify.com\" rel=\"noopener noreferrer\" target=\"_blank\">Netlify</a> CEO Mathias Biilmann to describe development architecture that includes client-side JavaScript, reusable APIs, and prebuilt Markup, the three pillars of a modern static website.</p>\n<p>Static websites are making a major comeback right now, perhaps as a reaction to the slow, bloated PHP frameworks that run large portions of the web today. The speed, security, and scalability of these sites, often available at a lower cost, are some of the most compelling reasons developers find themselves joining the rapidly growing JAMstack community. It also provides a git and CLI-friendly development workflow and allows developers to easily experiment with the latest frontend technologies, without prescribing any specific frameworks or tools.</p>\n<p>Most JAMstack sites are built using Jekyll, Hugo, Nuxt, Next, Gatsby, or another <a href=\"https://www.staticgen.com/\" rel=\"noopener noreferrer\" target=\"_blank\">static site generator</a>. The generated markup and assets are often served via a CDN for near instant page loads.</p>\n<p><a href=\"https://www.netlify.com\" rel=\"noopener noreferrer\" target=\"_blank\">Netlify</a> pioneered JAMstack hosting and has inspired the creation of a myriad of tools that enable fast and convenient deployments. Plugins that allow developers source content from WordPress and host it with Netlify are starting to pop up more frequently. Netlify’s free tier is one of the main reasons it has grown so quickly in popularity, as it provides a fast way to host a personal site or small project with custom domain support, HTTPS, Git integration, and continuous deployment included.</p>\n<p><a href=\"https://tinypixel.dev/\" rel=\"noopener noreferrer\" target=\"_blank\">Tiny Pixel Collective</a> created a plugin called <a href=\"https://github.com/pixelcollective/netlify-deploy\" rel=\"noopener noreferrer\" target=\"_blank\">Netlify Deploy</a> that automates Netlify builds on WordPress publish and update events. The company built it to make it easier for developers to rebuild Netlify-hosted Gatsby frontends using WordPress as the publishing tool. It works in the background to keep a static frontend in sync with the post database, rebuilding the site when users make updates to posts and pages. The plugin triggers the Netlify webhook whenever the standard WordPress posttypes post and page undergo a change in publish status, but it can also be modified to work with custom post types and custom publish hooks.</p>\n<p><a href=\"https://wordpress.org/plugins/wp-jamstack-deployments/\" rel=\"noopener noreferrer\" target=\"_blank\">JAMstack Deployments</a>, created by <a href=\"https://crgeary.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Christopher Geary</a>, a developer and JAMstack aficionado, is a similar WordPress plugin that facilitates deployments to Netlify, as well as other platforms. The plugin’s settings page lets users configure the webhook URL in the admin, and includes options to limit it to trigger on specific post types and taxonomies. JAMstack Deployments is also conveniently available for free on WordPress.org.</p>\n<p><a href=\"https://wordpress.org/plugins/webhook-netlify-deploy/\" rel=\"noopener noreferrer\" target=\"_blank\">Deploy Netlify Webhook</a> is a similar plugin from <a href=\"https://lukesecomb.digital/\" rel=\"noopener noreferrer\" target=\"_blank\">Luke Secomb</a> that appears to work manually through a “Build” button in the WordPress admin. It has the added benefit of allowing developers to check the status of the latest build to see if it was successful, without having to leave WordPress.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/06/netlify-webhook-deploy.png?ssl=1\"><img /></a></p>\n<p><a href=\"https://justinwhall.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Justin Hall</a>, a plugin author and senior web developer at SendGrid, published his <a href=\"https://github.com/justinwhall/gatsby-wordpress-netlify-starter\" rel=\"noopener noreferrer\" target=\"_blank\">Gatsby + Headless WordPress + Netlify starter skeleton</a> to GitHub. This particular setup requires his <a href=\"https://github.com/justinwhall/littlebot-netlify\" rel=\"noopener noreferrer\" target=\"_blank\">LittleBot Netlify plugin</a> to trigger Netlify build hooks on post save or update, with an additional option that allows WordPress users to publish to Staging or Production sites.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/06/stage-production.png?ssl=1\"><img /></a></p>\n<p><a href=\"https://wordpress.org/plugins/static-html-output-plugin/\" rel=\"noopener noreferrer\" target=\"_blank\">WP2Static</a> is a popular plugin that generates static HTML files rom a WordPress site. Users have the option of auto-deploying to a folder on the server, a ZIP file, FTP server, S3, GitHub, Netlify, BunnyCDN, BitBucket, or GitLab. Theh plugin currently has more than 10,000 active installations.</p>\n<p>These are just a small sampling of tools that developers are creating to allow WordPress users to retain the capabilities a dynamic publishing platform while building it statically to take advantage of the speed, security, and performance gains.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">I used to be afraid I was distracting <a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a> folks by teaching <a href=\"https://twitter.com/gatsbyjs?ref_src=twsrc%5Etfw\">@gatsbyjs</a>.</p>\n<p>Now it\'s clear WordPress devs must learn tools like Gatsby to stay relevant, and WordPress must meet headless needs to stay relevant. <a href=\"https://twitter.com/hashtag/LearnJavascriptDeeply?src=hash&ref_src=twsrc%5Etfw\">#LearnJavascriptDeeply</a> <a href=\"https://twitter.com/hashtag/LetsDoThis?src=hash&ref_src=twsrc%5Etfw\">#LetsDoThis</a><a href=\"https://t.co/TEJeNrFa1K\">https://t.co/TEJeNrFa1K</a> <a href=\"https://t.co/69geFKlZ9r\">https://t.co/69geFKlZ9r</a></p>\n<p>— Zac Gordon (@zgordon) <a href=\"https://twitter.com/zgordon/status/1141392958341746689?ref_src=twsrc%5Etfw\">June 19, 2019</a></p></blockquote>\n<p></p>\n<p>The trend towards using a headless CMS combined with static site generators is a setup that is heavily geared towards developers at the moment. <a href=\"https://bejamas.io/blog/jamstack-for-clients/\" rel=\"noopener noreferrer\" target=\"_blank\">Translating all the jargon</a> for non-technical site and business owners is a new challenge for those looking to sell services for setting up JAMstack architecture.</p>\n<p>That’s where more user-friendly hosting platforms like <a href=\"https://www.strattic.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Strattic</a>, <a href=\"https://www.getshifter.io/\" rel=\"noopener noreferrer\" target=\"_blank\">Shifter</a>, and <a href=\"https://www.hardypress.com/\" rel=\"noopener noreferrer\" target=\"_blank\">HardyPress</a> are making inroads on marketing JAMstack technology to a less-technical crowd. They provide all-in-one “serverless” architecture solutions that generate static files from WordPress sites and serve them via CDN.</p>\n<p>One of the chief drawbacks to pursuing a static WordPress setup is that many dynamic capabilities do not work in this environment. Adding contact forms can be a challenge. Sites that require native WordPress comments or anything that is more complex and interactive will not work. This includes functionality offered by WooCommerce, bbPress, BuddyPress, and membership plugins, to name a few examples. For now, the JAMstack fervor is mostly limited to the DIY developer crowd looking to host more simple sites.</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 Jul 2019 03:02: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:\"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:127:\"WPTavern: WordPress Theme Review Team Seeks to Curb Obtrusive Admin Notices with New Requirement to Follow Core Design Patterns\";s:7:\"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=91604\";s:7:\"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/wordpress-theme-review-team-seeks-to-curb-obtrusive-admin-notices-with-new-requirement-to-follow-core-design-patterns\";s: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:3856:\"<p>For years, the WordPress admin has become increasingly overloaded with admin notices. Some of them are giant, branded notices with their own particular designs that obstruct users’ activities in the admin.</p>\n<p>The Theme Review Team is taking action to curb obtrusive notices that fall within its purview – those generated by themes hosted in the official directory. In the excitement of yesterday’s announcement about the <a href=\"https://wptavern.com/wordpress-theme-review-team-initiates-new-long-term-plan-to-make-all-wordpress-org-themes-accessible\" rel=\"noopener noreferrer\" target=\"_blank\">long-term plan to make make all WordPress.org themes accessible,</a> this small bit of good news regarding admin notices slipped through the cracks. The team ratified a <a href=\"https://wordpress.slack.com/archives/C02RP4Y3K/p1562696178471900\" rel=\"noopener noreferrer\" target=\"_blank\">proposal</a> from TRT member Danny Cooper to require all themes to use WordPress’ admin_notices API.</p>\n<blockquote><p>All the notifications generated by a theme should use the admin_notices API and follow the core design pattern.</p></blockquote>\n<p>During this week’s the meeting, Cooper cited Storefront, WooCommerce’s flagship theme, as one example of a theme-generated notice that does not follow the core design pattern and is shown on every page.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/07/storefront-notice.png?ssl=1\"><img /></a></p>\n<p>Another example is this style of activation notice on the Noto theme from Pixelgrade:</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/07/pixelgrade.png?ssl=1\"><img /></a></p>\n<p>The Futurio theme has also employed a similar style notice for getting started after activation:</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/07/futurio.png?ssl=1\"><img /></a></p>\n<p>In the past these notices have not been expressly forbidden, although they are generally frowned upon by those who want to keep the WordPress admin from being overtaken by large, branded notices and calls to action.</p>\n<p>Another example of an obtrusive notice is Hestia’s popup that appears if you activate the theme but then navigate to “Add New” on the Themes screen to hunt for a different theme. Cooper said this particular popup is likely outside the remit of this guideline, but it demonstrates what lengths theme shops will go to in order to better market their themes.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/07/Screen-Shot-2019-07-10-at-4.45.08-PM.png?ssl=1\"><img /></a></p>\n<p>There don’t seem to be any specific requirements that would restrict the use of branding within the admin notices as long as they follow the <a href=\"https://codex.wordpress.org/Plugin_API/Action_Reference/admin_notices\" rel=\"noopener noreferrer\" target=\"_blank\">core design pattern</a>. A visual example of this pattern is shown below.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/07/notices.png?ssl=1\"><img /></a></p>\n<p>The Sydney theme has an example of a branding-free notice that works within these guidelines:</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/07/sydney.png?ssl=1\"><img /></a></p>\n<p>This new requirement will affect many popular themes on WordPress.org and will likely be applied the next time existing themes go through the update review process. Cooper said that themes already known to be in violation of this guideline will be prompted by the TRT to change their notices as soon as possible or risk suspension.</p>\n<p>“It’s especially important that themes on the ‘Popular’ tab adapt quickly as other theme developers use them as inspiration when implementing similar functions,” Cooper 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 Jul 2019 22:57:23 +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:115:\"WPTavern: 10up Releases New Plugin That Shows How to Extend Gutenberg’s Document Panel Using SlotFill and Filters\";s:7:\"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=91613\";s:7:\"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/10up-releases-new-plugin-that-shows-how-to-extend-gutenbergs-document-panel-using-slotfill-and-filters\";s: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:2350:\"<p>If you’ve been looking for a way to add slots and controls to the Document panel in WordPress’ content editor, check out a new plugin <a href=\"https://10up.com/blog/2019/extending-gutenberg-with-slotfill/\">released</a> by 10up called <a href=\"https://github.com/10up/slotfill-and-filter-demos/\">Gutenberg SlotFill and Filter Demos</a>. </p>\n\n\n\n<p>SlotFill and Filters is a new take on the classic filters, actions, and hooks system in WordPress. Slot and Fill are React components that enable developers to inject items into predefined spaces in the new editor. </p>\n\n\n\n<p>“SlotFill is a pattern for component extensibility, where a single Slot may be occupied by an indeterminate number of Fills elsewhere in the application,” Ryan Welcher said. </p>\n\n\n\n<div class=\"wp-block-image\"><img />An Example of SlotFill in Action</div>\n\n\n\n<p>In the demo screenshot above, 10up was able to stick to the Classic UI conventions in the mobile app while displaying the same information in the Document panel of the new editor. </p>\n\n\n\n<p>SlotFill initially started as a <a href=\"https://github.com/10up/slotfill-and-filter-demos/tree/master/src/slots\">GitHub repo</a> where Welcher collected his findings. The repo eventually turned into a library of examples and explanations for SlotFill and JavaScript based filters. </p>\n\n\n\n<p>In January, Welcher <a href=\"https://github.com/WordPress/gutenberg/pull/13361\">submitted a pull request</a> to the Gutenberg repo asking for SlotFill to be added to the document sidebar. His request received positive feedback and not only has SlotFill’s documentation been added to the <a href=\"https://developer.wordpress.org/block-editor/components/slot-fill/\">WordPress Core Gutenberg Handbook</a>, but the functionality is available in Gutenberg 6.1 and will be available in WordPress 5.3.</p>\n\n\n\n<p>To learn more about SlotFill, check out <a href=\"https://10up.com/blog/2019/extending-gutenberg-with-slotfill/\">Welcher’s release post</a> or the <a href=\"https://github.com/10up/slotfill-and-filter-demos/\">Gutenberg SlotFill and Filter Demos plugin</a>. Welcher is also doing a session at the <a href=\"https://javascriptforwp.com/conference/\">JavaScript For WordPress Conference</a>, on July 11-13, 2019, where he’ll showcase basic and real-world examples of SlotFill in use. </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 Jul 2019 21:26:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:113:\"WPTavern: Gutenberg 6.1 Introduces Animation to Block Moving Actions, Adds Block-Based Widgets Screen Experiments\";s:7:\"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=91568\";s:7:\"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/gutenberg-6-1-introduces-animation-to-block-moving-actions-adds-block-based-widgets-screen-experiments\";s: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:3333:\"<p>Gutenberg plugin users who update to <a href=\"https://make.wordpress.org/core/2019/07/10/whats-new-in-gutenberg-10-july/\" rel=\"noopener noreferrer\" target=\"_blank\">version 6.1</a> should notice a considerable difference in how the UI reacts to block moving actions. This release brings in the <a href=\"https://wptavern.com/gutenberg-team-is-exploring-adding-motion-to-block-moving-actions\" rel=\"noopener noreferrer\" target=\"_blank\">animation experiments</a> that Matías Ventura introduced in a post titled “<a href=\"https://matiasventura.com/post/using-motion-to-express-change/\" rel=\"noopener noreferrer\" target=\"_blank\">Using Motion to Express Change</a>.” The subtle animations add realistic motion to block changes, creation, removal, and reordering, creating a smoother transition between actions. It lends a bit of sophistication to what was previously an instant but more abrupt interaction.</p>\n<p></p>\n<p>Riad Benguella’s demo video shows the new animation for block reordering. When blocks are added or deleted, content moves around the screen more fluidly, with the surrounding blocks sliding into place. You can test it live and see it in action on the <a href=\"https://wordpress.github.io/gutenberg/\" rel=\"noopener noreferrer\" target=\"_blank\">Gutenberg Playground</a>, which is now hosted on GitHub Pages.</p>\n<p>Version 6.1 also incorporates more experiments on the block-based widgets screen that is still in progress. A new widget blocks editor has been added to the Customizer under a panel labeled “Widget Blocks (Experimental).” At the moment, editing widgets in the Customizer in such a constricted space doesn’t seem to make much sense. It’s easy to get the controls jumbled up on top of each other. Live previews work but are much slower than the experience of using the post editor, and users may wonder why they can’t simply edit the content on the page where it appears. It’s important to remember that this is still an experiment.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/07/Screen-Shot-2019-07-10-at-12.27.28-PM.png?ssl=1\"><img /></a></p>\n<p>The experimental widgets screen has also been updated to include the block inspector and a global inserter. This screen can be tested under the <strong>Gutenberg » Beta</strong> menu in the admin.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/07/Screen-Shot-2019-07-10-at-12.30.09-PM.png?ssl=1\"><img /></a></p>\n<p>Gutenberg had taken a dip in performance in the previous two releases, but 6.1 recovers that with significant gains in typing performance. The latest version is 30% faster on long posts.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/07/Screen-Shot-2019-07-10-at-12.34.44-PM.png?ssl=1\"><img /></a></p>\n<p>This update includes more than two dozen enhancements, fixes, and documentation improvements. Check out the <a href=\"https://make.wordpress.org/core/2019/07/10/whats-new-in-gutenberg-10-july/\" rel=\"noopener noreferrer\" target=\"_blank\">6.1 release post</a> for a detailed list of all the changes. Better yet, take the latest Gutenberg features and experiments for a test drive and you’ll get a good sense of where the project is headed and what will be coming to WordPress core in the near future.</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 Jul 2019 17:58: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:30;a:6:{s:4:\"data\";s:11:\"\n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"HeroPress: News, Updates, etc.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://heropress.com/?p=2920\";s:7:\"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:99:\"https://heropress.com/news-updates-etc/#utm_source=rss&utm_medium=rss&utm_campaign=news-updates-etc\";s: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:2454:\"<p>You may have noticed there’s no Essay this week. This is for a variety of small reasons, some of which involve going fishing. We’ll resume our regular schedule next week. I think this is only the second time in over 4 years that we’ve missed an essay.</p>\n\n\n\n<p>Later this week I should have a fun announcement, watch this space for it. I’m pretty excited.</p>\n\n\n\n<p>While I have your attention I’d like to take this opportunity to ask you to promote HeroPress on social media. I’d love to see a groundswell of tweets and other postings to spread the word.</p>\n\n\n\n<p>Thanks, I appreciate you all.</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: News, Updates, etc.\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=News%2C%20Updates%2C%20etc.&via=heropress&url=https%3A%2F%2Fheropress.com%2Fnews-updates-etc%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: News, Updates, etc.\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fnews-updates-etc%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%2Fnews-updates-etc%2F&title=News%2C+Updates%2C+etc.\" rel=\"nofollow\" target=\"_blank\" title=\"Share: News, Updates, etc.\"></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/news-updates-etc/&media=https://heropress.com/wp-content/plugins/rtsocial/images/default-pinterest.png&description=News, Updates, etc.\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: News, Updates, etc.\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/news-updates-etc/\" title=\"News, Updates, etc.\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/news-updates-etc/\">News, Updates, etc.</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 Jul 2019 13:08: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:\"\";}}}}}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:110:\"WPTavern: WordPress Theme Review Team Initiates New Long Term Plan to Make All WordPress.org Themes Accessible\";s:7:\"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=91542\";s:7:\"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:121:\"https://wptavern.com/wordpress-theme-review-team-initiates-new-long-term-plan-to-make-all-wordpress-org-themes-accessible\";s: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:5321:\"<p>The WordPress Theme Review Team (TRT) met today and <a href=\"https://make.wordpress.org/themes/2019/07/09/meeting-notes-from-the-9th-of-july-2019/\" rel=\"noopener noreferrer\" target=\"_blank\">agreed to put new accessibility requirements in place</a> for themes hosted in the official directory. These include some of the items that are required for theme authors who want to add the accessibility-ready tag. A handful of these requirements will soon be added to the standard requirements for all themes. The initial focus will be on items that do not have a major visible impact on a theme’s design, as the team anticipates some pushback from designers.</p>\n<p>“We’ve long made the argument that WCAG can’t easily be applied to a theme which has no content; I don’t think we want to break that,” Accessibility team member Joe Dolson said. “For the purpose of theme testing, I think it’s still better to target a customized set of criteria that are content-independent. But if we can incorporate the first four items in the <a href=\"https://make.wordpress.org/themes/handbook/review/accessibility/required/\" rel=\"noopener noreferrer\" target=\"_blank\">guidelines</a>, I’d be super happy. The rest of the criteria, while important, are harder to assess and implement, and have greater impact on design.”</p>\n<p>The Theme Review Team has agreed to start gradually rolling out new accessibility guidelines every other month while educating developers to help them get on board. The first requirement will be Skip Links, followed by the other three that are outlined in the <a href=\"https://make.wordpress.org/themes/handbook/review/accessibility/required/\" rel=\"noopener noreferrer\" target=\"_blank\">Theme Review Handbook</a>:</p>\n<ul>\n<li><strong>Skip Links</strong><br />\nThemes must include a mechanism that enables users to navigate directly to content or navigation on entering any given page. These links may be positioned off screen initially but must be available to screen reader users and must be visible on focus for sighted keyboard navigators.</li>\n<li><strong>Keyboard Navigation</strong><br />\nTheme authors must provide visual keyboard focus highlighting in navigation menus and for form fields, submit buttons and text links. All controls and links must be reachable using the keyboard.</li>\n<li><strong>Controls</strong><br />\nAll theme features that behave as buttons or links must use button, input, or a elements, to ensure native keyboard accessibility and interaction with screen reader accessibility APIs.<br />\nAll controls must also have machine-readable text to indicate the nature of the control.</li>\n<li><strong>Form Labeling</strong><br />\nComment forms must have appropriate field labels and all content within form tags need to be explicitly associated to a form control. Post-submission responses (errors or confirmations) must be perceivable. If you are using the default WordPress comment or search forms, these pass the accessibility-ready criteria.</li>\n</ul>\n<p>“The changed requirement wouldn’t encompass all the accessibility-ready requirements to be present on the standard themes, nor would it automatically make them accessibility-ready, but by incorporating one by one requirements, through longer time period, the idea is to encourage theme authors to write accessible themes out of the box,” TRT member Denis Žoljom said.</p>\n<p>The team is also re-examining the efficacy of the Trusted Authors program and whether there is evidence for discontinuing it. They are considering removing the child theme queue, which was incentivizing authors to submit more child themes since the queue moves faster than the regular one.</p>\n<p>Imposing stricter accessibility requirements for WordPress.org themes is one suggestion that theme authors discussed over the weekend as a potential response to <a href=\"https://wptavern.com/anders-noren-release-free-chaplin-theme-designed-for-block-editor-theme-authors-discuss-better-ways-to-promote-truly-free-themes\" rel=\"noopener noreferrer\" target=\"_blank\">WordPress.org’s growing problem with crippleware</a>. The expectation is that stricter requirements would shorten the queue of themes ready for review and perhaps even motivate companies to invest in accessibility testing to improve that process. While it may not have a direct affect on theme companies’ ability to produce crippleware, it makes the barrier for entry higher so that reviewers have more time to focus on improvements to the directory and the review process.</p>\n<p>The new accessibility requirements will apply to all themes hosted on WordPress.org, not just new ones entering the directory. Existing themes will be expected to meet the requirements as they pass through the review process for updates. However, the team will not be actively hunting down old themes to suspend them. Today’s decision marks an important turning point that has the potential to have a ripple effect across the entire theme industry, as WordPress.org sets the standard for theme development. These new requirements give legs to WordPress’ commitment to accessibility in what TRT member Justin Tadlock called “a small but major step toward accessibility for all 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:\"Tue, 09 Jul 2019 23:24:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:70:\"WPTavern: The News Project Launches Its First Customer Site CALmatters\";s:7:\"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=91539\";s:7:\"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://wptavern.com/the-news-project-launches-its-first-customer-site-calmatters\";s: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:2798:\"<p><a href=\"https://thenewsproject.net\">The News Project</a> founded by Merril Brown has <a href=\"https://techcrunch.com/2019/07/09/the-news-projects-publishing-platform-goes-live-with-its-first-customer-calmatters/\">launched</a> its first customer site, <a href=\"https://calmatters.org/blogs/inside-calmatters/2019/07/introducing-a-new-look-for-calmatters/\">CALmatters</a>. CALmatters is a nonprofit journalism venture that covers politics, environmental regulation, education, and more. </p>\n\n\n\n<p>The site sports a new design, a fresh logo, and was built using WordPress. The News Project describes itself as a “solution that integrates best-of-breed content, audience and revenue tools that a typical news venture would assemble separately at far greater cost in time, effort and dollars.”</p>\n\n\n\n<p>Interestingly, <a href=\"https://newspack.blog/\">Newspack</a>, a vertical on WordPress.com and <a href=\"https://github.com/Automattic/newspack-plugin\">open-source plugin</a> tailored to newsrooms and journalists <a href=\"https://newspack.blog/2019/05/01/newspack-faq/\">is described</a> in a similar fashion, “It’s a ready-to-go, intuitive, revenue-focused publishing platform that will let small and medium-sized newsrooms dedicate more resources to their journalism. Newspack will be simple to set up, easy to use, durable, flexible and fast.”</p>\n\n\n\n<p>The descriptions and the services being offered are interesting because of what happened earlier this year. Back in January, <a href=\"https://wptavern.com/wordpress-com-secures-2-4-million-in-funding-from-google-and-partners-to-build-a-publishing-platform-for-news-organizations?fbclid=IwAR3qPdJ3quQN3YeYWB_ymi38pLLrIv-P2-2uMXxTvUfRelI1gJ07Y_-cpiQ\">WordPress.com secured $2.4M in funding</a> from Google and other partners to build a publishing platform for news organizations. Around the same time, <a href=\"https://www.axios.com/the-news-project-wordpress-local-news-cms-49d8f91e-2253-4709-bd85-9fb9e06fdd23.html\">The News Project announced</a> it received a six-figure investment from <a href=\"https://wpvip.com/2019/01/15/wordpress-com-vip-invests-in-the-news-project/\">WordPress.com VIP</a> which is essentially accomplishing the same thing. </p>\n\n\n\n<p>I don’t understand why Automattic would invest in The News Project and then create a vertical on WordPress.com that solves the same problem. Since The News Project is already using WordPress to power the CMS and WordPress.com VIP to host their customers, perhaps the capital was more of an in-kind gift. </p>\n\n\n\n<p>Regardless of the relationship between the two company’s, newsrooms and small-to-medium-sized publications are getting more options to consider when it comes to hosting and a CMS that’s highly tailored to the industry. </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 Jul 2019 20:21: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: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:33:\"Matt: The Houston Doberge Project\";s:7:\"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=49673\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"https://ma.tt/2019/06/doberge-project/\";s: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:17215:\"<p><em>Every year for my Mom’s birthday lunch she has a Doberge cake from <a href=\"https://gambinos.com/\">Gambino’s in New Orleans</a>, but this year there was a Fedex snafu and it arrived spoiled. We found a last-minute replacement, but it piqued my curiosity as to better alternatives and I commissioned this survey of eight bakeries to answer the question: What’s the best Doberge cake in Houston or New Orleans? The article and pictures that follow are from <a href=\"https://alicelevitt.com/\">food critic, travel journalist, and medical science writer Alice Levitt</a>. I hope you enjoy the history, reviews, and surprise winner.</em></p>\n\n\n\n<p>1885, Budapest. Franz Josef I and his wife, Elizabeth, rulers of Austro-Hungary, are attending the National General Exhibition of Budapest. There is much to see, but the emperor’s sweet tooth is pulling him toward one particular display. He simply must taste this new cake he’s been hearing about. He must find the Dobos torte.</p>\n\n\n\n<span id=\"more-49673\"></span>\n\n\n\n<p>It isn’t just any cake. With increased ease in shipping products across the continent thanks to better rail links, Jozsef Dobos had set a goal of getting his cakes into homes across Europe. But while trains were fast they weren’t refrigerated, and fluffy whipped cream-layered fancies would quickly become rancid mush in a hot railway carriage. Innovative delicatessen owner Dobos created the solution: a five-layer cake that took a cue from France with a filling of stable chocolate buttercream, a trend that hadn’t yet hit central Europe. Each layer of vanilla sponge worked with its spackling of buttercream like a well-designed piece of modern architecture, keeping itself cool and dry (but not too dry). For a final flourish — and still more shelf-stability — the whole cake got a crisp caramel jacket. </p>\n\n\n\n<p>Dobos, a proponent of open source before it had a name, gave his recipe to the Budapest Confectioner’s and Gingerbread Maker’s Chamber of Industry in 1906 with the stipulation that it must be shared with anyone who wanted it. The cake traveled widely. Now with seven layers, it made its way to America through Jewish delis that sold it as Seven-Layer Cake. Upscale shops like the St. Moritz Bakery in Greenwich, Connecticut, enrobed it in dark chocolate instead of caramel. For its final bit of Americanization, it turned from a round cake into a rectangle. </p>\n\n\n\n<p>1933, New Orleans. It was never this hot in Hungary. Beulah Ledner, with her Eastern European blood, was not made for it. Neither were certain cakes, it turned out. During the Great Depression, she earned extra money for her family crafting the German confections her mother had taught her to make. </p>\n\n\n\n<p>One favorite was Dobos torte. But despite its Hungarian hardiness, it was not created with sticky Louisiana summers in mind. The wintry pastry needed to lighten up.</p>\n\n\n\n<p>Some bakers had ballooned their cakes to 11 layers. Ledner stuck with a more modest eight. But her stroke of genius was replacing the rich buttercream between the layers with airier custard. Buttercream still made an appearance surrounding the cake, which was then covered in a layer of fondant. </p>\n\n\n\n<p>“She knew no one in New Orleans would take to an Eastern European cake,” her son Albert Ledner told <em>Country Roads</em> magazine. “So she Frenchified the name and called it ‘Doberge.’” With that, the pastry’s fate as a New Orleans classic, alongside King Cake and beignets, was sealed. Her Lowerline Street bakery flooded with customers who called her “the Doberge Queen of New Orleans,” perhaps not realizing that she had invented both the cake and the name. Her business grew into a new spot on South Claiborne Avenue and a new name — the Mrs. Charles Ledner Bakery. The torte options grew, too. Chocolate was the standard flavor, but there were lemon, caramel, and strawberry versions. The half-and-half cake, which allowed customers the option to taste chocolate and lemon in a single go, became the most beloved version.</p>\n\n\n\n<p>Despite her success, Ledner sold the business and all its recipes in 1946, blaming health issues and World War II sugar rations. The purchaser, Joe Gambino, adhered strictly to her recipes. He opened his shop, Joe Gambino’s Bakery, in 1949 and has served the cakes to New Orleans and the rest of Louisiana, ever since. </p>\n\n\n\n<p>As for Ledner, part of her deal with Gambino included a five-year embargo on opening a new bakery in New Orleans. But she could only sit still for two, and debuted the Beulah Ledner Bakery in nearby Jefferson Parish in 1948. Demand forced her to change locations yet again and she expanded to Metairie, this time with a bakery designed and built by her architect son. Ledner ran that last bakery until 1981, when she retired at the age of 87. She ate a slice of Doberge for her birthday every year, including at her 94th and final celebration.</p>\n\n\n\n<p>Unsurprisingly, the Doberge’s sugary tendrils also made their way into nearby Houston. There are six businesses in Space City that sell either Doberge or the more classic Jewish-deli-style Seven-Layer Cake. But how to know which to buy for your next birthday? I sampled all six, as well as the best of New Orleans, to figure out which should be avoided and which are worthy centerpieces for a special occasion. They are listed here from worst to best.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h4>The Disappointment<br />The Dobasche, <a href=\"http://raosbakery.com/\">Rao’s Bakery</a> </h4>\n\n\n\n<ul><li><strong>Cake</strong>: White and double fudge</li><li><strong>Layers</strong>: Menu says six, but I only got four</li><li><strong>Filling</strong>: Vanilla and chocolate pudding, purportedly</li><li><strong>Exterior</strong>: Fudge icing, ganache top, and walnuts on the sides</li><li><strong>Decorations</strong>: Just the walnuts</li><li><strong>Pickup experience</strong>: Quick and easy, even on Easter</li><li><strong>Flavors</strong>: Chocolate or lemon</li><li><strong>Sizes</strong>: 6”, 8”, quarter, half, or full sheets</li></ul>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Johnny Rao opened the original location of his bakery in Beaumont on 1941, almost matching the vintage of Ledner’s cakes. The Champions-area bakery, at the top of North Houston’s internationally varied Veterans Memorial Drive, opened in 2006. Things seemed promising despite the strange spelling, “Dobasche.”</p>\n\n\n\n<p>It’s a cheerful place, full of families on a Sunday morning, but the cake didn’t live up to the pleasant experience of the bakery. What made this a Doberge? Nothing, really. The four fat layers of cake alternated between too-light chocolate and white. Though the description on the menu said there were both vanilla and chocolate pudding fillings, I could only find a meager swipe of vanilla buttercream holding the layers together. The exterior fudge icing tasted suspiciously like it had been made by Duncan Hines.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h4>Runners Up<br />Chocolate Daubache, <a href=\"https://fgbakery.com/\">French Gourmet Bakery</a></h4>\n\n\n\n<ul><li><strong>Cake</strong>: Vanilla</li><li><strong>Layers</strong>: Six — four thin, two thick</li><li><strong>Filling</strong>: Fudge icing</li><li><strong>Exterior</strong>: More of the same fudge icing</li><li><strong>Decorations</strong>: A few swirls on top</li><li><strong>Pickup experience</strong>: Exceptional. The counter staffer even offered to carry the cake to the car.</li><li><strong>Flavors</strong>: Chocolate or strawberry</li><li><strong>Sizes</strong>: 8”</li></ul>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>The Ramain family has been running this ladies-who-lunch destination since 1973. Yes, the raison d’être is French-inspired mousse cakes, macarons, and eclairs, but there’s a menu of “American Cakes,” too. The Daubache is served with strawberry filling by default, but is available in a chocolate version as well. </p>\n\n\n\n<p>The six layers here were the most uneven, with two thick ones in the middle resembling buck teeth in a sea of average-sized chompers. There was nothing truly wrong with this cake, but it was really just an acceptable, if slightly oversweet, layer cake with nothing to distinguish it.</p>\n\n\n\n<h4>Seven-Layer Chocolate Cake, <a href=\"https://3brothersbakery.com/\">Three Brothers Bakery</a></h4>\n\n\n\n<p><strong>Cake</strong>: Fluffy, vanilla-scented<br /><strong>Layers</strong>: Seven<br /><strong>Filling</strong>: Chocolate buttercream<br /><strong>Exterior</strong>: Fudge icing<br /><strong>Decorations</strong>: Icing swirls and chocolate sprinkles with a cherry on top.<br /><strong>Pick up experience</strong>: Placed the order online, and pick-up was friendly and easy.<br /><strong>Flavors</strong>: Chocolate or mocha<br /><strong>Sizes</strong>: One size, which feeds about 10-12</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>This is a cake with history. Why not go to a comparably storied bakery? The Three Brothers saga began in 1825 with the opening of Morris Jucker’s bakery in Chrzanow, Poland. The family continued to run the business there until they were rounded up and sent to a concentration camp in 1941. Brothers Sigmund, Sol, and Max Jucker all survived to open their first Houston bakery in 1949.</p>\n\n\n\n<p>That’s the good news. The bad news is that the brothers adapted to American tastes by raising the amount of sugar in their recipes. The buttercream in their Seven Layer Cake made my teeth hurt. But the fudge icing on the outside was less sweet and deeply chocolaty, enhanced with a layer of chocolate sprinkles. I ended up focusing on the perimeter of the large slice. </p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h4>The Classic<br />Doberge Cake, Gambino’s</h4>\n\n\n\n<ul><li><strong>Cake</strong>: Fluffy but sturdy and moist vanilla buttermilk cake</li><li><strong>Layers</strong>: Six</li><li><strong>Filling</strong>: Coffee-infused chocolate custard</li><li><strong>Exterior</strong>: Chocolate buttercream and fondant</li><li><strong>Decorations</strong>: Pretty buttercream flowers</li><li><strong>Pick up experience</strong>: Was able to pick up from case without pre-ordering.</li><li><strong>Flavors</strong>: Chocolate, lemon, caramel, or a mix</li><li><strong>Sizes</strong>: 8”</li></ul>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>So this is history. Gambino’s takes great care in crafting every cake, including baking each of its layers separately, rather than cutting one big cake into pieces. Custard is made from scratch for each specimen. And the half-and-half cakes are still one of the Metairie bakery’s best-sellers. I snapped up a chocolate cake straight from the case.</p>\n\n\n\n<p>Ledner’s attempt at Americanizing her cake by adding more sugar is clear. The buttercream crunched with crystals of it. Combined with the fondant, it was unpleasantly sweet, though I liked the earthiness of the coffee in the chocolate custard.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h4>The Original<br />Seven-Layer Dobash Torte, <a href=\"https://www.thevillagebakeryhouston.com/\">Village Bakery</a></h4>\n\n\n\n<ul><li><strong>Cake</strong>: White</li><li><strong>Layers</strong>: Seven</li><li><strong>Filling</strong>: Chocolate buttercream</li><li><strong>Exterior</strong>: Chocolate buttercream, topped with a layer of lady fingers and caramel</li><li><strong>Decorations</strong>: Nope</li><li><strong>Pick up experience</strong>: Very pleasant.</li><li><strong>Flavors</strong>: Almost endless.</li><li><strong>Sizes</strong>: Up to you. Cakes are entirely custom.</li></ul>\n\n\n\n<p>The name Dobash is misleading; this is no New Orleans delicacy. Of all the cakes I tried, this is closest to Dobos’ original, down to the crunchy coating of caramel, now a rarity. The rectangular shape, however, may owe to Jewish owner Richard Jucker. (I also picked up a day-old bag of his varied, not-too-sweet <a href=\"https://www.myjewishlearning.com/the-nosher/what-are-hamantaschen/\">Hamantaschen</a> while I was there.)</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Any resemblance to the Three Brothers cake is no coincidence. Jucker’s father was one of the founders of that bakery and the younger baker worked there from 1981 to 1999. But just as he broke away, this cake is very much its own torte. Fluffy, vanilla-scented layers are surrounded by buttercream that verges on too sweet, especially with the addition of the caramel, but never overwhelms as some of the others do. This is a Dobos torte for the traditionalist — and the client interested in enhancing their cake with flavors like pistachio or almond buttercream. </p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h4>The Upgrade<br />Seven-Layer Cake, <a href=\"https://www.kennyandziggys.com/\">Kenny & Ziggy’s</a></h4>\n\n\n\n<ul><li><strong>Cake</strong>: Yellow</li><li><strong>Layers</strong>: Seven</li><li><strong>Filling</strong>: Chocolate mousse</li><li><strong>Exterior</strong>: Chocolate ganache</li><li><strong>Decorations</strong>: Toasted almonds on the sides</li><li><strong>Pick up experience</strong>: N/A</li><li><strong>Flavors</strong>: Just chocolate</li><li><strong>Sizes</strong>: Only one, a whopping two feet, eight inches. Catering director Jeanne Magenheim estimates that each one feeds up to 28 people.</li></ul>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>It’s hard to believe that Houston is home to one of the world’s best remaining Jewish delis, but thanks to living piece of culinary history Ziggy Gruber — whose family came to the U.S. from Hungary in the early 20th century and opened New York’s famous Rialto Deli — it has been since 1999. The Deli Man himself designed his Seven-Layer cake to be a cut above the classic. </p>\n\n\n\n<p>Instead of buttercream, he ups the ante with intense chocolate mousse. A thick layer of ganache surrounds the outsized square slices of almond-bedecked layer cake. This would be my favorite if not for the too-light cake itself. Just a hint more substance, and this would be close to perfection.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h4>The Specialist<br />Chocolate Doberge, <a href=\"https://debbiedoesdoberge.com/\">Debbie Does Doberge</a></h4>\n\n\n\n<ul><li><strong>Cake</strong>: White, sturdy but moist</li><li><strong>Layers</strong>: Seven</li><li><strong>Filling</strong>: Custard</li><li><strong>Exterior</strong>: Poured fondant</li><li><strong>Decorations</strong>: You can request buttercream roses or fleurs de lis.</li><li><strong>Pick up experience</strong>: N/A</li><li><strong>Flavors</strong>: Endless, including pistachio, fig/white chocolate/goat cheese, and rum-spiked Bananas Foster.</li><li><strong>Sizes</strong>: 6” through 16”</li></ul>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>A designer friend described the cakes here, crafted by Charlotte McGehee and Charles Mary IV, as having the concise beauty of a sports car. Each slice is simply perfect. The balance of each precisely even layer of cake to complementary custard filling feels like eating cake in Plato’s cave. The care taken in each detail is evident, down to the soft, uncommonly edible fondant coating on each slice, whether it covers a well-spiced carrot cake or indulgently minty chocolate one. </p>\n\n\n\n<p>Is it the best Doberge being produced in the world today? Almost certainly. But right now, the New Orleans company doesn’t ship. (They hope to start again soon.) When it does, this should be the option (smeared) on everyone’s lips. But until then, I’ll fly to New Orleans just to grab a slice of rainbow-striped cake with almond custard and sigh.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h4>The Standout<br />New Orleans Daubache, <a href=\"http://acadianbakers.com/\">The Acadian Bakers</a></h4>\n\n\n\n<ul><li><strong>Cake</strong>: Fluffy vanilla</li><li><strong>Layers</strong>: Six </li><li><strong>Filling</strong>: Chocolate custard</li><li><strong>Exterior</strong>: Ganache</li><li><strong>Decorations</strong>: Chocolate swirls and hearts, as well as two chocolate-covered strawberries.</li><li><strong>Pick up experience</strong>: Cake was more than an hour late, with little apology.</li><li><strong>Flavors</strong>: Just chocolate</li><li><strong>Sizes</strong>: 9”</li></ul>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>The Acadian Bakers has the best Doberge option for a Houston resident; pastry chef Sandra Bubbert has been turning out craveable cakes for more than 36 years. Luminaries from presidents George H.W. Bush and Bill Clinton to Reba McIntyre and Arnold Schwarzenegger have tasted her treats, earning her a reputation as “baker to the stars.”</p>\n\n\n\n<p>I wasn’t treated like a star with the more than hour-long wait for my cake, despite having set a time for pick-up a week before, but once I tasted it, the frustration fell away. This cake is exactly what a Doberge should be. Sweet, but not overwhelming, decadently chocolaty, and sturdy enough to withstand a hot day on the Gulf Coast. </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 Jul 2019 05:15:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:140:\"WPTavern: Anders Norén Release Free Chaplin Theme Designed for Block Editor, Theme Authors Discuss Better Ways to Promote Truly Free Themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=91335\";s:7:\"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:149:\"https://wptavern.com/anders-noren-release-free-chaplin-theme-designed-for-block-editor-theme-authors-discuss-better-ways-to-promote-truly-free-themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7160:\"<p><a href=\"https://www.andersnoren.se\" rel=\"noopener noreferrer\" target=\"_blank\">Anders Norén</a> has released <a href=\"https://wordpress.org/themes/chaplin/\" rel=\"noopener noreferrer\" target=\"_blank\">Chaplin</a>, his 20th free WordPress theme, designed specifically for use with the block editor. Chaplin could be loosely described as an agency or business stye theme but the capabilities of the block editor enable users to create advanced page layouts that would suit many different types of websites.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/07/chaplin.jpg?ssl=1\"><img /></a></p>\n<p>The layout for the front page shown in the screenshots can be easily recreated by adding a new page, selecting “Cover Template” for the page template, and adding a featured image. Users can then add columns, images, and paragraph text using the block editor to recreate the structure of the demo. Norén has included detailed instructions in the theme’s readme.txt file for setting it up to look like the demo.</p>\n<p>Font and color settings can both be found in the Customizer and these styles will be reflected in the block editor for a more realistic preview of the content. Chaplin comes with infinite scroll built in and additional settings for displaying and hiding specific post meta on archives and single posts. The theme has logo support, widget areas, a social menu with icons, sticky header support, and a search overlay. Check out the <a href=\"https://andersnoren.se/themes/chaplin/\" rel=\"noopener noreferrer\" target=\"_blank\">live demo</a> to see all the features in action.</p>\n<p>Shortly before the release of WordPress 5.0, Norén worked to get all of his themes <a href=\"https://wptavern.com/authors-of-popular-wordpress-org-themes-rolling-out-gutenberg-compatibility-updates-ahead-of-5-0-release\" rel=\"noopener noreferrer\" target=\"_blank\">compatible with the new block editor</a>. Most of his previous themes were created to be niche-specific and easy to have looking just like the demo upon activation. One drawback was that the only way to really customize his themes was to create a child theme and add/or custom CSS, something that is out of reach for most WordPress users.</p>\n<p>In a <a href=\"https://www.andersnoren.se/enter-stage-left-chaplin/\" rel=\"noopener noreferrer\" target=\"_blank\">post</a> introducing the theme, Norén described how the new block editor inspired him to start building themes differently than he had in the past.</p>\n<p>“For a while, though, I’ve been thinking about how I could build a theme more customizable than the ones I’ve been making so far,” he said. “With the introduction of the Block Editor in WordPress 5.0, any page on a WordPress site can accommodate pretty much any layout, making WordPress itself a lot more flexible than it was just a year ago. If the Block Editor would enable users to create any layout on their site, and the theme would allow them to style the layouts however they want, then that could end up being pretty useful.”</p>\n<p>Chaplin is a successful departure from Norén’s previously static themes that gives users more freedom simply by making the block editor the main vehicle for creating and rearranging the home page layout. No two customizations will look exactly alike because users can arrange blocks in any combination.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/07/chaplin-collage-compressed.jpg?ssl=1\"><img /></a></p>\n<p>This theme is a good example of the possibilities that the block editor opens up for users who want more control of their sites’ layouts and content without having to wade through pages of documentation and dozens of panels of Customizer options. In many ways, themes that fully embrace the block editor are beginning to make older themes seem two-dimensional. This shift in focus is an important milestone in the evolution of theme development.</p>\n<h3>WordPress Theme Authors Discuss Better Ways to Promote Quality Themes on WordPress.org</h3>\n<p>Based on the community <a href=\"https://twitter.com/andersnoren/status/1146000192795271168\" rel=\"noopener noreferrer\" target=\"_blank\">response</a> to Chaplin’s release, it’s clear that there is a real demand for themes made specifically for the block editor. However, WordPress.org is not currently set up to promote themes like this.</p>\n<p>If you filter for “block editor styles” and “wide blocks” when searching for themes, WordPress.org search currently returns just 26 themes.</p>\n<p>Unless you already know about a specific theme and search for it, the best themes are difficult to find. The Featured and Popular Tabs inside WordPress’ theme browser do little to surface block-ready themes.</p>\n<p>In a related <a href=\"https://twitter.com/justintadlock/status/1147472529113698311\" rel=\"noopener noreferrer\" target=\"_blank\">discussion</a> that popped up over the weekend, long time Theme Review Team member Justin Tadlock contends that the WordPress.org theme directory is “becoming little more than a crippleware distributor.” He is referring to those themes that do not enable users to further customize them but rather lock away certain features behind upsells.</p>\n<p>“Essentially, many themes submitted are a ‘lite’ or ‘free’ version of a commercial theme with extremely reduced functionality,” Tadlock said. “For example, we had a theme author trying to upsell access to post formats (a core feature) the other day.”</p>\n<p>Fellow Theme Review Team member Danny Cooper <a href=\"https://twitter.com/dannycooper147/status/1147569548855562245\" rel=\"noopener noreferrer\" target=\"_blank\">cited</a> Elementor’s Hello Theme as one example of “the new breed of themes that only exist to ‘sell’ something else.”</p>\n<p>Participants in the discussion suggested WordPress.org employ stricter enforcement of upsells or implement a more nuanced tag system that would identify themes that have some features locked for users who don’t purchase an upgrade. Others suggested theme authors meet the minimum accessibility requirements as a new threshold for entry into the directory, which would likely slash the number of themes waiting to be reviewed and incentivize companies to invest in accessibility testing to improve that process.</p>\n<p>“Honestly, I would prefer all themes with upsell to be filtered out into their own section of the directory, so it’s clear to visitors what themes are free and what themes are ‘free,’ Norén said in response to the discussion. “It would also reduce the incentive for theme shops to flood the directory with crippled themes.”</p>\n<p>Norén is one of a handful of theme authors who are submitting high quality themes to the directory that are truly free from upsells. In a time when it’s still not common to find new themes built specifically for the block editor, WordPress.org might benefit from featuring these themes in the same way it does for block-enabled plugins.</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 Jul 2019 22:10:39 +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:78:\"WPTavern: WPWeekly Episode 359 – Diversity Speaker Training With Jill Binder\";s:7:\"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=91436&preview=true&preview_id=91436\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://wptavern.com/wpweekly-episode-359-diversity-speaker-training-with-jill-binder\";s: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:2523:\"<p>In this episode, <a href=\"http://jjj.me\">John James Jacoby</a> and I are joined by <a href=\"https://jillbinder.com/\">Jill Binder</a>, Founder, and Chief Consultant and Trainer at <a href=\"http://diversein.tech\">Diverse Speakers In Tech</a>. We discussed how and why the <a href=\"https://make.wordpress.org/training/handbook/lesson-plans/speaker-training/\">Diverse Speaker Training group</a> was created, how <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/diversity-speaker-training-workshop/\">the training</a> encourages underrepresented people to speak at WordCamps, and how the <a href=\"https://en.blog.wordpress.com/2019/06/19/want-to-see-a-more-diverse-wordpress-contributor-community-so-do-we/\">recent 50% sponsorship funds</a> from Automattic will be used.</p>\n<p>We also learned that local communities that have participated in the training at the meetup level have seen a sharp increase in the number of diverse speaker applications submitted to WordCamps. Binder is hoping to be sponsored 100% so she can work on the project full-time. If you’re interested in <a href=\"https://jillbinder.com/contact/\">sponsoring her work</a>, please visit her contact page and get in touch.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://pantheon.io/blog/announcing-pantheon-localdev-early-access\">Announcing Pantheon Localdev Early Access</a></p>\n<p><a href=\"https://woocommerce.wordpress.com/2019/07/02/woocommerce-3-6-5-security-release/\">WooCommerce 3.6.5 security release</a></p>\n<p><a href=\"https://jetpack.com/2019/07/02/jetpack-7-5/\">Jetpack 7.5</a></p>\n<p><a href=\"https://twitter.com/JohnONolan/status/1146075173134618625\">Discuss This Tweet by John O’ Nolan</a></p>\n<h2>Transcript:</h2>\n<p><a href=\"https://wptavern.com/wp-content/uploads/2019/07/EPISODE-359-Transcript.rtf\">EPISODE 359 Transcript</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, July 10 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 #359:</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, 04 Jul 2019 01:10:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:119:\"WPTavern: Google Launches Effort to Make Robots Exclusion Protocol an Internet Standard, Open Sources Robots.txt Parser\";s:7:\"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=91320\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:129:\"https://wptavern.com/google-launches-effort-to-make-robots-exclusion-protocol-an-internet-standard-open-sources-robots-txt-parser\";s: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:3859:\"<p>Website owners have been excluding web crawlers using the Robots Exclusion Protocol (REP) on robots.txt files for 25 years. More than 500 million websites use robots.txt files to talk to bots, according to Google’s data. Up until now, there has never been an official Internet standard, no documented specification for writing the rules correctly according to the protocol. Over the years, developers shared their various interpretations of the protocol, but this created many different ambiguous methods for controlling crawlers.</p>\n<p>Google is working together with Martijn Koster, the original author of the protocol, webmasters, and other search engines to <a href=\"https://webmasters.googleblog.com/2019/07/rep-id.html\" rel=\"noopener noreferrer\" target=\"_blank\">create a proposal</a> to submit to the <a href=\"https://www.ietf.org/standards/\" rel=\"noopener noreferrer\" target=\"_blank\">Internet Engineering Task Force</a> (IETF) for standardizing the REP:</p>\n<blockquote><p>The proposed REP draft reflects over 20 years of real world experience of relying on robots.txt rules, used both by Googlebot and other major crawlers, as well as about half a billion websites that rely on REP. These fine grained controls give the publisher the power to decide what they’d like to be crawled on their site and potentially shown to interested users. It doesn’t change the rules created in 1994, but rather defines essentially all undefined scenarios for robots.txt parsing and matching, and extends it for the modern web.</p></blockquote>\n<p>The proposed specification includes several major items that webmasters and developers will want to review. It extends the use of robots.txt to any URI-based transfer protocol (FTP, CoAP, et al), instead of limiting it to HTTP. It also implements a new maximum caching time of 24 hours and lets website owners update robots.txt whenever they choose, without having crawlers overload their sites with requests. If a previously accessible robots.txt file becomes inaccessible for whatever reason, crawlers will respect the known disallowed pages that were previously identified for “a reasonably long period of time.”</p>\n<p>Google has also <a href=\"https://opensource.googleblog.com/2019/07/googles-robotstxt-parser-is-now-open.html\" rel=\"noopener noreferrer\" target=\"_blank\">open sourced</a> the C++ library it uses for parsing and matching rules in robots.txt files, along with a testing tool for testing the rules. Developers can use this parser to create parsers that use the proposed REP requirements. It has been updated to ensure that Googlebot only crawls what it’s allowed to and is now <a href=\"https://github.com/google/robotstxt\" rel=\"noopener noreferrer\" target=\"_blank\">available on GitHub</a>.</p>\n<p>“This library has been around for 20 years and it contains pieces of code that were written in the 90’s,” Google’s Search Open Sourcing team said in the <a href=\"https://webmasters.googleblog.com/2019/07/repp-oss.html\" rel=\"noopener noreferrer\" target=\"_blank\">announcement</a>. “Since then, the library evolved; we learned a lot about how webmasters write robots.txt files and corner cases that we had to cover for, and added what we learned over the years also to the internet draft when it made sense.”</p>\n<p>Lizzi Harvey, who maintains Google’s Search developer docs, updated the robots.txt spec to match the REP draft. Check out the <a href=\"https://developers.google.com/search/reference/robots_txt#what-changed\" rel=\"noopener noreferrer\" target=\"_blank\">full list of changes</a> if you want to compare your robots.txt file to the proposed spec. If the proposal for standardizing the REP is successfully adopted by the IETF, the days of googling and wading through undocumented robots.txt rules will soon be over.</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, 03 Jul 2019 19:11: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: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:77:\"WPTavern: Font Awesome is Branching out with Duotone Colors and Icon Smashups\";s:7:\"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=91328\";s:7:\"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/font-awesome-is-branching-out-with-duotone-colors-and-icon-smashups\";s: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:2617:\"<p><a href=\"https://fontawesome.com/icons?d=gallery&v=5.9.0\" rel=\"noopener noreferrer\" target=\"_blank\">Font Awesome 5.9</a> was released last month with 421 new and updated icons. The popular icon font library has grown to include more than 5,000 vector icons and is used on <a href=\"https://trends.builtwith.com/widgets/Font-Awesome\" rel=\"noopener noreferrer\" target=\"_blank\">34% of the top million websites</a>. It’s also one of the top open source projects on GitHub and a popular choice for WordPress theme and plugin developers using icons in their work.</p>\n<p>Just a month after 5.8 brought in another batch of top requested brand icons, including Airbnb, Salesforce, and Evernote, the latest release adds more Editor icons to help those who are building text and WYSIWYG editor UIs.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/07/Screen-Shot-2019-07-03-at-8.52.47-AM.png?ssl=1\"><img /></a></p>\n<p>Another notable update in 5.9 is the introduction of icon duos, where Font Awesome has taken some icons and put them together with other icons. For example, the update includes combinations like car-bus and burger-soda.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/07/Screen-Shot-2019-07-03-at-9.06.59-AM.png?ssl=1\"><img /></a></p>\n<p>Font Awesome also recently announced that it will soon be introducing duotone colors to the library, which users will be able to customize.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">We thought it might be fun to add a little color to our icons. So we did. <a href=\"https://twitter.com/hashtag/duotone?src=hash&ref_src=twsrc%5Etfw\">#duotone</a> <a href=\"https://twitter.com/hashtag/comingsoon?src=hash&ref_src=twsrc%5Etfw\">#comingsoon</a> <a href=\"https://t.co/9nOyw8pgCK\">pic.twitter.com/9nOyw8pgCK</a></p>\n<p>— Font Awesome (@fontawesome) <a href=\"https://twitter.com/fontawesome/status/1143244812910510084?ref_src=twsrc%5Etfw\">June 24, 2019</a></p></blockquote>\n<p></p>\n<p>Documentation on the using the duotones is not yet available, but Font Awesome confirmed that users will be able to change the tones of each icon within their own CSS to any combination. The feature will work out-of-the-box by inheriting the current color but users will be able to change the master color or each layer individually. The icons can then be further customized by targeting each layer in CSS. Follow <a href=\"https://twitter.com/fontawesome\" rel=\"noopener noreferrer\" target=\"_blank\">Font Awesome on Twitter</a> for all the latest news on icon updates and the upcoming duotone color feature release.</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, 03 Jul 2019 15:16:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:28:\"HeroPress: I Am Cookie Dough\";s:7:\"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=2911\";s:7:\"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:108:\"https://heropress.com/essays/i-am-cookie-dough/#utm_source=rss&utm_medium=rss&utm_campaign=i-am-cookie-dough\";s: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:12128:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2019/07/070319-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: I can finally acknowledge that I am worth being a part of a team.\" /><p>I was always told I had to go to college. I was “gifted” so learning came easy and I enjoyed it. From ages 6 to 18, I went to competitive accelerated schools designed to churn out college students. It was a narrow path I’d been set on, without encouragement to explore beyond.</p>\n<p>Majoring in theater was a no-brainer. It was the only thing I’d done my whole life, so I figured I wouldn’t get bored. My mom was a stage manager so it has always been easy to bring me to rehearsals with her when working a show. I ended up in close to 20 different productions between 5 and 13. Plus, Florida State University had a great theatre program and in-state tuition was cheap. So I went.</p>\n<p>But I wasn’t there because I wanted to be. I’d gone simply because I felt I <i>had</i> to go to college, regardless of what I did when I got there. I liked theater a lot, but I didn’t love it the way my classmates did. Self-doubt crept in. Depression overcame me. Anxiety and self-hatred took root. I stopped going to class. I isolated myself from my friends who – going through their own stuff – were too busy to notice.</p>\n<p>At 19, I dropped out.</p>\n<h3>Straying from the path</h3>\n<p>With me, I took thousands in debt, a diagnosis of bipolar disorder, and a bruised ego. I wandered, directionless for the first time in my life.</p>\n<p>I felt like a failure. I did not know who or what I was anymore, I had no community and I belonged nowhere. I was crippled by my concurrent depression and lack of a diploma. What was my path now?</p>\n<p>My mother spent her whole life working in the arts and that made her happy. I wanted the same thing. But we were always pinching pennies. I didn’t want that for myself, and I didn’t want my kids to grow up with that burden. So I thought to myself, “What can I do that’s creative, won’t be boring, and can earn me an income?”</p>\n<p>I don’t remember if there was a lightbulb moment where I realized web design checked all my boxes. But that was there I landed.</p>\n<p>I started getting my toes wet with HTML and CSS, but coding didn’t come easily to me. I didn’t have a computer, so I would write out lines of code by hand in order to memorize syntax. It didn’t click and just swam in front of my eyes. It was difficult, so I gave up.</p>\n<p>For a year and a half, I lived in a few different cities, from Ft Lauderdale all the way to Los Angeles, working some retail and food service jobs. I learned about customer service, the balance between maintenance and growth, and found myself more than a little bit fascinated by marketing. I began to learn how to juggle the depression and anxiety that lived in my head.</p>\n<p>No matter where I went, web design was sitting in the back of my brain. I was shut down when I tried to suggest changes to the booking system of a salon I worked at. I found myself sketching redesigns of the website of the bar where I picked up shifts. I started learning again after moving back to Florida. This time, I found online resources like Udemy and CodeSchool and it all began to click.</p>\n<h3>Finding a new path</h3>\n<p>While I still didn’t love code itself, I loved the idea of building something from nothing. It all hearkened back to theater: rallying the knowledge and experience of multiple people, laying out a plan, inventing some creative solutions along the way, iteration after iteration until it functions and yields a result, then presenting it as a living and breathing product. I had learned about story-telling via script analysis classes in college as well as spacing and color psychology. I had always been academic, so I found ease and comfort in things like databases and content writing. My intellectual and creative side were merging, dancing together in one elegant performance.</p>\n<p>In 2015, I applied for a web design internship at a small agency. It was here where WordPress and I first met. I was amazed that I could easily build websites with limited coding knowledge. I attended my first WordCamp in Miami, where I watched people like Morten Hendricksen and Michelle Schlup live what I wished I could be doing.</p>\n<p>I was promoted to a full employee in a poisonous environment. I had to work long hours and was accused of not being a team player if I didn’t. I was guilt-tripped with gifts and compliments. I was asked to do tasks I hadn’t been trained in and was berated when I struggled. I left one day after about a year, in tears. The despair, loneliness and frustration were unassailable. I had failed, yet again, to move forward on the path I felt I belonged on.</p>\n<h3>Setting my own path</h3>\n<p>I had no savings and no car, so I was left with a choice: apply to work at the Wendy’s that was walking distance up the street, or find a way to make money out of thin air. Taking inventory of my skills:</p>\n<ol>\n<li>I knew WordPress</li>\n<li>I knew how <i>not</i> to run a business</li>\n</ol>\n<p>So I started building small sites for friends and family. I scrambled to learn how to invoice properly, how to handle contracts, how to get taxes paid. I googled a lot and failed often. But it was rewarding and creative, so I stuck to it.</p>\n<p>In 2017, I felt confident enough to apply to speak at WordCamp Miami. It had been 2 years since I had attended the first and I was floored when I was accepted.</p>\n<p>In the three years that I ran my business, I worked with clients from all over the world. I used WordPress daily to build and break, support and scale websites for other business owners like me. I wore every hat I could balance: CEO, CFO, designer, developer, marketer, and support staff in one.</p>\n<p>While I appeared “successful” (whatever that means) I was paddling like crazy beneath the surface and was constantly stretched to my limit. I achieved decent work-life boundaries and found satisfaction in the work, but being depressed while running a business is easier said than done.</p>\n<p>In early 2019, as my bank account began to dry up, I began to seriously consider throwing in the towel.</p>\n<h3>A fork in the path</h3>\n<p>I spoke at WordCamp Miami that year. The entire camp buoyed my spirits; this time, there were faces and topics I recognized. I went with my friend, Louise Treadwell, who made the entire experience less frightening.</p>\n<p>And the universe was looking out for me. The very first person I met that day was Adam Warner.</p>\n<p>He saw my talk and I suppose he saw something in me that he liked. By the end of the conference, my head was swimming with the opportunity he had presented to me: to travel as a GoDaddy Pro Speaker Ambassador.</p>\n<p>I felt that electric sensation again of my two halves – academic and creative – merging. It was the first time the community had reached out and taken a firm, confident grasp of my hand. And I was in exactly the right spot to accept it.</p>\n<p>The idea of attending more WordCamps was thrilling. I vowed to myself that I would up my Twitter game. After all, all my WordCamp heroes were active on Twitter and I was desperate to be where the action was.</p>\n<p>I grabbed as many opportunities as I could to remain visible. I wrote blog posts and made YouTube videos to prove what I knew, to myself as much as others. I wanted to earn my place at the table by giving back into the community that had plucked me out of my despair.</p>\n<h3>Time to merge</h3>\n<p>I’d done a podcast episode with Michelle Ames and I noticed she worked for the plugin, GiveWP. Out of curiosity, I wandered over to their careers page and saw an opening for a support tech. I had the job within 3 days.</p>\n<p>I’ve done a lot of things out of fear that many people find brave. I was told I was brave for majoring in theater, but I’d done it because I didn’t want to fail at something unfamiliar. I was told I was brave for moving to Los Angeles after I dropped out, but I was afraid to be stagnant. I was told I was brave to start my own business, but I was afraid to work for someone else.</p>\n<p>I do feel fear. Fear that I don’t know enough, that I’m too young or inexperienced, that I’ll let down the people who have cheered me on, that I’ll end up vulnerable the way I was in my last job. That I’ll get hurt. That being a black, queer, woman in the tech space will be too challenging.</p>\n<p>I’m comforted by the knowledge that most WordPress people don’t care what gender/color/sexuality you are… as long as you keep your plugins updated. Open-source means you’re not here to out-do the next person, but to contribute toward a common goal. I can dive into support at Give with WordPress as my base, my constant. I can finally acknowledge that I am worth being part of a team. It means all the difference in the world.</p>\n<h3>Who invented this path nonsense anyway?</h3>\n<p>I don’t have to be on a path anymore. I can let myself remain open to possibilities and say “yes” more. I don’t have to decide what I’m going to be, <i>I can just become it,</i> because I can trust myself and the foundation that WordPress has given me. WordPress, with it’s limitless contributors, versions, and possibilities, reminds us that we should be excited by change, not afraid.</p>\n<p>I believe that giving up what I worked for 3 years to build is the bravest thing I’ve done so far. At first, I was furious at myself that I couldn’t make my own business as sustainable as I’d wanted. Moving to Give felt like failing. But Louise called it “failing up” which I think is pretty apt. It was a step forward into something I could grow into and really succeed at, rather than sticking with the familiar like I had always done.</p>\n<p>I often remind myself of a quote from Buffy the Vampire Slayer which, ironically, I watched for the first time while in some the deepest throes of my depression: <i>“</i><i>I’m cookie dough. I’m not done baking. I’m not finished becoming who ever the hell it is I’m gonna turn out to be.” </i></p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\">\n<div class=\"rtsocial-twitter-horizontal\">\n<div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: I Am Cookie Dough\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=I%20Am%20Cookie%20Dough&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fi-am-cookie-dough%2F\" rel=\"nofollow\" target=\"_blank\"></a></div>\n</div>\n<div class=\"rtsocial-fb-horizontal fb-light\">\n<div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: I Am Cookie Dough\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fi-am-cookie-dough%2F\" rel=\"nofollow\" target=\"_blank\"></a></div>\n</div>\n<div class=\"rtsocial-linkedin-horizontal\">\n<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%2Fi-am-cookie-dough%2F&title=I+Am+Cookie+Dough\" rel=\"nofollow\" target=\"_blank\" title=\"Share: I Am Cookie Dough\"></a></div>\n</div>\n<div class=\"rtsocial-pinterest-horizontal\">\n<div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/i-am-cookie-dough/&media=https://heropress.com/wp-content/uploads/2019/07/070319-150x150.jpg&description=I Am Cookie Dough\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: I Am Cookie Dough\"></a></div>\n</div>\n<p><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/i-am-cookie-dough/\" title=\"I Am Cookie Dough\"></a></div>\n<p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/i-am-cookie-dough/\">I Am Cookie Dough</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, 03 Jul 2019 12:00: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:13:\"Allie Nimmons\";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:66:\"WPTavern: Walking 718km to WCEU, an Interview With Marcel Bootsman\";s:7:\"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=91357\";s:7:\"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:76:\"https://wptavern.com/walking-748km-to-wceu-an-interview-with-marcel-bootsman\";s: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:2209:\"<p>I have a hard time walking a mile or two let alone 718km, but that’s what <a href=\"https://twitter.com/mbootsman\">Marcel Bootsman</a> did on his journey to <a href=\"https://walktowc.eu/\">WordCamp EU</a> to generate funds for <a href=\"https://donatewc.org/\">DonateWC</a>. </p>\n\n\n\n<p>In this interview, Bootsman explains how he prepared for the journey, what he experienced during his trip, and why he chose DonateWC as the charity to raise funds for. </p>\n\n\n\n<p>One of the things that I was curious about was what Bootsman thought about during those long stretches where he had plenty of time to think to himself. </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>The thing that I noticed is that my thinking had changed during the month. In the beginning, I was thinking about my work, my company, and my family a lot. After about a week my family met me and it was very emotional. </p><p>After that week I found a how do you call it, peace or something like a Zen mode. Nothing was on my mind for large parts of the route. While I was walking, I was just looking around at the scenery and checking out the animals that I saw.</p><p>Sometimes I got an idea about my work and what I wanted to do differently. I’d write it down on my phone and the trip was mostly calm and relaxing.</p><cite>Marcel Bootsman </cite></blockquote>\n\n\n\n<p>The interview is 31 minutes long and is available in video and mp3 formats. There’s also a transcript available below. In the end, Bootsman was able to raise €8590 for DonateWC and inspire a lot of people. To learn more about his journey, check out his <a href=\"https://walktowc.eu/2019/06/29/wrapping-up-walk-to-wordcamp-europe/\">Walk to WordCamp EU summary</a>. </p>\n\n\n\n<h2>Watch and Listen:</h2>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<h2>Listen:</h2>\n\n\n\nInterview with Marcel Bootsman\n\n\n\n<h2>Transcript:</h2>\n\n\n\n<div class=\"wp-block-file\"><a href=\"https://wptavern.com/wp-content/uploads/2019/07/Interview-With-Marcel-Bootsman-Transcript.rtf\">Interview-With-Marcel-Bootsman-Transcript</a><a href=\"https://wptavern.com/wp-content/uploads/2019/07/Interview-With-Marcel-Bootsman-Transcript.rtf\" class=\"wp-block-file__button\">Download</a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 02 Jul 2019 23:57: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: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: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:79:\"WPTavern: msgWP to Launch Plugin Enabling WordPress Microblogging with Telegram\";s:7:\"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=91315\";s:7:\"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/msgwp-to-launch-plugin-enabling-wordpress-microblogging-with-telegram\";s: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:6742:\"<p><a href=\"https://msgwp.com/\" rel=\"noopener noreferrer\" target=\"_blank\">msgWP</a> piqued public interest this week with a demo of its new microblogging product that allows users to publish text messages and photos to WordPress sites using <a href=\"https://telegram.org/\" rel=\"noopener noreferrer\" target=\"_blank\">Telegram</a>. Although the plugin hasn’t officially launched yet, a <a href=\"https://msgwp.com/demo/\" rel=\"noopener noreferrer\" target=\"_blank\">live demo</a> on the website allows people to anonymously publish a post to msgWP’s demo blog from their own Telegram accounts by launching a Telegram bot.</p>\n<p>The plugin’s creator, <a href=\"https://github.com/meszarosrob\" rel=\"noopener noreferrer\" target=\"_blank\">Róbert Mészáros</a>, said he plans to launch it in late summer or early fall, after collecting more feedback from beta testers and polishing the website. Mészáros is a developer who mainly works on a contract or freelance basis. Although msgWP isn’t is first WordPress plugin, it is the first one he has created as a product to promote.</p>\n<p>“It’s highly unlikely that I’ll make msgWP available on the WordPress.org Plugin Directory, but it’s going to be GPL licensed,” Mészáros said.</p>\n<p>“Support, automatic updates, and restricted content will be available only for those who buy a plan. Since I’m using msgWP myself and I plan to donate a part of profit back to the community, to the WordPress Foundation.”</p>\n<p>Most of the plugins available that integrate Telegram with WordPress either broadcast to a channel or display the feed of a public channel in a widget. This is the first plugin that sends Telegram user-generated content into WordPress.</p>\n<p>I tested the demo last night and successfully posted a text to the demo blog. Images do not yet appear to be working on the demo or may be disabled for now. Mészáros said the demo implementation unhooks some of the checks that are enabled by default on the plugin.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/07/Screen-Shot-2019-07-02-at-12.36.31-PM.png?ssl=1\"><img /></a></p>\n<p>When the msgWP plugin is used on a site, administrators need to allow a Telegram account to create posts explicitly. This setting is available in the admin screen where you can enter the username of a Telegram account. Adding multiple usernames to the whitelist opens up some interesting possibilities for group blogging.</p>\n<p>“Since every Telegram message contains information about the Telegram account, we can filter out those who are not whitelisted,” Mészáros said.</p>\n<p>“Also, the fact that users are explicitly whitelisted opens up the way to have user level settings. For example, you can set a specific category for a Telegram account or only give them the option to create draft posts.</p>\n<p>“If you whitelist yourself you have a microblog; if you whitelist 20 users with various settings, you can cover a live event with Telegram and msgWP.”</p>\n<p>The msgWP plugin also checks the IP of the request. If it falls outside a particular IP range, msgWP can recognize that it’s not from Telegram and block it.</p>\n<p>Mészáros’ inspiration for the plugin came from his principles regarding centralized social media. While he maintains a private blog where his friends follow him, Mészáros’ doesn’t use platforms like Twitter and Facebook.</p>\n<p>“I feel strongly about blogging and microblogging,” he said. “It’s not all rainbows – if you have one, you know that it takes a certain kind of commitment and effort.”</p>\n<p>Mészáros said he was also inspired “by an almost forgotten history of WordPress,” wherein many took advantage of its support for XML-RPC to blog from desktop blog editors, like MarsEdit, BlogJet, and BlogDesk, without ever logging into the admin. He contends that third-party tools like this demonstrate that <a href=\"https://msgwp.com/what-is-wordpress-without-its-editor-we-are-not-sure/\" rel=\"noopener noreferrer\" target=\"_blank\">WordPress is more than the editor</a>.</p>\n<p>Since msgWP is already integrated into the messaging workflow for Telegram users, it may inspire some to blog more often. Posting is faster than using Twitter, Facebook, or even the WordPress mobile apps, albeit with far fewer features.</p>\n<p>“Paradoxically we want to encourage people to use WordPress by not reminding them that they run their sites/microblogs on WordPress,” Mészáros said. “A messaging app has some informality to it, and that will help a lot. All you need is to write and press send. After all, you are sending texts, and not publishing structured articles on your blog after too many glasses of wine. For this reason, we don’t see msgWP with Telegram as a replacement for the WP Mobile Apps.”</p>\n<p>Despite the convenience promised through various apps, the concept of microblogging on one’s own website does not seem to have taken off yet. Services like <a href=\"https://micro.blog/\" rel=\"noopener noreferrer\" target=\"_blank\">micro.blog</a>, which integrate with existing WordPress blogs, are still used by a fervent few and have not yet gained mainstream adoption. Even the “Press This” feature that was included in WordPress core prior to 2017, was <a href=\"https://wptavern.com/press-this-removed-from-wordpress-4-9-in-favor-of-a-plugin\" rel=\"noopener noreferrer\" target=\"_blank\">retired in favor of a canonical plugin</a>, with discontinued support for the bookmarklet feature. It hasn’t been updated for two years and is only installed on approximately 10,000 sites.</p>\n<p>Postcard, a social sharing and microblogging app that integrated with WordPress, is another tool that was aimed at fundamentally changing how people use social networks. It was <a href=\"https://wptavern.com/postcard-project-discontinued-ios-and-android-apps-now-open-source\" rel=\"noopener noreferrer\" target=\"_blank\">discontinued due to the development burden</a> of supporting multiple apps.</p>\n<p>There are many different solutions that have popped up over the years for enabling quick posts or microblogging, all with vastly different approaches. msgWP has an advantage in that Mészáros can leverage the power and speed of Telegram, along with all of its mobile and desktop clients, without having to maintain that aspect of the publishing interface. Even if it doesn’t spark a wildfire of microblogging across the web, it may offer users a convenient alternative to posting content inside social media silos, especially for niche use cases like group microblogging for live events.</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, 02 Jul 2019 22:36:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:34:\"Matt: Just Write with David Perell\";s:7:\"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=49754\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://ma.tt/2019/07/just-write-with-david-perrell/\";s: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:594:\"<p>I had an <a href=\"https://www.perell.com/podcast/matt-mulleweg\">interesting conversation with David Perell on his North Star Podcast that I recommend checking out</a>. He’s also leading a really interesting program <a href=\"https://www.perell.com/write-of-passage\">called Write of Passage</a> which is an online course which helps people grow their career by writing and sharing online, which I think is brilliant and a big source of my career growth over the years. I’ve heard he has another coming soon around information organization. David is someone to watch and follow.</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, 02 Jul 2019 12:56: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:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"WPTavern: CMS Backend Opener: A Firefox Extension to Quickly Locate the Login Page to Popular CMS Backends\";s:7:\"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=91312\";s:7:\"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:116:\"https://wptavern.com/cms-backend-opener-a-firefox-extension-to-quickly-locate-the-login-page-to-popular-cms-backends\";s: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:1342:\"<p>If you use Firefox and manage multiple websites that use different Content Management Systems and have a hard time keeping track of the various URLs to their backends, consider using the <a href=\"https://addons.mozilla.org/en-US/firefox/addon/cms-backend-opener/\">CMS Backend Opener</a> Firefox extension created by Andy R.</p>\n\n\n\n<p>Once installed, you can use either a keyboard shortcut (Alt + Y) or press a button within the browser and it will automatically open the login page for the detected CMS in a new window. </p>\n\n\n\n<p>The extension uses the CMS meta-tag: Generator to detect which CMS is being used. The following CMS’ are supported:</p>\n\n\n\n<ul><li>Typo3</li><li>Typo3 Neos</li><li>Joomla</li><li>WordPress</li><li>Django</li><li>Shopware (beta)</li><li>Magento (beta)</li><li>Drupal</li><li>Contao</li><li>Weblication</li><li>WebsiteBaker</li><li>CMSQLite</li><li>Oxid</li></ul>\n\n\n\n<p>Although the extension has not been updated in two years, I tested it on Firefox 67.0.4 on my MacBook Pro and it worked without any issues. I typically use a bookmark to browse to WP-Admin but this is more convenient, especially on WordPress.com. </p>\n\n\n\n<p>I’ve also learned that if you have Pretty Permalinks enabled in WordPress, you can type /login or /admin after your domain and it will typically load the login page. </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, 01 Jul 2019 22:53:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:104:\"WPTavern: Lessons from the GraphQL Documentary: Never Underestimate the Power of Open Source Communities\";s:7:\"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=91081\";s:7:\"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/lessons-from-the-graphql-documentary-never-underestimate-the-power-of-open-source-communities\";s: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:5631:\"<p><a href=\"https://www.honeypot.io/\" rel=\"noopener noreferrer\" target=\"_blank\">Honeypot</a>, a tech-focused job platform based in Europe, has produced a <a href=\"https://youtu.be/783ccP__No8\" rel=\"noopener noreferrer\" target=\"_blank\">documentary</a> that offers a fascinating look at the origins of <a href=\"https://graphql.org/\" rel=\"noopener noreferrer\" target=\"_blank\">GraphQL</a>. The 28-minute video explores how quickly the project began to have an impact on the wider tech industry after Facebook publicly released it as an open source project.</p>\n<p>GraphQL co-founder Nick Schrock, who was interviewed along with fellow co-creators Lee Byron and Dan Schafer, said the documentary “captured both the urgency and joy of the early months of the GraphQL.” It was filmed over two months in San Francisco and Berlin, where Honeypot runs the <a href=\"https://www.graphqlconf.org/\" rel=\"noopener noreferrer\" target=\"_blank\">GraphQL Conf</a> in cooperation with <a href=\"https://www.prisma.io/\" rel=\"noopener noreferrer\" target=\"_blank\">Prisma</a>.</p>\n<p>GraphQL began as an internal project at Facebook that was born out of necessity as the tech industry began to shift towards providing better mobile experiences for users. At that time, Facebook’s native apps were just a thin wrapper around the mobile website.</p>\n<p>“The inability of a large technology company to adjust to a technology shift as big as the mobile shift is the type of thing that will consign a seemingly unstoppable empire to the grave in a matter of a few years,” Schrock said.</p>\n<p>Facebook decided to re-write the Facebook iOS app but the APIs they had at that time were inadequate for creating the Newsfeed. A new Newsfeed API was written simultaneously to be used with the new mobile app. Facebook for iOS 5.0, released in 2012, was a native re-write of the app and also the first time GraphQL was deployed in the wild. Following that release, its use was expanded beyond just the Newsfeed to encompass most of the functionality offered in Facebook’s iOS app.</p>\n<p>Facebook shared GraphQL with the world at React Europe 2015 and published the GraphQL spec later in 2015. They explained that their goal was to design what they thought was the ideal API for frontend developers and work backwards with the technology.</p>\n<p>GraphQL’s creators were surprised at how fast the uptake was after making the project public. Engineers at Airbnb, Twitter, and Github were early adopters and their experiences are shared in the documentary with interviews from the community. The problems GraphQL’s creators encountered in scaling their mobile experience were not specific to Facebook. Other companies had similar problems and the demand for GraphQL in the industry was already there. Within six months, the team saw implementations of GraphQL in many of the major programming languages. They realized how important the project was to the industry after <a href=\"https://github.blog/2016-09-14-the-github-graphql-api/\" rel=\"noopener noreferrer\" target=\"_blank\">GitHub announced in 2016 that its public API would be a GraphQL API</a>:</p>\n<blockquote><p>Using GraphQL on the frontend and backend eliminates the gap between what we release and what you can consume. We really look forward to making more of these simultaneous releases. GraphQL represents a massive leap forward for API development. Type safety, introspection, generated documentation, and predictable responses benefit both the maintainers and consumers of our platform.</p></blockquote>\n<p>The documentary tells the story of how GraphQL began the first three years as a solution to internal problems at Facebook but expanded to become a community tool that was initially adopted by hobbyists and then incorporated into the products of large tech companies. GraphQL co-founder Lee Byron predicts that the project is entering the next phase of its life and “heading towards becoming an industry standard and one that’s collaborative.”</p>\n<p>There’s no way to measure the number of APIs that are being built around GraphQL, but the query language is now used in both internal and external APIs at major companies like Pinterest, Intuit, Coursera, Walmart, Shopify, PayPal, KLM, NBC News Digital, Credit Karma, Wayfair, and Yelp. Since it can be used in combination with REST APIs, GraphQL’s rapid adoption is not necessarily a good predictor for the end of REST architecture, but it’s a trend that is worth following. This widespread adoption began with just a handful of engineers who saw GraphQL’s promise at React Europe 2015, built tools to optimize development, and advocated for using GraphQL at their companies.</p>\n<p>“I totally underestimated the power of these open source communities,” Schrock said. “We had to rely on this community of poeple to form spontaneously and then build implementations of this in different languages and then actually productionize it and build an entire tool ecosystem around it. I didn’t think that was ever going to work, and I was totally wrong. If an idea makes sense to people and it clicks with their mind and they can see the vision, they are actually willing to do a lot of work in order to see it executed and share their work, and it’s a pretty remarkable thing to see.”</p>\n<p>The energy in the GraphQL documentary is inspiring and the story shares many parallels with other open source projects that have gained widespread adoption through passionate communities. Check out the full documentary 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:\"Mon, 01 Jul 2019 21:02: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: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:32:\"Post Status: WCEU 2019 in Review\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=64837\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://poststatus.com/wceu-2019-in-review/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9086:\"<p>All the talks and panels at WCEU were planned and executed well, but there were a few standouts we’ll highlight, in case you weren’t able to watch the entire <a href=\"https://2019.europe.wordcamp.org/2019/06/21/livestream/\">livestream</a>.</p>\n\n\n\n<h2><strong>Friday Highlights</strong></h2>\n\n\n\n<ul><li><strong>Jenny Beaumont</strong>’s “<a href=\"https://2019.europe.wordcamp.org/session/doing-it-wrong/\">Doing It Wrong</a>” was an encouraging talk that set a good mood for the whole conference. Jenny’s <a href=\"https://www.youtube.com/watch?v=J7D5p25NyAk\">interview</a> with <strong>Torque</strong> at WCEU is worth a listen too. <img src=\"https://s.w.org/images/core/emoji/11.2.0/72x72/1f31e.png\" alt=\"🌞\" class=\"wp-smiley\" /></li><li><strong>John Jacoby</strong>’s talk on “<a href=\"https://2019.europe.wordcamp.org/session/advanced-database-management-for-plugins/\">Advanced Database Management For Plugins</a>” explored the pain of dealing with databases when you’re writing plugins. He also announced a stand-alone open source library for better WordPress database management that will be released in July.</li><li><strong>Josepha Haden</strong>‘s talk entitled “<a href=\"https://2019.europe.wordcamp.org/session/change-your-socks-change-your-mind-a-no-fuss-primer-on-change-management/\">Change your socks, change your mind: A no-fuss primer on change management</a>” focused on the things group and community leaders should attend to most during periods of significant change. That’s a timely subject, given the events of the past year, and Josepha’s points apply to many parts of the WordPress community. <img src=\"https://s.w.org/images/core/emoji/11.2.0/72x72/1f9e6.png\" alt=\"🧦\" class=\"wp-smiley\" /></li></ul>\n\n\n\n<p>Matt’s talk after lunch on Friday was more of an update on Gutenberg. Matt presented some Gutenberg stats and then put the spotlight on some new block editor plugins and experiments. Matt reminded everyone that Gutenberg is in phase two, “where we are working with widgets (old school blocks), customization, and menus.”</p>\n\n\n\n<h2><strong>Matt’s Session</strong></h2>\n\n\n\n<ul><li>Matt showed off the <a href=\"https://wordpress.org/plugins/grids/\"><strong>Grid</strong> block plugin</a> from <strong>Evolve</strong> that generates any layout style with a slick UI. You have to see it in action.</li><li>Gutenberg is now <a href=\"https://www.drupal.org/project/gutenberg\">available for <strong>Drupal</strong></a><strong>.</strong></li><li>There are about 150k posts published each day with Gutenberg. That’s about two every second, and ta rate is increasing.</li><li>Gutenberg will soon have:<ul><li>A block directory that’s accessible from the “top-level navigation” on the .org site.</li><li>Footnotes and improved “micro” animations.</li><li>Special attention placed on the mobile experience. Matt noted that “Gutenberg for mobile is live, and the ability [to use its features] is increased now in the mobile apps.” He also mentioned they “had to write the codebase separately for this experience.”</li></ul></li></ul>\n\n\n\n<p>The initial questions Matt got from the audience were somewhat aggressive and prolonged, so the moderators found it a challenge to keep things moving. At one point, a moderator broke in to say, “This isn’t a question; it’s a blog post.” I’m wondering if in the future at WCEU (or the upcoming WordCamp US) if a different moderation process might be considered.</p>\n\n\n\n<p>If I had to choose one question of note, it would be the one asked about Matt’s (and WordPress’s) commitment to accessibility. Matt replied, “Accessibility is hard. We will get there. I believe we can make every release of WordPress better, but it’s challenging with Gutenberg because there might not be previous examples to work from.” He acknowledged the excellent work that <strong>WPCampus</strong> recently did with its accessibility audit.</p>\n\n\n\n<h2><strong>Saturday Highlights:</strong></h2>\n\n\n\n<p>Saturday’s talks, like Friday’s, were well done, although the panel on Gutenberg might have had more diversity in its composition, as a few people noted on Twitter.</p>\n\n\n\n<p>Two especially notable talks:</p>\n\n\n\n<ul><li><strong>Brian Teeman</strong>, one of the Joomla co-founders, defined what counts as truly free software. (<a href=\"https://www.slideshare.net/brianteeman/the-power-of-free-151309934\">Slides</a>) If you have begun to wonder how cloud services and <strong>Jetpack</strong> challenge the concept of “free,” check out Brian’s talk. Brian also has a recent post on his blog with <a href=\"https://brian.teeman.net/web/891-learn-something-new-at-a-conference\">some good advice for conference goers</a>: attend sessions randomly or pick ones with unfamiliar topics if you want to learn the most.</li><li><strong>Marcel Bootsman</strong> gave an inspiring account of his 700km walk to Berlin to attend the conference. It tied in well with <strong>Ines Van Essen</strong>’s talk later that afternoon about bringing peop<a href=\"https://2019.europe.wordcamp.org/session/bringing-people-to-wordcamps/\">https://2019.europe.wordcamp.org/session/bringing-people-to-wordcamps/</a>le to WordCamps and how much it typically costs for someone to attend.</li></ul>\n\n\n\n<p>The conclusion of WCEU came with the usual display of conference statistics:</p>\n\n\n\n<ul><li>3,260 tickets were sold. (800 more than last year!) <img src=\"https://s.w.org/images/core/emoji/11.2.0/72x72/1f39f.png\" alt=\"🎟\" class=\"wp-smiley\" /></li><li>2,734 attendees. (610 for contributor day!)</li><li>1,722 or 56% were attending WCEU for the first time.</li><li>11,700 meals were served. <img src=\"https://s.w.org/images/core/emoji/11.2.0/72x72/1f37d.png\" alt=\"🍽\" class=\"wp-smiley\" /></li><li>60 speakers gave talks.</li><li>60 interviews took place.</li><li>60 sponsors — and 150 micro-sponsors helped make it all possible.</li><li>2k photos / 1m Tweets — YOU ARE WELCOME! <img src=\"https://s.w.org/images/core/emoji/11.2.0/72x72/1f60a.png\" alt=\"😊\" class=\"wp-smiley\" /></li><li>97 countries were represented by attendees. <img src=\"https://s.w.org/images/core/emoji/11.2.0/72x72/1f30d.png\" alt=\"🌍\" class=\"wp-smiley\" /></li><li>166 square meters of printed banners and materials were produced this year, which will be repurposed by being made into bags. <img src=\"https://s.w.org/images/core/emoji/11.2.0/72x72/267b.png\" alt=\"♻\" class=\"wp-smiley\" /></li></ul>\n\n\n\n<p>Since I was not physically attending WCEU, I asked people who were there in Berlin what they most appreciated — especially if it wasn’t observable through the livestream.</p>\n\n\n\n<img src=\"https://cdn.poststatus.com/wp-content/uploads/2019/06/Screen-Shot-2019-06-28-at-1.05.08-PM.png\" alt=\"\" class=\"wp-image-64838\" />\n\n\n\n<p>I got <a rel=\"noreferrer noopener\" href=\"https://twitter.com/dimensionmedia/status/1142704622911524864\" target=\"_blank\">some good answers on Twitter</a> from <a rel=\"noreferrer noopener\" href=\"https://twitter.com/topher1kenobe/status/1142829013515276289\" target=\"_blank\">Topher</a>, <a rel=\"noreferrer noopener\" href=\"https://twitter.com/JJJ/status/1142784869610770433\" target=\"_blank\">JJJ</a>, <a rel=\"noreferrer noopener\" href=\"https://twitter.com/mor10/status/1142804505802739714\" target=\"_blank\">mor10</a>, <a rel=\"noreferrer noopener\" href=\"https://twitter.com/learnwithmattc/status/1142460541409124354\" target=\"_blank\">Matt Cromwell</a>, <a rel=\"noreferrer noopener\" href=\"https://twitter.com/netagence/status/1142774768804012033\" target=\"_blank\">Pierre Mobian</a>, and <a rel=\"noreferrer noopener\" href=\"https://twitter.com/yvettesonneveld/status/1142833983157391360\" target=\"_blank\">Yvette Sonneveld</a>, among others.</p>\n\n\n\n<p><a rel=\"noreferrer noopener\" href=\"https://2019.europe.wordcamp.org/2019/04/30/wp-cafe/\" target=\"_blank\">The WP Cafe</a> was a new feature for WCEU that provided “space for our attendees to meet, connect, and chat about a range of topics.” It’s an evolution of the previous year’s “Tribe Meetups.”</p>\n\n\n\n<p>After the event, the WordCamp Europe team <a href=\"https://2019.europe.wordcamp.org/2019/06/24/after-party-apology/\">addressed some issues</a> that came up at the afterparty — around the entertainment that was provided, and in regard to water availability.</p>\n\n\n\n<h2><strong>WCEU 2020</strong></h2>\n\n\n\n<p>WordCamp Europe is always held in a different city in Europe every year, and it was announced at the end of the event that the 2020 conference would be held in Porto, Portugal. (There’s <a rel=\"noreferrer noopener\" href=\"http://youtu.be/gKGA3O3aZy4\" target=\"_blank\">a trailer</a>.)</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>Porto seems to be a popular destination, and WCEU reported that just 24 hours after opening the #WCEU 2020 Call for Organisers, over 30 applications were already received.</p>\n\n\n\n<p><a href=\"https://twitter.com/WCEurope/status/1142117820660101120\"><em>Photo credit @WCEurope</em></a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 01 Jul 2019 20:45: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:12:\"David Bisset\";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:53:\"WordPress.org blog: The Month in WordPress: June 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=7009\";s:7:\"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:68:\"https://wordpress.org/news/2019/07/the-month-in-wordpress-june-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:8172:\"<p>June has certainly been a busy month in the WordPress community — aside from holding the largest WordPress event ever, the project has hit a number of significant milestones and published some big announcements this past month.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>A Wrap for WordCamp Europe 2019</h2>\n\n\n\n<p>WordCamp Europe 2019 took place on June 20-22. It was the largest WordPress event ever, with 3,260 tickets sold and 2,734 attendees. The attendees came from 97 different countries and 1,722 of them had never attended WordCamp Europe before.</p>\n\n\n\n<p>The event featured 60 speakers who delivered talks and workshops on a variety of topics over two conference days, most notably <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a>’s keynote that included an update on the current status of WordPress Core development, along with a lively Q&A session. The full session from the live stream is <a href=\"https://youtu.be/UE18IsncB7s?t=13033\">available to watch online</a>.</p>\n\n\n\n<p>For its eighth year, <a href=\"https://2019.europe.wordcamp.org/2019/06/25/wordcamp-europe-2020/\">WordCamp Europe will take place in Porto, Portugal</a>. The 2020 edition of the event will be held on June 4-6. If you would like to get involved with WordCamp Europe next year, fill out <a href=\"https://2020.europe.wordcamp.org/2019/06/22/call-for-organisers/\">the organizer application form</a>. </p>\n\n\n\n<h2>Proposal for XML Sitemaps in WordPress Core</h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2019/06/12/xml-sitemaps-feature-project-proposal/\">A proposal this month</a> suggested bringing XML sitemap generation into WordPress Core. This is a feature that has traditionally been handled by plugins, which has resulted in many different implementations across different sites. It also means that many sites do not have XML sitemaps, which can be a problem because they are hugely important to having your site correctly indexed by search engines.</p>\n\n\n\n<p>The proposal details how core sitemaps would be structured and how the team would build them, as well as what aspects of WordPress would not be considered appropriate information to be included.</p>\n\n\n\n<p>Want to get involved in building this feature? Comment on <a href=\"https://make.wordpress.org/core/2019/06/12/xml-sitemaps-feature-project-proposal/\">the proposal</a>, 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>Translation Milestone for the Spanish Community</h2>\n\n\n\n<p><a href=\"https://twitter.com/wp_es/status/1138015568563441665\">The WordPress community of Spain has worked hard</a> to make <a href=\"https://translate.wordpress.org/locale/es/\">the es_ES locale</a> the first in the world to fully localize all of WordPress Core along with all Meta projects, apps, and the top 200 plugins. This is made possible by having the largest translation team out of any locale, consisting of 2,951 individual contributors.</p>\n\n\n\n<p>Want to get involved in translating WordPress into our locale? Find your locale on <a href=\"https://translate.wordpress.org/\">the translation platform</a>, follow <a href=\"https://make.wordpress.org/polyglots/\">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>WordPress 5.2.2 Maintenance Release</h2>\n\n\n\n<p>On June 18, <a href=\"https://wordpress.org/news/2019/06/wordpress-5-2-2-maintenance-release/\">v5.2.2 of WordPress was released</a> as a maintenance release, fixing 13 bugs and improving the Site Health feature that was first published in v5.2. If your site has not already been automatically updated to this version, you can <a href=\"https://wordpress.org/download/\">download the update</a> or manually check for updates in your WordPress dashboard. Thanks to <a href=\"https://profiles.wordpress.org/audrasjb/\">JB Audras</a>, <a href=\"https://profiles.wordpress.org/justinahinon/\">Justin Ahinon</a>, and <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a> for co-leading this release, as well as the 30 other individuals who contributed to it.</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>Full End to End Tests for WordPress Core</h2>\n\n\n\n<p>On June 27, <a href=\"https://make.wordpress.org/core/2019/06/27/introducing-the-wordpress-e2e-tests/\">e2e (end to end) testing was introduced</a> to WordPress and included in the continuous integration pipeline. E2e testing, which has been successfully used by Gutenberg, is used to simulate real user scenarios and validate process flows. Currently, the setup requires <a href=\"https://docs.docker.com/install/\">Docker</a> to run, and a number of e2e test utilities are already available in the <a href=\"https://github.com/WordPress/gutenberg/tree/master/packages/e2e-test-utils/src\">@wordpress/e2e-test-utils</a> package, in the Gutenberg repository. </p>\n\n\n\n<p>Want to use this feature? The more tests that are added, the more stable future releases will be! Follow the <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, and join the #core-js channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Feature Packages from the Theme Review Team</h2>\n\n\n\n<p>Following a <a href=\"https://make.wordpress.org/themes/2019/06/07/proposal-theme-feature-repositories/\">proposal for theme feature repositories</a>, an <a href=\"https://make.wordpress.org/themes/2019/06/24/feature-packages-update/\">update to the features package was announced</a>. Two new packages have been created that require code review and testing. The first is an Autoload Package, a foundational package for theme developers who are not currently using Composer (although <a href=\"https://getcomposer.org/\">Composer</a> is recommended instead of this package). The second is a Customizer Section Button Package that allows theme authors to create a link/button to any URL.</p>\n\n\n\n<p>There are other proposed ideas for packages that require feedback and additional discussion. Want to add your suggestions and thoughts? Join the conversation on the <a href=\"https://make.wordpress.org/themes/2019/06/24/feature-packages-update/\">Theme Review team blog</a> and join the #themereview 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>Development continues on the Gutenberg project, with <a href=\"https://make.wordpress.org/core/2019/06/26/whats-new-in-gutenberg-26th-june/\">the latest release</a> including layouts for the Columns block, Snackbar notices, markup improvements, and accessibility upgrades.</li><li>The Community team <a href=\"https://make.wordpress.org/community/2019/06/26/wordcamp-europe-2019-recap-of-community-team-activities-at-contributor-day-plans-for-the-future/\">published the results of their work</a> at the WordCamp Europe contributor day.</li><li>The Polyglots team <a href=\"https://make.wordpress.org/polyglots/2019/06/26/proposal-for-handling-pte-requests/\">has put together a proposal</a> for a new way to handle PTE requests.</li><li>This year’s recipient of the Kim Parsell Memorial Scholarship for WordCamp US <a href=\"https://wordpressfoundation.org/2019/2019-kim-parsell-memorial-scholarship-recipient-carol-gann/\">is Carol Gann</a>.</li><li>The Amurrio WordPress community <a href=\"http://wpamurrio.es/wordpress-amurrio-mega-meetup-i-edition/\">hosted their first “mega meetup”</a> – this is a great event format that bridges the gap between regular meetup event and WordCamp.</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:\"Mon, 01 Jul 2019 10:07: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: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: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:108:\"WPTavern: Free Online JavaScript for WordPress Conference to Feature “Headless WordPress” Track, July 12\";s:7:\"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=91260\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:112:\"https://wptavern.com/free-online-javascript-for-wordpress-conference-to-feature-headless-wordpress-track-july-12\";s: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:2082:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/02/JS-for-WP-conf-2019.jpg?ssl=1\"><img /></a></p>\n<p>The second edition of the <a href=\"https://javascriptforwp.com/conference/\" rel=\"noopener noreferrer\" target=\"_blank\">JavaScript for WordPress</a> conference will be streamed online July 11-13, 2019. Based on the success of the 2018 event, which had 1,200 attendees watching live, organizer Zac Gordon decided to expand the event to feature three free days of talks, workshops, and a contribution day focused on JavaScript and WordPress.</p>\n<p>The conference will run from July 11-13, and includes educational content for a whole range of Javascript capabilities, from beginner to advanced:</p>\n<ul>\n<li>Day 1 – Workshops for JavaScript Beginners</li>\n<li>Day 2 – Three Tracks of Intermediate and Advanced Talks (plus One Non-Technical Track)</li>\n<li>Day 3 – Contributor Day to help improve the JavaScript-related documentation for WordPress</li>\n</ul>\n<p>Gordon has published the finalized <a href=\"https://javascriptforwp.com/conference/\" rel=\"noopener noreferrer\" target=\"_blank\">schedule</a> for the 36 sessions and speakers that will be streamed on Friday, July 12. This year the event will feature one track devoted to exploring topics surrounding “headless WordPress,” an approach that eschews WordPress’ traditional architecture in favor of decoupling the front and backends, allowing developers to integrate different stacks. The track includes presentations like A React Theme in 30 Min, SEO for Headless WordPress Themes, Gatsby & WordPress, and Headless E-Commerce with BigCommerce. Other tracks feature more general JavaScript and Gutenberg topics.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/06/js-for-wp-conf-schedule-2019.png?ssl=1\"><img /></a></p>\n<p>Thanks to more than a dozen sponsors, registration is free, but viewers must <a href=\"https://javascriptforwp.com/conference/\" rel=\"noopener noreferrer\" target=\"_blank\">sign up</a> on the conference website in order to attend online.</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, 29 Jun 2019 00:16: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: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:44:\"WPTavern: In Case You Missed It – Issue 27\";s:7:\"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=91256&preview=true&preview_id=91256\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wptavern.com/in-case-you-missed-it-issue-27\";s: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:8950:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/01/ICYMIFeaturedImage.png?ssl=1\" rel=\"attachment wp-att-50955\"><img /></a>photo credit: <a href=\"http://www.flickr.com/photos/112901923@N07/16153818039\">Night Moves</a> – <a href=\"https://creativecommons.org/licenses/by-nc/2.0/\">(license)</a></p>\n<p>There’s a lot of great WordPress content published in the community but not all of it is featured on the Tavern. This post is an assortment of items related to WordPress that caught my eye but didn’t make it into a full post.</p>\n<h2 class=\"entry-title\">Carol Gann Awarded the 2019 Kim Parsell Memorial Scholarship</h2>\n<p><a href=\"https://carolgann.wordpress.com/\">Carol Gann</a>, who is a Meetup coordinator in the <a href=\"https://wporlando.org/\">WordPress Orlando Community</a>, has been awarded the <a href=\"https://2019.us.wordcamp.org/2019/06/28/carol-gann-2019-kim-parsell-memorial-scholarship-recipient/\">Kim Parsell Memorial Scholarship</a>. The scholarship is named after Kim Parsell who <a href=\"https://wptavern.com/kim-parsell-affectionately-known-as-wpmom-passes-away\">passed away in 2015</a> but her impact on the WordPress community is still felt today.</p>\n<p>“My proudest contribution to the WordPress open source project is training small business owners and bloggers to be comfortable and conversant with their own WordPress websites. WordPress empowers people. Many end users of WordPress are not technically minded. As a WordPress Meetup co-organizer, I contribute to the coffee help desk, assisting others in finding solutions to their WordPress problems. I also host another help desk opportunity, ‘Coffee With Carol,’ to empower WordPress users,” Gann said.</p>\n<p>I can tell from the quote above that Kim and Carol would get along well as Kim was also the type of person who would do what she could to help others.</p>\n<h2>GravityView Diversity Grant to Attend PressNomics 6</h2>\n<p>The folks over at GravityView are <a href=\"https://gravityview.co/gravityview-diversity-grant/\">offering a grant</a> to recognize the challenges certain groups of people face succeeding in technology fields and to promote inclusivity and diversity. The grant includes a ticket to PressNomics 6, a flight to Tuscon, AZ, lodging, transportation via a Lyft gift card, and a one-on-one business consultation with Zak Katz, Co-founder of GravityView. The deadline to apply is 11:59 PM MDT on June 30, 2019.</p>\n<h2>10up OpenSource Project Scaffolding Suite</h2>\n<p>10up has released a <a href=\"https://10up.com/blog/2019/project-scaffolds-released/\">project scaffolding suite</a> that includes a WordPress starter theme, starter plugin, and NPM package. The purpose of the suite is to streamline repetitive tasks, encourage community contributions, and provide a starting point that includes 10up’s engineering best practices.</p>\n<h2>End to End Tests Added to Core</h2>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://make.wordpress.org/core/2019/06/27/introducing-the-wordpress-e2e-tests/\">Introducing the WordPress e2e tests</a></p></blockquote>\n<p></p>\n<h2>WP Tavern Turns 10 Years Old</h2>\n<p>I was looking back through the Tavern archives and realized that this past January, WP Tavern turned 10 years old. It’s been quite a journey and it’s not over yet. Check out the <a href=\"https://wptavern.com/welcome-to-the-wordpress-tavern\">first post</a> I published on the Tavern announcing its opening.</p>\n<h2>Matt Mullenweg Announces That Automattic Is Sponsoring Jill Binder’s Work</h2>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://ma.tt/2019/06/diversifying-wordpress/\">Diversifying WordPress</a></p></blockquote>\n<p></p>\n<h2>John James Jacoby Releases A Plugin That Cryptographically Signs Posts</h2>\n<p>John James Jacoby <a href=\"https://jjj.blog/2019/06/heidenberg/\">has released</a> a <a href=\"https://github.com/JJJ/Heidenberg\">small plugin on GitHub</a> that cryptographically signs posts. The plugin splits the content of posts in words and then stenographically inserts zero-width characters between them. These characters then form a unique, invisible pattern that can be used to detect plagiarised content. This plugin sounds like it would pair well with <a href=\"https://wptavern.com/new-wordproof-plugin-timestamps-wordpress-content-on-the-blockchain\">WordProof</a>.</p>\n<h2>What does DXP Mean?</h2>\n<p>I asked on Twitter what does DXP or Digital Xperience platform mean? It comes across as fancy marketing lingo. Here are a few of the responses I received.</p>\n<p><a href=\"https://twitter.com/mattmedeiros/status/1143302580057071616\">Matt Mederios</a> – ‘<span class=\"css-901oao css-16my406 r-1qd0xha r-ad9z0x r-bcqeeo r-qvutc0\">DXP’ or in other words, how we want our customers to experience WordPress in our controlled ecosystem. All your solutions in one place, possibly to the point you don’t recognize it’s WordPress.<br />\n</span></p>\n<p><a href=\"https://twitter.com/StephenCronin/status/1143388011586920448\">Stephen Cronin</a> – <span class=\"css-901oao css-16my406 r-1qd0xha r-ad9z0x r-bcqeeo r-qvutc0\">DXP is an enterprise thing and has been around for ages in various guises. WordPress is not listed by Gartner, but Drupal and SharePoint are, along with other enterprise CMS’s. If people want to create DXPs out of WordPress, more power to them.</span></p>\n<p><a href=\"https://twitter.com/karimmarucchi/status/1143307026421997571\">Karim Marucchi</a> – <span class=\"css-901oao css-16my406 r-1qd0xha r-ad9z0x r-bcqeeo r-qvutc0\">Forget the buzz, large sites are moving past ‘just’ content, no one product (not </span><span class=\"r-18u37iz\"><a class=\"css-4rbku5 css-18t94o4 css-901oao css-16my406 r-1n1174f r-1loqt21 r-1qd0xha r-ad9z0x r-bcqeeo r-qvutc0\" dir=\"ltr\" href=\"https://twitter.com/hashtag/AEM?src=hashtag_click\">#AEM</a></span><span class=\"css-901oao css-16my406 r-1qd0xha r-ad9z0x r-bcqeeo r-qvutc0\"> not </span><span class=\"r-18u37iz\"><a class=\"css-4rbku5 css-18t94o4 css-901oao css-16my406 r-1n1174f r-1loqt21 r-1qd0xha r-ad9z0x r-bcqeeo r-qvutc0\" dir=\"ltr\" href=\"https://twitter.com/hashtag/Sitecore?src=hashtag_click\">#Sitecore</a></span><span class=\"css-901oao css-16my406 r-1qd0xha r-ad9z0x r-bcqeeo r-qvutc0\">) will ever be perfect for all the existing & new features that are popping up ‘monthly’, so with </span><span class=\"r-18u37iz\"><a class=\"css-4rbku5 css-18t94o4 css-901oao css-16my406 r-1n1174f r-1loqt21 r-1qd0xha r-ad9z0x r-bcqeeo r-qvutc0\" dir=\"ltr\" href=\"https://twitter.com/hashtag/OpenSourse?src=hashtag_click\">#OpenSourse</a></span><span class=\"css-901oao css-16my406 r-1qd0xha r-ad9z0x r-bcqeeo r-qvutc0\"> we all can make the most open easy/most compatible /cheap framework that will help the <span class=\"r-18u37iz\"><a class=\"css-4rbku5 css-18t94o4 css-901oao css-16my406 r-1n1174f r-1loqt21 r-1qd0xha r-ad9z0x r-bcqeeo r-qvutc0\" dir=\"ltr\" href=\"https://twitter.com/hashtag/enterprise?src=hashtag_click\">#enterprise</a></span> manage/customize/blend all the ways you need to interact with your clients. And yes, the good Hosts, are staying out of trying to be all things.</span></p>\n<p>Thanks to these three, the meaning of DXP is a bit more clear.</p>\n<h2>WordCamp EU Organizing Team Issues Apology</h2>\n<p>There were some things that took place during the WordCamp EU afterparty that didn’t sit well with some people. The WordCamp EU organizing team explained what happened and <a href=\"https://2019.europe.wordcamp.org/2019/06/24/after-party-apology/\">issued an apology</a> for the mistakes that were made.</p>\n<h2>Torque Interviews Marcel Bootsman</h2>\n<p>Doc Pop of Torque <a href=\"https://twitter.com/TheTorqueMag/status/1141715724685185024\">caught up</a> with Marcel Bootsman to talk about his walking journey to Berlin. Ironically, the interview occurs as they’re walking around.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">.<a href=\"https://twitter.com/mbootsman?ref_src=twsrc%5Etfw\">@mbootsman</a> just finished his 718km walk to <a href=\"https://twitter.com/hashtag/WCEU?src=hash&ref_src=twsrc%5Etfw\">#WCEU</a>, so we thought it would be fun to do a <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f4ac.png\" alt=\"💬\" class=\"wp-smiley\" /> and <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f6b6-1f3fc.png\" alt=\"🚶🏼\" class=\"wp-smiley\" /> about his <a href=\"https://twitter.com/hashtag/walktoWCEU?src=hash&ref_src=twsrc%5Etfw\">#walktoWCEU</a> project. <a href=\"https://t.co/5qSlVZYuiv\">pic.twitter.com/5qSlVZYuiv</a></p>\n<p>— Torque (@TheTorqueMag) <a href=\"https://twitter.com/TheTorqueMag/status/1141715724685185024?ref_src=twsrc%5Etfw\">June 20, 2019</a></p></blockquote>\n<p></p>\n<p>That’s it for issue twenty-seven. If you recently discovered a cool resource or post related to WordPress, please share it with us in the comments.</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, 28 Jun 2019 20:55: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:\"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: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:76:\"WPTavern: BuddyPress 5.0 to Introduce BP REST API, First Beta Due Mid-August\";s:7:\"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=91063\";s:7:\"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/buddypress-5-0-to-introduce-bp-rest-api-first-beta-due-mid-august\";s: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:3010:\"<p>BuddyPress 5.0 is on track to introduce a new BP REST API, which has been in <a href=\"https://wptavern.com/buddypress-rest-api-feature-plugin-now-in-development\" rel=\"noopener noreferrer\" target=\"_blank\">development as a feature plugin</a> on <a href=\"https://github.com/buddypress/BP-REST\" rel=\"noopener noreferrer\" target=\"_blank\">GitHub</a> since 2016. Contributors plan to merge the API with 14 endpoints for popular components like activity updates, groups, members, private messages, and extended profile fields. Another eight endpoints for blogs, friends, and other features, are planned to ship in BuddyPress 6.0.0.</p>\n<p>The first major use of the BP REST API inside BuddyPress is a <a href=\"https://buddypress.trac.wordpress.org/changeset/12405\" rel=\"noopener noreferrer\" target=\"_blank\">new group management interface</a> that enables administrators to quickly search for specific members to promote, demote, ban, or remove. BuddyPress contributor Mathieu Viet shared a demo of what users can expect from the new interface on both the frontend and the backend.</p>\n<p><div class=\"wp-video\"><!--[if lt IE 9]><script>document.createElement(\'video\');</script><![endif]-->\n<a href=\"https://wptavern.com/wp-content/uploads/2019/06/5zJCxp2ARb.mp4\">https://wptavern.com/wp-content/uploads/2019/06/5zJCxp2ARb.mp4</a></div></p>\n<p>Contributors are still discussing how to include the BP REST API into the BuddyPress plugin package, whether they should continue maintaining it on GitHub until all the endpoints are finished and include it during the BuddyPress plugin’s build process, or merge it into BuddyPress core and use Trac. GitHub is more convenient for development but some expressed concerns about fragmenting the history of the API’s development on two platforms.</p>\n<p>BuddyPress lead developer Boone Gorges said in a recent dev chat that shipping the BP REST API without documentation is a blocker. Contributors are now working on a new documentation site. Since version 5.0.0 will be more of a developer-oriented release, Viet suggested contributors take the opportunity to set up developer.buddypress.org with similar resources as WordPress has on its <a href=\"https://developer.wordpress.org/\" rel=\"noopener noreferrer\" target=\"_blank\">DevHub</a> project. He is looking for feedback on his <a href=\"https://bpdevel.wordpress.com/2019/06/24/bp-devhub/\" rel=\"noopener noreferrer\" target=\"_blank\">proposal</a> for automatically generating the documents from the REST schemas of the API’s endpoints and further customizing it for integration into the broader developer.buddypress.org site.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/06/bp-rest-api-reference.png?ssl=1\"><img /></a></p>\n<p>BuddyPress contributors are targeting August 15 for releasing 5.0.0 beta 1 and will discuss a date for RC further down the road. Regular dev chat meetings have resumed and are now happening every other Wednesday at 19:00 UTC in the #BuddyPress Slack 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:\"Fri, 28 Jun 2019 18:52: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: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: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:84:\"WPTavern: WordPress for iOS 12.6.1 Revamps Stats, Acknowledges Third-Party Libraries\";s:7:\"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=91217\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"https://wptavern.com/wordpress-for-ios-12-6-1-revamps-stats-acknowledges-third-party-libraries\";s: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:2991:\"<p>WordPress for iOS 12.6.1 is now available in the <a href=\"https://apps.apple.com/us/app/wordpress-1-website-builder/id335703880\">iTunes App Store</a>. The User Interface as well as the backend that powers stats has been revamped and more closely resembles what you see on the Jetpack Stats module. There are now date selectors and individual stats contain more detail. </p>\n\n\n\n<div class=\"wp-block-image\"><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/06/img_2783.png?ssl=1\"><img /></a>Revamped Stats in the WordPress for iOS App</div>\n\n\n\n<p>More often than not over the years, when I’ve tried to view stats, they don’t load. In 12.6.1, the stats are cached making them not only quicker to load, but they’re available to view offline as well. </p>\n\n\n\n<p>This version also improves the block editor by fixing an issue where the setting to open links in new tabs was always set to off. Also, when users attempt to put invalid content into blocks, there’s a more descriptive error message. </p>\n\n\n\n<p>Those who share photos into WordPress from other apps can now share an unlimited number of photos and if an image fails to upload, the error message will contain more detailed information. </p>\n\n\n\n<p>The WordPress for iOS app uses libraries from third-party’s. To see who these parties are, the team has added an acknowledgments section in the app. You can view this page by browsing to Me > App Settings > About WordPress for iOS > Acknowledgements. Fair warning, this page is quite lengthy. There’s also a variety of bug fixes in this version as well. </p>\n\n\n\n<div class=\"wp-block-image\"><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/06/img_2784.png?ssl=1\"><img /></a>WordPress for iOS Third-party Library Acknowledgements </div>\n\n\n\n<p>One change that I noticed that doesn’t make sense and that I’ve been unable to find an explanation for is the labeling change. The app is now labeled on the app store as <strong>WordPress #1 Website Builder</strong>. </p>\n\n\n\n<p>I don’t view the app as a website builder, it’s more of a website manager. I’ve asked in the WordPress Mobile Slack channel why this change was made <s>but as of publishing, have not received a response</s>.</p>\n\n\n\n<p>WordPress for iOS is free and <a href=\"https://apps.apple.com/us/app/wordpress-1-website-builder/id335703880\">available on iTunes</a>. There’s also a mobile app for Android devices and a desktop application that be found on the <a href=\"https://apps.wordpress.com/mobile/\">WordPress Mobile Apps</a> site. </p>\n\n\n\n<h2>Updated June 28th, 2019</h2>\n\n\n\n<p>I received a response from Elisa Budelli, Mobile Developer at Automattic, regarding the label change. </p>\n\n\n\n<p>“The title is describing WordPress as a full product, not only the mobile apps. The switch is based on a recommendation from a SEO specialist, and we will evaluate how it works and revert if we see no impact.”</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, 27 Jun 2019 23:48:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:\"\";}}}}}}}}}}}}}}}}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:\"Wed, 31 Jul 2019 12:16:51 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Wed, 31 Jul 2019 12:00:08 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 2\";s:16:\"content-encoding\";s:4:\"gzip\";}}s:5:\"build\";s:14:\"20130911010210\";}', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(932, '_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1564618611', 'no'),
(933, '_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1564575411', 'no'),
(934, '_transient_timeout_dash_v2_f69de0bbfe7eaa113146875f40c02000', '1564618611', 'no'),
(935, '_transient_dash_v2_f69de0bbfe7eaa113146875f40c02000', '<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://ru.wordpress.org/news/2019/05/wordpress-translation-day-4-%D1%81%D0%B0%D0%BD%D0%BA%D1%82-%D0%BF%D0%B5%D1%82%D0%B5%D1%80%D0%B1%D1%83%D1%80%D0%B3/\'>WordPress Translation Day 4 — Санкт-Петербург</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wptavern.com/wordpress-security-team-discusses-backporting-security-releases-to-fewer-versions\'>WPTavern: WordPress Security Team Discusses Backporting Security Releases to Fewer Versions</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/wordsesh-emea-coming-september-25-a-new-virtual-wordpress-event-for-europe-middle-east-and-africa\'>WPTavern: WordSesh EMEA Coming September 25: A New Virtual WordPress Event for Europe, Middle East, and Africa</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/wordpress-contributors-explore-the-possibility-of-a-global-accessibility-event\'>WPTavern: WordPress Contributors Explore the Possibility of a Global Accessibility Event</a></li></ul></div>', 'no'),
(937, '_site_transient_timeout_available_translations', '1564586297', 'no'),
(938, '_site_transient_available_translations', 'a:117:{s:2:\"af\";a:8:{s:8:\"language\";s:2:\"af\";s:7:\"version\";s:5:\"5.0.4\";s:7:\"updated\";s:19:\"2019-05-16 12:52:45\";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.4/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:5:\"5.2.2\";s:7:\"updated\";s:19:\"2019-07-30 09:40:27\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.2.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:6:\"4.9.10\";s:7:\"updated\";s:19:\"2019-05-14 14:59:20\";s:12:\"english_name\";s:10:\"Belarusian\";s:11:\"native_name\";s:29:\"Беларуская мова\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.9.10/bel.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"be\";i:2;s:3:\"bel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Працягнуць\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"5.2.1\";s:7:\"updated\";s:19:\"2019-06-10 20:13:25\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.1/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:20:\"Bengali (Bangladesh)\";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:5:\"5.2.2\";s:7:\"updated\";s:19:\"2019-06-25 02:28:24\";s:12:\"english_name\";s:7:\"Tibetan\";s:11:\"native_name\";s:21:\"བོད་ཡིག\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.2.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:\"5.2.2\";s:7:\"updated\";s:19:\"2019-06-24 05:22:45\";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/5.2.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:5:\"5.2.2\";s:7:\"updated\";s:19:\"2019-07-26 14:27:28\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.2.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.2.2\";s:7:\"updated\";s:19:\"2019-07-02 05:01:03\";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.2.2/cs_CZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Pokračovat\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:19:\"2019-06-21 08:32:15\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.2.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.2.2\";s:7:\"updated\";s:19:\"2019-07-08 20:19:38\";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.2.2/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:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:19:\"2019-07-22 22:31:16\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/5.2.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: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:5:\"5.2.2\";s:7:\"updated\";s:19:\"2019-06-19 09:55:37\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.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:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:19:\"2019-06-19 09:56:19\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/translation/core/5.2.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:5:\"5.2.2\";s:7:\"updated\";s:19:\"2019-07-22 22:30:56\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.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.2.2\";s:7:\"updated\";s:19:\"2019-06-13 16:40:55\";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.2.2/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_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:19:\"2019-06-25 07:12:29\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.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_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:5:\"5.1.1\";s:7:\"updated\";s:19:\"2019-06-06 15:48:01\";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_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:19:\"2019-06-20 11:31:40\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.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_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:19:\"2019-06-20 16:48:55\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.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:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:19:\"2019-06-20 23:50:40\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.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:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:19:\"2019-06-20 20:46:03\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.2.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_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:19:\"2019-07-19 10:47:50\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.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:5:\"5.2.2\";s:7:\"updated\";s:19:\"2019-06-21 11:52:29\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.2/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_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:3:\"5.2\";s:7:\"updated\";s:19:\"2019-05-11 15:51:57\";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.2/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_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_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_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_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:6:\"4.9.10\";s:7:\"updated\";s:19:\"2019-05-23 02:23:28\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.10/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:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:19:\"2019-07-22 16:47:50\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.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: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:5:\"5.2.1\";s:7:\"updated\";s:19:\"2019-05-29 05:00:30\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.1/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:5:\"5.2.2\";s:7:\"updated\";s:19:\"2019-06-30 17:08:47\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.2.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:5:\"5.2.2\";s:7:\"updated\";s:19:\"2019-07-19 18:52:09\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.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_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:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:19:\"2019-07-28 14:23:29\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.2/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: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:5:\"5.2.2\";s:7:\"updated\";s:19:\"2019-06-29 15:57:31\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.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.2.2\";s:7:\"updated\";s:19:\"2019-07-09 17:11:32\";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.2.2/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:5:\"5.2.2\";s:7:\"updated\";s:19:\"2019-07-23 20:53:56\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.2.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:5:\"5.2.2\";s:7:\"updated\";s:19:\"2019-07-22 05:57:39\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.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:5:\"5.2.2\";s:7:\"updated\";s:19:\"2019-07-24 13:42:24\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.2.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.2.2\";s:7:\"updated\";s:19:\"2019-07-28 18:51:05\";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.2.2/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:6:\"4.7.13\";s:7:\"updated\";s:19:\"2019-05-10 10:24:08\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.13/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.2.2\";s:7:\"updated\";s:19:\"2019-07-29 18:32:08\";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.2.2/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_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:19:\"2019-06-30 14:24:29\";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.2.2/nl_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:19:\"2019-07-18 12:30:37\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.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:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:19:\"2019-07-18 12:37:38\";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.2.2/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.2.2\";s:7:\"updated\";s:19:\"2019-06-20 11:47:07\";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.2.2/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:5:\"5.2.2\";s:7:\"updated\";s:19:\"2019-07-07 06:24:50\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.2/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:5:\"5.2.2\";s:7:\"updated\";s:19:\"2019-06-28 20:02:31\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.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.2.2\";s:7:\"updated\";s:19:\"2019-07-02 08:07:52\";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.2.2/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:10:\"pt_PT_ao90\";a:8:{s:8:\"language\";s:10:\"pt_PT_ao90\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:19:\"2019-07-02 07:58:03\";s:12:\"english_name\";s:27:\"Portuguese (Portugal, AO90)\";s:11:\"native_name\";s:17:\"Português (AO90)\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/translation/core/5.2.2/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:5:\"5.2.2\";s:7:\"updated\";s:19:\"2019-07-22 05:41:06\";s:12:\"english_name\";s:19:\"Portuguese (Angola)\";s:11:\"native_name\";s:20:\"Português de Angola\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.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:5:\"5.2.2\";s:7:\"updated\";s:19:\"2019-07-27 08:20:04\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.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:5:\"5.2.2\";s:7:\"updated\";s:19:\"2019-07-22 10:38:09\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.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.2.2\";s:7:\"updated\";s:19:\"2019-07-10 14:50:59\";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.2.2/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.2.2\";s:7:\"updated\";s:19:\"2019-06-26 11:40:37\";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.2.2/skr.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"skr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"جاری رکھو\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:5:\"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:5:\"5.2.1\";s:7:\"updated\";s:19:\"2019-05-21 18:58:08\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.1/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:19:\"2019-06-29 10:20:07\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.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.2.2\";s:7:\"updated\";s:19:\"2019-06-30 02:47:32\";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.2.2/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:5:\"5.2.2\";s:7:\"updated\";s:19:\"2019-07-17 22:35:45\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.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:5:\"5.2.2\";s:7:\"updated\";s:19:\"2019-07-25 22:13:47\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.2.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:5:\"5.2.2\";s:7:\"updated\";s:19:\"2019-07-08 01:07:41\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.2.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:5:\"5.2.2\";s:7:\"updated\";s:19:\"2019-06-30 05:27:18\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.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_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:\"繼續\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"5.2.2\";s:7:\"updated\";s:19:\"2019-07-29 00:33:56\";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.2.2/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:\"继续\";}}}', 'no'),
(946, 'true_options', 'a:1:{s:9:\"kurs_evro\";s:2:\"32\";}', 'yes'),
(975, '_transient_is_multi_author', '0', 'yes'),
(976, '_transient_timeout_wc_product_children_52', '1567168568', 'no'),
(977, '_transient_wc_product_children_52', 'a:2:{s:3:\"all\";a:3:{i:0;i:53;i:1;i:54;i:2;i:55;}s:7:\"visible\";a:3:{i:0;i:53;i:1;i:54;i:2;i:55;}}', 'no'),
(978, '_transient_timeout_wc_var_prices_52', '1567168568', 'no'),
(979, '_transient_wc_var_prices_52', '{\"version\":\"1564576557\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"53\":\"25.00\",\"54\":\"18.00\",\"55\":\"12.00\"},\"regular_price\":{\"53\":\"25.00\",\"54\":\"18.00\",\"55\":\"12.00\"},\"sale_price\":{\"53\":\"25.00\",\"54\":\"18.00\",\"55\":\"12.00\"}}}', 'no');
-- --------------------------------------------------------
--
-- Структура таблицы `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_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Дамп данных таблицы `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, 5, '_wp_attached_file', 'woocommerce-placeholder.png'),
(4, 5, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:27:\"woocommerce-placeholder.png\";s:5:\"sizes\";a:9:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"woocommerce-placeholder-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"twentyseventeen-featured-image\";a:4:{s:4:\"file\";s:37:\"woocommerce-placeholder-1200x1200.png\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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, 10, '_action_manager_schedule', 'O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564514845;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),
(6, 11, '_action_manager_schedule', 'O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564518462;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),
(7, 14, '_edit_last', '1'),
(8, 14, '_edit_lock', '1564517010:1'),
(10, 14, 'total_sales', '0'),
(11, 14, '_tax_status', 'taxable'),
(12, 14, '_tax_class', ''),
(13, 14, '_manage_stock', 'yes'),
(14, 14, '_backorders', 'yes'),
(15, 14, '_sold_individually', 'no'),
(16, 14, '_virtual', 'no'),
(17, 14, '_downloadable', 'no'),
(18, 14, '_download_limit', '-1'),
(19, 14, '_download_expiry', '-1'),
(20, 14, '_stock', '150'),
(21, 14, '_stock_status', 'instock'),
(22, 14, '_wc_average_rating', '0'),
(23, 14, '_wc_review_count', '0'),
(24, 14, '_product_version', '3.6.5'),
(26, 14, '_product_attributes', 'a:1:{s:10:\"pa_color-1\";a:6:{s:4:\"name\";s:10:\"pa_color-1\";s:5:\"value\";s:0:\"\";s:8:\"position\";s:1:\"0\";s:10:\"is_visible\";s:1:\"1\";s:12:\"is_variation\";s:1:\"1\";s:11:\"is_taxonomy\";s:1:\"1\";}}'),
(27, 16, '_variation_description', ''),
(28, 16, 'total_sales', '0'),
(29, 16, '_tax_status', 'taxable'),
(30, 16, '_tax_class', 'parent'),
(31, 16, '_manage_stock', 'no'),
(32, 16, '_backorders', 'no'),
(33, 16, '_sold_individually', 'no'),
(34, 16, '_virtual', 'no'),
(35, 16, '_downloadable', 'no'),
(36, 16, '_download_limit', '-1'),
(37, 16, '_download_expiry', '-1'),
(38, 16, '_stock', '0'),
(39, 16, '_stock_status', 'instock'),
(40, 16, '_wc_average_rating', '0'),
(41, 16, '_wc_review_count', '0'),
(42, 16, 'attribute_pa_color-1', '%d0%b7%d0%b5%d0%bb%d0%b5%d0%bd%d1%8b%d0%b9'),
(43, 16, '_product_version', '3.6.5'),
(44, 17, '_variation_description', ''),
(45, 17, 'total_sales', '0'),
(46, 17, '_tax_status', 'taxable'),
(47, 17, '_tax_class', 'parent'),
(48, 17, '_manage_stock', 'no'),
(49, 17, '_backorders', 'no'),
(50, 17, '_sold_individually', 'no'),
(51, 17, '_virtual', 'no'),
(52, 17, '_downloadable', 'no'),
(53, 17, '_download_limit', '-1'),
(54, 17, '_download_expiry', '-1'),
(55, 17, '_stock', '0'),
(56, 17, '_stock_status', 'instock'),
(57, 17, '_wc_average_rating', '0'),
(58, 17, '_wc_review_count', '0'),
(59, 17, 'attribute_pa_color-1', '%d0%ba%d1%80%d0%b0%d1%81%d0%bd%d1%8b%d0%b9'),
(60, 17, '_product_version', '3.6.5'),
(61, 18, '_variation_description', ''),
(62, 18, 'total_sales', '0'),
(63, 18, '_tax_status', 'taxable'),
(64, 18, '_tax_class', 'parent'),
(65, 18, '_manage_stock', 'no'),
(66, 18, '_backorders', 'no'),
(67, 18, '_sold_individually', 'no'),
(68, 18, '_virtual', 'no'),
(69, 18, '_downloadable', 'no'),
(70, 18, '_download_limit', '-1'),
(71, 18, '_download_expiry', '-1'),
(72, 18, '_stock', '0'),
(73, 18, '_stock_status', 'instock'),
(74, 18, '_wc_average_rating', '0'),
(75, 18, '_wc_review_count', '0'),
(76, 18, 'attribute_pa_color-1', '%d1%87%d0%b5%d1%80%d0%bd%d1%8b%d0%b9'),
(77, 18, '_product_version', '3.6.5'),
(78, 14, '_default_attributes', 'a:1:{s:10:\"pa_color-1\";s:42:\"%d0%b7%d0%b5%d0%bb%d0%b5%d0%bd%d1%8b%d0%b9\";}'),
(79, 19, '_wp_attached_file', '2019/07/1_QAgQJ8s6geb9tauaMckt3A.jpeg'),
(80, 19, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:37:\"2019/07/1_QAgQJ8s6geb9tauaMckt3A.jpeg\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"1_QAgQJ8s6geb9tauaMckt3A-150x150.jpeg\";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:37:\"1_QAgQJ8s6geb9tauaMckt3A-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"1_QAgQJ8s6geb9tauaMckt3A-768x768.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"1_QAgQJ8s6geb9tauaMckt3A-1024x1024.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"twentyseventeen-featured-image\";a:4:{s:4:\"file\";s:39:\"1_QAgQJ8s6geb9tauaMckt3A-1200x1200.jpeg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:37:\"1_QAgQJ8s6geb9tauaMckt3A-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"1_QAgQJ8s6geb9tauaMckt3A-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:37:\"1_QAgQJ8s6geb9tauaMckt3A-600x600.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"1_QAgQJ8s6geb9tauaMckt3A-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:37:\"1_QAgQJ8s6geb9tauaMckt3A-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:37:\"1_QAgQJ8s6geb9tauaMckt3A-600x600.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:37:\"1_QAgQJ8s6geb9tauaMckt3A-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),
(81, 18, '_regular_price', '150'),
(82, 18, '_sale_price', '100'),
(83, 18, '_thumbnail_id', '19'),
(84, 18, '_price', '100'),
(86, 17, '_regular_price', '100'),
(87, 17, '_sale_price', '50'),
(88, 17, '_price', '50'),
(89, 16, '_regular_price', '200'),
(90, 16, '_sale_price', '150'),
(91, 16, '_price', '150'),
(92, 14, '_price', '50'),
(93, 14, '_price', '100'),
(94, 14, '_price', '150'),
(95, 20, 'total_sales', '0'),
(96, 20, '_tax_status', 'taxable'),
(97, 20, '_tax_class', ''),
(98, 20, '_manage_stock', 'yes'),
(99, 20, '_backorders', 'yes'),
(100, 20, '_sold_individually', 'no'),
(101, 20, '_default_attributes', 'a:1:{s:10:\"pa_color-1\";s:42:\"%d0%b7%d0%b5%d0%bb%d0%b5%d0%bd%d1%8b%d0%b9\";}'),
(102, 20, '_virtual', 'no'),
(103, 20, '_downloadable', 'no'),
(104, 20, '_download_limit', '-1'),
(105, 20, '_download_expiry', '-1'),
(106, 20, '_stock', '150'),
(107, 20, '_stock_status', 'instock'),
(108, 20, '_wc_average_rating', '0'),
(109, 20, '_wc_review_count', '0'),
(110, 20, '_product_attributes', 'a:1:{s:10:\"pa_color-1\";a:6:{s:4:\"name\";s:10:\"pa_color-1\";s:5:\"value\";s:0:\"\";s:8:\"position\";s:1:\"0\";s:10:\"is_visible\";s:1:\"1\";s:12:\"is_variation\";s:1:\"1\";s:11:\"is_taxonomy\";s:1:\"1\";}}'),
(111, 20, '_product_version', '3.6.5'),
(112, 21, '_variation_description', ''),
(113, 21, '_regular_price', '100'),
(114, 21, '_sale_price', '50'),
(115, 21, 'total_sales', '0'),
(116, 21, '_tax_status', 'taxable'),
(117, 21, '_tax_class', 'parent'),
(118, 21, '_manage_stock', 'no'),
(119, 21, '_backorders', 'no'),
(120, 21, '_sold_individually', 'no'),
(121, 21, '_virtual', 'no'),
(122, 21, '_downloadable', 'no'),
(123, 21, '_download_limit', '-1'),
(124, 21, '_download_expiry', '-1'),
(125, 21, '_stock', '0'),
(126, 21, '_stock_status', 'instock'),
(127, 21, '_wc_average_rating', '0'),
(128, 21, '_wc_review_count', '0'),
(129, 21, 'attribute_pa_color-1', '%d0%ba%d1%80%d0%b0%d1%81%d0%bd%d1%8b%d0%b9'),
(130, 21, '_price', '50'),
(131, 21, '_product_version', '3.6.5'),
(132, 22, '_variation_description', ''),
(133, 22, '_regular_price', '150'),
(134, 22, '_sale_price', '100'),
(135, 22, 'total_sales', '0'),
(136, 22, '_tax_status', 'taxable'),
(137, 22, '_tax_class', 'parent'),
(138, 22, '_manage_stock', 'no'),
(139, 22, '_backorders', 'no'),
(140, 22, '_sold_individually', 'no'),
(141, 22, '_virtual', 'no'),
(142, 22, '_downloadable', 'no'),
(143, 22, '_download_limit', '-1'),
(144, 22, '_download_expiry', '-1'),
(145, 22, '_thumbnail_id', '19'),
(146, 22, '_stock', '0'),
(147, 22, '_stock_status', 'instock'),
(148, 22, '_wc_average_rating', '0'),
(149, 22, '_wc_review_count', '0'),
(150, 22, 'attribute_pa_color-1', '%d1%87%d0%b5%d1%80%d0%bd%d1%8b%d0%b9'),
(151, 22, '_price', '100'),
(152, 22, '_product_version', '3.6.5'),
(153, 23, '_variation_description', ''),
(154, 23, '_regular_price', '200'),
(155, 23, '_sale_price', '150'),
(156, 23, 'total_sales', '0'),
(157, 23, '_tax_status', 'taxable'),
(158, 23, '_tax_class', 'parent'),
(159, 23, '_manage_stock', 'no'),
(160, 23, '_backorders', 'no'),
(161, 23, '_sold_individually', 'no'),
(162, 23, '_virtual', 'no'),
(163, 23, '_downloadable', 'no'),
(164, 23, '_download_limit', '-1'),
(165, 23, '_download_expiry', '-1'),
(166, 23, '_stock', '0'),
(167, 23, '_stock_status', 'instock'),
(168, 23, '_wc_average_rating', '0'),
(169, 23, '_wc_review_count', '0'),
(170, 23, 'attribute_pa_color-1', '%d0%b7%d0%b5%d0%bb%d0%b5%d0%bd%d1%8b%d0%b9'),
(171, 23, '_price', '150'),
(172, 23, '_product_version', '3.6.5'),
(173, 20, '_price', '50'),
(174, 20, '_price', '100'),
(175, 20, '_price', '150'),
(176, 20, '_edit_lock', '1564517279:1'),
(177, 20, '_edit_last', '1'),
(178, 24, 'total_sales', '0'),
(179, 24, '_tax_status', 'taxable'),
(180, 24, '_tax_class', ''),
(181, 24, '_manage_stock', 'yes'),
(182, 24, '_backorders', 'yes'),
(183, 24, '_sold_individually', 'no'),
(184, 24, '_default_attributes', 'a:1:{s:10:\"pa_color-1\";s:42:\"%d0%b7%d0%b5%d0%bb%d0%b5%d0%bd%d1%8b%d0%b9\";}'),
(185, 24, '_virtual', 'no'),
(186, 24, '_downloadable', 'no'),
(187, 24, '_download_limit', '-1'),
(188, 24, '_download_expiry', '-1'),
(189, 24, '_stock', '150'),
(190, 24, '_stock_status', 'instock'),
(191, 24, '_wc_average_rating', '0'),
(192, 24, '_wc_review_count', '0'),
(193, 24, '_product_attributes', 'a:1:{s:10:\"pa_color-1\";a:6:{s:4:\"name\";s:10:\"pa_color-1\";s:5:\"value\";s:0:\"\";s:8:\"position\";s:1:\"0\";s:10:\"is_visible\";s:1:\"1\";s:12:\"is_variation\";s:1:\"1\";s:11:\"is_taxonomy\";s:1:\"1\";}}'),
(194, 24, '_product_version', '3.6.5'),
(195, 25, '_variation_description', ''),
(196, 25, '_regular_price', '13'),
(198, 25, 'total_sales', '0'),
(199, 25, '_tax_status', 'taxable'),
(200, 25, '_tax_class', 'parent'),
(201, 25, '_manage_stock', 'no'),
(202, 25, '_backorders', 'no'),
(203, 25, '_sold_individually', 'no'),
(204, 25, '_virtual', 'no'),
(205, 25, '_downloadable', 'no'),
(206, 25, '_download_limit', '-1'),
(207, 25, '_download_expiry', '-1'),
(208, 25, '_stock', '0'),
(209, 25, '_stock_status', 'instock'),
(210, 25, '_wc_average_rating', '0'),
(211, 25, '_wc_review_count', '0'),
(212, 25, 'attribute_pa_color-1', '%d0%ba%d1%80%d0%b0%d1%81%d0%bd%d1%8b%d0%b9'),
(213, 25, '_price', '13'),
(214, 25, '_product_version', '3.6.5'),
(215, 26, '_variation_description', ''),
(216, 26, '_regular_price', '14'),
(218, 26, 'total_sales', '0'),
(219, 26, '_tax_status', 'taxable'),
(220, 26, '_tax_class', 'parent'),
(221, 26, '_manage_stock', 'no'),
(222, 26, '_backorders', 'no'),
(223, 26, '_sold_individually', 'no'),
(224, 26, '_virtual', 'no'),
(225, 26, '_downloadable', 'no'),
(226, 26, '_download_limit', '-1'),
(227, 26, '_download_expiry', '-1'),
(228, 26, '_thumbnail_id', '19'),
(229, 26, '_stock', '0'),
(230, 26, '_stock_status', 'instock'),
(231, 26, '_wc_average_rating', '0'),
(232, 26, '_wc_review_count', '0'),
(233, 26, 'attribute_pa_color-1', '%d1%87%d0%b5%d1%80%d0%bd%d1%8b%d0%b9'),
(234, 26, '_price', '14'),
(235, 26, '_product_version', '3.6.5'),
(236, 27, '_variation_description', ''),
(237, 27, '_regular_price', '15'),
(238, 27, '_sale_price', ''),
(239, 27, 'total_sales', '0'),
(240, 27, '_tax_status', 'taxable'),
(241, 27, '_tax_class', 'parent'),
(242, 27, '_manage_stock', 'no'),
(243, 27, '_backorders', 'no'),
(244, 27, '_sold_individually', 'no'),
(245, 27, '_virtual', 'no'),
(246, 27, '_downloadable', 'no'),
(247, 27, '_download_limit', '-1'),
(248, 27, '_download_expiry', '-1'),
(249, 27, '_stock', '0'),
(250, 27, '_stock_status', 'instock'),
(251, 27, '_wc_average_rating', '0'),
(252, 27, '_wc_review_count', '0'),
(253, 27, 'attribute_pa_color-1', '%d0%b7%d0%b5%d0%bb%d0%b5%d0%bd%d1%8b%d0%b9'),
(254, 27, '_price', '15'),
(255, 27, '_product_version', '3.6.5'),
(259, 24, '_edit_lock', '1564523926:1'),
(260, 24, '_edit_last', '1'),
(261, 28, 'total_sales', '0'),
(262, 28, '_tax_status', 'taxable'),
(263, 28, '_tax_class', ''),
(264, 28, '_manage_stock', 'yes'),
(265, 28, '_backorders', 'yes'),
(266, 28, '_sold_individually', 'no'),
(267, 28, '_default_attributes', 'a:1:{s:10:\"pa_color-1\";s:42:\"%d0%b7%d0%b5%d0%bb%d0%b5%d0%bd%d1%8b%d0%b9\";}'),
(268, 28, '_virtual', 'no'),
(269, 28, '_downloadable', 'no'),
(270, 28, '_download_limit', '-1'),
(271, 28, '_download_expiry', '-1'),
(272, 28, '_stock', '150'),
(273, 28, '_stock_status', 'instock'),
(274, 28, '_wc_average_rating', '0'),
(275, 28, '_wc_review_count', '0'),
(276, 28, '_product_attributes', 'a:1:{s:10:\"pa_color-1\";a:6:{s:4:\"name\";s:10:\"pa_color-1\";s:5:\"value\";s:0:\"\";s:8:\"position\";s:1:\"0\";s:10:\"is_visible\";s:1:\"1\";s:12:\"is_variation\";s:1:\"1\";s:11:\"is_taxonomy\";s:1:\"1\";}}'),
(277, 28, '_product_version', '3.6.5'),
(278, 29, '_variation_description', ''),
(279, 29, '_regular_price', '100'),
(280, 29, '_sale_price', '50'),
(281, 29, 'total_sales', '0'),
(282, 29, '_tax_status', 'taxable'),
(283, 29, '_tax_class', 'parent'),
(284, 29, '_manage_stock', 'no'),
(285, 29, '_backorders', 'no'),
(286, 29, '_sold_individually', 'no'),
(287, 29, '_virtual', 'no'),
(288, 29, '_downloadable', 'no'),
(289, 29, '_download_limit', '-1'),
(290, 29, '_download_expiry', '-1'),
(291, 29, '_stock', '0'),
(292, 29, '_stock_status', 'instock'),
(293, 29, '_wc_average_rating', '0'),
(294, 29, '_wc_review_count', '0'),
(295, 29, 'attribute_pa_color-1', '%d0%ba%d1%80%d0%b0%d1%81%d0%bd%d1%8b%d0%b9'),
(296, 29, '_price', '50'),
(297, 29, '_product_version', '3.6.5'),
(298, 30, '_variation_description', ''),
(299, 30, '_regular_price', '150'),
(300, 30, '_sale_price', '100'),
(301, 30, 'total_sales', '0'),
(302, 30, '_tax_status', 'taxable'),
(303, 30, '_tax_class', 'parent'),
(304, 30, '_manage_stock', 'no'),
(305, 30, '_backorders', 'no'),
(306, 30, '_sold_individually', 'no'),
(307, 30, '_virtual', 'no'),
(308, 30, '_downloadable', 'no'),
(309, 30, '_download_limit', '-1'),
(310, 30, '_download_expiry', '-1'),
(311, 30, '_thumbnail_id', '19'),
(312, 30, '_stock', '0'),
(313, 30, '_stock_status', 'instock'),
(314, 30, '_wc_average_rating', '0'),
(315, 30, '_wc_review_count', '0'),
(316, 30, 'attribute_pa_color-1', '%d1%87%d0%b5%d1%80%d0%bd%d1%8b%d0%b9'),
(317, 30, '_price', '100'),
(318, 30, '_product_version', '3.6.5'),
(319, 31, '_variation_description', ''),
(320, 31, '_regular_price', '200'),
(321, 31, '_sale_price', '150'),
(322, 31, 'total_sales', '0'),
(323, 31, '_tax_status', 'taxable'),
(324, 31, '_tax_class', 'parent'),
(325, 31, '_manage_stock', 'no'),
(326, 31, '_backorders', 'no'),
(327, 31, '_sold_individually', 'no'),
(328, 31, '_virtual', 'no'),
(329, 31, '_downloadable', 'no'),
(330, 31, '_download_limit', '-1'),
(331, 31, '_download_expiry', '-1'),
(332, 31, '_stock', '0'),
(333, 31, '_stock_status', 'instock'),
(334, 31, '_wc_average_rating', '0'),
(335, 31, '_wc_review_count', '0'),
(336, 31, 'attribute_pa_color-1', '%d0%b7%d0%b5%d0%bb%d0%b5%d0%bd%d1%8b%d0%b9'),
(337, 31, '_price', '150'),
(338, 31, '_product_version', '3.6.5'),
(339, 28, '_price', '50'),
(340, 28, '_price', '100'),
(341, 28, '_price', '150'),
(342, 28, '_edit_lock', '1564517413:1'),
(343, 28, '_edit_last', '1'),
(344, 32, 'total_sales', '0'),
(345, 32, '_tax_status', 'taxable'),
(346, 32, '_tax_class', ''),
(347, 32, '_manage_stock', 'yes'),
(348, 32, '_backorders', 'yes'),
(349, 32, '_sold_individually', 'no'),
(350, 32, '_default_attributes', 'a:1:{s:10:\"pa_color-1\";s:42:\"%d0%b7%d0%b5%d0%bb%d0%b5%d0%bd%d1%8b%d0%b9\";}'),
(351, 32, '_virtual', 'no'),
(352, 32, '_downloadable', 'no'),
(353, 32, '_download_limit', '-1'),
(354, 32, '_download_expiry', '-1'),
(355, 32, '_stock', '150'),
(356, 32, '_stock_status', 'instock'),
(357, 32, '_wc_average_rating', '0'),
(358, 32, '_wc_review_count', '0'),
(359, 32, '_product_attributes', 'a:1:{s:10:\"pa_color-1\";a:6:{s:4:\"name\";s:10:\"pa_color-1\";s:5:\"value\";s:0:\"\";s:8:\"position\";s:1:\"0\";s:10:\"is_visible\";s:1:\"1\";s:12:\"is_variation\";s:1:\"1\";s:11:\"is_taxonomy\";s:1:\"1\";}}'),
(360, 32, '_product_version', '3.6.5'),
(361, 33, '_variation_description', ''),
(362, 33, '_regular_price', '100'),