-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrocket_launch.sql
1053 lines (982 loc) · 673 KB
/
rocket_launch.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.1.14
-- http://www.phpmyadmin.net
--
-- Host: 127.0.0.1
-- Generation Time: Sep 10, 2015 at 02:46 PM
-- Server version: 5.6.17
-- PHP Version: 5.5.12
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
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 utf8 */;
--
-- Database: `rocket_launch`
--
-- --------------------------------------------------------
--
-- Table structure for table `wp_commentmeta`
--
CREATE TABLE IF NOT EXISTS `wp_commentmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`meta_id`),
KEY `comment_id` (`comment_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `wp_comments`
--
CREATE TABLE IF NOT EXISTS `wp_comments` (
`comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
`comment_author` tinytext COLLATE utf8mb4_unicode_ci NOT NULL,
`comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_content` text COLLATE utf8mb4_unicode_ci NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT '0',
`comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
`comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`comment_ID`),
KEY `comment_post_ID` (`comment_post_ID`),
KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
KEY `comment_date_gmt` (`comment_date_gmt`),
KEY `comment_parent` (`comment_parent`),
KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=2 ;
--
-- Dumping data for table `wp_comments`
--
INSERT INTO `wp_comments` (`comment_ID`, `comment_post_ID`, `comment_author`, `comment_author_email`, `comment_author_url`, `comment_author_IP`, `comment_date`, `comment_date_gmt`, `comment_content`, `comment_karma`, `comment_approved`, `comment_agent`, `comment_type`, `comment_parent`, `user_id`) VALUES
(1, 1, 'Mr WordPress', '', 'https://wordpress.org/', '', '2015-09-03 05:25:52', '2015-09-03 05:25:52', 'Hi, this is a comment.\nTo delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.', 0, 'post-trashed', '', '', 0, 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp_layerslider`
--
CREATE TABLE IF NOT EXISTS `wp_layerslider` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`author` int(10) NOT NULL DEFAULT '0',
`name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`slug` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`data` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
`date_c` int(10) NOT NULL,
`date_m` int(11) NOT NULL,
`flag_hidden` tinyint(1) NOT NULL DEFAULT '0',
`flag_deleted` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=5 ;
--
-- Dumping data for table `wp_layerslider`
--
INSERT INTO `wp_layerslider` (`id`, `author`, `name`, `slug`, `data`, `date_c`, `date_m`, `flag_hidden`, `flag_deleted`) VALUES
(1, 1, 'Full width demo slider', '', '{"properties":{"post_type":["attachment"],"post_taxonomy":"0","post_orderby":"date","post_order":"DESC","post_offset":"-1","title":"Full width demo slider","width":"100%","height":"500px","maxwidth":"","forceresponsive":"on","responsiveunder":"1280","sublayercontainer":"1280","autostart":"on","pauseonhover":"on","firstlayer":"1","animatefirstlayer":"on","keybnav":"on","touchnav":"on","loops":"0","forceloopnum":"on","skin":"noskin","backgroundcolor":"transparent","backgroundimage":"","sliderstyle":"margin-bottom: 0px;","navprevnext":"on","navstartstop":"on","navbuttons":"on","circletimer":"on","thumb_nav":"hover","thumb_container_width":"60%","thumb_width":"100","thumb_height":"60","thumb_active_opacity":"35","thumb_inactive_opacity":"100","autopauseslideshow":"auto","youtubepreview":"maxresdefault.jpg","imgpreload":"on","lazyload":"on","yourlogoId":"","yourlogo":"","yourlogostyle":"left: 10px; top: 10px;","yourlogolink":"","yourlogotarget":"_self","cbinit":"function(element) { }","cbstart":"function(data) { }","cbstop":"function(data) { }","cbpause":"function(data) { }","cbanimstart":"function(data) { }","cbanimstop":"function(data) { }","cbprev":"function(data) { }","cbnext":"function(data) { }"},"layers":[{"properties":{"post_offset":"-1","3d_transitions":"","2d_transitions":"1","custom_3d_transitions":"","custom_2d_transitions":"","backgroundId":"http:\\/\\/wp1.dev:8888\\/wp-content\\/plugins\\/LayerSlider\\/sampleslider\\/fw-1.jpg","background":"http:\\/\\/wp1.dev:8888\\/wp-content\\/plugins\\/LayerSlider\\/sampleslider\\/fw-1.jpg","thumbnailId":"","thumbnail":"","slidedelay":"4000","timeshift":"-1000","layer_link":"","layer_link_target":"_self","id":"","deeplink":""},"sublayers":[{"subtitle":"salad side","media":"img","type":"p","imageId":"http:\\/\\/wp1.dev:8888\\/wp-content\\/plugins\\/LayerSlider\\/sampleslider\\/s1.png","image":"http:\\/\\/wp1.dev:8888\\/wp-content\\/plugins\\/LayerSlider\\/sampleslider\\/s1.png","html":"","post_text_length":"","transition":"{\\\\\\"offsetxin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"offsetyin\\\\\\":\\\\\\"300\\\\\\",\\\\\\"durationin\\\\\\":\\\\\\"1000\\\\\\",\\\\\\"delayin\\\\\\":\\\\\\"500\\\\\\",\\\\\\"easingin\\\\\\":\\\\\\"easeInOutQuint\\\\\\",\\\\\\"fadein\\\\\\":true,\\\\\\"rotatein\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotatexin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotateyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"transformoriginin\\\\\\":\\\\\\"50% 50% 0\\\\\\",\\\\\\"skewxin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"skewyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"scalexin\\\\\\":\\\\\\"1\\\\\\",\\\\\\"scaleyin\\\\\\":\\\\\\"1\\\\\\",\\\\\\"offsetxout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"offsetyout\\\\\\":\\\\\\"-50\\\\\\",\\\\\\"durationout\\\\\\":\\\\\\"1000\\\\\\",\\\\\\"showuntil\\\\\\":\\\\\\"220\\\\\\",\\\\\\"easingout\\\\\\":\\\\\\"easeInOutQuart\\\\\\",\\\\\\"fadeout\\\\\\":true,\\\\\\"rotateout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotatexout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotateyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"transformoriginout\\\\\\":\\\\\\"50% top 0\\\\\\",\\\\\\"skewxout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"skewyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"scalexout\\\\\\":\\\\\\"1.2\\\\\\",\\\\\\"scaleyout\\\\\\":\\\\\\"1.2\\\\\\",\\\\\\"parallaxlevel\\\\\\":\\\\\\"0\\\\\\"}","url":"","target":"_self","styles":"{}","top":"280px","left":"50%","style":"","id":"","class":"","title":"","alt":"","rel":""},{"subtitle":"salad side close blur","media":"img","type":"p","imageId":"http:\\/\\/wp1.dev:8888\\/wp-content\\/plugins\\/LayerSlider\\/sampleslider\\/s2.png","image":"http:\\/\\/wp1.dev:8888\\/wp-content\\/plugins\\/LayerSlider\\/sampleslider\\/s2.png","html":"","post_text_length":"","transition":"{\\\\\\"offsetxin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"offsetyin\\\\\\":\\\\\\"30\\\\\\",\\\\\\"durationin\\\\\\":\\\\\\"1000\\\\\\",\\\\\\"delayin\\\\\\":\\\\\\"1720\\\\\\",\\\\\\"easingin\\\\\\":\\\\\\"easeInOutQuint\\\\\\",\\\\\\"fadein\\\\\\":true,\\\\\\"rotatein\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotatexin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotateyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"transformoriginin\\\\\\":\\\\\\"50% 50% 0\\\\\\",\\\\\\"skewxin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"skewyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"scalexin\\\\\\":\\\\\\".9\\\\\\",\\\\\\"scaleyin\\\\\\":\\\\\\".9\\\\\\",\\\\\\"offsetxout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"offsetyout\\\\\\":\\\\\\"300\\\\\\",\\\\\\"durationout\\\\\\":\\\\\\"1000\\\\\\",\\\\\\"showuntil\\\\\\":\\\\\\"0\\\\\\",\\\\\\"easingout\\\\\\":\\\\\\"easeInOutQuint\\\\\\",\\\\\\"fadeout\\\\\\":true,\\\\\\"rotateout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotatexout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotateyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"transformoriginout\\\\\\":\\\\\\"50% bottom 0\\\\\\",\\\\\\"skewxout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"skewyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"scalexout\\\\\\":\\\\\\".5\\\\\\",\\\\\\"scaleyout\\\\\\":\\\\\\".5\\\\\\",\\\\\\"parallaxlevel\\\\\\":\\\\\\"0\\\\\\"}","url":"","target":"_self","styles":"{}","top":"230px","left":"50%","style":"","id":"","class":"","title":"","alt":"","rel":""},{"subtitle":"salad","media":"img","type":"p","imageId":"http:\\/\\/wp1.dev:8888\\/wp-content\\/plugins\\/LayerSlider\\/sampleslider\\/s2.jpg","image":"http:\\/\\/wp1.dev:8888\\/wp-content\\/plugins\\/LayerSlider\\/sampleslider\\/s2.jpg","html":"","post_text_length":"","transition":"{\\\\\\"offsetxin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"offsetyin\\\\\\":\\\\\\"250\\\\\\",\\\\\\"durationin\\\\\\":\\\\\\"950\\\\\\",\\\\\\"delayin\\\\\\":\\\\\\"500\\\\\\",\\\\\\"easingin\\\\\\":\\\\\\"easeInOutQuint\\\\\\",\\\\\\"fadein\\\\\\":true,\\\\\\"rotatein\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotatexin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotateyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"transformoriginin\\\\\\":\\\\\\"50% 50% 0\\\\\\",\\\\\\"skewxin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"skewyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"scalexin\\\\\\":\\\\\\"1\\\\\\",\\\\\\"scaleyin\\\\\\":\\\\\\"1\\\\\\",\\\\\\"offsetxout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"offsetyout\\\\\\":\\\\\\"-8\\\\\\",\\\\\\"durationout\\\\\\":\\\\\\"1000\\\\\\",\\\\\\"showuntil\\\\\\":\\\\\\"270\\\\\\",\\\\\\"easingout\\\\\\":\\\\\\"easeInOutQuart\\\\\\",\\\\\\"fadeout\\\\\\":true,\\\\\\"rotateout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotatexout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotateyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"transformoriginout\\\\\\":\\\\\\"50% 50% 0\\\\\\",\\\\\\"skewxout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"skewyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"scalexout\\\\\\":\\\\\\"1.2\\\\\\",\\\\\\"scaleyout\\\\\\":\\\\\\"1.2\\\\\\",\\\\\\"parallaxlevel\\\\\\":\\\\\\"0\\\\\\"}","url":"","target":"_self","styles":"{}","top":"65%","left":"50%","style":"","id":"","class":"","title":"","alt":"","rel":""},{"subtitle":"salad","media":"img","type":"p","imageId":"http:\\/\\/wp1.dev:8888\\/wp-content\\/plugins\\/LayerSlider\\/sampleslider\\/s1.jpg","image":"http:\\/\\/wp1.dev:8888\\/wp-content\\/plugins\\/LayerSlider\\/sampleslider\\/s1.jpg","html":"","post_text_length":"","transition":"{\\\\\\"offsetxin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"offsetyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"durationin\\\\\\":\\\\\\"1000\\\\\\",\\\\\\"delayin\\\\\\":\\\\\\"1720\\\\\\",\\\\\\"easingin\\\\\\":\\\\\\"easeInOutQuart\\\\\\",\\\\\\"fadein\\\\\\":true,\\\\\\"rotatein\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotatexin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotateyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"transformoriginin\\\\\\":\\\\\\"50% 50% 0\\\\\\",\\\\\\"skewxin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"skewyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"scalexin\\\\\\":\\\\\\".7\\\\\\",\\\\\\"scaleyin\\\\\\":\\\\\\".7\\\\\\",\\\\\\"offsetxout\\\\\\":\\\\\\"-800\\\\\\",\\\\\\"offsetyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"durationout\\\\\\":\\\\\\"1000\\\\\\",\\\\\\"showuntil\\\\\\":\\\\\\"0\\\\\\",\\\\\\"easingout\\\\\\":\\\\\\"easeInOutQuint\\\\\\",\\\\\\"fadeout\\\\\\":true,\\\\\\"rotateout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotatexout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotateyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"transformoriginout\\\\\\":\\\\\\"50% 50% 0\\\\\\",\\\\\\"skewxout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"skewyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"scalexout\\\\\\":\\\\\\"1\\\\\\",\\\\\\"scaleyout\\\\\\":\\\\\\"1\\\\\\",\\\\\\"parallaxlevel\\\\\\":\\\\\\"0\\\\\\"}","url":"","target":"_self","styles":"{}","top":"195px","left":"50%","style":"","id":"","class":"","title":"","alt":"","rel":""},{"subtitle":"freas features","media":"text","type":"p","imageId":"","image":"","html":"FRESH FEATURES","post_text_length":"","transition":"{\\\\\\"offsetxin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"offsetyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"durationin\\\\\\":\\\\\\"2000\\\\\\",\\\\\\"delayin\\\\\\":\\\\\\"1500\\\\\\",\\\\\\"easingin\\\\\\":\\\\\\"easeOutElastic\\\\\\",\\\\\\"fadein\\\\\\":true,\\\\\\"rotatein\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotatexin\\\\\\":\\\\\\"-90\\\\\\",\\\\\\"rotateyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"transformoriginin\\\\\\":\\\\\\"50% top 0\\\\\\",\\\\\\"skewxin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"skewyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"scalexin\\\\\\":\\\\\\"1\\\\\\",\\\\\\"scaleyin\\\\\\":\\\\\\"1\\\\\\",\\\\\\"offsetxout\\\\\\":\\\\\\"-200\\\\\\",\\\\\\"offsetyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"durationout\\\\\\":\\\\\\"1000\\\\\\",\\\\\\"showuntil\\\\\\":\\\\\\"0\\\\\\",\\\\\\"easingout\\\\\\":\\\\\\"easeInOutQuint\\\\\\",\\\\\\"fadeout\\\\\\":true,\\\\\\"rotateout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotatexout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotateyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"transformoriginout\\\\\\":\\\\\\"50% 50% 0\\\\\\",\\\\\\"skewxout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"skewyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"scalexout\\\\\\":\\\\\\"1\\\\\\",\\\\\\"scaleyout\\\\\\":\\\\\\"1\\\\\\",\\\\\\"parallaxlevel\\\\\\":\\\\\\"0\\\\\\"}","url":"","target":"_self","styles":"{\\\\\\"height\\\\\\":\\\\\\"40px\\\\\\",\\\\\\"padding-right\\\\\\":\\\\\\"10px\\\\\\",\\\\\\"padding-left\\\\\\":\\\\\\"10px\\\\\\",\\\\\\"font-family\\\\\\":\\\\\\"Lato, \\\\''Open Sans\\\\'', sans-serif\\\\\\",\\\\\\"font-size\\\\\\":\\\\\\"30px\\\\\\",\\\\\\"line-height\\\\\\":\\\\\\"37px\\\\\\",\\\\\\"color\\\\\\":\\\\\\"#ffffff\\\\\\",\\\\\\"background\\\\\\":\\\\\\"#82d10c\\\\\\",\\\\\\"border-radius\\\\\\":\\\\\\"3px\\\\\\"}","top":"150px","left":"116px","style":"font-weight: 300;","id":"","class":"","title":"","alt":"","rel":""},{"subtitle":"for starter","media":"text","type":"p","imageId":"","image":"","html":"for starter","post_text_length":"","transition":"{\\\\\\"offsetxin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"offsetyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"durationin\\\\\\":\\\\\\"2000\\\\\\",\\\\\\"delayin\\\\\\":\\\\\\"2000\\\\\\",\\\\\\"easingin\\\\\\":\\\\\\"easeOutElastic\\\\\\",\\\\\\"fadein\\\\\\":true,\\\\\\"rotatein\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotatexin\\\\\\":\\\\\\"90\\\\\\",\\\\\\"rotateyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"transformoriginin\\\\\\":\\\\\\"50% top 0\\\\\\",\\\\\\"skewxin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"skewyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"scalexin\\\\\\":\\\\\\"1\\\\\\",\\\\\\"scaleyin\\\\\\":\\\\\\"1\\\\\\",\\\\\\"offsetxout\\\\\\":\\\\\\"-400\\\\\\",\\\\\\"offsetyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"durationout\\\\\\":\\\\\\"400\\\\\\",\\\\\\"showuntil\\\\\\":\\\\\\"0\\\\\\",\\\\\\"easingout\\\\\\":\\\\\\"easeInOutQuint\\\\\\",\\\\\\"fadeout\\\\\\":true,\\\\\\"rotateout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotatexout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotateyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"transformoriginout\\\\\\":\\\\\\"50% 50% 0\\\\\\",\\\\\\"skewxout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"skewyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"scalexout\\\\\\":\\\\\\"1\\\\\\",\\\\\\"scaleyout\\\\\\":\\\\\\"1\\\\\\",\\\\\\"parallaxlevel\\\\\\":\\\\\\"0\\\\\\"}","url":"","target":"_self","styles":"{\\\\\\"font-family\\\\\\":\\\\\\"\\\\''Indie Flower\\\\''\\\\\\",\\\\\\"font-size\\\\\\":\\\\\\"31px\\\\\\",\\\\\\"color\\\\\\":\\\\\\"#6db509\\\\\\"}","top":"190px","left":"125px","style":"","id":"","class":"","title":"","alt":"","rel":""},{"subtitle":"arrow left","media":"img","type":"p","imageId":"http:\\/\\/wp1.dev:8888\\/wp-content\\/plugins\\/LayerSlider\\/sampleslider\\/left.png","image":"http:\\/\\/wp1.dev:8888\\/wp-content\\/plugins\\/LayerSlider\\/sampleslider\\/left.png","html":"","post_text_length":"","transition":"{\\\\\\"offsetxin\\\\\\":\\\\\\"-50\\\\\\",\\\\\\"offsetyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"durationin\\\\\\":\\\\\\"1000\\\\\\",\\\\\\"delayin\\\\\\":\\\\\\"1000\\\\\\",\\\\\\"easingin\\\\\\":\\\\\\"easeInOutQuint\\\\\\",\\\\\\"fadein\\\\\\":true,\\\\\\"rotatein\\\\\\":\\\\\\"-40\\\\\\",\\\\\\"rotatexin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotateyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"transformoriginin\\\\\\":\\\\\\"50% 50% 0\\\\\\",\\\\\\"skewxin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"skewyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"scalexin\\\\\\":\\\\\\"1\\\\\\",\\\\\\"scaleyin\\\\\\":\\\\\\"1\\\\\\",\\\\\\"offsetxout\\\\\\":\\\\\\"-50\\\\\\",\\\\\\"offsetyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"durationout\\\\\\":\\\\\\"400\\\\\\",\\\\\\"showuntil\\\\\\":\\\\\\"0\\\\\\",\\\\\\"easingout\\\\\\":\\\\\\"easeInOutQuint\\\\\\",\\\\\\"fadeout\\\\\\":true,\\\\\\"rotateout\\\\\\":\\\\\\"-40\\\\\\",\\\\\\"rotatexout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotateyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"transformoriginout\\\\\\":\\\\\\"50% 50% 0\\\\\\",\\\\\\"skewxout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"skewyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"scalexout\\\\\\":\\\\\\"1\\\\\\",\\\\\\"scaleyout\\\\\\":\\\\\\"1\\\\\\",\\\\\\"parallaxlevel\\\\\\":\\\\\\"0\\\\\\"}","url":"#3","target":"_self","styles":"{}","top":"460px","left":"610px","style":"","id":"","class":"","title":"","alt":"","rel":""},{"subtitle":"arrow right","media":"img","type":"p","imageId":"http:\\/\\/wp1.dev:8888\\/wp-content\\/plugins\\/LayerSlider\\/sampleslider\\/right.png","image":"http:\\/\\/wp1.dev:8888\\/wp-content\\/plugins\\/LayerSlider\\/sampleslider\\/right.png","html":"","post_text_length":"","transition":"{\\\\\\"offsetxin\\\\\\":\\\\\\"50\\\\\\",\\\\\\"offsetyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"durationin\\\\\\":\\\\\\"1000\\\\\\",\\\\\\"delayin\\\\\\":\\\\\\"1000\\\\\\",\\\\\\"easingin\\\\\\":\\\\\\"easeInOutQuint\\\\\\",\\\\\\"fadein\\\\\\":true,\\\\\\"rotatein\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotatexin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotateyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"transformoriginin\\\\\\":\\\\\\"50% 50% 0\\\\\\",\\\\\\"skewxin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"skewyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"scalexin\\\\\\":\\\\\\"1\\\\\\",\\\\\\"scaleyin\\\\\\":\\\\\\"1\\\\\\",\\\\\\"offsetxout\\\\\\":\\\\\\"50\\\\\\",\\\\\\"offsetyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"durationout\\\\\\":\\\\\\"400\\\\\\",\\\\\\"showuntil\\\\\\":\\\\\\"0\\\\\\",\\\\\\"easingout\\\\\\":\\\\\\"easeInOutQuint\\\\\\",\\\\\\"fadeout\\\\\\":true,\\\\\\"rotateout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotatexout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotateyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"transformoriginout\\\\\\":\\\\\\"50% 50% 0\\\\\\",\\\\\\"skewxout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"skewyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"scalexout\\\\\\":\\\\\\"1\\\\\\",\\\\\\"scaleyout\\\\\\":\\\\\\"1\\\\\\",\\\\\\"parallaxlevel\\\\\\":\\\\\\"0\\\\\\"}","url":"#2","target":"_self","styles":"{}","top":"460px","left":"650px","style":"","id":"","class":"","title":"","alt":"","rel":""}]},{"properties":{"post_offset":"-1","3d_transitions":"","2d_transitions":"1","custom_3d_transitions":"","custom_2d_transitions":"","backgroundId":"http:\\/\\/wp1.dev:8888\\/wp-content\\/plugins\\/LayerSlider\\/sampleslider\\/fw-1.jpg","background":"http:\\/\\/wp1.dev:8888\\/wp-content\\/plugins\\/LayerSlider\\/sampleslider\\/fw-1.jpg","thumbnailId":"","thumbnail":"","slidedelay":"4000","timeshift":"-1000","layer_link":"","layer_link_target":"_self","id":"","deeplink":""},"sublayers":[{"subtitle":"lamb far","media":"img","type":"p","imageId":"http:\\/\\/wp1.dev:8888\\/wp-content\\/plugins\\/LayerSlider\\/sampleslider\\/l1.png","image":"http:\\/\\/wp1.dev:8888\\/wp-content\\/plugins\\/LayerSlider\\/sampleslider\\/l1.png","html":"","post_text_length":"","transition":"{\\\\\\"offsetxin\\\\\\":\\\\\\"300\\\\\\",\\\\\\"offsetyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"durationin\\\\\\":\\\\\\"2000\\\\\\",\\\\\\"delayin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"easingin\\\\\\":\\\\\\"easeInOutQuint\\\\\\",\\\\\\"fadein\\\\\\":true,\\\\\\"rotatein\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotatexin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotateyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"transformoriginin\\\\\\":\\\\\\"50% 50% 0\\\\\\",\\\\\\"skewxin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"skewyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"scalexin\\\\\\":\\\\\\"1\\\\\\",\\\\\\"scaleyin\\\\\\":\\\\\\"1\\\\\\",\\\\\\"offsetxout\\\\\\":\\\\\\"-300\\\\\\",\\\\\\"offsetyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"durationout\\\\\\":\\\\\\"400\\\\\\",\\\\\\"showuntil\\\\\\":\\\\\\"0\\\\\\",\\\\\\"easingout\\\\\\":\\\\\\"easeInOutQuint\\\\\\",\\\\\\"fadeout\\\\\\":true,\\\\\\"rotateout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotatexout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotateyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"transformoriginout\\\\\\":\\\\\\"50% 50% 0\\\\\\",\\\\\\"skewxout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"skewyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"scalexout\\\\\\":\\\\\\"1\\\\\\",\\\\\\"scaleyout\\\\\\":\\\\\\"1\\\\\\",\\\\\\"parallaxlevel\\\\\\":\\\\\\"-1\\\\\\"}","url":"","target":"_self","styles":"{}","top":"157px","left":"284px","style":"","id":"","class":"","title":"","alt":"","rel":""},{"subtitle":"lamb middle","media":"img","type":"p","imageId":"http:\\/\\/wp1.dev:8888\\/wp-content\\/plugins\\/LayerSlider\\/sampleslider\\/l2.png","image":"http:\\/\\/wp1.dev:8888\\/wp-content\\/plugins\\/LayerSlider\\/sampleslider\\/l2.png","html":"","post_text_length":"","transition":"{\\\\\\"offsetxin\\\\\\":\\\\\\"600\\\\\\",\\\\\\"offsetyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"durationin\\\\\\":\\\\\\"2000\\\\\\",\\\\\\"delayin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"easingin\\\\\\":\\\\\\"easeInOutQuint\\\\\\",\\\\\\"fadein\\\\\\":true,\\\\\\"rotatein\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotatexin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotateyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"transformoriginin\\\\\\":\\\\\\"50% 50% 0\\\\\\",\\\\\\"skewxin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"skewyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"scalexin\\\\\\":\\\\\\"1\\\\\\",\\\\\\"scaleyin\\\\\\":\\\\\\"1\\\\\\",\\\\\\"offsetxout\\\\\\":\\\\\\"-600\\\\\\",\\\\\\"offsetyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"durationout\\\\\\":\\\\\\"400\\\\\\",\\\\\\"showuntil\\\\\\":\\\\\\"0\\\\\\",\\\\\\"easingout\\\\\\":\\\\\\"easeInOutQuint\\\\\\",\\\\\\"fadeout\\\\\\":true,\\\\\\"rotateout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotatexout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotateyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"transformoriginout\\\\\\":\\\\\\"50% 50% 0\\\\\\",\\\\\\"skewxout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"skewyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"scalexout\\\\\\":\\\\\\"1\\\\\\",\\\\\\"scaleyout\\\\\\":\\\\\\"1\\\\\\",\\\\\\"parallaxlevel\\\\\\":\\\\\\"1\\\\\\"}","url":"","target":"_self","styles":"{}","top":"20px","left":"50%","style":"","id":"","class":"","title":"","alt":"","rel":""},{"subtitle":"lamb close","media":"img","type":"p","imageId":"http:\\/\\/wp1.dev:8888\\/wp-content\\/plugins\\/LayerSlider\\/sampleslider\\/l3.png","image":"http:\\/\\/wp1.dev:8888\\/wp-content\\/plugins\\/LayerSlider\\/sampleslider\\/l3.png","html":"","post_text_length":"","transition":"{\\\\\\"offsetxin\\\\\\":\\\\\\"900\\\\\\",\\\\\\"offsetyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"durationin\\\\\\":\\\\\\"2000\\\\\\",\\\\\\"delayin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"easingin\\\\\\":\\\\\\"easeInOutQuint\\\\\\",\\\\\\"fadein\\\\\\":true,\\\\\\"rotatein\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotatexin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotateyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"transformoriginin\\\\\\":\\\\\\"50% 50% 0\\\\\\",\\\\\\"skewxin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"skewyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"scalexin\\\\\\":\\\\\\"1\\\\\\",\\\\\\"scaleyin\\\\\\":\\\\\\"1\\\\\\",\\\\\\"offsetxout\\\\\\":\\\\\\"-900\\\\\\",\\\\\\"offsetyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"durationout\\\\\\":\\\\\\"400\\\\\\",\\\\\\"showuntil\\\\\\":\\\\\\"0\\\\\\",\\\\\\"easingout\\\\\\":\\\\\\"easeInOutQuint\\\\\\",\\\\\\"fadeout\\\\\\":true,\\\\\\"rotateout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotatexout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotateyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"transformoriginout\\\\\\":\\\\\\"50% 50% 0\\\\\\",\\\\\\"skewxout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"skewyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"scalexout\\\\\\":\\\\\\"1\\\\\\",\\\\\\"scaleyout\\\\\\":\\\\\\"1\\\\\\",\\\\\\"parallaxlevel\\\\\\":\\\\\\"4\\\\\\"}","url":"","target":"_self","styles":"{}","top":"37px","left":"564px","style":"","id":"","class":"","title":"","alt":"","rel":""},{"subtitle":"spicy parallax","media":"text","type":"p","imageId":"","image":"","html":"SPICY PARALLAX EFFECT","post_text_length":"","transition":"{\\\\\\"offsetxin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"offsetyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"durationin\\\\\\":\\\\\\"2000\\\\\\",\\\\\\"delayin\\\\\\":\\\\\\"1500\\\\\\",\\\\\\"easingin\\\\\\":\\\\\\"easeOutElastic\\\\\\",\\\\\\"fadein\\\\\\":true,\\\\\\"rotatein\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotatexin\\\\\\":\\\\\\"-90\\\\\\",\\\\\\"rotateyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"transformoriginin\\\\\\":\\\\\\"50% top 0\\\\\\",\\\\\\"skewxin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"skewyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"scalexin\\\\\\":\\\\\\"1\\\\\\",\\\\\\"scaleyin\\\\\\":\\\\\\"1\\\\\\",\\\\\\"offsetxout\\\\\\":\\\\\\"-200\\\\\\",\\\\\\"offsetyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"durationout\\\\\\":\\\\\\"1000\\\\\\",\\\\\\"showuntil\\\\\\":\\\\\\"0\\\\\\",\\\\\\"easingout\\\\\\":\\\\\\"easeInOutQuint\\\\\\",\\\\\\"fadeout\\\\\\":true,\\\\\\"rotateout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotatexout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotateyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"transformoriginout\\\\\\":\\\\\\"50% 50% 0\\\\\\",\\\\\\"skewxout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"skewyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"scalexout\\\\\\":\\\\\\"1\\\\\\",\\\\\\"scaleyout\\\\\\":\\\\\\"1\\\\\\",\\\\\\"parallaxlevel\\\\\\":\\\\\\"10\\\\\\"}","url":"","target":"_self","styles":"{\\\\\\"height\\\\\\":\\\\\\"40px\\\\\\",\\\\\\"padding-right\\\\\\":\\\\\\"10px\\\\\\",\\\\\\"padding-left\\\\\\":\\\\\\"10px\\\\\\",\\\\\\"font-family\\\\\\":\\\\\\"Lato, \\\\''Open Sans\\\\'', sans-serif\\\\\\",\\\\\\"font-size\\\\\\":\\\\\\"30px\\\\\\",\\\\\\"line-height\\\\\\":\\\\\\"37px\\\\\\",\\\\\\"color\\\\\\":\\\\\\"#ffffff\\\\\\",\\\\\\"background\\\\\\":\\\\\\"#f04705\\\\\\",\\\\\\"border-radius\\\\\\":\\\\\\"3px\\\\\\"}","top":"170px","left":"174px","style":"font-weight: 300;","id":"","class":"","title":"","alt":"","rel":""},{"subtitle":"for main course","media":"text","type":"p","imageId":"","image":"","html":"for main course","post_text_length":"","transition":"{\\\\\\"offsetxin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"offsetyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"durationin\\\\\\":\\\\\\"2000\\\\\\",\\\\\\"delayin\\\\\\":\\\\\\"2000\\\\\\",\\\\\\"easingin\\\\\\":\\\\\\"easeOutElastic\\\\\\",\\\\\\"fadein\\\\\\":true,\\\\\\"rotatein\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotatexin\\\\\\":\\\\\\"90\\\\\\",\\\\\\"rotateyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"transformoriginin\\\\\\":\\\\\\"50% top 0\\\\\\",\\\\\\"skewxin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"skewyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"scalexin\\\\\\":\\\\\\"1\\\\\\",\\\\\\"scaleyin\\\\\\":\\\\\\"1\\\\\\",\\\\\\"offsetxout\\\\\\":\\\\\\"-400\\\\\\",\\\\\\"offsetyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"durationout\\\\\\":\\\\\\"400\\\\\\",\\\\\\"showuntil\\\\\\":\\\\\\"0\\\\\\",\\\\\\"easingout\\\\\\":\\\\\\"easeInOutQuint\\\\\\",\\\\\\"fadeout\\\\\\":true,\\\\\\"rotateout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotatexout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotateyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"transformoriginout\\\\\\":\\\\\\"50% 50% 0\\\\\\",\\\\\\"skewxout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"skewyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"scalexout\\\\\\":\\\\\\"1\\\\\\",\\\\\\"scaleyout\\\\\\":\\\\\\"1\\\\\\",\\\\\\"parallaxlevel\\\\\\":\\\\\\"8\\\\\\"}","url":"","target":"_self","styles":"{\\\\\\"font-family\\\\\\":\\\\\\"\\\\''Indie Flower\\\\''\\\\\\",\\\\\\"font-size\\\\\\":\\\\\\"31px\\\\\\",\\\\\\"color\\\\\\":\\\\\\"#f04705\\\\\\"}","top":"210px","left":"183px","style":"","id":"","class":"","title":"","alt":"","rel":""},{"subtitle":"arrow left","media":"img","type":"p","imageId":"http:\\/\\/wp1.dev:8888\\/wp-content\\/plugins\\/LayerSlider\\/sampleslider\\/left.png","image":"http:\\/\\/wp1.dev:8888\\/wp-content\\/plugins\\/LayerSlider\\/sampleslider\\/left.png","html":"","post_text_length":"","transition":"{\\\\\\"offsetxin\\\\\\":\\\\\\"-50\\\\\\",\\\\\\"offsetyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"durationin\\\\\\":\\\\\\"1000\\\\\\",\\\\\\"delayin\\\\\\":\\\\\\"1000\\\\\\",\\\\\\"easingin\\\\\\":\\\\\\"easeInOutQuint\\\\\\",\\\\\\"fadein\\\\\\":true,\\\\\\"rotatein\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotatexin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotateyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"transformoriginin\\\\\\":\\\\\\"50% 50% 0\\\\\\",\\\\\\"skewxin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"skewyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"scalexin\\\\\\":\\\\\\"1\\\\\\",\\\\\\"scaleyin\\\\\\":\\\\\\"1\\\\\\",\\\\\\"offsetxout\\\\\\":\\\\\\"-50\\\\\\",\\\\\\"offsetyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"durationout\\\\\\":\\\\\\"400\\\\\\",\\\\\\"showuntil\\\\\\":\\\\\\"0\\\\\\",\\\\\\"easingout\\\\\\":\\\\\\"easeInOutQuint\\\\\\",\\\\\\"fadeout\\\\\\":true,\\\\\\"rotateout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotatexout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotateyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"transformoriginout\\\\\\":\\\\\\"50% 50% 0\\\\\\",\\\\\\"skewxout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"skewyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"scalexout\\\\\\":\\\\\\"1\\\\\\",\\\\\\"scaleyout\\\\\\":\\\\\\"1\\\\\\",\\\\\\"parallaxlevel\\\\\\":\\\\\\"3\\\\\\"}","url":"#1","target":"_self","styles":"{}","top":"430px","left":"210px","style":"","id":"","class":"","title":"","alt":"","rel":""},{"subtitle":"arrow right","media":"img","type":"p","imageId":"http:\\/\\/wp1.dev:8888\\/wp-content\\/plugins\\/LayerSlider\\/sampleslider\\/right.png","image":"http:\\/\\/wp1.dev:8888\\/wp-content\\/plugins\\/LayerSlider\\/sampleslider\\/right.png","html":"","post_text_length":"","transition":"{\\\\\\"offsetxin\\\\\\":\\\\\\"50\\\\\\",\\\\\\"offsetyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"durationin\\\\\\":\\\\\\"1000\\\\\\",\\\\\\"delayin\\\\\\":\\\\\\"1000\\\\\\",\\\\\\"easingin\\\\\\":\\\\\\"easeInOutQuint\\\\\\",\\\\\\"fadein\\\\\\":true,\\\\\\"rotatein\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotatexin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotateyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"transformoriginin\\\\\\":\\\\\\"50% 50% 0\\\\\\",\\\\\\"skewxin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"skewyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"scalexin\\\\\\":\\\\\\"1\\\\\\",\\\\\\"scaleyin\\\\\\":\\\\\\"1\\\\\\",\\\\\\"offsetxout\\\\\\":\\\\\\"50\\\\\\",\\\\\\"offsetyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"durationout\\\\\\":\\\\\\"400\\\\\\",\\\\\\"showuntil\\\\\\":\\\\\\"0\\\\\\",\\\\\\"easingout\\\\\\":\\\\\\"easeInOutQuint\\\\\\",\\\\\\"fadeout\\\\\\":true,\\\\\\"rotateout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotatexout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotateyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"transformoriginout\\\\\\":\\\\\\"50% 50% 0\\\\\\",\\\\\\"skewxout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"skewyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"scalexout\\\\\\":\\\\\\"1\\\\\\",\\\\\\"scaleyout\\\\\\":\\\\\\"1\\\\\\",\\\\\\"parallaxlevel\\\\\\":\\\\\\"3\\\\\\"}","url":"#3","target":"_self","styles":"{}","top":"430px","left":"250px","style":"","id":"","class":"","title":"","alt":"","rel":""}]},{"properties":{"post_offset":"-1","3d_transitions":"","2d_transitions":"1","custom_3d_transitions":"","custom_2d_transitions":"","backgroundId":"http:\\/\\/wp1.dev:8888\\/wp-content\\/plugins\\/LayerSlider\\/sampleslider\\/fw-1.jpg","background":"http:\\/\\/wp1.dev:8888\\/wp-content\\/plugins\\/LayerSlider\\/sampleslider\\/fw-1.jpg","thumbnailId":"","thumbnail":"","slidedelay":"4000","timeshift":"-1000","layer_link":"","layer_link_target":"_self","id":"","deeplink":""},"sublayers":[{"subtitle":"cake far","media":"img","type":"p","imageId":"http:\\/\\/wp1.dev:8888\\/wp-content\\/plugins\\/LayerSlider\\/sampleslider\\/d1.png","image":"http:\\/\\/wp1.dev:8888\\/wp-content\\/plugins\\/LayerSlider\\/sampleslider\\/d1.png","html":"","post_text_length":"","transition":"{\\\\\\"offsetxin\\\\\\":\\\\\\"400\\\\\\",\\\\\\"offsetyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"durationin\\\\\\":\\\\\\"2000\\\\\\",\\\\\\"delayin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"easingin\\\\\\":\\\\\\"easeInOutQuint\\\\\\",\\\\\\"fadein\\\\\\":true,\\\\\\"rotatein\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotatexin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotateyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"transformoriginin\\\\\\":\\\\\\"50% 50% 0\\\\\\",\\\\\\"skewxin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"skewyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"scalexin\\\\\\":\\\\\\"1\\\\\\",\\\\\\"scaleyin\\\\\\":\\\\\\"1\\\\\\",\\\\\\"offsetxout\\\\\\":\\\\\\"400\\\\\\",\\\\\\"offsetyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"durationout\\\\\\":\\\\\\"400\\\\\\",\\\\\\"showuntil\\\\\\":\\\\\\"0\\\\\\",\\\\\\"easingout\\\\\\":\\\\\\"easeInOutQuint\\\\\\",\\\\\\"fadeout\\\\\\":true,\\\\\\"rotateout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotatexout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotateyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"transformoriginout\\\\\\":\\\\\\"50% 50% 0\\\\\\",\\\\\\"skewxout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"skewyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"scalexout\\\\\\":\\\\\\"1\\\\\\",\\\\\\"scaleyout\\\\\\":\\\\\\"1\\\\\\",\\\\\\"parallaxlevel\\\\\\":\\\\\\"0\\\\\\"}","url":"","target":"_self","styles":"{}","top":"129px","left":"487px","style":"","id":"","class":"","title":"","alt":"","rel":""},{"subtitle":"cake close","media":"img","type":"p","imageId":"http:\\/\\/wp1.dev:8888\\/wp-content\\/plugins\\/LayerSlider\\/sampleslider\\/d2.png","image":"http:\\/\\/wp1.dev:8888\\/wp-content\\/plugins\\/LayerSlider\\/sampleslider\\/d2.png","html":"","post_text_length":"","transition":"{\\\\\\"offsetxin\\\\\\":\\\\\\"-200\\\\\\",\\\\\\"offsetyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"durationin\\\\\\":\\\\\\"2000\\\\\\",\\\\\\"delayin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"easingin\\\\\\":\\\\\\"easeInOutQuint\\\\\\",\\\\\\"fadein\\\\\\":true,\\\\\\"rotatein\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotatexin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotateyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"transformoriginin\\\\\\":\\\\\\"50% 50% 0\\\\\\",\\\\\\"skewxin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"skewyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"scalexin\\\\\\":\\\\\\"1\\\\\\",\\\\\\"scaleyin\\\\\\":\\\\\\"1\\\\\\",\\\\\\"offsetxout\\\\\\":\\\\\\"-200\\\\\\",\\\\\\"offsetyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"durationout\\\\\\":\\\\\\"400\\\\\\",\\\\\\"showuntil\\\\\\":\\\\\\"0\\\\\\",\\\\\\"easingout\\\\\\":\\\\\\"easeInOutQuint\\\\\\",\\\\\\"fadeout\\\\\\":true,\\\\\\"rotateout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotatexout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotateyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"transformoriginout\\\\\\":\\\\\\"50% 50% 0\\\\\\",\\\\\\"skewxout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"skewyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"scalexout\\\\\\":\\\\\\"1\\\\\\",\\\\\\"scaleyout\\\\\\":\\\\\\"1\\\\\\",\\\\\\"parallaxlevel\\\\\\":\\\\\\"0\\\\\\"}","url":"","target":"_self","styles":"{}","top":"104px","left":"70px","style":"","id":"","class":"","title":"","alt":"","rel":""},{"subtitle":"sweet transitions","media":"text","type":"p","imageId":"","image":"","html":"SWEET TRANSITIONS","post_text_length":"","transition":"{\\\\\\"offsetxin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"offsetyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"durationin\\\\\\":\\\\\\"2000\\\\\\",\\\\\\"delayin\\\\\\":\\\\\\"1500\\\\\\",\\\\\\"easingin\\\\\\":\\\\\\"easeOutElastic\\\\\\",\\\\\\"fadein\\\\\\":true,\\\\\\"rotatein\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotatexin\\\\\\":\\\\\\"-90\\\\\\",\\\\\\"rotateyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"transformoriginin\\\\\\":\\\\\\"50% top 0\\\\\\",\\\\\\"skewxin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"skewyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"scalexin\\\\\\":\\\\\\"1\\\\\\",\\\\\\"scaleyin\\\\\\":\\\\\\"1\\\\\\",\\\\\\"offsetxout\\\\\\":\\\\\\"-400\\\\\\",\\\\\\"offsetyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"durationout\\\\\\":\\\\\\"1000\\\\\\",\\\\\\"showuntil\\\\\\":\\\\\\"0\\\\\\",\\\\\\"easingout\\\\\\":\\\\\\"easeInOutQuint\\\\\\",\\\\\\"fadeout\\\\\\":true,\\\\\\"rotateout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotatexout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotateyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"transformoriginout\\\\\\":\\\\\\"50% 50% 0\\\\\\",\\\\\\"skewxout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"skewyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"scalexout\\\\\\":\\\\\\"1\\\\\\",\\\\\\"scaleyout\\\\\\":\\\\\\"1\\\\\\",\\\\\\"parallaxlevel\\\\\\":\\\\\\"0\\\\\\"}","url":"","target":"_self","styles":"{\\\\\\"height\\\\\\":\\\\\\"40px\\\\\\",\\\\\\"padding-right\\\\\\":\\\\\\"10px\\\\\\",\\\\\\"padding-left\\\\\\":\\\\\\"10px\\\\\\",\\\\\\"font-family\\\\\\":\\\\\\"Lato, \\\\''Open Sans\\\\'', sans-serif\\\\\\",\\\\\\"font-size\\\\\\":\\\\\\"30px\\\\\\",\\\\\\"line-height\\\\\\":\\\\\\"37px\\\\\\",\\\\\\"color\\\\\\":\\\\\\"#ffffff\\\\\\",\\\\\\"background\\\\\\":\\\\\\"#544f8c\\\\\\",\\\\\\"border-radius\\\\\\":\\\\\\"3px\\\\\\"}","top":"320px","left":"830px","style":"font-weight: 300;","id":"","class":"","title":"","alt":"","rel":""},{"subtitle":"for dessert","media":"text","type":"p","imageId":"","image":"","html":"for dessert","post_text_length":"","transition":"{\\\\\\"offsetxin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"offsetyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"durationin\\\\\\":\\\\\\"2000\\\\\\",\\\\\\"delayin\\\\\\":\\\\\\"2000\\\\\\",\\\\\\"easingin\\\\\\":\\\\\\"easeOutElastic\\\\\\",\\\\\\"fadein\\\\\\":true,\\\\\\"rotatein\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotatexin\\\\\\":\\\\\\"90\\\\\\",\\\\\\"rotateyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"transformoriginin\\\\\\":\\\\\\"50% top 0\\\\\\",\\\\\\"skewxin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"skewyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"scalexin\\\\\\":\\\\\\"1\\\\\\",\\\\\\"scaleyin\\\\\\":\\\\\\"1\\\\\\",\\\\\\"offsetxout\\\\\\":\\\\\\"-600\\\\\\",\\\\\\"offsetyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"durationout\\\\\\":\\\\\\"400\\\\\\",\\\\\\"showuntil\\\\\\":\\\\\\"0\\\\\\",\\\\\\"easingout\\\\\\":\\\\\\"easeInOutQuint\\\\\\",\\\\\\"fadeout\\\\\\":true,\\\\\\"rotateout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotatexout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotateyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"transformoriginout\\\\\\":\\\\\\"50% 50% 0\\\\\\",\\\\\\"skewxout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"skewyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"scalexout\\\\\\":\\\\\\"1\\\\\\",\\\\\\"scaleyout\\\\\\":\\\\\\"1\\\\\\",\\\\\\"parallaxlevel\\\\\\":\\\\\\"0\\\\\\"}","url":"","target":"_self","styles":"{\\\\\\"font-family\\\\\\":\\\\\\"\\\\''Indie Flower\\\\''\\\\\\",\\\\\\"font-size\\\\\\":\\\\\\"31px\\\\\\",\\\\\\"color\\\\\\":\\\\\\"#544f8c\\\\\\"}","top":"360px","left":"836px","style":"","id":"","class":"","title":"","alt":"","rel":""},{"subtitle":"arrow left","media":"img","type":"p","imageId":"http:\\/\\/wp1.dev:8888\\/wp-content\\/plugins\\/LayerSlider\\/sampleslider\\/left.png","image":"http:\\/\\/wp1.dev:8888\\/wp-content\\/plugins\\/LayerSlider\\/sampleslider\\/left.png","html":"","post_text_length":"","transition":"{\\\\\\"offsetxin\\\\\\":\\\\\\"-50\\\\\\",\\\\\\"offsetyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"durationin\\\\\\":\\\\\\"1000\\\\\\",\\\\\\"delayin\\\\\\":\\\\\\"1000\\\\\\",\\\\\\"easingin\\\\\\":\\\\\\"easeInOutQuint\\\\\\",\\\\\\"fadein\\\\\\":true,\\\\\\"rotatein\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotatexin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotateyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"transformoriginin\\\\\\":\\\\\\"50% 50% 0\\\\\\",\\\\\\"skewxin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"skewyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"scalexin\\\\\\":\\\\\\"1\\\\\\",\\\\\\"scaleyin\\\\\\":\\\\\\"1\\\\\\",\\\\\\"offsetxout\\\\\\":\\\\\\"-50\\\\\\",\\\\\\"offsetyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"durationout\\\\\\":\\\\\\"400\\\\\\",\\\\\\"showuntil\\\\\\":\\\\\\"0\\\\\\",\\\\\\"easingout\\\\\\":\\\\\\"easeInOutQuint\\\\\\",\\\\\\"fadeout\\\\\\":true,\\\\\\"rotateout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotatexout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotateyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"transformoriginout\\\\\\":\\\\\\"50% 50% 0\\\\\\",\\\\\\"skewxout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"skewyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"scalexout\\\\\\":\\\\\\"1\\\\\\",\\\\\\"scaleyout\\\\\\":\\\\\\"1\\\\\\",\\\\\\"parallaxlevel\\\\\\":\\\\\\"0\\\\\\"}","url":"#2","target":"_self","styles":"{}","top":"430px","left":"960px","style":"","id":"","class":"","title":"","alt":"","rel":""},{"subtitle":"arrow right","media":"img","type":"p","imageId":"http:\\/\\/wp1.dev:8888\\/wp-content\\/plugins\\/LayerSlider\\/sampleslider\\/right.png","image":"http:\\/\\/wp1.dev:8888\\/wp-content\\/plugins\\/LayerSlider\\/sampleslider\\/right.png","html":"","post_text_length":"","transition":"{\\\\\\"offsetxin\\\\\\":\\\\\\"50\\\\\\",\\\\\\"offsetyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"durationin\\\\\\":\\\\\\"1000\\\\\\",\\\\\\"delayin\\\\\\":\\\\\\"1000\\\\\\",\\\\\\"easingin\\\\\\":\\\\\\"easeInOutQuint\\\\\\",\\\\\\"fadein\\\\\\":true,\\\\\\"rotatein\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotatexin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotateyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"transformoriginin\\\\\\":\\\\\\"50% 50% 0\\\\\\",\\\\\\"skewxin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"skewyin\\\\\\":\\\\\\"0\\\\\\",\\\\\\"scalexin\\\\\\":\\\\\\"1\\\\\\",\\\\\\"scaleyin\\\\\\":\\\\\\"1\\\\\\",\\\\\\"offsetxout\\\\\\":\\\\\\"50\\\\\\",\\\\\\"offsetyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"durationout\\\\\\":\\\\\\"400\\\\\\",\\\\\\"showuntil\\\\\\":\\\\\\"0\\\\\\",\\\\\\"easingout\\\\\\":\\\\\\"easeInOutQuint\\\\\\",\\\\\\"fadeout\\\\\\":true,\\\\\\"rotateout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotatexout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"rotateyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"transformoriginout\\\\\\":\\\\\\"50% 50% 0\\\\\\",\\\\\\"skewxout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"skewyout\\\\\\":\\\\\\"0\\\\\\",\\\\\\"scalexout\\\\\\":\\\\\\"1\\\\\\",\\\\\\"scaleyout\\\\\\":\\\\\\"1\\\\\\",\\\\\\"parallaxlevel\\\\\\":\\\\\\"0\\\\\\"}","url":"#1","target":"_self","styles":"{}","top":"430px","left":"1000px","style":"","id":"","class":"","title":"","alt":"","rel":""}]}]}', 1441797585, 1441797585, 0, 0),
(2, 1, 'homepageSlider', '', '{"properties":{"post_taxonomy":"0","post_orderby":"date","post_order":"DESC","post_offset":"-1","title":"homepageSlider","slug":"","width":"100%","height":"300","responsive":"on","maxwidth":"900","forceresponsive":"on","responsiveunder":"0","sublayercontainer":"0","hideunder":"0","hideover":"100000","autostart":"on","startinviewport":"on","pauseonhover":"on","firstlayer":"1","keybnav":"on","touchnav":"on","loops":"0","forceloopnum":"on","skin":"fullwidth","backgroundcolor":"","backgroundimageId":"","backgroundimage":"","sliderfadeinduration":"350","sliderstyle":"margin-bottom: 0px;","ls_data[properties":{"undefined":""},"navprevnext":"on","navstartstop":"on","navbuttons":"on","hoverprevnext":"on","circletimer":"on","thumb_nav":"hover","thumb_container_width":"60%","thumb_width":"100","thumb_height":"60","thumb_active_opacity":"35","thumb_inactive_opacity":"100","autopauseslideshow":"auto","youtubepreview":"maxresdefault.jpg","imgpreload":"on","lazyload":"on","yourlogoId":"","yourlogo":"","yourlogostyle":"left: -10px; top: -10px;","yourlogolink":"","yourlogotarget":"_self","cbinit":"function(element) {\\r\\n\\r\\n}","cbstart":"function(data) {\\r\\n\\r\\n}","cbstop":"function(data) {\\r\\n\\r\\n}","cbpause":"function(data) {\\r\\n\\r\\n}","cbanimstart":"function(data) {\\r\\n\\r\\n}","cbanimstop":"function(data) {\\r\\n\\r\\n}","cbprev":"function(data) {\\r\\n\\r\\n}","cbnext":"function(data) {\\r\\n\\r\\n}"},"layers":[{"properties":{"post_offset":"-1","3d_transitions":"","2d_transitions":"","custom_3d_transitions":"","custom_2d_transitions":"","backgroundId":"","background":"","thumbnailId":"","thumbnail":"","slidedelay":"4000","timeshift":"0","layer_link":"","layer_link_target":"_self","id":"","deeplink":""},"sublayers":[{"subtitle":"Layer #1","media":"text","type":"p","imageId":"","image":"","html":"<h1>This is <span>Marketing<\\/span> Slide<\\/h1>","post_text_length":"","transition":"{\\"offsetxin\\":\\"80\\",\\"offsetyin\\":\\"0\\",\\"durationin\\":\\"1000\\",\\"delayin\\":\\"0\\",\\"easingin\\":\\"linear\\",\\"fadein\\":true,\\"rotatein\\":\\"0\\",\\"rotatexin\\":\\"0\\",\\"rotateyin\\":\\"0\\",\\"transformoriginin\\":\\"50% 50% 0\\",\\"skewxin\\":\\"0\\",\\"skewyin\\":\\"0\\",\\"scalexin\\":\\"1\\",\\"scaleyin\\":\\"1\\",\\"offsetxout\\":\\"-80\\",\\"offsetyout\\":\\"0\\",\\"durationout\\":\\"400\\",\\"showuntil\\":\\"0\\",\\"easingout\\":\\"linear\\",\\"fadeout\\":true,\\"rotateout\\":\\"0\\",\\"rotatexout\\":\\"0\\",\\"rotateyout\\":\\"0\\",\\"transformoriginout\\":\\"50% 50% 0\\",\\"skewxout\\":\\"0\\",\\"skewyout\\":\\"0\\",\\"scalexout\\":\\"1\\",\\"scaleyout\\":\\"1\\",\\"parallaxlevel\\":\\"0\\"}","url":"","target":"_self","styles":"{}","top":"0px","left":"0px","style":"","id":"","class":"","title":"","alt":"","rel":""}]},{"properties":{"post_offset":"-1","3d_transitions":"","2d_transitions":"","custom_3d_transitions":"","custom_2d_transitions":"","backgroundId":"","background":"","thumbnailId":"","thumbnail":"","slidedelay":"4000","timeshift":"0","layer_link":"","layer_link_target":"_self","id":"","deeplink":""},"sublayers":[{"subtitle":"Layer #1","media":"text","type":"p","imageId":"","image":"","html":"<h1>This is <span>Marketing<\\/span> Slide 2<\\/h1>","post_text_length":"","transition":"{\\"offsetxin\\":\\"80\\",\\"offsetyin\\":\\"0\\",\\"durationin\\":\\"1000\\",\\"delayin\\":\\"0\\",\\"easingin\\":\\"linear\\",\\"fadein\\":true,\\"rotatein\\":\\"0\\",\\"rotatexin\\":\\"0\\",\\"rotateyin\\":\\"0\\",\\"transformoriginin\\":\\"50% 50% 0\\",\\"skewxin\\":\\"0\\",\\"skewyin\\":\\"0\\",\\"scalexin\\":\\"1\\",\\"scaleyin\\":\\"1\\",\\"offsetxout\\":\\"-80\\",\\"offsetyout\\":\\"0\\",\\"durationout\\":\\"400\\",\\"showuntil\\":\\"0\\",\\"easingout\\":\\"linear\\",\\"fadeout\\":true,\\"rotateout\\":\\"0\\",\\"rotatexout\\":\\"0\\",\\"rotateyout\\":\\"0\\",\\"transformoriginout\\":\\"50% 50% 0\\",\\"skewxout\\":\\"0\\",\\"skewyout\\":\\"0\\",\\"scalexout\\":\\"1\\",\\"scaleyout\\":\\"1\\",\\"parallaxlevel\\":\\"0\\"}","url":"","target":"_self","styles":"{}","top":"0px","left":"0px","style":"","id":"","class":"","title":"","alt":"","rel":""}]},{"properties":{"post_offset":"-1","3d_transitions":"","2d_transitions":"","custom_3d_transitions":"","custom_2d_transitions":"","backgroundId":"","background":"","thumbnailId":"","thumbnail":"","slidedelay":"4000","timeshift":"0","layer_link":"","layer_link_target":"_self","id":"","deeplink":""},"sublayers":[{"subtitle":"Layer #1","media":"text","type":"p","imageId":"","image":"","html":"<h1>This is <span>Marketing<\\/span> Slide 3<\\/h1>","post_text_length":"","transition":"{\\"offsetxin\\":\\"80\\",\\"offsetyin\\":\\"0\\",\\"durationin\\":\\"1000\\",\\"delayin\\":\\"0\\",\\"easingin\\":\\"linear\\",\\"fadein\\":true,\\"rotatein\\":\\"0\\",\\"rotatexin\\":\\"0\\",\\"rotateyin\\":\\"0\\",\\"transformoriginin\\":\\"50% 50% 0\\",\\"skewxin\\":\\"0\\",\\"skewyin\\":\\"0\\",\\"scalexin\\":\\"1\\",\\"scaleyin\\":\\"1\\",\\"offsetxout\\":\\"-80\\",\\"offsetyout\\":\\"0\\",\\"durationout\\":\\"400\\",\\"showuntil\\":\\"0\\",\\"easingout\\":\\"linear\\",\\"fadeout\\":true,\\"rotateout\\":\\"0\\",\\"rotatexout\\":\\"0\\",\\"rotateyout\\":\\"0\\",\\"transformoriginout\\":\\"50% 50% 0\\",\\"skewxout\\":\\"0\\",\\"skewyout\\":\\"0\\",\\"scalexout\\":\\"1\\",\\"scaleyout\\":\\"1\\",\\"parallaxlevel\\":\\"0\\"}","url":"","target":"_self","styles":"{}","top":"0px","left":"0px","style":"","id":"","class":"","title":"","alt":"","rel":""}]}]}', 1441797716, 1441798146, 0, 0);
INSERT INTO `wp_layerslider` (`id`, `author`, `name`, `slug`, `data`, `date_c`, `date_m`, `flag_hidden`, `flag_deleted`) VALUES
(3, 1, 'LayerSlider 5 responsive demo slider', '', '{"properties":{"post_type":["attachment"],"post_taxonomy":"0","post_orderby":"date","post_order":"DESC","post_offset":"-1","title":"LayerSlider 5 responsive demo slider","slug":"","width":"1280","height":"720","responsive":"on","maxwidth":"1280","forceresponsive":"on","responsiveunder":"0","sublayercontainer":"0","hideunder":"0","hideover":"100000","autostart":"on","firstlayer":"1","animatefirstlayer":"on","keybnav":"on","touchnav":"on","loops":"0","skin":"v5","backgroundcolor":"","backgroundimageId":"","backgroundimage":"","sliderfadeinduration":"350","sliderstyle":"margin-bottom: 0px;","undefined":"","navprevnext":"on","navstartstop":"on","navbuttons":"on","hoverprevnext":"on","circletimer":"on","thumb_nav":"hover","thumb_container_width":"60%","thumb_width":"100","thumb_height":"60","thumb_active_opacity":"35","thumb_inactive_opacity":"100","autopauseslideshow":"auto","youtubepreview":"maxresdefault.jpg","imgpreload":"on","lazyload":"on","yourlogoId":"","yourlogo":"","yourlogostyle":"left: -10px; top: -10px;","yourlogolink":"","yourlogotarget":"_self","cbinit":"function(element) {\\r\\n\\r\\n}","cbstart":"function(data) {\\r\\n\\r\\n}","cbstop":"function(data) {\\r\\n\\r\\n}","cbpause":"function(data) {\\r\\n\\r\\n}","cbanimstart":"function(data) {\\r\\n\\r\\n}","cbanimstop":"function(data) {\\r\\n\\r\\n}","cbprev":"function(data) {\\r\\n\\r\\n}","cbnext":"function(data) {\\r\\n\\r\\n}"},"layers":[{"properties":{"post_offset":"-1","3d_transitions":"","2d_transitions":"75,79","custom_3d_transitions":"","custom_2d_transitions":"","backgroundId":"http:\\/\\/wp1.dev:8888\\/wp-content\\/plugins\\/LayerSlider\\/sampleslider\\/bg.jpg","background":"http:\\/\\/wp1.dev:8888\\/wp-content\\/plugins\\/LayerSlider\\/sampleslider\\/bg.jpg","thumbnailId":"","thumbnail":"","slidedelay":"8000","timeshift":"0","layer_link":"","layer_link_target":"_self","id":"","deeplink":""},"sublayers":[{"subtitle":"layerslider","media":"html","type":"h1","imageId":"","image":"","html":"<h2>LAYERSLIDER<\\/h2>","post_text_length":"","transition":"{\\"offsetxin\\":\\"0\\",\\"offsetyin\\":\\"0\\",\\"durationin\\":\\"2500\\",\\"delayin\\":\\"3000\\",\\"easingin\\":\\"linear\\",\\"fadein\\":true,\\"rotatein\\":\\"0\\",\\"rotatexin\\":\\"0\\",\\"rotateyin\\":\\"0\\",\\"transformoriginin\\":\\"50% bottom 0\\",\\"skewxin\\":\\"0\\",\\"skewyin\\":\\"0\\",\\"scalexin\\":\\"0\\",\\"scaleyin\\":\\"0\\",\\"offsetxout\\":\\"0\\",\\"offsetyout\\":\\"0\\",\\"durationout\\":\\"400\\",\\"showuntil\\":\\"0\\",\\"easingout\\":\\"linear\\",\\"fadeout\\":true,\\"rotateout\\":\\"0\\",\\"rotatexout\\":\\"0\\",\\"rotateyout\\":\\"0\\",\\"transformoriginout\\":\\"left bottom 0\\",\\"skewxout\\":\\"0\\",\\"skewyout\\":\\"0\\",\\"scalexout\\":\\"1\\",\\"scaleyout\\":\\"0\\",\\"parallaxlevel\\":\\"0\\"}","url":"","target":"_self","styles":"{\\"width\\":\\"500px\\",\\"font-family\\":\\"Oswald, Lato, \\\\''Open Sans\\\\'', sans-serif\\",\\"font-size\\":\\"80px\\",\\"color\\":\\"#ffffff\\",\\"border-radius\\":\\"0\\"}","top":"65px","left":"80px","style":"font-weight: 500; text-align: center; opacity: .5;","id":"","class":"","title":"","alt":"","rel":""}]},{"properties":{"post_offset":"-1","3d_transitions":"","2d_transitions":"75,79","custom_3d_transitions":"","custom_2d_transitions":"","backgroundId":"http:\\/\\/wp1.dev:8888\\/wp-content\\/plugins\\/LayerSlider\\/sampleslider\\/bg.jpg","background":"http:\\/\\/wp1.dev:8888\\/wp-content\\/plugins\\/LayerSlider\\/sampleslider\\/bg.jpg","thumbnailId":"","thumbnail":"","slidedelay":"8000","timeshift":"0","layer_link":"","layer_link_target":"_self","id":"","deeplink":""},"sublayers":[{"subtitle":"layerslider","media":"text","type":"h1","imageId":"","image":"","html":"LAYERSLIDER","post_text_length":"","transition":"{\\"offsetxin\\":\\"0\\",\\"offsetyin\\":\\"0\\",\\"durationin\\":\\"2500\\",\\"delayin\\":\\"3000\\",\\"easingin\\":\\"easeOutElastic\\",\\"fadein\\":true,\\"rotatein\\":\\"0\\",\\"rotatexin\\":\\"90\\",\\"rotateyin\\":\\"0\\",\\"transformoriginin\\":\\"50% bottom 0\\",\\"skewxin\\":\\"0\\",\\"skewyin\\":\\"0\\",\\"scalexin\\":\\"1\\",\\"scaleyin\\":\\"1\\",\\"offsetxout\\":\\"0\\",\\"offsetyout\\":\\"0\\",\\"durationout\\":\\"400\\",\\"showuntil\\":\\"0\\",\\"easingout\\":\\"easeInOutQuint\\",\\"fadeout\\":true,\\"rotateout\\":\\"-90\\",\\"rotatexout\\":\\"0\\",\\"rotateyout\\":\\"0\\",\\"transformoriginout\\":\\"left bottom 0\\",\\"skewxout\\":\\"0\\",\\"skewyout\\":\\"0\\",\\"scalexout\\":\\"1\\",\\"scaleyout\\":\\"1\\",\\"parallaxlevel\\":\\"0\\"}","url":"","target":"_self","styles":"{\\"width\\":\\"340px\\",\\"font-family\\":\\"Oswald, Lato, \\\\''Open Sans\\\\'', sans-serif\\",\\"font-size\\":\\"60px\\",\\"color\\":\\"#a14730\\",\\"border-radius\\":\\"5px\\"}","top":"65px","left":"80px","style":"font-weight: 500; text-align: center; opacity: .5;","id":"","class":"","title":"","alt":"","rel":""}]},{"properties":{"post_offset":"-1","3d_transitions":"","2d_transitions":"75,79","custom_3d_transitions":"","custom_2d_transitions":"","backgroundId":"http:\\/\\/wp1.dev:8888\\/wp-content\\/plugins\\/LayerSlider\\/sampleslider\\/bg.jpg","background":"http:\\/\\/wp1.dev:8888\\/wp-content\\/plugins\\/LayerSlider\\/sampleslider\\/bg.jpg","thumbnailId":"","thumbnail":"","slidedelay":"8000","timeshift":"0","layer_link":"","layer_link_target":"_self","id":"","deeplink":""},"sublayers":[{"subtitle":"layerslider","media":"text","type":"h1","imageId":"","image":"","html":"LAYERSLIDER","post_text_length":"","transition":"{\\"offsetxin\\":\\"0\\",\\"offsetyin\\":\\"0\\",\\"durationin\\":\\"2500\\",\\"delayin\\":\\"3000\\",\\"easingin\\":\\"easeOutElastic\\",\\"fadein\\":true,\\"rotatein\\":\\"0\\",\\"rotatexin\\":\\"90\\",\\"rotateyin\\":\\"0\\",\\"transformoriginin\\":\\"50% bottom 0\\",\\"skewxin\\":\\"0\\",\\"skewyin\\":\\"0\\",\\"scalexin\\":\\"1\\",\\"scaleyin\\":\\"1\\",\\"offsetxout\\":\\"0\\",\\"offsetyout\\":\\"0\\",\\"durationout\\":\\"400\\",\\"showuntil\\":\\"0\\",\\"easingout\\":\\"easeInOutQuint\\",\\"fadeout\\":true,\\"rotateout\\":\\"-90\\",\\"rotatexout\\":\\"0\\",\\"rotateyout\\":\\"0\\",\\"transformoriginout\\":\\"left bottom 0\\",\\"skewxout\\":\\"0\\",\\"skewyout\\":\\"0\\",\\"scalexout\\":\\"1\\",\\"scaleyout\\":\\"1\\",\\"parallaxlevel\\":\\"0\\"}","url":"","target":"_self","styles":"{\\"width\\":\\"340px\\",\\"font-family\\":\\"Oswald, Lato, \\\\''Open Sans\\\\'', sans-serif\\",\\"font-size\\":\\"60px\\",\\"color\\":\\"#a14730\\",\\"border-radius\\":\\"5px\\"}","top":"65px","left":"80px","style":"font-weight: 500; text-align: center; opacity: .5;","id":"","class":"","title":"","alt":"","rel":""}]}]}', 1441798333, 1441798773, 0, 0),
(4, 1, 'new', '', '{"properties":{"title":"new"},"layers":[[]]}', 1441801793, 1441801793, 0, 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp_links`
--
CREATE TABLE IF NOT EXISTS `wp_links` (
`link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y',
`link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
`link_rating` int(11) NOT NULL DEFAULT '0',
`link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
`link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`link_id`),
KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `wp_options`
--
CREATE TABLE IF NOT EXISTS `wp_options` (
`option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`option_name` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes',
PRIMARY KEY (`option_id`),
UNIQUE KEY `option_name` (`option_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=747 ;
--
-- Dumping data for table `wp_options`
--
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1, 'siteurl', 'http://localhost/rocketlaunch', 'yes'),
(2, 'home', 'http://localhost/rocketlaunch', 'yes'),
(3, 'blogname', 'Rocket Launch', 'yes'),
(4, 'blogdescription', 'Rocket Launch', 'yes'),
(5, 'users_can_register', '0', 'yes'),
(6, 'admin_email', '[email protected]', 'yes'),
(7, 'start_of_week', '1', 'yes'),
(8, 'use_balanceTags', '0', 'yes'),
(9, 'use_smilies', '1', 'yes'),
(10, 'require_name_email', '1', 'yes'),
(11, 'comments_notify', '1', 'yes'),
(12, 'posts_per_rss', '10', 'yes'),
(13, 'rss_use_excerpt', '0', 'yes'),
(14, 'mailserver_url', 'mail.example.com', 'yes'),
(15, 'mailserver_login', '[email protected]', 'yes'),
(16, 'mailserver_pass', 'password', 'yes'),
(17, 'mailserver_port', '110', 'yes'),
(18, 'default_category', '1', 'yes'),
(19, 'default_comment_status', 'open', 'yes'),
(20, 'default_ping_status', 'open', 'yes'),
(21, 'default_pingback_flag', '1', 'yes'),
(22, 'posts_per_page', '10', 'yes'),
(23, 'date_format', 'F j, Y', 'yes'),
(24, 'time_format', 'g:i a', 'yes'),
(25, 'links_updated_date_format', 'F j, Y g:i a', 'yes'),
(26, 'comment_moderation', '0', 'yes'),
(27, 'moderation_notify', '1', 'yes'),
(28, 'permalink_structure', '/%year%/%monthnum%/%day%/%postname%/', 'yes'),
(29, 'gzipcompression', '0', 'yes'),
(30, 'hack_file', '0', 'yes'),
(31, 'blog_charset', 'UTF-8', 'yes'),
(32, 'moderation_keys', '', 'no'),
(33, 'active_plugins', 'a:5:{i:0;s:27:"LayerSlider/layerslider.php";i:1;s:36:"contact-form-7/wp-contact-form-7.php";i:3;s:27:"js_composer/js_composer.php";i:6;s:41:"wp-anything-slider/wp-anything-slider.php";i:7;s:54:"wp-featured-content-slider/featured-content-slider.php";}', 'yes'),
(34, 'category_base', '', 'yes'),
(35, 'ping_sites', 'http://rpc.pingomatic.com/', 'yes'),
(36, 'advanced_edit', '0', 'yes'),
(37, 'comment_max_links', '2', 'yes'),
(38, 'gmt_offset', '0', 'yes'),
(39, 'default_email_category', '1', 'yes'),
(40, 'recently_edited', 'a:5:{i:0;s:59:"C:\\wamp\\www\\rocketlaunch/wp-content/themes/bridge/style.css";i:1;s:63:"C:\\wamp\\www\\rocketlaunch/wp-content/plugins/akismet/akismet.php";i:2;s:89:"C:\\wamp\\www\\rocketlaunch/wp-content/plugins/social-media-feather/social-media-feather.php";i:4;s:60:"C:\\wamp\\www\\rocketlaunch/wp-content/themes/bridge/footer.php";i:5;s:0:"";}', 'no'),
(41, 'template', 'bridge', 'yes'),
(42, 'stylesheet', 'bridge-child', 'yes'),
(43, 'comment_whitelist', '1', 'yes'),
(44, 'blacklist_keys', '', 'no'),
(45, 'comment_registration', '0', 'yes'),
(46, 'html_type', 'text/html', 'yes'),
(47, 'use_trackback', '0', 'yes'),
(48, 'default_role', 'subscriber', 'yes'),
(49, 'db_version', '33055', 'yes'),
(50, 'uploads_use_yearmonth_folders', '1', 'yes'),
(51, 'upload_path', '', 'yes'),
(52, 'blog_public', '1', 'yes'),
(53, 'default_link_category', '2', 'yes'),
(54, 'show_on_front', 'page', 'yes'),
(55, 'tag_base', '', 'yes'),
(56, 'show_avatars', '1', 'yes'),
(57, 'avatar_rating', 'G', 'yes'),
(58, 'upload_url_path', '', 'yes'),
(59, 'thumbnail_size_w', '150', 'yes'),
(60, 'thumbnail_size_h', '150', 'yes'),
(61, 'thumbnail_crop', '1', 'yes'),
(62, 'medium_size_w', '300', 'yes'),
(63, 'medium_size_h', '300', 'yes'),
(64, 'avatar_default', 'mystery', 'yes'),
(65, 'large_size_w', '1024', 'yes'),
(66, 'large_size_h', '1024', 'yes'),
(67, 'image_default_link_type', 'file', 'yes'),
(68, 'image_default_size', '', 'yes'),
(69, 'image_default_align', '', 'yes'),
(70, 'close_comments_for_old_posts', '0', 'yes'),
(71, 'close_comments_days_old', '14', 'yes'),
(72, 'thread_comments', '1', 'yes'),
(73, 'thread_comments_depth', '5', 'yes'),
(74, 'page_comments', '0', 'yes'),
(75, 'comments_per_page', '50', 'yes'),
(76, 'default_comments_page', 'newest', 'yes'),
(77, 'comment_order', 'asc', 'yes'),
(78, 'sticky_posts', 'a:0:{}', 'yes'),
(79, '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'),
(80, 'widget_text', 'a:5:{i:1;a:0:{}i:3;a:3:{s:5:"title";s:0:"";s:4:"text";s:277:"[email protected]\r\n<br/>\r\nphone no. :- 0000000000\r\n<br/>\r\n<p style = "margin-top:12px;"><a href="#" class="footer-social footer-fb">Facebook</a>\r\n<a href="#" class="footer-social footer-twitter">Twitter</a>\r\n<a href="#" class="footer-social footer-linkdin">Linkedin</a></p>";s:6:"filter";b:0;}i:4;a:3:{s:5:"title";s:0:"";s:4:"text";s:477:"<div style="color: #fff; font-family: Arial; text-align: center; line-height: 22px;">\r\n<div class="footer-logo"></div>\r\n\r\n<p style = "margin-top:5px; line-height: 23px;">We''re a team of operators and entrepreneurs committed to partnering with companies that are passionate about changing the world. Our high impact growth engine integrates sales, marketing, product, and operations, and empowers companies to scale efficiently so they can and focus on what matters.</p>\r\n</div>";s:6:"filter";b:0;}i:5;a:3:{s:5:"title";s:0:"";s:4:"text";s:165:"<div style="text-align: right; color: #7a97ac">\r\n<p>Terms & Conditions</p>\r\n<p><a href="#">Sitemap</a></p>\r\n<br/>\r\n<p>© Copyright Rocket Launch 2015</p>\r\n</div>";s:6:"filter";b:0;}s:12:"_multiwidget";i:1;}', 'yes'),
(81, 'widget_rss', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(82, 'uninstall_plugins', 'a:2:{s:27:"LayerSlider/layerslider.php";s:29:"layerslider_uninstall_scripts";s:59:"ultimate-social-media-icons/ultimate_social_media_icons.php";s:20:"sfsi_Unistall_plugin";}', 'no'),
(83, 'timezone_string', '', 'yes'),
(84, 'page_for_posts', '12', 'yes'),
(85, 'page_on_front', '2', 'yes'),
(86, 'default_post_format', '0', 'yes'),
(87, 'link_manager_enabled', '0', 'yes'),
(88, 'finished_splitting_shared_terms', '1', 'yes'),
(89, 'initial_db_version', '33055', 'yes'),
(90, 'wp_user_roles', 'a:5:{s:13:"administrator";a:2:{s:4:"name";s:13:"Administrator";s:12:"capabilities";a:62:{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:9:"add_users";b:1;s:13:"promote_users";b:1;s:18:"edit_theme_options";b:1;s:13:"delete_themes";b:1;s:6:"export";b:1;}}s:6:"editor";a:2:{s:4:"name";s:6:"Editor";s:12:"capabilities";a:34:{s:17:"moderate_comments";b:1;s:17:"manage_categories";b:1;s:12:"manage_links";b:1;s:12:"upload_files";b:1;s:15:"unfiltered_html";b:1;s:10:"edit_posts";b:1;s:17:"edit_others_posts";b:1;s:20:"edit_published_posts";b:1;s:13:"publish_posts";b:1;s:10:"edit_pages";b:1;s:4:"read";b:1;s:7:"level_7";b:1;s:7:"level_6";b:1;s:7:"level_5";b:1;s:7:"level_4";b:1;s:7:"level_3";b:1;s:7:"level_2";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:17:"edit_others_pages";b:1;s:20:"edit_published_pages";b:1;s:13:"publish_pages";b:1;s:12:"delete_pages";b:1;s:19:"delete_others_pages";b:1;s:22:"delete_published_pages";b:1;s:12:"delete_posts";b:1;s:19:"delete_others_posts";b:1;s:22:"delete_published_posts";b:1;s:20:"delete_private_posts";b:1;s:18:"edit_private_posts";b:1;s:18:"read_private_posts";b:1;s:20:"delete_private_pages";b:1;s:18:"edit_private_pages";b:1;s:18:"read_private_pages";b:1;}}s:6:"author";a:2:{s:4:"name";s:6:"Author";s:12:"capabilities";a:10:{s:12:"upload_files";b:1;s:10:"edit_posts";b:1;s:20:"edit_published_posts";b:1;s:13:"publish_posts";b:1;s:4:"read";b:1;s:7:"level_2";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:12:"delete_posts";b:1;s:22:"delete_published_posts";b:1;}}s:11:"contributor";a:2:{s:4:"name";s:11:"Contributor";s:12:"capabilities";a:5:{s:10:"edit_posts";b:1;s:4:"read";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:12:"delete_posts";b:1;}}s:10:"subscriber";a:2:{s:4:"name";s:10:"Subscriber";s:12:"capabilities";a:2:{s:4:"read";b:1;s:7:"level_0";b:1;}}}', 'yes'),
(91, 'widget_search', 'a:2:{i:2;a:1:{s:5:"title";s:0:"";}s:12:"_multiwidget";i:1;}', 'yes'),
(92, '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'),
(93, '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'),
(94, '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'),
(95, 'widget_meta', 'a:2:{i:2;a:1:{s:5:"title";s:0:"";}s:12:"_multiwidget";i:1;}', 'yes'),
(96, 'sidebars_widgets', 'a:18:{s:19:"wp_inactive_widgets";a:0:{}s:7:"sidebar";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:12:"sidebar_page";a:0:{}s:11:"header_left";a:0:{}s:12:"header_right";a:1:{i:0;s:7:"pages-2";}s:19:"header_bottom_right";a:0:{}s:20:"header_bottom_center";a:0:{}s:8:"sidearea";a:0:{}s:18:"vertical_menu_area";a:0:{}s:15:"footer_column_1";a:1:{i:0;s:6:"text-3";}s:15:"footer_column_2";a:1:{i:0;s:6:"text-4";}s:15:"footer_column_3";a:1:{i:0;s:6:"text-5";}s:15:"footer_column_4";a:0:{}s:11:"footer_text";a:0:{}s:16:"footer_text_left";a:0:{}s:17:"footer_text_right";a:0:{}s:18:"header_fixed_right";a:0:{}s:13:"array_version";i:3;}', 'yes'),
(98, 'cron', 'a:5:{i:1441905955;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:1441912860;a:1:{s:20:"wp_maybe_auto_update";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}}i:1441949265;a:1:{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;}}}i:1441951536;a:1:{s:30:"wp_scheduled_auto_draft_delete";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}s:7:"version";i:2;}', 'yes'),
(102, '_site_transient_update_core', 'O:8:"stdClass":4:{s:7:"updates";a:1:{i:0;O:8:"stdClass":10:{s:8:"response";s:6:"latest";s:8:"download";s:57:"https://downloads.wordpress.org/release/wordpress-4.3.zip";s:6:"locale";s:5:"en_US";s:8:"packages";O:8:"stdClass":5:{s:4:"full";s:57:"https://downloads.wordpress.org/release/wordpress-4.3.zip";s:10:"no_content";s:68:"https://downloads.wordpress.org/release/wordpress-4.3-no-content.zip";s:11:"new_bundled";s:69:"https://downloads.wordpress.org/release/wordpress-4.3-new-bundled.zip";s:7:"partial";b:0;s:8:"rollback";b:0;}s:7:"current";s:3:"4.3";s:7:"version";s:3:"4.3";s:11:"php_version";s:5:"5.2.4";s:13:"mysql_version";s:3:"5.0";s:11:"new_bundled";s:3:"4.1";s:15:"partial_version";s:0:"";}}s:12:"last_checked";i:1441869717;s:15:"version_checked";s:3:"4.3";s:12:"translations";a:0:{}}', 'yes'),
(105, '_transient_random_seed', '71f94413646afc816835042148c1d7c5', 'yes'),
(109, '_site_transient_timeout_browser_16923c53238bd8753cd1eb89d4af2e75', '1441862774', 'yes'),
(110, '_site_transient_browser_16923c53238bd8753cd1eb89d4af2e75', 'a:9:{s:8:"platform";s:7:"Windows";s:4:"name";s:6:"Chrome";s:7:"version";s:13:"44.0.2403.157";s:10:"update_url";s:28:"http://www.google.com/chrome";s:7:"img_src";s:49:"http://s.wordpress.org/images/browsers/chrome.png";s:11:"img_src_ssl";s:48:"https://wordpress.org/images/browsers/chrome.png";s:15:"current_version";s:2:"18";s:7:"upgrade";b:0;s:8:"insecure";b:0;}', 'yes'),
(111, 'can_compress_scripts', '1', 'yes'),
(116, '_site_transient_timeout_wporg_theme_feature_list', '1441276301', 'yes'),
(117, '_site_transient_wporg_theme_feature_list', 'a:4:{s:6:"Colors";a:15:{i:0;s:5:"black";i:1;s:4:"blue";i:2;s:5:"brown";i:3;s:4:"gray";i:4;s:5:"green";i:5;s:6:"orange";i:6;s:4:"pink";i:7;s:6:"purple";i:8;s:3:"red";i:9;s:6:"silver";i:10;s:3:"tan";i:11;s:5:"white";i:12;s:6:"yellow";i:13;s:4:"dark";i:14;s:5:"light";}s:6:"Layout";a:9:{i:0;s:12:"fixed-layout";i:1;s:12:"fluid-layout";i:2;s:17:"responsive-layout";i:3;s:10:"one-column";i:4;s:11:"two-columns";i:5;s:13:"three-columns";i:6;s:12:"four-columns";i:7;s:12:"left-sidebar";i:8;s:13:"right-sidebar";}s:8:"Features";a:20:{i:0;s:19:"accessibility-ready";i:1;s:8:"blavatar";i:2;s:10:"buddypress";i:3;s:17:"custom-background";i:4;s:13:"custom-colors";i:5;s:13:"custom-header";i:6;s:11:"custom-menu";i:7;s:12:"editor-style";i:8;s:21:"featured-image-header";i:9;s:15:"featured-images";i:10;s:15:"flexible-header";i:11;s:20:"front-page-post-form";i:12;s:19:"full-width-template";i:13;s:12:"microformats";i:14;s:12:"post-formats";i:15;s:20:"rtl-language-support";i:16;s:11:"sticky-post";i:17;s:13:"theme-options";i:18;s:17:"threaded-comments";i:19;s:17:"translation-ready";}s:7:"Subject";a:3:{i:0;s:7:"holiday";i:1;s:13:"photoblogging";i:2;s:8:"seasonal";}}', 'yes'),
(124, '_transient_twentyfifteen_categories', '1', 'yes'),
(127, 'WPLANG', '', 'yes'),
(136, '_site_transient_update_themes', 'O:8:"stdClass":4:{s:12:"last_checked";i:1441869718;s:7:"checked";a:7:{s:12:"bridge-child";s:5:"1.0.0";s:6:"bridge";s:3:"7.5";s:4:"edin";s:5:"1.2.2";s:5:"goran";s:3:"1.2";s:13:"twentyfifteen";s:3:"1.3";s:14:"twentyfourteen";s:3:"1.5";s:14:"twentythirteen";s:3:"1.6";}s:8:"response";a:0:{}s:12:"translations";a:0:{}}', 'yes'),
(138, 'current_theme', 'Bridge Child', 'yes'),
(139, 'theme_mods_goran', 'a:2:{i:0;b:0;s:16:"sidebars_widgets";a:2:{s:4:"time";i:1441265928;s:4:"data";a:8:{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";N;s:9:"sidebar-3";N;s:9:"sidebar-4";N;s:9:"sidebar-5";N;s:9:"sidebar-6";N;s:9:"sidebar-7";N;}}}', 'yes'),
(140, 'theme_switched', '', 'yes'),
(144, 'theme_mods_bridge', 'a:2:{i:0;b:0;s:18:"nav_menu_locations";a:2:{s:14:"top-navigation";i:3;s:16:"popup-navigation";i:3;}}', 'yes');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(146, 'qode_options_proya', 'a:1414:{s:12:"google_fonts";s:2:"-1";s:11:"first_color";s:7:"#000000";s:12:"second_color";s:7:"#000000";s:11:"third_color";s:7:"#000000";s:12:"fourth_color";s:7:"#000000";s:16:"background_color";s:7:"#000000";s:22:"background_color_boxes";s:7:"#000000";s:15:"selection_color";s:7:"#ffffff";s:19:"overlapping_content";s:3:"yes";s:26:"overlapping_content_amount";s:0:"";s:27:"overlapping_content_padding";s:0:"";s:5:"boxed";s:2:"no";s:20:"background_color_box";s:0:"";s:16:"background_image";s:0:"";s:24:"pattern_background_image";s:0:"";s:8:"paspartu";s:2:"no";s:14:"paspartu_color";s:0:"";s:14:"paspartu_width";s:0:"";s:25:"paspartu_header_alignment";s:2:"no";s:22:"paspartu_header_inside";s:2:"no";s:29:"vertical_menu_inside_paspartu";s:3:"yes";s:15:"paspartu_on_top";s:3:"yes";s:21:"paspartu_on_top_fixed";s:2:"no";s:25:"paspartu_on_bottom_slider";s:2:"no";s:18:"paspartu_on_bottom";s:3:"yes";s:24:"paspartu_on_bottom_fixed";s:2:"no";s:25:"enable_content_top_margin";s:2:"no";s:16:"page_transitions";s:1:"0";s:17:"loading_animation";s:3:"off";s:25:"loading_animation_spinner";s:5:"pulse";s:13:"spinner_color";s:0:"";s:13:"loading_image";s:0:"";s:37:"loading_animation_left_menu_alignment";s:2:"no";s:13:"smooth_scroll";s:3:"yes";s:27:"elements_animation_on_touch";s:2:"no";s:16:"show_back_button";s:3:"yes";s:14:"responsiveness";s:3:"yes";s:13:"favicon_image";s:70:"http://localhost/rocketlaunch/wp-content/themes/bridge/img/favicon.ico";s:22:"internal_no_ajax_links";s:0:"";s:10:"custom_css";s:0:"";s:14:"custom_svg_css";s:0:"";s:9:"custom_js";s:0:"";s:21:"google_analytics_code";s:0:"";s:16:"disable_qode_seo";s:2:"no";s:13:"meta_keywords";s:0:"";s:16:"meta_description";s:0:"";s:10:"logo_image";s:76:"http://localhost/rocketlaunch/wp-content/uploads/2015/09/Img_Global_Logo.svg";s:16:"logo_image_light";s:76:"http://localhost/rocketlaunch/wp-content/uploads/2015/09/Img_Global_Logo.svg";s:15:"logo_image_dark";s:76:"http://localhost/rocketlaunch/wp-content/uploads/2015/09/Img_Global_Logo.svg";s:17:"logo_image_sticky";s:76:"http://localhost/rocketlaunch/wp-content/uploads/2015/09/Img_Global_Logo.svg";s:23:"logo_image_fixed_hidden";s:0:"";s:17:"logo_image_mobile";s:0:"";s:20:"vertical_logo_bottom";s:0:"";s:25:"logo_mobile_header_height";s:0:"";s:18:"logo_mobile_height";s:0:"";s:13:"vertical_area";s:2:"no";s:14:"header_in_grid";s:3:"yes";s:24:"header_bottom_appearance";s:5:"fixed";s:26:"search_left_sidearea_right";s:2:"no";s:24:"scroll_amount_for_sticky";s:0:"";s:19:"hide_initial_sticky";s:2:"no";s:30:"scroll_amount_for_fixed_hiding";s:0:"";s:13:"menu_position";s:0:"";s:17:"center_logo_image";s:2:"no";s:34:"search_left_sidearea_right_regular";s:2:"no";s:25:"center_logo_image_animate";s:2:"no";s:30:"disable_text_shadow_for_sticky";s:2:"no";s:13:"header_height";s:2:"24";s:20:"header_height_scroll";s:0:"";s:20:"header_height_sticky";s:0:"";s:27:"header_height_scroll_hidden";s:0:"";s:32:"header_fixed_top_logo_background";s:0:"";s:12:"header_style";s:4:"dark";s:29:"enable_header_style_on_scroll";s:2:"no";s:23:"header_background_color";s:7:"#afafaf";s:30:"header_background_color_scroll";s:7:"#0a0a0a";s:30:"header_background_color_sticky";s:0:"";s:38:"header_background_transparency_initial";s:3:"0.5";s:37:"header_background_transparency_scroll";s:1:"1";s:37:"header_background_transparency_sticky";s:0:"";s:26:"header_bottom_border_color";s:0:"";s:32:"header_botom_border_transparency";s:1:"0";s:27:"header_botom_border_in_grid";s:2:"no";s:21:"menu_background_color";s:0:"";s:32:"dropdown_separator_beetwen_items";s:2:"no";s:22:"dropdown_border_around";s:2:"no";s:22:"header_separator_color";s:0:"";s:25:"dropdown_background_color";s:7:"#1e73be";s:32:"dropdown_background_transparency";s:1:"0";s:27:"enable_wide_manu_background";s:2:"no";s:13:"enable_search";s:2:"no";s:11:"search_type";s:29:"search_slides_from_window_top";s:13:"search_height";s:0:"";s:16:"search_animation";s:4:"fade";s:28:"fullscreen_search_icon_color";s:0:"";s:30:"search_cover_only_bottom_yesno";s:2:"no";s:16:"search_icon_pack";s:12:"font_awesome";s:23:"search_background_color";s:0:"";s:17:"search_text_color";s:0:"";s:26:"search_text_disabled_color";s:0:"";s:20:"search_text_fontsize";s:0:"";s:25:"search_text_texttransform";s:0:"";s:24:"search_text_google_fonts";s:2:"-1";s:21:"search_text_fontstyle";s:0:"";s:22:"search_text_fontweight";s:0:"";s:25:"search_text_letterspacing";s:0:"";s:23:"search_label_text_color";s:0:"";s:26:"search_label_text_fontsize";s:0:"";s:31:"search_label_text_texttransform";s:0:"";s:30:"search_label_text_google_fonts";s:2:"-1";s:27:"search_label_text_fontstyle";s:0:"";s:28:"search_label_text_fontweight";s:0:"";s:31:"search_label_text_letterspacing";s:0:"";s:23:"header_search_icon_size";s:0:"";s:17:"search_icon_color";s:0:"";s:23:"search_icon_hover_color";s:0:"";s:26:"search_icon_disabled_color";s:0:"";s:16:"search_icon_size";s:0:"";s:18:"search_close_color";s:0:"";s:24:"search_close_hover_color";s:0:"";s:17:"search_close_size";s:0:"";s:19:"search_border_color";s:0:"";s:25:"search_border_focus_color";s:0:"";s:16:"enable_side_area";s:3:"yes";s:14:"side_area_type";s:32:"side_area_uncovered_from_content";s:26:"side_area_button_icon_pack";s:12:"font_awesome";s:19:"side_area_icon_icon";s:7:"fa-bars";s:22:"side_area_icon_fe_icon";s:0:"";s:15:"side_area_width";s:0:"";s:31:"side_area_content_overlay_color";s:0:"";s:33:"side_area_content_overlay_opacity";s:0:"";s:34:"side_area_slide_with_content_width";s:9:"width_470";s:15:"side_area_title";s:0:"";s:26:"side_area_background_color";s:0:"";s:21:"side_area_padding_top";s:0:"";s:23:"side_area_padding_right";s:0:"";s:24:"side_area_padding_bottom";s:0:"";s:22:"side_area_padding_left";s:0:"";s:19:"side_area_alignment";s:0:"";s:20:"side_area_text_color";s:0:"";s:26:"side_area_text_hover_color";s:0:"";s:25:"side_area_text_lineheight";s:0:"";s:28:"side_area_text_texttransform";s:0:"";s:24:"side_area_text_font_size";s:0:"";s:29:"side_area_text_letter_spacing";s:0:"";s:26:"side_area_text_font_weight";s:0:"";s:21:"side_area_title_color";s:0:"";s:25:"side_area_title_font_size";s:0:"";s:30:"side_area_title_letter_spacing";s:0:"";s:27:"side_area_title_font_weight";s:0:"";s:26:"side_area_close_icon_style";s:0:"";s:17:"enable_popup_menu";s:2:"no";s:16:"logo_image_popup";s:0:"";s:16:"popup_menu_color";s:0:"";s:22:"popup_menu_hover_color";s:0:"";s:33:"popup_menu_hover_background_color";s:0:"";s:23:"popup_menu_google_fonts";s:2:"-1";s:19:"popup_menu_fontsize";s:0:"";s:21:"popup_menu_lineheight";s:0:"";s:20:"popup_menu_fontstyle";s:0:"";s:21:"popup_menu_fontweight";s:0:"";s:24:"popup_menu_letterspacing";s:0:"";s:20:"popup_menu_color_2nd";s:0:"";s:26:"popup_menu_hover_color_2nd";s:0:"";s:37:"popup_menu_hover_background_color_2nd";s:0:"";s:27:"popup_menu_google_fonts_2nd";s:2:"-1";s:23:"popup_menu_fontsize_2nd";s:0:"";s:25:"popup_menu_lineheight_2nd";s:0:"";s:24:"popup_menu_fontstyle_2nd";s:0:"";s:25:"popup_menu_fontweight_2nd";s:0:"";s:28:"popup_menu_letterspacing_2nd";s:0:"";s:27:"popup_menu_background_color";s:0:"";s:34:"popup_menu_background_transparency";s:0:"";s:15:"header_top_area";s:2:"no";s:22:"header_top_area_scroll";s:2:"no";s:17:"header_top_height";s:0:"";s:27:"header_top_background_color";s:0:"";s:23:"top_header_border_color";s:0:"";s:24:"top_header_border_weight";s:0:"";s:18:"vertical_area_type";s:0:"";s:33:"vertical_area_hidden_button_color";s:0:"";s:38:"vertical_area_hidden_button_margin_top";s:0:"";s:19:"vertical_area_width";s:9:"width_260";s:26:"vertical_area_transparency";s:2:"no";s:34:"vertical_area_submenu_opening_type";s:0:"";s:24:"vertical_area_background";s:0:"";s:39:"vertical_area_float_dropdown_bckg_color";s:0:"";s:38:"vertical_area_float_dropdown_alignment";s:0:"";s:30:"vertical_area_background_image";s:0:"";s:24:"vertical_area_text_color";s:0:"";s:19:"left_menu_alignment";s:4:"left";s:19:"vertical_menu_color";s:0:"";s:24:"vertical_menu_hovercolor";s:0:"";s:26:"vertical_menu_google_fonts";s:2:"-1";s:22:"vertical_menu_fontsize";s:0:"";s:24:"vertical_menu_lineheight";s:0:"";s:23:"vertical_menu_fontstyle";s:0:"";s:24:"vertical_menu_fontweight";s:0:"";s:27:"vertical_menu_letterspacing";s:0:"";s:27:"vertical_menu_texttransform";s:0:"";s:23:"vertical_dropdown_color";s:0:"";s:28:"vertical_dropdown_hovercolor";s:0:"";s:30:"vertical_dropdown_google_fonts";s:2:"-1";s:26:"vertical_dropdown_fontsize";s:0:"";s:28:"vertical_dropdown_lineheight";s:0:"";s:27:"vertical_dropdown_fontstyle";s:0:"";s:28:"vertical_dropdown_fontweight";s:0:"";s:31:"vertical_dropdown_letterspacing";s:0:"";s:31:"vertical_dropdown_texttransform";s:0:"";s:32:"vertical_dropdown_color_thirdlvl";s:0:"";s:37:"vertical_dropdown_hovercolor_thirdlvl";s:0:"";s:39:"vertical_dropdown_google_fonts_thirdlvl";s:2:"-1";s:35:"vertical_dropdown_fontsize_thirdlvl";s:0:"";s:37:"vertical_dropdown_lineheight_thirdlvl";s:0:"";s:36:"vertical_dropdown_fontstyle_thirdlvl";s:0:"";s:37:"vertical_dropdown_fontweight_thirdlvl";s:0:"";s:40:"vertical_dropdown_letterspacing_thirdlvl";s:0:"";s:40:"vertical_dropdown_texttransform_thirdlvl";s:0:"";s:22:"mobile_separator_color";s:0:"";s:23:"mobile_background_color";s:0:"";s:28:"mobile_menu_button_icon_pack";s:12:"font_awesome";s:21:"mobile_menu_icon_icon";s:7:"fa-bars";s:24:"mobile_menu_icon_fe_icon";s:0:"";s:20:"header_buttons_color";s:0:"";s:26:"header_buttons_hover_color";s:0:"";s:24:"header_buttons_font_size";s:0:"";s:19:"header_buttons_size";s:6:"normal";s:17:"uncovering_footer";s:2:"no";s:28:"footer_main_image_background";s:0:"";s:15:"show_footer_top";s:3:"yes";s:14:"footer_in_grid";s:3:"yes";s:18:"footer_top_columns";s:1:"3";s:21:"footer_col1_alignment";s:4:"left";s:21:"footer_col2_alignment";s:6:"center";s:21:"footer_col3_alignment";s:5:"right";s:21:"footer_col4_alignment";s:0:"";s:27:"footer_top_background_color";s:7:"#1e73be";s:22:"footer_top_title_color";s:0:"";s:21:"footer_top_text_color";s:7:"#ebe60e";s:17:"footer_link_color";s:7:"#ebe60e";s:23:"footer_link_hover_color";s:0:"";s:23:"footer_image_background";s:0:"";s:23:"footer_top_border_color";s:0:"";s:23:"footer_top_border_width";s:0:"";s:25:"footer_top_border_in_grid";s:2:"no";s:22:"footer_top_padding_top";s:0:"";s:24:"footer_top_padding_right";s:0:"";s:25:"footer_top_padding_bottom";s:0:"";s:23:"footer_top_padding_left";s:0:"";s:21:"footer_angled_section";s:2:"no";s:31:"footer_angled_section_direction";s:18:"from_left_to_right";s:38:"footer_angled_section_background_color";s:0:"";s:11:"footer_text";s:2:"no";s:21:"footer_bottom_in_grid";s:2:"no";s:21:"footer_bottom_columns";s:1:"1";s:30:"footer_bottom_background_color";s:7:"#1e73be";s:24:"footer_bottom_text_color";s:0:"";s:30:"footer_bottom_link_hover_color";s:0:"";s:26:"footer_bottom_border_color";s:0:"";s:26:"footer_bottom_border_width";s:0:"";s:28:"footer_bottom_border_in_grid";s:2:"no";s:25:"footer_bottom_padding_top";s:0:"";s:27:"footer_bottom_padding_right";s:0:"";s:28:"footer_bottom_padding_bottom";s:0:"";s:26:"footer_bottom_padding_left";s:0:"";s:30:"footer_bottom_image_background";s:0:"";s:26:"footer_custom_menu_spacing";s:0:"";s:20:"dont_show_page_title";s:2:"no";s:18:"animate_title_area";s:2:"no";s:25:"dont_show_page_title_text";s:2:"no";s:19:"page_title_position";s:4:"left";s:22:"predefined_title_sizes";s:5:"small";s:17:"title_text_shadow";s:2:"no";s:22:"title_background_color";s:0:"";s:11:"title_image";s:0:"";s:22:"responsive_title_image";s:2:"no";s:17:"fixed_title_image";s:2:"no";s:12:"title_height";s:0:"";s:19:"title_overlay_image";s:0:"";s:15:"title_separator";s:3:"yes";s:21:"title_separator_color";s:0:"";s:21:"title_separator_width";s:0:"";s:19:"enable_title_angled";s:2:"no";s:30:"title_angled_section_direction";s:0:"";s:26:"title_angled_section_color";s:0:"";s:24:"border_bottom_title_area";s:2:"no";s:30:"border_bottom_title_area_color";s:0:"";s:32:"border_bottom_in_grid_title_area";s:2:"no";s:18:"margin_after_title";s:0:"";s:29:"margin_after_title_responsive";s:0:"";s:18:"enable_breadcrumbs";s:2:"no";s:17:"breadcrumbs_color";s:0:"";s:35:"page_title_whole_content_animations";s:2:"no";s:35:"page_title_whole_content_data_start";s:0:"";s:43:"page_title_whole_content_start_custom_style";s:0:"";s:33:"page_title_whole_content_data_end";s:0:"";s:41:"page_title_whole_content_end_custom_style";s:0:"";s:21:"page_title_animations";s:2:"no";s:21:"page_title_data_start";s:0:"";s:29:"page_title_start_custom_style";s:0:"";s:19:"page_title_data_end";s:0:"";s:27:"page_title_end_custom_style";s:0:"";s:31:"page_title_separator_animations";s:2:"no";s:31:"page_title_separator_data_start";s:0:"";s:39:"page_title_separator_start_custom_style";s:0:"";s:29:"page_title_separator_data_end";s:0:"";s:37:"page_title_separator_end_custom_style";s:0:"";s:24:"page_subtitle_animations";s:2:"no";s:24:"page_subtitle_data_start";s:0:"";s:32:"page_subtitle_start_custom_style";s:0:"";s:22:"page_subtitle_data_end";s:0:"";s:30:"page_subtitle_end_custom_style";s:0:"";s:33:"page_title_breadcrumbs_animations";s:2:"no";s:33:"page_title_breadcrumbs_data_start";s:0:"";s:41:"page_title_breadcrumbs_start_custom_style";s:0:"";s:31:"page_title_breadcrumbs_data_end";s:0:"";s:39:"page_title_breadcrumbs_end_custom_style";s:0:"";s:8:"h1_color";s:0:"";s:11:"h1_fontsize";s:0:"";s:13:"h1_lineheight";s:0:"";s:16:"h1_texttransform";s:0:"";s:15:"h1_google_fonts";s:2:"-1";s:12:"h1_fontstyle";s:0:"";s:13:"h1_fontweight";s:0:"";s:16:"h1_letterspacing";s:0:"";s:8:"h2_color";s:0:"";s:11:"h2_fontsize";s:0:"";s:13:"h2_lineheight";s:0:"";s:16:"h2_texttransform";s:0:"";s:15:"h2_google_fonts";s:2:"-1";s:12:"h2_fontstyle";s:0:"";s:13:"h2_fontweight";s:0:"";s:16:"h2_letterspacing";s:0:"";s:8:"h3_color";s:0:"";s:11:"h3_fontsize";s:0:"";s:13:"h3_lineheight";s:0:"";s:16:"h3_texttransform";s:0:"";s:15:"h3_google_fonts";s:2:"-1";s:12:"h3_fontstyle";s:0:"";s:13:"h3_fontweight";s:0:"";s:16:"h3_letterspacing";s:0:"";s:8:"h4_color";s:0:"";s:11:"h4_fontsize";s:0:"";s:13:"h4_lineheight";s:0:"";s:16:"h4_texttransform";s:0:"";s:15:"h4_google_fonts";s:2:"-1";s:12:"h4_fontstyle";s:0:"";s:13:"h4_fontweight";s:0:"";s:16:"h4_letterspacing";s:0:"";s:8:"h5_color";s:0:"";s:11:"h5_fontsize";s:0:"";s:13:"h5_lineheight";s:0:"";s:16:"h5_texttransform";s:0:"";s:15:"h5_google_fonts";s:2:"-1";s:12:"h5_fontstyle";s:0:"";s:13:"h5_fontweight";s:0:"";s:16:"h5_letterspacing";s:0:"";s:8:"h6_color";s:0:"";s:11:"h6_fontsize";s:0:"";s:13:"h6_lineheight";s:0:"";s:16:"h6_texttransform";s:0:"";s:15:"h6_google_fonts";s:2:"-1";s:12:"h6_fontstyle";s:0:"";s:13:"h6_fontweight";s:0:"";s:16:"h6_letterspacing";s:0:"";s:10:"text_color";s:0:"";s:13:"text_fontsize";s:0:"";s:15:"text_lineheight";s:0:"";s:17:"text_google_fonts";s:2:"-1";s:14:"text_fontstyle";s:0:"";s:15:"text_fontweight";s:0:"";s:11:"text_margin";s:0:"";s:10:"link_color";s:0:"";s:15:"link_hovercolor";s:0:"";s:14:"link_fontstyle";s:0:"";s:15:"link_fontweight";s:0:"";s:19:"link_fontdecoration";s:0:"";s:10:"menu_color";s:0:"";s:15:"menu_hovercolor";s:0:"";s:16:"menu_activecolor";s:0:"";s:27:"menu_hover_background_color";s:0:"";s:17:"menu_google_fonts";s:2:"-1";s:13:"menu_fontsize";s:0:"";s:15:"menu_lineheight";s:0:"";s:40:"menu_hover_background_color_transparency";s:0:"";s:14:"menu_fontstyle";s:0:"";s:15:"menu_fontweight";s:0:"";s:18:"menu_letterspacing";s:0:"";s:19:"menu_text_transform";s:0:"";s:28:"menu_separator_between_items";s:2:"no";s:20:"menu_separator_color";s:0:"";s:23:"menu_padding_left_right";s:0:"";s:14:"dropdown_color";s:0:"";s:19:"dropdown_hovercolor";s:0:"";s:21:"dropdown_google_fonts";s:2:"-1";s:17:"dropdown_fontsize";s:0:"";s:19:"dropdown_lineheight";s:0:"";s:27:"dropdown_padding_top_bottom";s:0:"";s:18:"dropdown_fontstyle";s:0:"";s:19:"dropdown_fontweight";s:0:"";s:22:"dropdown_letterspacing";s:0:"";s:22:"dropdown_texttransform";s:0:"";s:19:"dropdown_wide_color";s:0:"";s:24:"dropdown_wide_hovercolor";s:0:"";s:26:"dropdown_wide_google_fonts";s:2:"-1";s:22:"dropdown_wide_fontsize";s:0:"";s:24:"dropdown_wide_lineheight";s:0:"";s:23:"dropdown_wide_fontstyle";s:0:"";s:24:"dropdown_wide_fontweight";s:0:"";s:27:"dropdown_wide_letterspacing";s:0:"";s:27:"dropdown_wide_texttransform";s:0:"";s:23:"dropdown_color_thirdlvl";s:0:"";s:28:"dropdown_hovercolor_thirdlvl";s:0:"";s:30:"dropdown_google_fonts_thirdlvl";s:2:"-1";s:26:"dropdown_fontsize_thirdlvl";s:0:"";s:28:"dropdown_lineheight_thirdlvl";s:0:"";s:27:"dropdown_fontstyle_thirdlvl";s:0:"";s:28:"dropdown_fontweight_thirdlvl";s:0:"";s:31:"dropdown_letterspacing_thirdlvl";s:0:"";s:31:"dropdown_texttransform_thirdlvl";s:0:"";s:11:"fixed_color";s:0:"";s:16:"fixed_hovercolor";s:0:"";s:18:"fixed_google_fonts";s:2:"-1";s:14:"fixed_fontsize";s:0:"";s:16:"fixed_lineheight";s:0:"";s:15:"fixed_fontstyle";s:0:"";s:16:"fixed_fontweight";s:0:"";s:19:"fixed_letterspacing";s:0:"";s:19:"fixed_texttransform";s:0:"";s:12:"sticky_color";s:0:"";s:17:"sticky_hovercolor";s:0:"";s:19:"sticky_google_fonts";s:2:"-1";s:15:"sticky_fontsize";s:0:"";s:17:"sticky_lineheight";s:0:"";s:16:"sticky_fontstyle";s:0:"";s:17:"sticky_fontweight";s:0:"";s:20:"sticky_letterspacing";s:0:"";s:20:"sticky_texttransform";s:0:"";s:12:"mobile_color";s:0:"";s:17:"mobile_hovercolor";s:0:"";s:19:"mobile_google_fonts";s:2:"-1";s:15:"mobile_fontsize";s:0:"";s:17:"mobile_lineheight";s:0:"";s:16:"mobile_fontstyle";s:0:"";s:17:"mobile_fontweight";s:0:"";s:21:"mobile_letter_spacing";s:0:"";s:20:"mobile_texttransform";s:0:"";s:21:"top_header_text_color";s:0:"";s:27:"top_header_text_hover_color";s:0:"";s:27:"top_header_text_font_family";s:2:"-1";s:25:"top_header_text_font_size";s:0:"";s:27:"top_header_text_line_height";s:0:"";s:26:"top_header_text_font_style";s:0:"";s:27:"top_header_text_font_weight";s:0:"";s:30:"top_header_text_letter_spacing";s:0:"";s:29:"top_header_text_texttransform";s:0:"";s:16:"page_title_color";s:0:"";s:19:"page_title_fontsize";s:0:"";s:21:"page_title_lineheight";s:0:"";s:23:"page_title_google_fonts";s:2:"-1";s:20:"page_title_fontstyle";s:0:"";s:21:"page_title_fontweight";s:0:"";s:26:"page_title_medium_fontsize";s:0:"";s:28:"page_title_medium_lineheight";s:0:"";s:28:"page_title_medium_fontweight";s:0:"";s:25:"page_title_large_fontsize";s:0:"";s:27:"page_title_large_lineheight";s:0:"";s:27:"page_title_large_fontweight";s:0:"";s:19:"page_subtitle_color";s:0:"";s:22:"page_subtitle_fontsize";s:0:"";s:24:"page_subtitle_lineheight";s:0:"";s:25:"page_subtitle_font_family";s:2:"-1";s:24:"page_subtitle_font_style";s:0:"";s:24:"page_subtitle_fontweight";s:0:"";s:28:"page_subtitle_large_fontsize";s:0:"";s:30:"page_subtitle_large_lineheight";s:0:"";s:30:"page_subtitle_large_fontweight";s:0:"";s:18:"footer_title_color";s:0:"";s:22:"footer_title_font_size";s:0:"";s:27:"footer_title_letter_spacing";s:0:"";s:24:"footer_title_line_height";s:0:"";s:24:"footer_title_font_family";s:2:"-1";s:23:"footer_title_font_style";s:0:"";s:24:"footer_title_font_weight";s:0:"";s:27:"footer_title_text_transform";s:0:"";s:21:"footer_text_font_size";s:0:"";s:26:"footer_text_letter_spacing";s:0:"";s:23:"footer_text_line_height";s:0:"";s:23:"footer_text_font_family";s:2:"-1";s:22:"footer_text_font_style";s:0:"";s:23:"footer_text_font_weight";s:0:"";s:26:"footer_text_text_transform";s:0:"";s:21:"footer_link_font_size";s:0:"";s:26:"footer_link_letter_spacing";s:0:"";s:23:"footer_link_line_height";s:0:"";s:23:"footer_link_font_family";s:2:"-1";s:22:"footer_link_font_style";s:0:"";s:23:"footer_link_font_weight";s:0:"";s:26:"footer_link_text_transform";s:0:"";s:28:"footer_bottom_text_font_size";s:0:"";s:33:"footer_bottom_text_letter_spacing";s:0:"";s:30:"footer_bottom_text_line_height";s:0:"";s:30:"footer_bottom_text_font_family";s:2:"-1";s:29:"footer_bottom_text_font_style";s:0:"";s:30:"footer_bottom_text_font_weight";s:0:"";s:33:"footer_bottom_text_text_transform";s:0:"";s:28:"footer_bottom_link_font_size";s:0:"";s:33:"footer_bottom_link_letter_spacing";s:0:"";s:30:"footer_bottom_link_line_height";s:0:"";s:30:"footer_bottom_link_font_family";s:2:"-1";s:29:"footer_bottom_link_font_style";s:0:"";s:30:"footer_bottom_link_font_weight";s:0:"";s:33:"footer_bottom_link_text_transform";s:0:"";s:22:"portfolio_filter_color";s:0:"";s:28:"portfolio_filter_hover_color";s:0:"";s:26:"portfolio_filter_font_size";s:0:"";s:28:"portfolio_filter_line_height";s:0:"";s:31:"portfolio_filter_text_transform";s:0:"";s:28:"portfolio_filter_font_family";s:2:"-1";s:27:"portfolio_filter_font_style";s:0:"";s:28:"portfolio_filter_font_weight";s:0:"";s:31:"portfolio_filter_letter_spacing";s:0:"";s:15:"separator_color";s:0:"";s:28:"separator_color_transparency";s:0:"";s:19:"separator_thickness";s:0:"";s:19:"separator_topmargin";s:0:"";s:22:"separator_bottommargin";s:0:"";s:21:"separator_small_color";s:0:"";s:34:"separator_small_color_transparency";s:0:"";s:25:"separator_small_thickness";s:0:"";s:21:"separator_small_width";s:0:"";s:25:"separator_small_topmargin";s:0:"";s:28:"separator_small_bottommargin";s:0:"";s:25:"separator_with_icon_color";s:0:"";s:32:"separator_with_icon_transparency";s:0:"";s:29:"separator_with_icon_thickness";s:0:"";s:25:"separator_with_icon_width";s:0:"";s:29:"separator_with_icon_topmargin";s:0:"";s:32:"separator_with_icon_bottommargin";s:0:"";s:18:"button_title_color";s:0:"";s:23:"button_title_hovercolor";s:0:"";s:25:"button_title_google_fonts";s:2:"-1";s:21:"button_title_fontsize";s:0:"";s:23:"button_title_lineheight";s:0:"";s:22:"button_title_fontstyle";s:0:"";s:23:"button_title_fontweight";s:0:"";s:27:"button_title_letter_spacing";s:0:"";s:27:"button_title_text_transform";s:0:"";s:22:"button_backgroundcolor";s:0:"";s:28:"button_backgroundcolor_hover";s:0:"";s:19:"button_border_color";s:0:"";s:25:"button_border_hover_color";s:0:"";s:19:"button_border_width";s:0:"";s:20:"button_border_radius";s:0:"";s:24:"button_padding_leftright";s:0:"";s:23:"button_white_text_color";s:0:"";s:29:"button_white_text_color_hover";s:0:"";s:29:"button_white_background_color";s:0:"";s:35:"button_white_background_color_hover";s:0:"";s:25:"button_white_border_color";s:0:"";s:31:"button_white_border_color_hover";s:0:"";s:23:"small_button_lineheight";s:0:"";s:21:"small_button_fontsize";s:0:"";s:23:"small_button_fontweight";s:0:"";s:20:"small_button_padding";s:0:"";s:26:"small_button_border_radius";s:0:"";s:23:"large_button_lineheight";s:0:"";s:21:"large_button_fontsize";s:0:"";s:23:"large_button_fontweight";s:0:"";s:20:"large_button_padding";s:0:"";s:26:"large_button_border_radius";s:0:"";s:27:"big_large_button_lineheight";s:0:"";s:25:"big_large_button_fontsize";s:0:"";s:27:"big_large_button_fontweight";s:0:"";s:24:"big_large_button_padding";s:0:"";s:30:"big_large_button_border_radius";s:0:"";s:19:"message_title_color";s:0:"";s:23:"message_backgroundcolor";s:0:"";s:26:"message_title_google_fonts";s:2:"-1";s:22:"message_title_fontsize";s:0:"";s:24:"message_title_lineheight";s:0:"";s:23:"message_title_fontstyle";s:0:"";s:24:"message_title_fontweight";s:0:"";s:18:"message_icon_color";s:0:"";s:21:"message_icon_fontsize";s:0:"";s:30:"quote_link_blockqoute_fontsize";s:0:"";s:32:"quote_link_blockqoute_lineheight";s:0:"";s:35:"quote_link_blockqoute_letterspacing";s:0:"";s:35:"quote_link_blockqoute_texttransform";s:0:"";s:32:"quote_link_blockqoute_fontfamily";s:2:"-1";s:31:"quote_link_blockqoute_fontstyle";s:0:"";s:32:"quote_link_blockqoute_fontweight";s:0:"";s:21:"blockquote_font_color";s:0:"";s:27:"blockquote_background_color";s:0:"";s:23:"blockquote_border_color";s:0:"";s:27:"blockquote_quote_icon_color";s:0:"";s:17:"social_icon_color";s:7:"#eeee22";s:28:"social_icon_background_color";s:0:"";s:24:"social_icon_border_color";s:0:"";s:38:"testimonaials_navigation_border_radius";s:0:"";s:23:"testimonials_text_color";s:0:"";s:23:"testimonaials_font_size";s:0:"";s:29:"testimonials_text_line_height";s:0:"";s:32:"testimonials_text_text_transform";s:0:"";s:29:"testimonials_text_font_family";s:2:"-1";s:28:"testimonials_text_font_style";s:0:"";s:29:"testimonials_text_font_weight";s:0:"";s:32:"testimonials_text_letter_spacing";s:0:"";s:25:"testimonials_author_color";s:0:"";s:29:"testimonials_author_font_size";s:0:"";s:31:"testimonials_author_line_height";s:0:"";s:34:"testimonials_author_text_transform";s:0:"";s:31:"testimonials_author_font_family";s:2:"-1";s:30:"testimonials_author_font_style";s:0:"";s:31:"testimonials_author_font_weight";s:0:"";s:34:"testimonials_author_letter_spacing";s:0:"";s:13:"counter_color";s:0:"";s:18:"counter_text_color";s:0:"";s:23:"counter_separator_color";s:0:"";s:18:"counters_font_size";s:0:"";s:20:"counters_font_family";s:2:"-1";s:19:"counters_fontweight";s:0:"";s:23:"counters_text_font_size";s:0:"";s:25:"counters_text_font_family";s:2:"-1";s:24:"counters_text_fontweight";s:0:"";s:27:"counters_text_texttransform";s:0:"";s:27:"counters_text_letterspacing";s:0:"";s:32:"progress_bar_horizontal_fontsize";s:0:"";s:34:"progress_bar_horizontal_fontweight";s:0:"";s:19:"pie_charts_fontsize";s:0:"";s:21:"pie_charts_fontweight";s:0:"";s:14:"tabs_text_size";s:0:"";s:15:"tabs_fontweight";s:0:"";s:17:"tabs_border_color";s:0:"";s:18:"tabs_border_radius";s:0:"";s:17:"tabs_border_width";s:0:"";s:10:"tags_color";s:0:"";s:14:"tags_font_size";s:0:"";s:16:"tags_line_height";s:0:"";s:19:"tags_text_transform";s:0:"";s:16:"tags_font_family";s:2:"-1";s:15:"tags_font_style";s:0:"";s:16:"tags_font_weight";s:0:"";s:19:"tags_letter_spacing";s:0:"";s:16:"tags_hover_color";s:0:"";s:21:"tags_background_color";s:0:"";s:27:"tags_background_hover_color";s:0:"";s:18:"tags_border_radius";s:0:"";s:17:"tags_border_color";s:0:"";s:23:"tags_border_hover_color";s:0:"";s:17:"tags_border_width";s:0:"";s:17:"tags_border_style";s:0:"";s:23:"tags_left_right_padding";s:0:"";s:37:"process_circle_hover_background_color";s:0:"";s:34:"process_text_in_circle_font_weight";s:0:"";s:24:"process_text_hover_color";s:0:"";s:22:"input_background_color";s:0:"";s:18:"input_border_color";s:0:"";s:16:"input_text_color";s:0:"";s:15:"highlight_color";s:0:"";s:29:"toggle_title_background_color";s:0:"";s:35:"toggle_title_hover_background_color";s:0:"";s:34:"toggle_title_text_background_color";s:0:"";s:40:"toggle_title_hover_text_background_color";s:0:"";s:22:"back_to_top_icon_color";s:0:"";s:28:"back_to_top_icon_hover_color";s:0:"";s:28:"back_to_top_background_color";s:0:"";s:34:"back_to_top_background_hover_color";s:0:"";s:35:"back_to_top_background_transparency";s:0:"";s:41:"back_to_top_background_hover_transparency";s:0:"";s:24:"back_to_top_border_color";s:0:"";s:30:"back_to_top_border_hover_color";s:0:"";s:24:"back_to_top_border_width";s:0:"";s:25:"back_to_top_border_radius";s:0:"";s:31:"back_to_top_border_transparency";s:0:"";s:37:"back_to_top_border_hover_transparency";s:0:"";s:18:"back_to_top_height";s:0:"";s:17:"back_to_top_width";s:0:"";s:21:"back_to_top_right_pos";s:0:"";s:22:"back_to_top_bottom_pos";s:0:"";s:23:"navigation_button_width";s:0:"";s:24:"navigation_button_height";s:0:"";s:26:"navigation_button_position";s:0:"";s:22:"navigation_arrow_color";s:0:"";s:29:"navigation_arrow_transparency";s:0:"";s:28:"navigation_arrow_hover_color";s:0:"";s:35:"navigation_arrow_hover_transparency";s:0:"";s:21:"navigation_arrow_size";s:0:"";s:27:"navigation_background_color";s:0:"";s:34:"navigation_background_transparency";s:0:"";s:33:"navigation_background_hover_color";s:0:"";s:40:"navigation_background_hover_transparency";s:0:"";s:23:"navigation_border_color";s:0:"";s:30:"navigation_border_transparency";s:0:"";s:29:"navigation_border_hover_color";s:0:"";s:36:"navigation_border_hover_transparency";s:0:"";s:23:"navigation_border_width";s:0:"";s:24:"navigation_border_radius";s:0:"";s:32:"carousel_navigation_button_width";s:0:"";s:33:"carousel_navigation_button_height";s:0:"";s:35:"carousel_navigation_button_position";s:0:"";s:31:"carousel_navigation_arrow_color";s:0:"";s:38:"carousel_navigation_arrow_transparency";s:0:"";s:37:"carousel_navigation_arrow_hover_color";s:0:"";s:44:"carousel_navigation_arrow_hover_transparency";s:0:"";s:30:"carousel_navigation_arrow_size";s:0:"";s:36:"carousel_navigation_background_color";s:0:"";s:43:"carousel_navigation_background_transparency";s:0:"";s:42:"carousel_navigation_background_hover_color";s:0:"";s:49:"carousel_navigation_background_hover_transparency";s:0:"";s:32:"carousel_navigation_border_color";s:0:"";s:39:"carousel_navigation_border_transparency";s:0:"";s:38:"carousel_navigation_border_hover_color";s:0:"";s:45:"carousel_navigation_border_hover_transparency";s:0:"";s:32:"carousel_navigation_border_width";s:0:"";s:33:"carousel_navigation_border_radius";s:0:"";s:37:"single_slider_navigation_button_width";s:0:"";s:38:"single_slider_navigation_button_height";s:0:"";s:40:"single_slider_navigation_button_position";s:0:"";s:36:"single_slider_navigation_arrow_color";s:0:"";s:43:"single_slider_navigation_arrow_transparency";s:0:"";s:42:"single_slider_navigation_arrow_hover_color";s:0:"";s:49:"single_slider_navigation_arrow_hover_transparency";s:0:"";s:35:"single_slider_navigation_arrow_size";s:0:"";s:41:"single_slider_navigation_background_color";s:0:"";s:48:"single_slider_navigation_background_transparency";s:0:"";s:47:"single_slider_navigation_background_hover_color";s:0:"";s:54:"single_slider_navigation_background_hover_transparency";s:0:"";s:37:"single_slider_navigation_border_color";s:0:"";s:44:"single_slider_navigation_border_transparency";s:0:"";s:43:"single_slider_navigation_border_hover_color";s:0:"";s:50:"single_slider_navigation_border_hover_transparency";s:0:"";s:37:"single_slider_navigation_border_width";s:0:"";s:38:"single_slider_navigation_border_radius";s:0:"";s:33:"slider_circle_navigation_position";s:0:"";s:23:"button_navigation_color";s:0:"";s:30:"button_navigation_active_color";s:0:"";s:22:"button_navigation_size";s:0:"";s:31:"button_navigation_border_radius";s:0:"";s:30:"button_navigation_border_color";s:0:"";s:37:"button_navigation_active_border_color";s:0:"";s:21:"masonry_gallery_space";s:0:"";s:38:"masonry_gallery_square_big_title_color";s:0:"";s:42:"masonry_gallery_square_big_title_font_size";s:0:"";s:44:"masonry_gallery_square_big_title_line_height";s:0:"";s:47:"masonry_gallery_square_big_title_text_transform";s:0:"";s:44:"masonry_gallery_square_big_title_font_family";s:2:"-1";s:43:"masonry_gallery_square_big_title_font_style";s:0:"";s:44:"masonry_gallery_square_big_title_font_weight";s:0:"";s:47:"masonry_gallery_square_big_title_letter_spacing";s:0:"";s:46:"masonry_gallery_square_big_title_margin_bottom";s:0:"";s:37:"masonry_gallery_square_big_text_color";s:0:"";s:41:"masonry_gallery_square_big_text_font_size";s:0:"";s:43:"masonry_gallery_square_big_text_line_height";s:0:"";s:46:"masonry_gallery_square_big_text_text_transform";s:0:"";s:43:"masonry_gallery_square_big_text_font_family";s:2:"-1";s:42:"masonry_gallery_square_big_text_font_style";s:0:"";s:43:"masonry_gallery_square_big_text_font_weight";s:0:"";s:46:"masonry_gallery_square_big_text_letter_spacing";s:0:"";s:45:"masonry_gallery_square_big_button_font_family";s:2:"-1";s:44:"masonry_gallery_square_big_button_font_style";s:0:"";s:45:"masonry_gallery_square_big_button_font_weight";s:0:"";s:48:"masonry_gallery_square_big_button_text_transform";s:0:"";s:43:"masonry_gallery_square_big_button_font_size";s:0:"";s:45:"masonry_gallery_square_big_button_line_height";s:0:"";s:48:"masonry_gallery_square_big_button_letter_spacing";s:0:"";s:44:"masonry_gallery_square_big_button_text_color";s:0:"";s:50:"masonry_gallery_square_big_button_hover_text_color";s:0:"";s:50:"masonry_gallery_square_big_button_background_color";s:0:"";s:56:"masonry_gallery_square_big_button_hover_background_color";s:0:"";s:46:"masonry_gallery_square_big_button_border_color";s:0:"";s:52:"masonry_gallery_square_big_button_hover_border_color";s:0:"";s:46:"masonry_gallery_square_big_button_border_width";s:0:"";s:47:"masonry_gallery_square_big_button_border_radius";s:0:"";s:46:"masonry_gallery_square_big_button_padding_left";s:0:"";s:47:"masonry_gallery_square_big_button_padding_right";s:0:"";s:44:"masonry_gallery_square_big_button_margin_top";s:0:"";s:37:"masonry_gallery_square_big_icon_color";s:0:"";s:43:"masonry_gallery_square_big_icon_hover_color";s:0:"";s:36:"masonry_gallery_square_big_icon_size";s:0:"";s:45:"masonry_gallery_square_big_icon_margin_bottom";s:0:"";s:40:"masonry_gallery_square_big_overlay_color";s:0:"";s:47:"masonry_gallery_square_big_overlay_transparency";s:0:"";s:37:"masonry_gallery_square_big_text_align";s:6:"center";s:39:"masonry_gallery_square_big_padding_left";s:0:"";s:40:"masonry_gallery_square_big_padding_right";s:0:"";s:40:"masonry_gallery_square_small_title_color";s:0:"";s:44:"masonry_gallery_square_small_title_font_size";s:0:"";s:46:"masonry_gallery_square_small_title_line_height";s:0:"";s:49:"masonry_gallery_square_small_title_text_transform";s:0:"";s:46:"masonry_gallery_square_small_title_font_family";s:2:"-1";s:45:"masonry_gallery_square_small_title_font_style";s:0:"";s:46:"masonry_gallery_square_small_title_font_weight";s:0:"";s:49:"masonry_gallery_square_small_title_letter_spacing";s:0:"";s:48:"masonry_gallery_square_small_title_margin_bottom";s:0:"";s:39:"masonry_gallery_square_small_text_color";s:0:"";s:43:"masonry_gallery_square_small_text_font_size";s:0:"";s:45:"masonry_gallery_square_small_text_line_height";s:0:"";s:48:"masonry_gallery_square_small_text_text_transform";s:0:"";s:45:"masonry_gallery_square_small_text_font_family";s:2:"-1";s:44:"masonry_gallery_square_small_text_font_style";s:0:"";s:45:"masonry_gallery_square_small_text_font_weight";s:0:"";s:48:"masonry_gallery_square_small_text_letter_spacing";s:0:"";s:47:"masonry_gallery_square_small_button_font_family";s:2:"-1";s:46:"masonry_gallery_square_small_button_font_style";s:0:"";s:47:"masonry_gallery_square_small_button_font_weight";s:0:"";s:50:"masonry_gallery_square_small_button_text_transform";s:0:"";s:45:"masonry_gallery_square_small_button_font_size";s:0:"";s:47:"masonry_gallery_square_small_button_line_height";s:0:"";s:50:"masonry_gallery_square_small_button_letter_spacing";s:0:"";s:46:"masonry_gallery_square_small_button_text_color";s:0:"";s:52:"masonry_gallery_square_small_button_hover_text_color";s:0:"";s:52:"masonry_gallery_square_small_button_background_color";s:0:"";s:58:"masonry_gallery_square_small_button_hover_background_color";s:0:"";s:48:"masonry_gallery_square_small_button_border_color";s:0:"";s:54:"masonry_gallery_square_small_button_hover_border_color";s:0:"";s:48:"masonry_gallery_square_small_button_border_width";s:0:"";s:49:"masonry_gallery_square_small_button_border_radius";s:0:"";s:48:"masonry_gallery_square_small_button_padding_left";s:0:"";s:49:"masonry_gallery_square_small_button_padding_right";s:0:"";s:46:"masonry_gallery_square_small_button_margin_top";s:0:"";s:39:"masonry_gallery_square_small_icon_color";s:0:"";s:45:"masonry_gallery_square_small_icon_hover_color";s:0:"";s:38:"masonry_gallery_square_small_icon_size";s:0:"";s:47:"masonry_gallery_square_small_icon_margin_bottom";s:0:"";s:42:"masonry_gallery_square_small_overlay_color";s:0:"";s:49:"masonry_gallery_square_small_overlay_transparency";s:0:"";s:39:"masonry_gallery_square_small_text_align";s:6:"center";s:41:"masonry_gallery_square_small_padding_left";s:0:"";s:42:"masonry_gallery_square_small_padding_right";s:0:"";s:46:"masonry_gallery_rectangle_portrait_title_color";s:0:"";s:50:"masonry_gallery_rectangle_portrait_title_font_size";s:0:"";s:52:"masonry_gallery_rectangle_portrait_title_line_height";s:0:"";s:55:"masonry_gallery_rectangle_portrait_title_text_transform";s:0:"";s:52:"masonry_gallery_rectangle_portrait_title_font_family";s:2:"-1";s:51:"masonry_gallery_rectangle_portrait_title_font_style";s:0:"";s:52:"masonry_gallery_rectangle_portrait_title_font_weight";s:0:"";s:55:"masonry_gallery_rectangle_portrait_title_letter_spacing";s:0:"";s:54:"masonry_gallery_rectangle_portrait_title_margin_bottom";s:0:"";s:45:"masonry_gallery_rectangle_portrait_text_color";s:0:"";s:49:"masonry_gallery_rectangle_portrait_text_font_size";s:0:"";s:51:"masonry_gallery_rectangle_portrait_text_line_height";s:0:"";s:54:"masonry_gallery_rectangle_portrait_text_text_transform";s:0:"";s:51:"masonry_gallery_rectangle_portrait_text_font_family";s:2:"-1";s:50:"masonry_gallery_rectangle_portrait_text_font_style";s:0:"";s:51:"masonry_gallery_rectangle_portrait_text_font_weight";s:0:"";s:54:"masonry_gallery_rectangle_portrait_text_letter_spacing";s:0:"";s:53:"masonry_gallery_rectangle_portrait_button_font_family";s:2:"-1";s:52:"masonry_gallery_rectangle_portrait_button_font_style";s:0:"";s:53:"masonry_gallery_rectangle_portrait_button_font_weight";s:0:"";s:56:"masonry_gallery_rectangle_portrait_button_text_transform";s:0:"";s:51:"masonry_gallery_rectangle_portrait_button_font_size";s:0:"";s:53:"masonry_gallery_rectangle_portrait_button_line_height";s:0:"";s:56:"masonry_gallery_rectangle_portrait_button_letter_spacing";s:0:"";s:52:"masonry_gallery_rectangle_portrait_button_text_color";s:0:"";s:58:"masonry_gallery_rectangle_portrait_button_hover_text_color";s:0:"";s:58:"masonry_gallery_rectangle_portrait_button_background_color";s:0:"";s:64:"masonry_gallery_rectangle_portrait_button_hover_background_color";s:0:"";s:54:"masonry_gallery_rectangle_portrait_button_border_color";s:0:"";s:60:"masonry_gallery_rectangle_portrait_button_hover_border_color";s:0:"";s:54:"masonry_gallery_rectangle_portrait_button_border_width";s:0:"";s:55:"masonry_gallery_rectangle_portrait_button_border_radius";s:0:"";s:54:"masonry_gallery_rectangle_portrait_button_padding_left";s:0:"";s:55:"masonry_gallery_rectangle_portrait_button_padding_right";s:0:"";s:52:"masonry_gallery_rectangle_portrait_button_margin_top";s:0:"";s:45:"masonry_gallery_rectangle_portrait_icon_color";s:0:"";s:51:"masonry_gallery_rectangle_portrait_icon_hover_color";s:0:"";s:44:"masonry_gallery_rectangle_portrait_icon_size";s:0:"";s:53:"masonry_gallery_rectangle_portrait_icon_margin_bottom";s:0:"";s:48:"masonry_gallery_rectangle_portrait_overlay_color";s:0:"";s:55:"masonry_gallery_rectangle_portrait_overlay_transparency";s:0:"";s:45:"masonry_gallery_rectangle_portrait_text_align";s:6:"center";s:47:"masonry_gallery_rectangle_portrait_padding_left";s:0:"";s:48:"masonry_gallery_rectangle_portrait_padding_right";s:0:"";s:47:"masonry_gallery_rectangle_landscape_title_color";s:0:"";s:51:"masonry_gallery_rectangle_landscape_title_font_size";s:0:"";s:53:"masonry_gallery_rectangle_landscape_title_line_height";s:0:"";s:56:"masonry_gallery_rectangle_landscape_title_text_transform";s:0:"";s:53:"masonry_gallery_rectangle_landscape_title_font_family";s:2:"-1";s:52:"masonry_gallery_rectangle_landscape_title_font_style";s:0:"";s:53:"masonry_gallery_rectangle_landscape_title_font_weight";s:0:"";s:56:"masonry_gallery_rectangle_landscape_title_letter_spacing";s:0:"";s:55:"masonry_gallery_rectangle_landscape_title_margin_bottom";s:0:"";s:46:"masonry_gallery_rectangle_landscape_text_color";s:0:"";s:50:"masonry_gallery_rectangle_landscape_text_font_size";s:0:"";s:52:"masonry_gallery_rectangle_landscape_text_line_height";s:0:"";s:55:"masonry_gallery_rectangle_landscape_text_text_transform";s:0:"";s:52:"masonry_gallery_rectangle_landscape_text_font_family";s:2:"-1";s:51:"masonry_gallery_rectangle_landscape_text_font_style";s:0:"";s:52:"masonry_gallery_rectangle_landscape_text_font_weight";s:0:"";s:55:"masonry_gallery_rectangle_landscape_text_letter_spacing";s:0:"";s:54:"masonry_gallery_rectangle_landscape_button_font_family";s:2:"-1";s:53:"masonry_gallery_rectangle_landscape_button_font_style";s:0:"";s:54:"masonry_gallery_rectangle_landscape_button_font_weight";s:0:"";s:57:"masonry_gallery_rectangle_landscape_button_text_transform";s:0:"";s:52:"masonry_gallery_rectangle_landscape_button_font_size";s:0:"";s:54:"masonry_gallery_rectangle_landscape_button_line_height";s:0:"";s:57:"masonry_gallery_rectangle_landscape_button_letter_spacing";s:0:"";s:53:"masonry_gallery_rectangle_landscape_button_text_color";s:0:"";s:59:"masonry_gallery_rectangle_landscape_button_hover_text_color";s:0:"";s:59:"masonry_gallery_rectangle_landscape_button_background_color";s:0:"";s:65:"masonry_gallery_rectangle_landscape_button_hover_background_color";s:0:"";s:55:"masonry_gallery_rectangle_landscape_button_border_color";s:0:"";s:61:"masonry_gallery_rectangle_landscape_button_hover_border_color";s:0:"";s:55:"masonry_gallery_rectangle_landscape_button_border_width";s:0:"";s:56:"masonry_gallery_rectangle_landscape_button_border_radius";s:0:"";s:55:"masonry_gallery_rectangle_landscape_button_padding_left";s:0:"";s:56:"masonry_gallery_rectangle_landscape_button_padding_right";s:0:"";s:53:"masonry_gallery_rectangle_landscape_button_margin_top";s:0:"";s:46:"masonry_gallery_rectangle_landscape_icon_color";s:0:"";s:52:"masonry_gallery_rectangle_landscape_icon_hover_color";s:0:"";s:45:"masonry_gallery_rectangle_landscape_icon_size";s:0:"";s:54:"masonry_gallery_rectangle_landscape_icon_margin_bottom";s:0:"";s:49:"masonry_gallery_rectangle_landscape_overlay_color";s:0:"";s:56:"masonry_gallery_rectangle_landscape_overlay_transparency";s:0:"";s:46:"masonry_gallery_rectangle_landscape_text_align";s:6:"center";s:48:"masonry_gallery_rectangle_landscape_padding_left";s:0:"";s:49:"masonry_gallery_rectangle_landscape_padding_right";s:0:"";s:27:"fss_navigation_button_width";s:0:"";s:28:"fss_navigation_button_height";s:0:"";s:30:"fss_navigation_button_position";s:0:"";s:33:"fss_navigation_button_up_position";s:0:"";s:35:"fss_navigation_button_down_position";s:0:"";s:26:"fss_navigation_arrow_color";s:0:"";s:33:"fss_navigation_arrow_transparency";s:0:"";s:32:"fss_navigation_arrow_hover_color";s:0:"";s:39:"fss_navigation_arrow_hover_transparency";s:0:"";s:25:"fss_navigation_arrow_size";s:0:"";s:31:"fss_navigation_background_color";s:0:"";s:38:"fss_navigation_background_transparency";s:0:"";s:37:"fss_navigation_background_hover_color";s:0:"";s:44:"fss_navigation_background_hover_transparency";s:0:"";s:27:"fss_navigation_border_color";s:0:"";s:34:"fss_navigation_border_transparency";s:0:"";s:33:"fss_navigation_border_hover_color";s:0:"";s:40:"fss_navigation_border_hover_transparency";s:0:"";s:27:"fss_navigation_border_width";s:0:"";s:28:"fss_navigation_border_radius";s:0:"";s:19:"sidebar_title_color";s:0:"";s:22:"sidebar_title_fontsize";s:0:"";s:24:"sidebar_title_lineheight";s:0:"";s:27:"sidebar_title_texttransform";s:0:"";s:26:"sidebar_title_google_fonts";s:2:"-1";s:23:"sidebar_title_fontstyle";s:0:"";s:24:"sidebar_title_fontweight";s:0:"";s:27:"sidebar_title_letterspacing";s:0:"";s:18:"sidebar_text_color";s:0:"";s:21:"sidebar_text_fontsize";s:0:"";s:23:"sidebar_text_lineheight";s:0:"";s:26:"sidebar_text_texttransform";s:0:"";s:25:"sidebar_text_google_fonts";s:2:"-1";s:22:"sidebar_text_fontstyle";s:0:"";s:23:"sidebar_text_fontweight";s:0:"";s:26:"sidebar_text_letterspacing";s:0:"";s:18:"sidebar_link_color";s:0:"";s:24:"sidebar_link_hover_color";s:0:"";s:21:"sidebar_link_fontsize";s:0:"";s:23:"sidebar_link_lineheight";s:0:"";s:26:"sidebar_link_texttransform";s:0:"";s:25:"sidebar_link_google_fonts";s:2:"-1";s:22:"sidebar_link_fontstyle";s:0:"";s:23:"sidebar_link_fontweight";s:0:"";s:26:"sidebar_link_letterspacing";s:0:"";s:23:"qs_slider_height_tablet";s:0:"";s:23:"qs_slider_height_mobile";s:0:"";s:15:"qs_button_color";s:0:"";s:21:"qs_button_hover_color";s:0:"";s:26:"qs_button_background_color";s:0:"";s:32:"qs_button_hover_background_color";s:0:"";s:22:"qs_button_border_color";s:0:"";s:28:"qs_button_hover_border_color";s:0:"";s:22:"qs_button_border_width";s:0:"";s:23:"qs_button_border_radius";s:0:"";s:16:"qs_button2_color";s:0:"";s:22:"qs_button2_hover_color";s:0:"";s:27:"qs_button2_background_color";s:0:"";s:33:"qs_button2_hover_background_color";s:0:"";s:23:"qs_button2_border_color";s:0:"";s:29:"qs_button2_hover_border_color";s:0:"";s:23:"qs_button2_border_width";s:0:"";s:24:"qs_button2_border_radius";s:0:"";s:34:"qs_enable_navigation_custom_cursor";s:2:"no";s:33:"cursor_image_left_right_area_size";s:0:"";s:24:"cursor_image_left_normal";s:0:"";s:25:"cursor_image_right_normal";s:0:"";s:23:"cursor_image_left_light";s:0:"";s:24:"cursor_image_right_light";s:0:"";s:22:"cursor_image_left_dark";s:0:"";s:23:"cursor_image_right_dark";s:0:"";s:39:"qs_enable_navigation_custom_cursor_grab";s:2:"no";s:24:"cursor_image_grab_normal";s:0:"";s:23:"cursor_image_grab_light";s:0:"";s:22:"cursor_image_grab_dark";s:0:"";s:10:"pagination";s:1:"1";s:10:"blog_style";s:1:"1";s:21:"category_blog_sidebar";s:7:"default";s:18:"blog_hide_comments";s:2:"no";s:16:"blog_hide_author";s:2:"no";s:9:"qode_like";s:2:"on";s:15:"blog_page_range";s:0:"";s:15:"number_of_chars";s:2:"45";s:23:"number_of_chars_masonry";s:0:"";s:27:"number_of_chars_large_image";s:0:"";s:27:"number_of_chars_small_image";s:0:"";s:21:"blog_content_position";s:23:"content_above_blog_list";s:18:"pagination_masonry";s:10:"pagination";s:19:"blog_masonry_filter";s:2:"no";s:20:"blog_masonry_padding";s:0:"";s:28:"blog_large_image_text_in_box";s:0:"";s:23:"blog_large_image_border";s:0:"";s:29:"blog_large_image_border_width";s:0:"";s:33:"blog_large_image_background_color";s:0:"";s:29:"blog_large_image_border_color";s:0:"";s:28:"blog_large_image_title_color";s:0:"";s:34:"blog_large_image_title_hover_color";s:0:"";s:33:"blog_large_image_title_date_color";s:0:"";s:31:"blog_large_image_title_fontsize";s:0:"";s:33:"blog_large_image_title_lineheight";s:0:"";s:36:"blog_large_image_title_texttransform";s:0:"";s:35:"blog_large_image_title_google_fonts";s:2:"-1";s:32:"blog_large_image_title_fontstyle";s:0:"";s:33:"blog_large_image_title_fontweight";s:0:"";s:36:"blog_large_image_title_letterspacing";s:0:"";s:32:"blog_large_image_post_info_color";s:0:"";s:37:"blog_large_image_post_info_link_color";s:0:"";s:43:"blog_large_image_post_info_link_hover_color";s:0:"";s:35:"blog_large_image_post_info_fontsize";s:0:"";s:37:"blog_large_image_post_info_lineheight";s:0:"";s:40:"blog_large_image_post_info_texttransform";s:0:"";s:39:"blog_large_image_post_info_google_fonts";s:2:"-1";s:36:"blog_large_image_post_info_fontstyle";s:0:"";s:37:"blog_large_image_post_info_fontweight";s:0:"";s:40:"blog_large_image_post_info_letterspacing";s:0:"";s:35:"blog_large_image_ql_post_info_color";s:0:"";s:40:"blog_large_image_ql_post_info_link_color";s:0:"";s:46:"blog_large_image_ql_post_info_link_hover_color";s:0:"";s:38:"blog_large_image_ql_post_info_fontsize";s:0:"";s:40:"blog_large_image_ql_post_info_lineheight";s:0:"";s:43:"blog_large_image_ql_post_info_texttransform";s:0:"";s:42:"blog_large_image_ql_post_info_google_fonts";s:2:"-1";s:39:"blog_large_image_ql_post_info_fontstyle";s:0:"";s:40:"blog_large_image_ql_post_info_fontweight";s:0:"";s:43:"blog_large_image_ql_post_info_letterspacing";s:0:"";s:28:"blog_small_image_text_in_box";s:0:"";s:23:"blog_small_image_border";s:0:"";s:29:"blog_small_image_border_width";s:0:"";s:33:"blog_small_image_background_color";s:0:"";s:29:"blog_small_image_border_color";s:0:"";s:28:"blog_small_image_title_color";s:0:"";s:34:"blog_small_image_title_hover_color";s:0:"";s:33:"blog_small_image_title_date_color";s:0:"";s:31:"blog_small_image_title_fontsize";s:0:"";s:33:"blog_small_image_title_lineheight";s:0:"";s:36:"blog_small_image_title_texttransform";s:0:"";s:35:"blog_small_image_title_google_fonts";s:2:"-1";s:32:"blog_small_image_title_fontstyle";s:0:"";s:33:"blog_small_image_title_fontweight";s:0:"";s:36:"blog_small_image_title_letterspacing";s:0:"";s:32:"blog_small_image_post_info_color";s:0:"";s:37:"blog_small_image_post_info_link_color";s:0:"";s:43:"blog_small_image_post_info_link_hover_color";s:0:"";s:35:"blog_small_image_post_info_fontsize";s:0:"";s:37:"blog_small_image_post_info_lineheight";s:0:"";s:40:"blog_small_image_post_info_texttransform";s:0:"";s:39:"blog_small_image_post_info_google_fonts";s:2:"-1";s:36:"blog_small_image_post_info_fontstyle";s:0:"";s:37:"blog_small_image_post_info_fontweight";s:0:"";s:40:"blog_small_image_post_info_letterspacing";s:0:"";s:35:"blog_small_image_ql_post_info_color";s:0:"";s:40:"blog_small_image_ql_post_info_link_color";s:0:"";s:46:"blog_small_image_ql_post_info_link_hover_color";s:0:"";s:38:"blog_small_image_ql_post_info_fontsize";s:0:"";s:40:"blog_small_image_ql_post_info_lineheight";s:0:"";s:43:"blog_small_image_ql_post_info_texttransform";s:0:"";s:42:"blog_small_image_ql_post_info_google_fonts";s:2:"-1";s:39:"blog_small_image_ql_post_info_fontstyle";s:0:"";s:40:"blog_small_image_ql_post_info_fontweight";s:0:"";s:43:"blog_small_image_ql_post_info_letterspacing";s:0:"";s:29:"blog_masonry_background_color";s:0:"";s:25:"blog_masonry_border_color";s:0:"";s:26:"blog_masonry_border_radius";s:0:"";s:24:"blog_masonry_title_color";s:0:"";s:30:"blog_masonry_title_hover_color";s:0:"";s:27:"blog_masonry_title_fontsize";s:0:"";s:29:"blog_masonry_title_lineheight";s:0:"";s:32:"blog_masonry_title_texttransform";s:0:"";s:31:"blog_masonry_title_google_fonts";s:2:"-1";s:28:"blog_masonry_title_fontstyle";s:0:"";s:29:"blog_masonry_title_fontweight";s:0:"";s:32:"blog_masonry_title_letterspacing";s:0:"";s:28:"blog_masonry_post_info_color";s:0:"";s:33:"blog_masonry_post_info_link_color";s:0:"";s:39:"blog_masonry_post_info_link_hover_color";s:0:"";s:31:"blog_masonry_post_info_fontsize";s:0:"";s:33:"blog_masonry_post_info_lineheight";s:0:"";s:36:"blog_masonry_post_info_texttransform";s:0:"";s:35:"blog_masonry_post_info_google_fonts";s:2:"-1";s:32:"blog_masonry_post_info_fontstyle";s:0:"";s:33:"blog_masonry_post_info_fontweight";s:0:"";s:36:"blog_masonry_post_info_letterspacing";s:0:"";s:31:"blog_masonry_ql_post_info_color";s:0:"";s:36:"blog_masonry_ql_post_info_link_color";s:0:"";s:42:"blog_masonry_ql_post_info_link_hover_color";s:0:"";s:34:"blog_masonry_ql_post_info_fontsize";s:0:"";s:36:"blog_masonry_ql_post_info_lineheight";s:0:"";s:39:"blog_masonry_ql_post_info_texttransform";s:0:"";s:38:"blog_masonry_ql_post_info_google_fonts";s:2:"-1";s:35:"blog_masonry_ql_post_info_fontstyle";s:0:"";s:36:"blog_masonry_ql_post_info_fontweight";s:0:"";s:39:"blog_masonry_ql_post_info_letterspacing";s:0:"";s:41:"blog_large_image_simple_side_padding_left";s:0:"";s:42:"blog_large_image_simple_side_padding_right";s:0:"";s:35:"blog_large_image_simple_title_color";s:0:"";s:41:"blog_large_image_simple_title_hover_color";s:0:"";s:38:"blog_large_image_simple_title_fontsize";s:0:"";s:40:"blog_large_image_simple_title_lineheight";s:0:"";s:43:"blog_large_image_simple_title_texttransform";s:0:"";s:42:"blog_large_image_simple_title_google_fonts";s:2:"-1";s:39:"blog_large_image_simple_title_fontstyle";s:0:"";s:40:"blog_large_image_simple_title_fontweight";s:0:"";s:43:"blog_large_image_simple_title_letterspacing";s:0:"";s:39:"blog_large_image_simple_post_info_color";s:0:"";s:42:"blog_large_image_simple_post_info_fontsize";s:0:"";s:44:"blog_large_image_simple_post_info_lineheight";s:0:"";s:47:"blog_large_image_simple_post_info_texttransform";s:0:"";s:46:"blog_large_image_simple_post_info_google_fonts";s:2:"-1";s:43:"blog_large_image_simple_post_info_fontstyle";s:0:"";s:44:"blog_large_image_simple_post_info_fontweight";s:0:"";s:47:"blog_large_image_simple_post_info_letterspacing";s:0:"";s:42:"blog_large_image_simple_ql_post_info_color";s:0:"";s:45:"blog_large_image_simple_ql_post_info_fontsize";s:0:"";s:47:"blog_large_image_simple_ql_post_info_lineheight";s:0:"";s:50:"blog_large_image_simple_ql_post_info_texttransform";s:0:"";s:49:"blog_large_image_simple_ql_post_info_google_fonts";s:2:"-1";s:46:"blog_large_image_simple_ql_post_info_fontstyle";s:0:"";s:47:"blog_large_image_simple_ql_post_info_fontweight";s:0:"";s:50:"blog_large_image_simple_ql_post_info_letterspacing";s:0:"";s:42:"blog_large_image_dividers_background_color";s:0:"";s:37:"blog_large_image_dividers_title_color";s:0:"";s:43:"blog_large_image_dividers_title_hover_color";s:0:"";s:40:"blog_large_image_dividers_title_fontsize";s:0:"";s:42:"blog_large_image_dividers_title_lineheight";s:0:"";s:45:"blog_large_image_dividers_title_texttransform";s:0:"";s:44:"blog_large_image_dividers_title_google_fonts";s:2:"-1";s:41:"blog_large_image_dividers_title_fontstyle";s:0:"";s:42:"blog_large_image_dividers_title_fontweight";s:0:"";s:45:"blog_large_image_dividers_title_letterspacing";s:0:"";s:41:"blog_large_image_dividers_post_info_color";s:0:"";s:46:"blog_large_image_dividers_post_info_link_color";s:0:"";s:52:"blog_large_image_dividers_post_info_link_hover_color";s:0:"";s:44:"blog_large_image_dividers_post_info_fontsize";s:0:"";s:46:"blog_large_image_dividers_post_info_lineheight";s:0:"";s:49:"blog_large_image_dividers_post_info_texttransform";s:0:"";s:48:"blog_large_image_dividers_post_info_google_fonts";s:2:"-1";s:45:"blog_large_image_dividers_post_info_fontstyle";s:0:"";s:46:"blog_large_image_dividers_post_info_fontweight";s:0:"";s:49:"blog_large_image_dividers_post_info_letterspacing";s:0:"";s:44:"blog_large_image_dividers_ql_post_info_color";s:0:"";s:49:"blog_large_image_dividers_ql_post_info_link_color";s:0:"";s:55:"blog_large_image_dividers_ql_post_info_link_hover_color";s:0:"";s:47:"blog_large_image_dividers_ql_post_info_fontsize";s:0:"";s:49:"blog_large_image_dividers_ql_post_info_lineheight";s:0:"";s:52:"blog_large_image_dividers_ql_post_info_texttransform";s:0:"";s:51:"blog_large_image_dividers_ql_post_info_google_fonts";s:2:"-1";s:48:"blog_large_image_dividers_ql_post_info_fontstyle";s:0:"";s:49:"blog_large_image_dividers_ql_post_info_fontweight";s:0:"";s:52:"blog_large_image_dividers_ql_post_info_letterspacing";s:0:"";s:30:"blog_vertical_loop_title_color";s:0:"";s:36:"blog_vertical_loop_title_hover_color";s:0:"";s:33:"blog_vertical_loop_title_fontsize";s:0:"";s:35:"blog_vertical_loop_title_lineheight";s:0:"";s:38:"blog_vertical_loop_title_texttransform";s:0:"";s:37:"blog_vertical_loop_title_google_fonts";s:2:"-1";s:34:"blog_vertical_loop_title_fontstyle";s:0:"";s:35:"blog_vertical_loop_title_fontweight";s:0:"";s:38:"blog_vertical_loop_title_letterspacing";s:0:"";s:40:"blog_vertical_loop_next_post_title_color";s:0:"";s:43:"blog_vertical_loop_next_post_title_fontsize";s:0:"";s:45:"blog_vertical_loop_next_post_title_lineheight";s:0:"";s:48:"blog_vertical_loop_next_post_title_texttransform";s:0:"";s:47:"blog_vertical_loop_next_post_title_google_fonts";s:2:"-1";s:44:"blog_vertical_loop_next_post_title_fontstyle";s:0:"";s:45:"blog_vertical_loop_next_post_title_fontweight";s:0:"";s:48:"blog_vertical_loop_next_post_title_letterspacing";s:0:"";s:34:"blog_vertical_loop_post_info_color";s:0:"";s:39:"blog_vertical_loop_post_info_link_color";s:0:"";s:40:"blog_vertical_loop_post_info_hover_color";s:0:"";s:37:"blog_vertical_loop_post_info_fontsize";s:0:"";s:39:"blog_vertical_loop_post_info_lineheight";s:0:"";s:42:"blog_vertical_loop_post_info_texttransform";s:0:"";s:41:"blog_vertical_loop_post_info_google_fonts";s:2:"-1";s:38:"blog_vertical_loop_post_info_fontstyle";s:0:"";s:39:"blog_vertical_loop_post_info_fontweight";s:0:"";s:42:"blog_vertical_loop_post_info_letterspacing";s:0:"";s:33:"blog_vertical_loop_ql_title_color";s:0:"";s:39:"blog_vertical_loop_ql_title_hover_color";s:0:"";s:40:"blog_vertical_loop_ql_title_author_color";s:0:"";s:36:"blog_vertical_loop_ql_title_fontsize";s:0:"";s:38:"blog_vertical_loop_ql_title_lineheight";s:0:"";s:41:"blog_vertical_loop_ql_title_texttransform";s:0:"";s:40:"blog_vertical_loop_ql_title_google_fonts";s:2:"-1";s:37:"blog_vertical_loop_ql_title_fontstyle";s:0:"";s:38:"blog_vertical_loop_ql_title_fontweight";s:0:"";s:41:"blog_vertical_loop_ql_title_letterspacing";s:0:"";s:37:"blog_vertical_loop_ql_post_info_color";s:0:"";s:42:"blog_vertical_loop_ql_post_info_link_color";s:0:"";s:43:"blog_vertical_loop_ql_post_info_hover_color";s:0:"";s:40:"blog_vertical_loop_ql_post_info_fontsize";s:0:"";s:42:"blog_vertical_loop_ql_post_info_lineheight";s:0:"";s:45:"blog_vertical_loop_ql_post_info_texttransform";s:0:"";s:44:"blog_vertical_loop_ql_post_info_google_fonts";s:2:"-1";s:41:"blog_vertical_loop_ql_post_info_fontstyle";s:0:"";s:42:"blog_vertical_loop_ql_post_info_fontweight";s:0:"";s:45:"blog_vertical_loop_ql_post_info_letterspacing";s:0:"";s:39:"blog_vertical_loop_npb_background_color";s:0:"";s:45:"blog_vertical_loop_npb_background_hover_color";s:0:"";s:33:"blog_vertical_loop_npb_icon_color";s:0:"";s:39:"blog_vertical_loop_npb_icon_hover_color";s:0:"";s:40:"blog_masonry_date_image_background_color";s:0:"";s:35:"blog_masonry_date_image_title_color";s:0:"";s:41:"blog_masonry_date_image_title_hover_color";s:0:"";s:38:"blog_masonry_date_image_title_fontsize";s:0:"";s:40:"blog_masonry_date_image_title_lineheight";s:0:"";s:43:"blog_masonry_date_image_title_texttransform";s:0:"";s:42:"blog_masonry_date_image_title_google_fonts";s:2:"-1";s:39:"blog_masonry_date_image_title_fontstyle";s:0:"";s:40:"blog_masonry_date_image_title_fontweight";s:0:"";s:43:"blog_masonry_date_image_title_letterspacing";s:0:"";s:19:"blog_single_sidebar";s:7:"default";s:34:"blog_single_sidebar_custom_display";s:0:"";s:16:"blog_author_info";s:2:"no";s:31:"blog_single_image_margin_bottom";s:0:"";s:31:"blog_single_title_margin_bottom";s:0:"";s:35:"blog_single_post_info_margin_bottom";s:0:"";s:25:"blog_quote_link_box_color";s:0:"";s:23:"blog_slider_title_color";s:0:"";s:29:"blog_slider_title_hover_color";s:0:"";s:26:"blog_slider_title_fontsize";s:0:"";s:28:"blog_slider_title_lineheight";s:0:"";s:31:"blog_slider_title_texttransform";s:0:"";s:30:"blog_slider_title_google_fonts";s:2:"-1";s:27:"blog_slider_title_fontstyle";s:0:"";s:28:"blog_slider_title_fontweight";s:0:"";s:31:"blog_slider_title_letterspacing";s:0:"";s:27:"blog_slider_post_info_color";s:0:"";s:32:"blog_slider_post_info_link_color";s:0:"";s:38:"blog_slider_post_info_link_hover_color";s:0:"";s:30:"blog_slider_post_info_fontsize";s:0:"";s:32:"blog_slider_post_info_lineheight";s:0:"";s:35:"blog_slider_post_info_texttransform";s:0:"";s:34:"blog_slider_post_info_google_fonts";s:2:"-1";s:31:"blog_slider_post_info_fontstyle";s:0:"";s:32:"blog_slider_post_info_fontweight";s:0:"";s:35:"blog_slider_post_info_letterspacing";s:0:"";s:21:"blog_slider_day_color";s:0:"";s:24:"blog_slider_day_fontsize";s:0:"";s:26:"blog_slider_day_lineheight";s:0:"";s:29:"blog_slider_day_texttransform";s:0:"";s:28:"blog_slider_day_google_fonts";s:2:"-1";s:25:"blog_slider_day_fontstyle";s:0:"";s:26:"blog_slider_day_fontweight";s:0:"";s:29:"blog_slider_day_letterspacing";s:0:"";s:31:"blog_slider_title_bottom_margin";s:0:"";s:30:"blog_slider_date_bottom_margin";s:0:"";s:22:"blog_slider_day_margin";s:0:"";s:25:"blog_slsimple_title_color";s:0:"";s:31:"blog_slsimple_title_hover_color";s:0:"";s:28:"blog_slsimple_title_fontsize";s:0:"";s:30:"blog_slsimple_title_lineheight";s:0:"";s:33:"blog_slsimple_title_texttransform";s:0:"";s:32:"blog_slsimple_title_google_fonts";s:2:"-1";s:29:"blog_slsimple_title_fontstyle";s:0:"";s:30:"blog_slsimple_title_fontweight";s:0:"";s:33:"blog_slsimple_title_letterspacing";s:0:"";s:29:"blog_slsimple_post_info_color";s:0:"";s:34:"blog_slsimple_post_info_link_color";s:0:"";s:40:"blog_slsimple_post_info_link_hover_color";s:0:"";s:32:"blog_slsimple_post_info_fontsize";s:0:"";s:34:"blog_slsimple_post_info_lineheight";s:0:"";s:37:"blog_slsimple_post_info_texttransform";s:0:"";s:36:"blog_slsimple_post_info_google_fonts";s:2:"-1";s:33:"blog_slsimple_post_info_fontstyle";s:0:"";s:34:"blog_slsimple_post_info_fontweight";s:0:"";s:37:"blog_slsimple_post_info_letterspacing";s:0:"";s:33:"blog_slsimple_title_bottom_margin";s:0:"";s:37:"blog_slsimple_post_info_bottom_margin";s:0:"";s:35:"blog_slsimple_excerpt_bottom_margin";s:0:"";s:32:"blog_slider_box_background_color";s:0:"";s:34:"blog_slider_box_background_opacity";s:0:"";s:28:"blog_slider_box_border_color";s:0:"";s:30:"blog_slider_box_border_opacity";s:0:"";s:27:"blog_slider_box_padding_top";s:0:"";s:29:"blog_slider_box_padding_right";s:0:"";s:30:"blog_slider_box_padding_bottom";s:0:"";s:28:"blog_slider_box_padding_left";s:0:"";s:21:"blog_slider_box_width";s:0:"";s:15:"portfolio_style";s:1:"1";s:19:"portfolio_qode_like";s:2:"on";s:23:"lightbox_single_project";s:3:"yes";s:29:"lightbox_video_single_project";s:2:"no";s:24:"portfolio_columns_number";s:1:"2";s:24:"portfolio_single_sidebar";s:7:"default";s:39:"portfolio_single_sidebar_custom_display";s:0:"";s:21:"portfolio_single_slug";s:0:"";s:21:"portfolio_text_follow";s:23:"portfolio_single_follow";s:25:"enable_portfolio_comments";s:2:"no";s:28:"portfolio_list_overlay_color";s:0:"";s:30:"portfolio_list_overlay_opacity";s:0:"";s:35:"portfolio_list_standard_title_color";s:0:"";s:41:"portfolio_list_standard_title_hover_color";s:0:"";s:38:"portfolio_list_standard_title_fontsize";s:0:"";s:40:"portfolio_list_standard_title_lineheight";s:0:"";s:43:"portfolio_list_standard_title_texttransform";s:0:"";s:42:"portfolio_list_standard_title_google_fonts";s:2:"-1";s:39:"portfolio_list_standard_title_fontstyle";s:0:"";s:40:"portfolio_list_standard_title_fontweight";s:0:"";s:43:"portfolio_list_standard_title_letterspacing";s:0:"";s:38:"portfolio_list_standard_category_color";s:0:"";s:41:"portfolio_list_standard_category_fontsize";s:0:"";s:43:"portfolio_list_standard_category_lineheight";s:0:"";s:46:"portfolio_list_standard_category_texttransform";s:0:"";s:45:"portfolio_list_standard_category_google_fonts";s:2:"-1";s:42:"portfolio_list_standard_category_fontstyle";s:0:"";s:43:"portfolio_list_standard_category_fontweight";s:0:"";s:46:"portfolio_list_standard_category_letterspacing";s:0:"";s:34:"portfolio_list_gallery_title_color";s:0:"";s:40:"portfolio_list_gallery_title_hover_color";s:0:"";s:37:"portfolio_list_gallery_title_fontsize";s:0:"";s:39:"portfolio_list_gallery_title_lineheight";s:0:"";s:42:"portfolio_list_gallery_title_texttransform";s:0:"";s:41:"portfolio_list_gallery_title_google_fonts";s:2:"-1";s:38:"portfolio_list_gallery_title_fontstyle";s:0:"";s:39:"portfolio_list_gallery_title_fontweight";s:0:"";s:42:"portfolio_list_gallery_title_letterspacing";s:0:"";s:37:"portfolio_list_gallery_category_color";s:0:"";s:40:"portfolio_list_gallery_category_fontsize";s:0:"";s:42:"portfolio_list_gallery_category_lineheight";s:0:"";s:45:"portfolio_list_gallery_category_texttransform";s:0:"";s:44:"portfolio_list_gallery_category_google_fonts";s:2:"-1";s:41:"portfolio_list_gallery_category_fontstyle";s:0:"";s:42:"portfolio_list_gallery_category_fontweight";s:0:"";s:45:"portfolio_list_gallery_category_letterspacing";s:0:"";s:38:"portfolio_list_filter_background_color";s:0:"";s:28:"portfolio_list_filter_height";s:0:"";s:30:"portfolio_filter_margin_bottom";s:0:"";s:26:"thin_icon_only_font_family";s:0:"";s:29:"vss_navigation_inactive_color";s:0:"";s:36:"vss_navigation_inactive_border_color";s:0:"";s:20:"vss_navigation_color";s:0:"";s:27:"vss_navigation_border_color";s:0:"";s:19:"vss_navigation_size";s:0:"";s:19:"vss_left_panel_size";s:0:"";s:20:"vss_right_panel_size";s:0:"";s:19:"enable_social_share";s:2:"no";s:21:"post_types_names_post";s:0:"";s:21:"post_types_names_page";s:0:"";s:27:"post_types_names_attachment";s:0:"";s:31:"post_types_names_portfolio_page";s:0:"";s:21:"enable_facebook_share";s:2:"no";s:13:"facebook_icon";s:0:"";s:20:"enable_twitter_share";s:2:"no";s:12:"twitter_icon";s:0:"";s:11:"twitter_via";s:0:"";s:18:"enable_google_plus";s:2:"no";s:16:"google_plus_icon";s:0:"";s:15:"enable_linkedin";s:2:"no";s:13:"linkedin_icon";s:0:"";s:13:"enable_tumblr";s:2:"no";s:11:"tumblr_icon";s:0:"";s:16:"enable_pinterest";s:2:"no";s:14:"pinterest_icon";s:0:"";s:9:"enable_vk";s:2:"no";s:7:"vk_icon";s:0:"";s:9:"404_title";s:0:"";s:12:"404_subtitle";s:0:"";s:8:"404_text";s:0:"";s:13:"404_backlabel";s:0:"";s:17:"enable_google_map";s:2:"no";s:24:"section_between_map_form";s:2:"no";s:19:"enable_contact_form";s:2:"no";s:19:"google_maps_address";s:0:"";s:20:"google_maps_address2";s:0:"";s:20:"google_maps_address3";s:0:"";s:20:"google_maps_address4";s:0:"";s:20:"google_maps_address5";s:0:"";s:21:"google_maps_pin_image";s:66:"http://localhost/rocketlaunch/wp-content/themes/bridge/img/pin.png";s:18:"google_maps_height";s:3:"750";s:16:"google_maps_zoom";s:2:"12";s:24:"google_maps_scroll_wheel";s:2:"no";s:17:"google_maps_style";s:3:"yes";s:17:"google_maps_color";s:0:"";s:22:"google_maps_saturation";s:1:"0";s:21:"google_maps_lightness";s:1:"0";s:33:"section_between_map_form_position";s:6:"center";s:32:"contact_section_above_form_title";s:0:"";s:35:"contact_section_above_form_subtitle";s:0:"";s:12:"receive_mail";s:0:"";s:10:"email_from";s:0:"";s:13:"email_subject";s:0:"";s:25:"hide_contact_form_website";s:2:"no";s:21:"contact_heading_above";s:0:"";s:13:"use_recaptcha";s:2:"no";s:20:"recaptcha_public_key";s:0:"";s:21:"recaptcha_private_key";s:0:"";s:14:"parallax_onoff";s:2:"on";s:18:"parallax_minheight";s:3:"400";s:26:"enable_content_bottom_area";s:2:"no";s:37:"content_bottom_sidebar_custom_display";s:0:"";s:22:"content_bottom_in_grid";s:3:"yes";s:31:"content_bottom_background_color";s:0:"";s:20:"enable_grid_elements";s:2:"no";s:21:"qode_maintenance_mode";s:2:"no";s:21:"qode_maintenance_page";s:0:"";s:17:"reset_to_defaults";s:2:"no";}', 'yes');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(147, 'widget_calendar', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(148, 'widget_call_to_action_widget', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(149, 'widget_nav_menu', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(150, 'widget_latest_posts_menu', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(151, 'widget_pages', 'a:3:{i:1;a:0:{}i:2;a:3:{s:5:"title";s:4:"Home";s:6:"sortby";s:10:"post_title";s:7:"exclude";s:0:"";}s:12:"_multiwidget";i:1;}', 'yes'),
(152, 'widget_related_posts_widget', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(154, 'widget_tag_cloud', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(164, '_site_transient_timeout_browser_1b1a9fe8dea603b93684d610b5808c02', '1441951460', 'yes'),
(165, '_site_transient_browser_1b1a9fe8dea603b93684d610b5808c02', 'a:9:{s:8:"platform";s:7:"Windows";s:4:"name";s:7:"Firefox";s:7:"version";s:4:"40.0";s:10:"update_url";s:23:"http://www.firefox.com/";s:7:"img_src";s:50:"http://s.wordpress.org/images/browsers/firefox.png";s:11:"img_src_ssl";s:49:"https://wordpress.org/images/browsers/firefox.png";s:15:"current_version";s:2:"16";s:7:"upgrade";b:0;s:8:"insecure";b:0;}', 'yes'),
(189, 'ls-plugin-version', '5.4.0', 'yes'),
(190, 'ls-db-version', '5.0.0', 'yes'),
(191, 'ls-installed', '1', 'yes'),
(192, 'ls-google-fonts', 'a:4:{i:0;a:2:{s:5:"param";s:28:"Lato:100,300,regular,700,900";s:5:"admin";b:0;}i:1;a:2:{s:5:"param";s:13:"Open+Sans:300";s:5:"admin";b:0;}i:2;a:2:{s:5:"param";s:20:"Indie+Flower:regular";s:5:"admin";b:0;}i:3;a:2:{s:5:"param";s:22:"Oswald:300,regular,700";s:5:"admin";b:0;}}', 'yes'),
(193, 'ls-date-installed', '1441347433', 'yes'),
(198, 'vc_version', '4.5.3', 'yes'),
(199, 'widget_layerslider_widget', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(210, 'nav_menu_options', 'a:2:{i:0;b:0;s:8:"auto_add";a:1:{i:0;i:3;}}', 'yes'),
(223, 'recently_activated', 'a:5:{s:45:"social-media-feather/social-media-feather.php";i:1441877348;s:59:"ultimate-social-media-icons/ultimate_social_media_icons.php";i:1441877334;s:35:"image-watermark/image-watermark.php";i:1441877318;s:34:"envato-wordpress-toolkit/index.php";i:1441861539;s:27:"simple-html-slider/main.php";i:1441845100;}', 'yes'),
(228, 'image_watermark_options', 'a:4:{s:15:"watermark_image";a:15:{s:10:"plugin_off";i:0;s:19:"manual_watermarking";i:0;s:15:"frontend_active";b:0;s:19:"deactivation_delete";b:0;s:8:"position";s:12:"bottom_right";s:12:"offset_width";i:0;s:13:"offset_height";i:0;s:3:"url";i:0;s:19:"watermark_size_type";i:2;s:14:"absolute_width";i:0;s:15:"absolute_height";i:0;s:5:"width";i:80;s:11:"transparent";i:50;s:7:"quality";i:90;s:11:"jpeg_format";s:8:"baseline";}s:12:"watermark_on";a:1:{s:5:"large";i:1;}s:16:"watermark_cpt_on";a:1:{i:0;s:10:"everywhere";}s:16:"image_protection";a:3:{s:10:"rightclick";i:0;s:11:"draganddrop";i:0;s:9:"forlogged";i:0;}}', 'no'),
(229, 'image_watermark_version', '1.5.1', 'no'),
(232, 'taxonomy_term_2', 'a:39:{s:13:"header_effect";s:3:"yes";s:22:"slider_parallax_effect";s:3:"yes";s:30:"slider_advanced_responsiveness";s:2:"no";s:19:"breakpoint1_graphic";s:0:"";s:17:"breakpoint1_title";s:0:"";s:20:"breakpoint1_subtitle";s:0:"";s:16:"breakpoint1_text";s:0:"";s:18:"breakpoint1_button";s:0:"";s:19:"breakpoint2_graphic";s:0:"";s:17:"breakpoint2_title";s:0:"";s:20:"breakpoint2_subtitle";s:0:"";s:16:"breakpoint2_text";s:0:"";s:18:"breakpoint2_button";s:0:"";s:19:"breakpoint3_graphic";s:0:"";s:17:"breakpoint3_title";s:0:"";s:20:"breakpoint3_subtitle";s:0:"";s:16:"breakpoint3_text";s:0:"";s:18:"breakpoint3_button";s:0:"";s:19:"breakpoint4_graphic";s:0:"";s:17:"breakpoint4_title";s:0:"";s:20:"breakpoint4_subtitle";s:0:"";s:16:"breakpoint4_text";s:0:"";s:18:"breakpoint4_button";s:0:"";s:19:"breakpoint5_graphic";s:0:"";s:17:"breakpoint5_title";s:0:"";s:20:"breakpoint5_subtitle";s:0:"";s:16:"breakpoint5_text";s:0:"";s:18:"breakpoint5_button";s:0:"";s:19:"breakpoint6_graphic";s:0:"";s:17:"breakpoint6_title";s:0:"";s:20:"breakpoint6_subtitle";s:0:"";s:16:"breakpoint6_text";s:0:"";s:18:"breakpoint6_button";s:0:"";s:19:"breakpoint7_graphic";s:0:"";s:17:"breakpoint7_title";s:0:"";s:20:"breakpoint7_subtitle";s:0:"";s:16:"breakpoint7_text";s:0:"";s:18:"breakpoint7_button";s:0:"";s:9:"shortcode";s:184:"[qode_slider slider=\\''myslider\\'' auto_start=\\''true\\'' animation_type=\\''slide\\'' slide_animation=\\''6000\\'' height=\\''\\'' responsive_height=\\''yes\\'' anchor=\\''\\'' show_navigation_arrows=\\''yes\\'']";}', 'yes'),
(233, 'category_children', 'a:0:{}', 'yes'),
(312, 'widget_synved_social_share', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(315, 'synved_connect_install_date', '1441479778', 'yes'),
(316, 'sfsi_section1_options', 's:446:"a:12:{s:16:"sfsi_rss_display";s:3:"yes";s:18:"sfsi_email_display";s:3:"yes";s:21:"sfsi_facebook_display";s:3:"yes";s:20:"sfsi_twitter_display";s:3:"yes";s:19:"sfsi_google_display";s:3:"yes";s:18:"sfsi_share_display";s:3:"yes";s:22:"sfsi_pinterest_display";s:2:"no";s:22:"sfsi_instagram_display";s:2:"no";s:21:"sfsi_linkedin_display";s:2:"no";s:20:"sfsi_youtube_display";s:2:"no";s:19:"sfsi_custom_display";s:0:"";s:17:"sfsi_custom_files";s:0:"";}";', 'yes'),
(317, 'sfsi_section2_options', 's:1477:"a:34:{s:12:"sfsi_rss_url";s:35:"http://localhost/rocketlaunch/feed/";s:14:"sfsi_rss_icons";s:5:"email";s:14:"sfsi_email_url";s:65:"http://www.specificfeeds.com/widget/emailsubscribe/MTg2MDQ4/OA==/";s:24:"sfsi_facebookPage_option";s:2:"no";s:21:"sfsi_facebookPage_url";s:0:"";s:24:"sfsi_facebookLike_option";s:3:"yes";s:25:"sfsi_facebookShare_option";s:3:"yes";s:21:"sfsi_twitter_followme";s:2:"no";s:27:"sfsi_twitter_followUserName";s:0:"";s:22:"sfsi_twitter_aboutPage";s:3:"yes";s:17:"sfsi_twitter_page";s:2:"no";s:20:"sfsi_twitter_pageURL";s:0:"";s:26:"sfsi_twitter_aboutPageText";s:82:"Hey, check out this cool site I found: www.yourname.com #Topic via@my_twitter_name";s:16:"sfsi_google_page";s:2:"no";s:19:"sfsi_google_pageURL";s:0:"";s:22:"sfsi_googleLike_option";s:3:"yes";s:23:"sfsi_googleShare_option";s:3:"yes";s:20:"sfsi_youtube_pageUrl";s:0:"";s:17:"sfsi_youtube_page";s:2:"no";s:19:"sfsi_youtube_follow";s:2:"no";s:19:"sfsi_pinterest_page";s:2:"no";s:22:"sfsi_pinterest_pageUrl";s:0:"";s:23:"sfsi_pinterest_pingBlog";s:0:"";s:19:"sfsi_instagram_page";s:2:"no";s:22:"sfsi_instagram_pageUrl";s:0:"";s:18:"sfsi_linkedin_page";s:2:"no";s:21:"sfsi_linkedin_pageURL";s:0:"";s:20:"sfsi_linkedin_follow";s:2:"no";s:27:"sfsi_linkedin_followCompany";s:0:"";s:23:"sfsi_linkedin_SharePage";s:3:"yes";s:30:"sfsi_linkedin_recommendBusines";s:2:"no";s:30:"sfsi_linkedin_recommendCompany";s:0:"";s:32:"sfsi_linkedin_recommendProductId";s:0:"";s:21:"sfsi_CustomIcon_links";s:0:"";}";', 'yes'),
(318, 'sfsi_section3_options', 's:273:"a:7:{s:14:"sfsi_mouseOver";s:3:"yes";s:21:"sfsi_mouseOver_effect";s:7:"fade_in";s:18:"sfsi_shuffle_icons";s:2:"no";s:22:"sfsi_shuffle_Firstload";s:2:"no";s:21:"sfsi_shuffle_interval";s:2:"no";s:25:"sfsi_shuffle_intervalTime";s:0:"";s:18:"sfsi_actvite_theme";s:7:"default";}";', 'yes'),
(319, 'sfsi_section4_options', 's:1680:"a:42:{s:19:"sfsi_display_counts";s:2:"no";s:24:"sfsi_email_countsDisplay";s:2:"no";s:21:"sfsi_email_countsFrom";s:6:"source";s:23:"sfsi_email_manualCounts";s:2:"20";s:22:"sfsi_rss_countsDisplay";s:2:"no";s:21:"sfsi_rss_manualCounts";s:2:"20";s:22:"sfsi_facebook_PageLink";s:0:"";s:27:"sfsi_facebook_countsDisplay";s:2:"no";s:24:"sfsi_facebook_countsFrom";s:6:"manual";s:26:"sfsi_facebook_manualCounts";s:2:"20";s:26:"sfsi_twitter_countsDisplay";s:2:"no";s:23:"sfsi_twitter_countsFrom";s:6:"manual";s:25:"sfsi_twitter_manualCounts";s:2:"20";s:19:"sfsi_google_api_key";s:0:"";s:25:"sfsi_google_countsDisplay";s:2:"no";s:22:"sfsi_google_countsFrom";s:6:"manual";s:24:"sfsi_google_manualCounts";s:2:"20";s:27:"sfsi_linkedIn_countsDisplay";s:2:"no";s:24:"sfsi_linkedIn_countsFrom";s:6:"manual";s:26:"sfsi_linkedIn_manualCounts";s:2:"20";s:10:"ln_api_key";s:0:"";s:13:"ln_secret_key";s:0:"";s:19:"ln_oAuth_user_token";s:0:"";s:10:"ln_company";s:0:"";s:24:"sfsi_youtubeusernameorid";s:4:"name";s:17:"sfsi_youtube_user";s:0:"";s:17:"sfsi_ytube_chnlid";s:0:"";s:26:"sfsi_youtube_countsDisplay";s:2:"no";s:23:"sfsi_youtube_countsFrom";s:6:"manual";s:25:"sfsi_youtube_manualCounts";s:2:"20";s:28:"sfsi_pinterest_countsDisplay";s:2:"no";s:25:"sfsi_pinterest_countsFrom";s:6:"manual";s:27:"sfsi_pinterest_manualCounts";s:2:"20";s:19:"sfsi_pinterest_user";s:0:"";s:20:"sfsi_pinterest_board";s:0:"";s:25:"sfsi_instagram_countsFrom";s:6:"manual";s:28:"sfsi_instagram_countsDisplay";s:2:"no";s:27:"sfsi_instagram_manualCounts";s:2:"20";s:19:"sfsi_instagram_User";s:0:"";s:25:"sfsi_shares_countsDisplay";s:2:"no";s:22:"sfsi_shares_countsFrom";s:6:"manual";s:24:"sfsi_shares_manualCounts";s:2:"20";}";', 'yes'),
(320, 'sfsi_section5_options', 's:1287:"a:31:{s:15:"sfsi_icons_size";s:2:"40";s:18:"sfsi_icons_spacing";s:1:"5";s:20:"sfsi_icons_Alignment";s:4:"left";s:17:"sfsi_icons_perRow";s:1:"5";s:24:"sfsi_icons_ClickPageOpen";s:3:"yes";s:16:"sfsi_icons_float";s:2:"no";s:23:"sfsi_disable_floaticons";s:2:"no";s:24:"sfsi_icons_floatPosition";s:12:"center-right";s:16:"sfsi_icons_stick";s:2:"no";s:18:"sfsi_rssIcon_order";s:1:"1";s:20:"sfsi_emailIcon_order";s:1:"2";s:23:"sfsi_facebookIcon_order";s:1:"3";s:21:"sfsi_googleIcon_order";s:1:"4";s:22:"sfsi_twitterIcon_order";s:1:"5";s:20:"sfsi_shareIcon_order";s:1:"6";s:22:"sfsi_youtubeIcon_order";s:1:"7";s:24:"sfsi_pinterestIcon_order";s:1:"8";s:23:"sfsi_linkedinIcon_order";s:1:"9";s:24:"sfsi_instagramIcon_order";s:2:"10";s:22:"sfsi_CustomIcons_order";s:0:"";s:22:"sfsi_rss_MouseOverText";s:3:"RSS";s:24:"sfsi_email_MouseOverText";s:15:"Follow by Email";s:26:"sfsi_twitter_MouseOverText";s:7:"Twitter";s:27:"sfsi_facebook_MouseOverText";s:8:"Facebook";s:25:"sfsi_google_MouseOverText";s:7:"Google+";s:27:"sfsi_linkedIn_MouseOverText";s:8:"LinkedIn";s:28:"sfsi_pinterest_MouseOverText";s:9:"Pinterest";s:28:"sfsi_instagram_MouseOverText";s:9:"Instagram";s:26:"sfsi_youtube_MouseOverText";s:7:"YouTube";s:24:"sfsi_share_MouseOverText";s:5:"Share";s:26:"sfsi_custom_MouseOverTexts";s:0:"";}";', 'yes'),
(321, 'sfsi_section6_options', 's:458:"a:12:{s:17:"sfsi_show_Onposts";s:2:"no";s:18:"sfsi_show_Onbottom";s:2:"no";s:22:"sfsi_icons_postPositon";s:6:"source";s:20:"sfsi_icons_alignment";s:12:"center-right";s:22:"sfsi_rss_countsDisplay";s:2:"no";s:20:"sfsi_textBefor_icons";s:26:"Please follow and like us:";s:24:"sfsi_icons_DisplayCounts";s:2:"no";s:12:"sfsi_rectsub";s:3:"yes";s:11:"sfsi_rectfb";s:3:"yes";s:11:"sfsi_rectgp";s:3:"yes";s:12:"sfsi_rectshr";s:3:"yes";s:13:"sfsi_recttwtr";s:3:"yes";}";', 'yes'),
(322, 'sfsi_section7_options', 's:666:"a:15:{s:15:"sfsi_show_popup";s:2:"no";s:15:"sfsi_popup_text";s:42:"Enjoy this blog? Please spread the word :)";s:27:"sfsi_popup_background_color";s:7:"#eff7f7";s:23:"sfsi_popup_border_color";s:7:"#f3faf2";s:27:"sfsi_popup_border_thickness";s:1:"1";s:24:"sfsi_popup_border_shadow";s:3:"yes";s:15:"sfsi_popup_font";s:26:"Helvetica,Arial,sans-serif";s:19:"sfsi_popup_fontSize";s:2:"30";s:20:"sfsi_popup_fontStyle";s:6:"normal";s:20:"sfsi_popup_fontColor";s:7:"#000000";s:17:"sfsi_Show_popupOn";s:4:"none";s:25:"sfsi_Show_popupOn_PageIDs";s:0:"";s:14:"sfsi_Shown_pop";s:8:"ETscroll";s:24:"sfsi_Shown_popupOnceTime";s:0:"";s:32:"sfsi_Shown_popuplimitPerUserTime";s:0:"";}";', 'yes'),
(323, 'sfsi_feed_id', '186048', 'yes'),
(324, 'sfsi_redirect_url', 'http://www.specificfeeds.com/widget/emailsubscribe/MTg2MDQ4/OA==/', 'yes'),
(325, 'sfsi_installDate', '2015-09-05 07:03:46', 'yes'),
(326, 'sfsi_RatingDiv', 'no', 'yes'),
(327, 'sfsi_footer_sec', 'no', 'yes'),
(328, 'sfsi_activate', '0', 'yes'),
(329, 'sfsi_pluginVersion', '1.27', 'yes'),
(330, 'show_notification', 'yes', 'yes'),
(331, 'show_notification_plugin', 'no', 'yes'),
(332, 'sfsi_section8_options', 's:1217:"a:26:{s:20:"sfsi_form_adjustment";s:3:"yes";s:16:"sfsi_form_height";s:3:"180";s:15:"sfsi_form_width";s:3:"230";s:16:"sfsi_form_border";s:3:"yes";s:26:"sfsi_form_border_thickness";s:1:"1";s:22:"sfsi_form_border_color";s:7:"#b5b5b5";s:20:"sfsi_form_background";s:7:"#ffffff";s:22:"sfsi_form_heading_text";s:22:"Get new posts by email";s:22:"sfsi_form_heading_font";s:26:"Helvetica,Arial,sans-serif";s:27:"sfsi_form_heading_fontstyle";s:4:"bold";s:27:"sfsi_form_heading_fontcolor";s:7:"#000000";s:26:"sfsi_form_heading_fontsize";s:2:"16";s:27:"sfsi_form_heading_fontalign";s:6:"center";s:20:"sfsi_form_field_text";s:16:"Enter your email";s:20:"sfsi_form_field_font";s:26:"Helvetica,Arial,sans-serif";s:25:"sfsi_form_field_fontstyle";s:6:"normal";s:25:"sfsi_form_field_fontcolor";s:7:"#000000";s:24:"sfsi_form_field_fontsize";s:2:"14";s:25:"sfsi_form_field_fontalign";s:6:"center";s:21:"sfsi_form_button_text";s:9:"Subscribe";s:21:"sfsi_form_button_font";s:26:"Helvetica,Arial,sans-serif";s:26:"sfsi_form_button_fontstyle";s:4:"bold";s:26:"sfsi_form_button_fontcolor";s:7:"#000000";s:25:"sfsi_form_button_fontsize";s:2:"16";s:26:"sfsi_form_button_fontalign";s:6:"center";s:27:"sfsi_form_button_background";s:7:"#dedede";}";', 'yes'),
(333, 'sfsi_instagram_sf_count', 's:90:"a:3:{s:4:"date";i:1441843200;s:13:"sfsi_sf_count";i:0;s:20:"sfsi_instagram_count";s:0:"";}";', 'yes'),
(334, 'widget_sfsi-widget', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(335, 'widget_subscriber_widget', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(336, 'adding_tags', 'yes', 'yes'),
(342, 'wpcf7', 'a:1:{s:7:"version";s:5:"4.2.2";}', 'yes'),
(392, 'masonry_gallery_category_children', 'a:0:{}', 'yes'),
(437, 'widget_synved_social_follow', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(444, '_site_transient_timeout_browser_4fda3f27009155f52c27413f6db6373b', '1442217839', 'yes'),
(445, '_site_transient_browser_4fda3f27009155f52c27413f6db6373b', 'a:9:{s:8:"platform";s:7:"Windows";s:4:"name";s:6:"Chrome";s:7:"version";s:12:"45.0.2454.85";s:10:"update_url";s:28:"http://www.google.com/chrome";s:7:"img_src";s:49:"http://s.wordpress.org/images/browsers/chrome.png";s:11:"img_src_ssl";s:48:"https://wordpress.org/images/browsers/chrome.png";s:15:"current_version";s:2:"18";s:7:"upgrade";b:0;s:8:"insecure";b:0;}', 'yes'),
(458, '_transient_timeout_plugin_slugs', '1441963749', 'no'),
(459, '_transient_plugin_slugs', 'a:12:{i:0;s:19:"akismet/akismet.php";i:1;s:36:"contact-form-7/wp-contact-form-7.php";i:2;s:34:"envato-wordpress-toolkit/index.php";i:3;s:9:"hello.php";i:4;s:35:"image-watermark/image-watermark.php";i:5;s:27:"LayerSlider/layerslider.php";i:6;s:27:"simple-html-slider/main.php";i:7;s:59:"ultimate-social-media-icons/ultimate_social_media_icons.php";i:8;s:45:"social-media-feather/social-media-feather.php";i:9;s:41:"wp-anything-slider/wp-anything-slider.php";i:10;s:27:"js_composer/js_composer.php";i:11;s:54:"wp-featured-content-slider/featured-content-slider.php";}', 'no'),
(464, 'theme_mods_bridge-child', 'a:2:{i:0;b:0;s:18:"nav_menu_locations";a:1:{s:14:"top-navigation";i:3;}}', 'yes'),
(465, 'theme_switched_via_customizer', '', 'yes'),
(532, 'wpb_js_composer_license_activation_notified', 'yes', 'yes'),
(536, 'theme_mods_bridge_arun', 'a:2:{i:0;b:0;s:16:"sidebars_widgets";a:2:{s:4:"time";i:1441692894;s:4:"data";a:17:{s:19:"wp_inactive_widgets";a:4:{i:0;s:7:"pages-2";i:1;s:6:"text-3";i:2;s:6:"text-4";i:3;s:6:"text-5";}s:7:"sidebar";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:12:"sidebar_page";N;s:11:"header_left";N;s:12:"header_right";N;s:19:"header_bottom_right";N;s:20:"header_bottom_center";N;s:8:"sidearea";N;s:18:"vertical_menu_area";N;s:15:"footer_column_1";N;s:15:"footer_column_2";N;s:15:"footer_column_3";N;s:15:"footer_column_4";N;s:11:"footer_text";N;s:16:"footer_text_left";N;s:17:"footer_text_right";N;s:18:"header_fixed_right";N;}}}', 'yes'),
(562, 'theme_mods_bridge_run', 'a:2:{i:0;b:0;s:16:"sidebars_widgets";a:2:{s:4:"time";i:1441693197;s:4:"data";a:17:{s:19:"wp_inactive_widgets";a:4:{i:0;s:7:"pages-2";i:1;s:6:"text-3";i:2;s:6:"text-4";i:3;s:6:"text-5";}s:7:"sidebar";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:12:"sidebar_page";N;s:11:"header_left";N;s:12:"header_right";N;s:19:"header_bottom_right";N;s:20:"header_bottom_center";N;s:8:"sidearea";N;s:18:"vertical_menu_area";N;s:15:"footer_column_1";N;s:15:"footer_column_2";N;s:15:"footer_column_3";N;s:15:"footer_column_4";N;s:11:"footer_text";N;s:16:"footer_text_left";N;s:17:"footer_text_right";N;s:18:"header_fixed_right";N;}}}', 'yes'),
(569, 'theme_mods_twentyfifteen', 'a:1:{s:16:"sidebars_widgets";a:2:{s:4:"time";i:1441697896;s:4:"data";a:17:{s:19:"wp_inactive_widgets";a:0:{}s:7:"sidebar";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:12:"sidebar_page";a:0:{}s:11:"header_left";a:0:{}s:12:"header_right";a:1:{i:0;s:7:"pages-2";}s:19:"header_bottom_right";a:0:{}s:20:"header_bottom_center";a:0:{}s:8:"sidearea";a:0:{}s:18:"vertical_menu_area";a:0:{}s:15:"footer_column_1";a:1:{i:0;s:6:"text-3";}s:15:"footer_column_2";a:1:{i:0;s:6:"text-4";}s:15:"footer_column_3";a:1:{i:0;s:6:"text-5";}s:15:"footer_column_4";a:0:{}s:11:"footer_text";a:0:{}s:16:"footer_text_left";a:0:{}s:17:"footer_text_right";a:0:{}s:18:"header_fixed_right";a:0:{}}}}', 'yes'),
(571, 'theme_mods_bridge-child/css', 'a:3:{i:0;b:0;s:18:"nav_menu_locations";a:2:{s:14:"top-navigation";i:3;s:16:"popup-navigation";i:3;}s:16:"sidebars_widgets";a:2:{s:4:"time";i:1441697856;s:4:"data";a:17:{s:19:"wp_inactive_widgets";a:0:{}s:7:"sidebar";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:12:"sidebar_page";a:0:{}s:11:"header_left";a:0:{}s:12:"header_right";a:1:{i:0;s:7:"pages-2";}s:19:"header_bottom_right";a:0:{}s:20:"header_bottom_center";a:0:{}s:8:"sidearea";a:0:{}s:18:"vertical_menu_area";a:0:{}s:15:"footer_column_1";a:1:{i:0;s:6:"text-3";}s:15:"footer_column_2";a:1:{i:0;s:6:"text-4";}s:15:"footer_column_3";a:1:{i:0;s:6:"text-5";}s:15:"footer_column_4";a:0:{}s:11:"footer_text";a:0:{}s:16:"footer_text_left";a:0:{}s:17:"footer_text_right";a:0:{}s:18:"header_fixed_right";a:0:{}}}}', 'yes'),
(582, 'rewrite_rules', 'a:171:{s:17:"portfolio_page/?$";s:34:"index.php?post_type=portfolio_page";s:47:"portfolio_page/feed/(feed|rdf|rss|rss2|atom)/?$";s:51:"index.php?post_type=portfolio_page&feed=$matches[1]";s:42:"portfolio_page/(feed|rdf|rss|rss2|atom)/?$";s:51:"index.php?post_type=portfolio_page&feed=$matches[1]";s:34:"portfolio_page/page/([0-9]{1,})/?$";s:52:"index.php?post_type=portfolio_page&paged=$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:35:"category/(.+?)/page/?([0-9]{1,})/?$";s:53:"index.php?category_name=$matches[1]&paged=$matches[2]";s:17:"category/(.+?)/?$";s:35:"index.php?category_name=$matches[1]";s:44:"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?tag=$matches[1]&feed=$matches[2]";s:39:"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?tag=$matches[1]&feed=$matches[2]";s:32:"tag/([^/]+)/page/?([0-9]{1,})/?$";s:43:"index.php?tag=$matches[1]&paged=$matches[2]";s:14:"tag/([^/]+)/?$";s:25:"index.php?tag=$matches[1]";s:45:"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?post_format=$matches[1]&feed=$matches[2]";s:40:"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?post_format=$matches[1]&feed=$matches[2]";s: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:42:"portfolio_page/[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:52:"portfolio_page/[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:72:"portfolio_page/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:67:"portfolio_page/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:67:"portfolio_page/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:35:"portfolio_page/([^/]+)/trackback/?$";s:41:"index.php?portfolio_page=$matches[1]&tb=1";s:55:"portfolio_page/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:53:"index.php?portfolio_page=$matches[1]&feed=$matches[2]";s:50:"portfolio_page/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:53:"index.php?portfolio_page=$matches[1]&feed=$matches[2]";s:43:"portfolio_page/([^/]+)/page/?([0-9]{1,})/?$";s:54:"index.php?portfolio_page=$matches[1]&paged=$matches[2]";s:50:"portfolio_page/([^/]+)/comment-page-([0-9]{1,})/?$";s:54:"index.php?portfolio_page=$matches[1]&cpage=$matches[2]";s:35:"portfolio_page/([^/]+)(/[0-9]+)?/?$";s:53:"index.php?portfolio_page=$matches[1]&page=$matches[2]";s:31:"portfolio_page/[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:41:"portfolio_page/[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:61:"portfolio_page/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:56:"portfolio_page/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:56:"portfolio_page/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:40:"testimonials/[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:50:"testimonials/[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:70:"testimonials/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:65:"testimonials/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:65:"testimonials/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:33:"testimonials/([^/]+)/trackback/?$";s:39:"index.php?testimonials=$matches[1]&tb=1";s:41:"testimonials/([^/]+)/page/?([0-9]{1,})/?$";s:52:"index.php?testimonials=$matches[1]&paged=$matches[2]";s:48:"testimonials/([^/]+)/comment-page-([0-9]{1,})/?$";s:52:"index.php?testimonials=$matches[1]&cpage=$matches[2]";s:33:"testimonials/([^/]+)(/[0-9]+)?/?$";s:51:"index.php?testimonials=$matches[1]&page=$matches[2]";s:29:"testimonials/[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:39:"testimonials/[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:59:"testimonials/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:54:"testimonials/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:54:"testimonials/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:34:"slides/[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:44:"slides/[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:64:"slides/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:59:"slides/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:59:"slides/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:27:"slides/([^/]+)/trackback/?$";s:33:"index.php?slides=$matches[1]&tb=1";s:35:"slides/([^/]+)/page/?([0-9]{1,})/?$";s:46:"index.php?slides=$matches[1]&paged=$matches[2]";s:42:"slides/([^/]+)/comment-page-([0-9]{1,})/?$";s:46:"index.php?slides=$matches[1]&cpage=$matches[2]";s:27:"slides/([^/]+)(/[0-9]+)?/?$";s:45:"index.php?slides=$matches[1]&page=$matches[2]";s:23:"slides/[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:33:"slides/[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:53:"slides/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:48:"slides/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:48:"slides/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:37:"carousels/[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:47:"carousels/[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:67:"carousels/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:62:"carousels/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:62:"carousels/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:30:"carousels/([^/]+)/trackback/?$";s:36:"index.php?carousels=$matches[1]&tb=1";s:38:"carousels/([^/]+)/page/?([0-9]{1,})/?$";s:49:"index.php?carousels=$matches[1]&paged=$matches[2]";s:45:"carousels/([^/]+)/comment-page-([0-9]{1,})/?$";s:49:"index.php?carousels=$matches[1]&cpage=$matches[2]";s:30:"carousels/([^/]+)(/[0-9]+)?/?$";s:48:"index.php?carousels=$matches[1]&page=$matches[2]";s:26:"carousels/[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:36:"carousels/[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:56:"carousels/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:51:"carousels/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:51:"carousels/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:43:"masonry_gallery/[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:53:"masonry_gallery/[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:73:"masonry_gallery/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:68:"masonry_gallery/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:68:"masonry_gallery/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:36:"masonry_gallery/([^/]+)/trackback/?$";s:42:"index.php?masonry_gallery=$matches[1]&tb=1";s:44:"masonry_gallery/([^/]+)/page/?([0-9]{1,})/?$";s:55:"index.php?masonry_gallery=$matches[1]&paged=$matches[2]";s:51:"masonry_gallery/([^/]+)/comment-page-([0-9]{1,})/?$";s:55:"index.php?masonry_gallery=$matches[1]&cpage=$matches[2]";s:36:"masonry_gallery/([^/]+)(/[0-9]+)?/?$";s:54:"index.php?masonry_gallery=$matches[1]&page=$matches[2]";s:32:"masonry_gallery/[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:42:"masonry_gallery/[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:62:"masonry_gallery/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:57:"masonry_gallery/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:57:"masonry_gallery/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:59:"portfolio-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:57:"index.php?portfolio_category=$matches[1]&feed=$matches[2]";s:54:"portfolio-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:57:"index.php?portfolio_category=$matches[1]&feed=$matches[2]";s:47:"portfolio-category/([^/]+)/page/?([0-9]{1,})/?$";s:58:"index.php?portfolio_category=$matches[1]&paged=$matches[2]";s:29:"portfolio-category/([^/]+)/?$";s:40:"index.php?portfolio_category=$matches[1]";s:54:"portfolio-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:52:"index.php?portfolio_tag=$matches[1]&feed=$matches[2]";s:49:"portfolio-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:52:"index.php?portfolio_tag=$matches[1]&feed=$matches[2]";s:42:"portfolio-tag/([^/]+)/page/?([0-9]{1,})/?$";s:53:"index.php?portfolio_tag=$matches[1]&paged=$matches[2]";s:24:"portfolio-tag/([^/]+)/?$";s:35:"index.php?portfolio_tag=$matches[1]";s:62:"testimonials-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:60:"index.php?testimonials_category=$matches[1]&feed=$matches[2]";s:57:"testimonials-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:60:"index.php?testimonials_category=$matches[1]&feed=$matches[2]";s:50:"testimonials-category/([^/]+)/page/?([0-9]{1,})/?$";s:61:"index.php?testimonials_category=$matches[1]&paged=$matches[2]";s:32:"testimonials-category/([^/]+)/?$";s:43:"index.php?testimonials_category=$matches[1]";s:56:"slides-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:54:"index.php?slides_category=$matches[1]&feed=$matches[2]";s:51:"slides-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:54:"index.php?slides_category=$matches[1]&feed=$matches[2]";s:44:"slides-category/([^/]+)/page/?([0-9]{1,})/?$";s:55:"index.php?slides_category=$matches[1]&paged=$matches[2]";s:26:"slides-category/([^/]+)/?$";s:37:"index.php?slides_category=$matches[1]";s:59:"carousels-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:57:"index.php?carousels_category=$matches[1]&feed=$matches[2]";s:54:"carousels-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:57:"index.php?carousels_category=$matches[1]&feed=$matches[2]";s:47:"carousels-category/([^/]+)/page/?([0-9]{1,})/?$";s:58:"index.php?carousels_category=$matches[1]&paged=$matches[2]";s:29:"carousels-category/([^/]+)/?$";s:40:"index.php?carousels_category=$matches[1]";s:65:"masonry-gallery-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:63:"index.php?masonry_gallery_category=$matches[1]&feed=$matches[2]";s:60:"masonry-gallery-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:63:"index.php?masonry_gallery_category=$matches[1]&feed=$matches[2]";s:53:"masonry-gallery-category/([^/]+)/page/?([0-9]{1,})/?$";s:64:"index.php?masonry_gallery_category=$matches[1]&paged=$matches[2]";s:35:"masonry-gallery-category/([^/]+)/?$";s:46:"index.php?masonry_gallery_category=$matches[1]";s:48:".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$";s:18:"index.php?feed=old";s:20:".*wp-app\\.php(/.*)?$";s:19:"index.php?error=403";s:18:".*wp-register.php$";s:23:"index.php?register=true";s:32:"feed/(feed|rdf|rss|rss2|atom)/?$";s:27:"index.php?&feed=$matches[1]";s:27:"(feed|rdf|rss|rss2|atom)/?$";s:27:"index.php?&feed=$matches[1]";s: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: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: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:32:"search/(.+)/page/?([0-9]{1,})/?$";s:41:"index.php?s=$matches[1]&paged=$matches[2]";s:14:"search/(.+)/?$";s:23:"index.php?s=$matches[1]";s:47:"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?author_name=$matches[1]&feed=$matches[2]";s:42:"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?author_name=$matches[1]&feed=$matches[2]";s:35:"author/([^/]+)/page/?([0-9]{1,})/?$";s:51:"index.php?author_name=$matches[1]&paged=$matches[2]";s:17:"author/([^/]+)/?$";s:33:"index.php?author_name=$matches[1]";s:69:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$";s:80:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]";s:64:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$";s:80:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]";s:57:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$";s:81:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]";s:39:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$";s:63:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]";s:56:"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$";s:64:"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]";s:51:"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$";s:64:"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]";s:44:"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$";s:65:"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]";s:26:"([0-9]{4})/([0-9]{1,2})/?$";s:47:"index.php?year=$matches[1]&monthnum=$matches[2]";s:43:"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$";s:43:"index.php?year=$matches[1]&feed=$matches[2]";s:38:"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$";s:43:"index.php?year=$matches[1]&feed=$matches[2]";s:31:"([0-9]{4})/page/?([0-9]{1,})/?$";s:44:"index.php?year=$matches[1]&paged=$matches[2]";s:13:"([0-9]{4})/?$";s:26:"index.php?year=$matches[1]";s:58:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:68:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:88:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:83:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:83:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s: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:57:"([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: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: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:20:"(.?.+?)(/[0-9]+)?/?$";s:47:"index.php?pagename=$matches[1]&page=$matches[2]";}', 'yes'),
(650, 'shs_slider_settings', 'a:7:{s:10:"pause_time";s:4:"3000";s:10:"trans_time";s:4:"1000";s:5:"width";s:3:"500";s:6:"height";s:3:"400";s:9:"direction";s:5:"Right";s:14:"pause_on_hover";s:3:"Yes";s:15:"show_navigation";s:3:"Yes";}', 'yes'),
(653, 'shs_slider_contents', 'a:4:{i:0;s:28:"<h1><span>test 1</span></h1>";i:1;s:19:"<span>test 2</span>";i:2;s:19:"<span>test 3</span>";i:3;s:0:"";}', 'yes'),
(660, 'ls-collapsed-boxes', 'a:2:{s:27:"ls-advanced-settings-toggle";b:0;s:22:"ls-google-fonts-toggle";b:0;}', 'yes'),
(661, 'ls-show-support-notice', '0', 'yes'),
(676, '_transient_timeout_feed_f089ea5e25c51128903e9f47edae0f7b', '1441885107', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(677, '_transient_feed_f089ea5e25c51128903e9f47edae0f7b', 'a:4:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:3:"\n\n\n";s:7:"attribs";a:1:{s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:49:"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:0:"";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:18:"Synved » bulletin";s:7:"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:17:"http://synved.com";s: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:25:"Design / Create / Present";s: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:"Sat, 25 Apr 2015 10:05:04 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"language";a:1:{i:0;a:5:{s:4:"data";s:5:"en-US";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"item";a:10:{i:0;a:6:{s:4:"data";s:48:"\n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:44:"Social Media Feather: version 1.7.8 released";s:7:"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:159:"http://synved.com/blog/news/social-media-feather-version-1-7-8-released/?utm_source=rss&utm_medium=rss&utm_campaign=social-media-feather-version-1-7-8-released";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:81:"http://synved.com/blog/news/social-media-feather-version-1-7-8-released/#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:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 25 Apr 2015 10:05:04 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:5:{i:0;a:5:{s:4:"data";s:4:"News";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"bulletin";s: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:9:"community";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:3;a:5:{s:4:"data";s:11:"maintenance";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:4;a:5:{s:4:"data";s:7:"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:25:"http://synved.com/?p=2735";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:104:"We just released a new version for the . This is the changelog for version 1.7.8 that was just released:";s: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:"elia";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:77:"http://synved.com/blog/news/social-media-feather-version-1-7-8-released/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:1;a:6:{s:4:"data";s:48:"\n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:45:"WordPress Shortcodes: version 1.6.36 released";s:7:"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:161:"http://synved.com/blog/news/wordpress-shortcodes-version-1-6-36-released/?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-shortcodes-version-1-6-36-released";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:82:"http://synved.com/blog/news/wordpress-shortcodes-version-1-6-36-released/#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:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 12 Apr 2015 12:13:53 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:5:{i:0;a:5:{s:4:"data";s:4:"News";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"bulletin";s: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:9:"community";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:3;a:5:{s:4:"data";s:11:"maintenance";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:4;a:5:{s:4:"data";s:7:"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:25:"http://synved.com/?p=2719";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:105:"We just released a new version for the . This is the changelog for version 1.6.36 that was just released:";s: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:"elia";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:78:"http://synved.com/blog/news/wordpress-shortcodes-version-1-6-36-released/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:2;a:6:{s:4:"data";s:48:"\n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:44:"Social Media Feather: version 1.7.7 released";s:7:"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:159:"http://synved.com/blog/news/social-media-feather-version-1-7-7-released/?utm_source=rss&utm_medium=rss&utm_campaign=social-media-feather-version-1-7-7-released";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:81:"http://synved.com/blog/news/social-media-feather-version-1-7-7-released/#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:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 04 Apr 2015 14:16: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:8:"category";a:5:{i:0;a:5:{s:4:"data";s:4:"News";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"bulletin";s: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:9:"community";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:3;a:5:{s:4:"data";s:11:"maintenance";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:4;a:5:{s:4:"data";s:7:"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:25:"http://synved.com/?p=2704";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:104:"We just released a new version for the . This is the changelog for version 1.7.7 that was just released:";s: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:"elia";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:77:"http://synved.com/blog/news/social-media-feather-version-1-7-7-released/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"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:"";}}}}}i:3;a:6:{s:4:"data";s:48:"\n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:45:"WordPress Shortcodes: version 1.6.35 released";s:7:"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:161:"http://synved.com/blog/news/wordpress-shortcodes-version-1-6-35-released/?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-shortcodes-version-1-6-35-released";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:82:"http://synved.com/blog/news/wordpress-shortcodes-version-1-6-35-released/#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:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 29 Mar 2015 14:44:33 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:5:{i:0;a:5:{s:4:"data";s:4:"News";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"bulletin";s: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:9:"community";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:3;a:5:{s:4:"data";s:11:"maintenance";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:4;a:5:{s:4:"data";s:7:"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:25:"http://synved.com/?p=2687";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:105:"We just released a new version for the . This is the changelog for version 1.6.35 that was just released:";s: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:"elia";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:78:"http://synved.com/blog/news/wordpress-shortcodes-version-1-6-35-released/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:4;a:6:{s:4:"data";s:48:"\n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:44:"Social Media Feather: version 1.7.6 released";s:7:"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:159:"http://synved.com/blog/news/social-media-feather-version-1-7-6-released/?utm_source=rss&utm_medium=rss&utm_campaign=social-media-feather-version-1-7-6-released";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:81:"http://synved.com/blog/news/social-media-feather-version-1-7-6-released/#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:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 22 Mar 2015 21:26:06 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:5:{i:0;a:5:{s:4:"data";s:4:"News";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"bulletin";s: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:9:"community";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:3;a:5:{s:4:"data";s:11:"maintenance";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:4;a:5:{s:4:"data";s:7:"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:25:"http://synved.com/?p=2671";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:104:"We just released a new version for the . This is the changelog for version 1.7.6 that was just released:";s: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:"elia";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:77:"http://synved.com/blog/news/social-media-feather-version-1-7-6-released/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:5;a:6:{s:4:"data";s:51:"\n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:45:"WordPress Shortcodes: version 1.6.34 released";s:7:"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:161:"http://synved.com/blog/news/wordpress-shortcodes-version-1-6-34-released/?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-shortcodes-version-1-6-34-released";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:82:"http://synved.com/blog/news/wordpress-shortcodes-version-1-6-34-released/#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:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 08 Mar 2015 23:19: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:6:{i:0;a:5:{s:4:"data";s:4:"News";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"bulletin";s: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:9:"community";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:3;a:5:{s:4:"data";s:8:"features";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:4;a:5:{s:4:"data";s:11:"maintenance";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:5;a:5:{s:4:"data";s:7:"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:25:"http://synved.com/?p=2630";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:105:"We just released a new version for the . This is the changelog for version 1.6.34 that was just released:";s: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:"elia";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:78:"http://synved.com/blog/news/wordpress-shortcodes-version-1-6-34-released/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:6;a:6:{s:4:"data";s:48:"\n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:44:"Social Media Feather: version 1.7.5 released";s:7:"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:159:"http://synved.com/blog/news/social-media-feather-version-1-7-5-released/?utm_source=rss&utm_medium=rss&utm_campaign=social-media-feather-version-1-7-5-released";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:81:"http://synved.com/blog/news/social-media-feather-version-1-7-5-released/#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:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 01 Mar 2015 00:35: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:5:{i:0;a:5:{s:4:"data";s:4:"News";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"bulletin";s: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:9:"community";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:3;a:5:{s:4:"data";s:11:"maintenance";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:4;a:5:{s:4:"data";s:7:"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:25:"http://synved.com/?p=2613";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:104:"We just released a new version for the . This is the changelog for version 1.7.5 that was just released:";s: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:"elia";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:77:"http://synved.com/blog/news/social-media-feather-version-1-7-5-released/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:7;a:6:{s:4:"data";s:51:"\n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:45:"WordPress Shortcodes: version 1.6.33 released";s:7:"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:161:"http://synved.com/blog/news/wordpress-shortcodes-version-1-6-33-released/?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-shortcodes-version-1-6-33-released";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:82:"http://synved.com/blog/news/wordpress-shortcodes-version-1-6-33-released/#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:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 21 Feb 2015 21: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:"";}}s:8:"category";a:6:{i:0;a:5:{s:4:"data";s:4:"News";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"bulletin";s: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:9:"community";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:3;a:5:{s:4:"data";s:8:"features";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:4;a:5:{s:4:"data";s:11:"maintenance";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:5;a:5:{s:4:"data";s:7:"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:25:"http://synved.com/?p=2596";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:105:"We just released a new version for the . This is the changelog for version 1.6.33 that was just released:";s: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:"elia";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:78:"http://synved.com/blog/news/wordpress-shortcodes-version-1-6-33-released/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:8;a:6:{s:4:"data";s:48:"\n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:44:"Social Media Feather: version 1.7.4 released";s:7:"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:159:"http://synved.com/blog/news/social-media-feather-version-1-7-4-released/?utm_source=rss&utm_medium=rss&utm_campaign=social-media-feather-version-1-7-4-released";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:81:"http://synved.com/blog/news/social-media-feather-version-1-7-4-released/#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:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 15 Feb 2015 18:12: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:8:"category";a:5:{i:0;a:5:{s:4:"data";s:4:"News";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"bulletin";s: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:9:"community";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:3;a:5:{s:4:"data";s:11:"maintenance";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:4;a:5:{s:4:"data";s:7:"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:25:"http://synved.com/?p=2573";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:104:"We just released a new version for the . This is the changelog for version 1.7.4 that was just released:";s: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:"elia";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:77:"http://synved.com/blog/news/social-media-feather-version-1-7-4-released/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:9;a:6:{s:4:"data";s:51:"\n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:45:"WordPress Shortcodes: version 1.6.32 released";s:7:"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:161:"http://synved.com/blog/news/wordpress-shortcodes-version-1-6-32-released/?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-shortcodes-version-1-6-32-released";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:82:"http://synved.com/blog/news/wordpress-shortcodes-version-1-6-32-released/#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:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 07 Feb 2015 14:04: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:8:"category";a:6:{i:0;a:5:{s:4:"data";s:4:"News";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"bulletin";s: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:9:"community";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:3;a:5:{s:4:"data";s:8:"features";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:4;a:5:{s:4:"data";s:11:"maintenance";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:5;a:5:{s:4:"data";s:7:"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:25:"http://synved.com/?p=2549";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:105:"We just released a new version for the . This is the changelog for version 1.6.32 that was just released:";s: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:"elia";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:78:"http://synved.com/blog/news/wordpress-shortcodes-version-1-6-32-released/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}s:44:"http://purl.org/rss/1.0/modules/syndication/";a:2:{s:12:"updatePeriod";a:1:{i:0;a:5:{s:4:"data";s:6:"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:1:"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:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"link";a:2:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:3:{s:3:"rel";s:4:"self";s:4:"type";s:19:"application/rss+xml";s:4:"href";s:38:"http://feeds.feedburner.com/SynvedNews";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:3:"hub";s:4:"href";s:32:"http://pubsubhubbub.appspot.com/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:4:"info";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:1:{s:3:"uri";s:10:"synvednews";}}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";a:10:{s:12:"content-type";s:23:"text/xml; charset=UTF-8";s:4:"etag";s:27:"IF2jz4DaWuExrAhie2fokVR+e20";s:13:"last-modified";s:29:"Wed, 09 Sep 2015 23:20:12 GMT";s:16:"content-encoding";s:4:"gzip";s:4:"date";s:29:"Wed, 09 Sep 2015 23:38:24 GMT";s:7:"expires";s:29:"Wed, 09 Sep 2015 23:38:24 GMT";s:13:"cache-control";s:18:"private, max-age=0";s:22:"x-content-type-options";s:7:"nosniff";s:16:"x-xss-protection";s:13:"1; mode=block";s:6:"server";s:3:"GSE";}s:5:"build";s:14:"20150903044347";}', 'no'),
(678, '_transient_timeout_feed_mod_f089ea5e25c51128903e9f47edae0f7b', '1441885107', 'no'),
(679, '_transient_feed_mod_f089ea5e25c51128903e9f47edae0f7b', '1441841907', 'no'),
(680, '_transient_timeout_feed_76dacb85d5c5c7f29dcc9f50d7243077', '1441885108', 'no'),
(681, '_transient_feed_76dacb85d5c5c7f29dcc9f50d7243077', '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:44:"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:0:"";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:19:"Synved Connect List";s:7:"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:17:"http://synved.com";s: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:26:"List of connect link items";s: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:"Sat, 11 Aug 2012 18:51: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:"language";a:1:{i:0;a:5:{s:4:"data";s:5:"en-US";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"item";a:9:{i:0;a:6:{s:4:"data";s:23:"\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:2:{s:0:"";a:6:{s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:65:"http://synved.com/synved_connect_list.rss?guid=wordpress-themes-1";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:4:"link";a:1:{i:0;a:5:{s:4:"data";s:17:"http://synved.com";s: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:26:"synved-connect-type-credit";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:16:"WordPress 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:28:"WordPress plugins and 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:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 08 Jul 2012 19:50:03 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:18:"%%link%% by Synved";s: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:23:"\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:2:{s:0:"";a:6:{s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:65:"http://synved.com/synved_connect_list.rss?guid=wordpress-design-1";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:4:"link";a:1:{i:0;a:5:{s:4:"data";s:17:"http://synved.com";s: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:26:"synved-connect-type-credit";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:16:"WordPress 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:28:"WordPress plugins and 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:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 08 Jul 2012 19:50:03 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:18:"%%link%% by Synved";s: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:23:"\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:2:{s:0:"";a:6:{s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:60:"http://synved.com/synved_connect_list.rss?guid=gravity-forms";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:8:"category";a:1:{i:0;a:5:{s:4:"data";s:26:"synved-connect-type-extern";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:18:"recommended plugin";s: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:"Highly customizable contact forms for WordPress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:41:"http://synved.com/suggests/gravity-forms/";s: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:28:"Thu, 31 Oct 2013 14: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:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:100:"Do you need to add easy to customize and professional Contact Forms to your site? check our %%link%%";s: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:23:"\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:2:{s:0:"";a:6:{s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:61:"http://synved.com/synved_connect_list.rss?guid=elegant-themes";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:8:"category";a:1:{i:0;a:5:{s:4:"data";s:26:"synved-connect-type-extern";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:22:"over 85 elegant 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:16:"WordPress 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:"link";a:1:{i:0;a:5:{s:4:"data";s:53:"http://synved.com/suggests/elegant-themes-collection/";s: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:28:"Thu, 31 Oct 2013 14: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:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:75:"Feel like changing the look of your site around a bit? Why not get %%link%%";s: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:23:"\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:2:{s:0:"";a:6:{s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:61:"http://synved.com/synved_connect_list.rss?guid=themify-themes";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:8:"category";a:1:{i:0;a:5:{s:4:"data";s:26:"synved-connect-type-extern";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:30:"large selection of cool 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:14:"Themify 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:"link";a:1:{i:0;a:5:{s:4:"data";s:42:"http://synved.com/suggests/themify-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:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:28:"Thu, 31 Oct 2013 14: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:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:54:"Improve the appearance of your site with this %%link%%";s: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:23:"\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:2:{s:0:"";a:6:{s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:63:"http://synved.com/synved_connect_list.rss?guid=lightbox-gallery";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:8:"category";a:1:{i:0;a:5:{s:4:"data";s:26:"synved-connect-type-extern";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:25:"responsive gallery plugin";s: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:20:"Gallery and Lightbox";s:7:"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:44:"http://synved.com/suggests/lightbox-gallery/";s: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:28:"Thu, 31 Oct 2013 14: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:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:78:"Would you like to display images in a slick social lightbox? Try this %%link%%";s: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:23:"\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:2:{s:0:"";a:6:{s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:62:"http://synved.com/synved_connect_list.rss?guid=elegant-themes2";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:8:"category";a:1:{i:0;a:5:{s:4:"data";s:26:"synved-connect-type-extern";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:16:"a new sexy theme";s: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:32:"many themes for the price of one";s:7:"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:"http://synved.com/suggests/elegant-themes-collection/";s: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:28:"Sat, 2 July 2014 14: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:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:67:"Your great site deserves a great look, make it shine with %%link%%!";s: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:23:"\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:2:{s:0:"";a:6:{s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:61:"http://synved.com/synved_connect_list.rss?guid=themefuse-muse";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:8:"category";a:1:{i:0;a:5:{s:4:"data";s:26:"synved-connect-type-extern";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:23:"clean theme for writers";s: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:27:"WordPress theme for Writers";s:7:"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:42:"http://synved.com/suggests/themefuse-muse/";s: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:28:"Thu, 31 Oct 2013 14: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:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:90:"If you are a blog writer and want your content to be easy to read try this crisp, %%link%%";s: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:23:"\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:2:{s:0:"";a:6:{s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:60:"http://synved.com/synved_connect_list.rss?guid=wpzoom-themes";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:8:"category";a:1:{i:0;a:5:{s:4:"data";s:26:"synved-connect-type-extern";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:16:"60+ great 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:23:"WPZOOM WordPress 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:"link";a:1:{i:0;a:5:{s:4:"data";s:41:"http://synved.com/suggests/wpzoom-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:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:28:"Thu, 31 Oct 2013 14: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:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:68:"Give a new fantastic look to your site or blog! Pick one of %%link%%";s:7:"attribs";a:0:{}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:6:"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:1:"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:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"link";a:2:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:3:{s:3:"rel";s:4:"self";s:4:"type";s:19:"application/rss+xml";s:4:"href";s:46:"http://feeds.feedburner.com/_SynvedConnectList";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:3:"hub";s:4:"href";s:32:"http://pubsubhubbub.appspot.com/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:4:"info";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:1:{s:3:"uri";s:18:"_synvedconnectlist";}}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";a:10:{s:12:"content-type";s:23:"text/xml; charset=UTF-8";s:4:"etag";s:27:"zIN3uxNgU4Zn7G+9mROcu8bPDzU";s:13:"last-modified";s:29:"Wed, 09 Sep 2015 22:17:13 GMT";s:16:"content-encoding";s:4:"gzip";s:4:"date";s:29:"Wed, 09 Sep 2015 23:38:25 GMT";s:7:"expires";s:29:"Wed, 09 Sep 2015 23:38:25 GMT";s:13:"cache-control";s:18:"private, max-age=0";s:22:"x-content-type-options";s:7:"nosniff";s:16:"x-xss-protection";s:13:"1; mode=block";s:6:"server";s:3:"GSE";}s:5:"build";s:14:"20150903044347";}', 'no'),
(682, '_transient_timeout_feed_mod_76dacb85d5c5c7f29dcc9f50d7243077', '1441885108', 'no'),
(683, '_transient_feed_mod_76dacb85d5c5c7f29dcc9f50d7243077', '1441841908', 'no'),
(694, '_site_transient_timeout_ewt_readme', '1441863075', 'yes'),
(695, '_site_transient_ewt_readme', 'Not Found', 'yes'),
(696, '_site_transient_timeout_ewt_github_data', '1441863078', 'yes');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(697, '_site_transient_ewt_github_data', 'O:8:"stdClass":70:{s:2:"id";i:2558893;s:4:"name";s:24:"envato-wordpress-toolkit";s:9:"full_name";s:31:"envato/envato-wordpress-toolkit";s:5:"owner";O:8:"stdClass":17:{s:5:"login";s:6:"envato";s:2:"id";i:14786;s:10:"avatar_url";s:49:"https://avatars.githubusercontent.com/u/14786?v=3";s:11:"gravatar_id";s:0:"";s:3:"url";s:35:"https://api.github.com/users/envato";s:8:"html_url";s:25:"https://github.com/envato";s:13:"followers_url";s:45:"https://api.github.com/users/envato/followers";s:13:"following_url";s:58:"https://api.github.com/users/envato/following{/other_user}";s:9:"gists_url";s:51:"https://api.github.com/users/envato/gists{/gist_id}";s:11:"starred_url";s:58:"https://api.github.com/users/envato/starred{/owner}{/repo}";s:17:"subscriptions_url";s:49:"https://api.github.com/users/envato/subscriptions";s:17:"organizations_url";s:40:"https://api.github.com/users/envato/orgs";s:9:"repos_url";s:41:"https://api.github.com/users/envato/repos";s:10:"events_url";s:52:"https://api.github.com/users/envato/events{/privacy}";s:19:"received_events_url";s:51:"https://api.github.com/users/envato/received_events";s:4:"type";s:12:"Organization";s:10:"site_admin";b:0;}s:7:"private";b:0;s:8:"html_url";s:50:"https://github.com/envato/envato-wordpress-toolkit";s:11:"description";s:53:"WordPress Toolkit for Envato Marketplace hosted items";s:4:"fork";b:0;s:3:"url";s:60:"https://api.github.com/repos/envato/envato-wordpress-toolkit";s:9:"forks_url";s:66:"https://api.github.com/repos/envato/envato-wordpress-toolkit/forks";s:8:"keys_url";s:74:"https://api.github.com/repos/envato/envato-wordpress-toolkit/keys{/key_id}";s:17:"collaborators_url";s:89:"https://api.github.com/repos/envato/envato-wordpress-toolkit/collaborators{/collaborator}";s:9:"teams_url";s:66:"https://api.github.com/repos/envato/envato-wordpress-toolkit/teams";s:9:"hooks_url";s:66:"https://api.github.com/repos/envato/envato-wordpress-toolkit/hooks";s:16:"issue_events_url";s:83:"https://api.github.com/repos/envato/envato-wordpress-toolkit/issues/events{/number}";s:10:"events_url";s:67:"https://api.github.com/repos/envato/envato-wordpress-toolkit/events";s:13:"assignees_url";s:77:"https://api.github.com/repos/envato/envato-wordpress-toolkit/assignees{/user}";s:12:"branches_url";s:78:"https://api.github.com/repos/envato/envato-wordpress-toolkit/branches{/branch}";s:8:"tags_url";s:65:"https://api.github.com/repos/envato/envato-wordpress-toolkit/tags";s:9:"blobs_url";s:76:"https://api.github.com/repos/envato/envato-wordpress-toolkit/git/blobs{/sha}";s:12:"git_tags_url";s:75:"https://api.github.com/repos/envato/envato-wordpress-toolkit/git/tags{/sha}";s:12:"git_refs_url";s:75:"https://api.github.com/repos/envato/envato-wordpress-toolkit/git/refs{/sha}";s:9:"trees_url";s:76:"https://api.github.com/repos/envato/envato-wordpress-toolkit/git/trees{/sha}";s:12:"statuses_url";s:75:"https://api.github.com/repos/envato/envato-wordpress-toolkit/statuses/{sha}";s:13:"languages_url";s:70:"https://api.github.com/repos/envato/envato-wordpress-toolkit/languages";s:14:"stargazers_url";s:71:"https://api.github.com/repos/envato/envato-wordpress-toolkit/stargazers";s:16:"contributors_url";s:73:"https://api.github.com/repos/envato/envato-wordpress-toolkit/contributors";s:15:"subscribers_url";s:72:"https://api.github.com/repos/envato/envato-wordpress-toolkit/subscribers";s:16:"subscription_url";s:73:"https://api.github.com/repos/envato/envato-wordpress-toolkit/subscription";s:11:"commits_url";s:74:"https://api.github.com/repos/envato/envato-wordpress-toolkit/commits{/sha}";s:15:"git_commits_url";s:78:"https://api.github.com/repos/envato/envato-wordpress-toolkit/git/commits{/sha}";s:12:"comments_url";s:78:"https://api.github.com/repos/envato/envato-wordpress-toolkit/comments{/number}";s:17:"issue_comment_url";s:85:"https://api.github.com/repos/envato/envato-wordpress-toolkit/issues/comments{/number}";s:12:"contents_url";s:77:"https://api.github.com/repos/envato/envato-wordpress-toolkit/contents/{+path}";s:11:"compare_url";s:84:"https://api.github.com/repos/envato/envato-wordpress-toolkit/compare/{base}...{head}";s:10:"merges_url";s:67:"https://api.github.com/repos/envato/envato-wordpress-toolkit/merges";s:11:"archive_url";s:83:"https://api.github.com/repos/envato/envato-wordpress-toolkit/{archive_format}{/ref}";s:13:"downloads_url";s:70:"https://api.github.com/repos/envato/envato-wordpress-toolkit/downloads";s:10:"issues_url";s:76:"https://api.github.com/repos/envato/envato-wordpress-toolkit/issues{/number}";s:9:"pulls_url";s:75:"https://api.github.com/repos/envato/envato-wordpress-toolkit/pulls{/number}";s:14:"milestones_url";s:80:"https://api.github.com/repos/envato/envato-wordpress-toolkit/milestones{/number}";s:17:"notifications_url";s:100:"https://api.github.com/repos/envato/envato-wordpress-toolkit/notifications{?since,all,participating}";s:10:"labels_url";s:74:"https://api.github.com/repos/envato/envato-wordpress-toolkit/labels{/name}";s:12:"releases_url";s:74:"https://api.github.com/repos/envato/envato-wordpress-toolkit/releases{/id}";s:10:"created_at";s:20:"2011-10-11T22:58:26Z";s:10:"updated_at";s:20:"2015-09-09T15:58:03Z";s:9:"pushed_at";s:20:"2015-08-19T04:11:19Z";s:7:"git_url";s:52:"git://github.com/envato/envato-wordpress-toolkit.git";s:7:"ssh_url";s:50:"[email protected]:envato/envato-wordpress-toolkit.git";s:9:"clone_url";s:54:"https://github.com/envato/envato-wordpress-toolkit.git";s:7:"svn_url";s:50:"https://github.com/envato/envato-wordpress-toolkit";s:8:"homepage";s:0:"";s:4:"size";i:505;s:16:"stargazers_count";i:286;s:14:"watchers_count";i:286;s:8:"language";s:3:"PHP";s:10:"has_issues";b:1;s:13:"has_downloads";b:1;s:8:"has_wiki";b:1;s:9:"has_pages";b:0;s:11:"forks_count";i:114;s:10:"mirror_url";N;s:17:"open_issues_count";i:41;s:5:"forks";i:114;s:11:"open_issues";i:41;s:8:"watchers";i:286;s:14:"default_branch";s:6:"master";s:12:"organization";O:8:"stdClass":17:{s:5:"login";s:6:"envato";s:2:"id";i:14786;s:10:"avatar_url";s:49:"https://avatars.githubusercontent.com/u/14786?v=3";s:11:"gravatar_id";s:0:"";s:3:"url";s:35:"https://api.github.com/users/envato";s:8:"html_url";s:25:"https://github.com/envato";s:13:"followers_url";s:45:"https://api.github.com/users/envato/followers";s:13:"following_url";s:58:"https://api.github.com/users/envato/following{/other_user}";s:9:"gists_url";s:51:"https://api.github.com/users/envato/gists{/gist_id}";s:11:"starred_url";s:58:"https://api.github.com/users/envato/starred{/owner}{/repo}";s:17:"subscriptions_url";s:49:"https://api.github.com/users/envato/subscriptions";s:17:"organizations_url";s:40:"https://api.github.com/users/envato/orgs";s:9:"repos_url";s:41:"https://api.github.com/users/envato/repos";s:10:"events_url";s:52:"https://api.github.com/users/envato/events{/privacy}";s:19:"received_events_url";s:51:"https://api.github.com/users/envato/received_events";s:4:"type";s:12:"Organization";s:10:"site_admin";b:0;}s:13:"network_count";i:114;s:17:"subscribers_count";i:80;}', 'yes'),
(698, '_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1441903588', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(699, '_transient_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca', '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:14:"WordPress News";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:26:"https://wordpress.org/news";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:14:"WordPress News";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:13:"lastBuildDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 19 Aug 2015 13:10: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:8:"language";a:1:{i:0;a:5:{s:4:"data";s:5:"en-US";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"generator";a:1:{i:0;a:5:{s:4:"data";s:39:"http://wordpress.org/?v=4.4-alpha-33971";s:7:"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:45:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:26:"WordPress 4.3 “Billie”";s:7:"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:42:"https://wordpress.org/news/2015/08/billie/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:51:"https://wordpress.org/news/2015/08/billie/#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:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 18 Aug 2015 19:12: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:8:"category";a:2:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:3:"4.3";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3845";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:352:"Version 4.3 of WordPress, named “Billie” in honor of jazz singer Billie Holiday, is available for download or update in your WordPress dashboard. New features in 4.3 make it even easier to format your content and customize your site. Menus in the Customizer Create your menu, update it, and assign it, all while live-previewing in […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Matt Mullenweg";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:21781:"<p style="margin: 0;height: 0"><img src="https://wordpress.org/news/files/2015/08/WordPress-4-3-billie-1024x574.png" alt="WordPress 4.3 - "Billie"" width="692" height="388" class="alignnone size-large wp-image-3896" style="height:0px;width: 0px;margin: 0" /></p>\n<p>Version 4.3 of WordPress, named “Billie” in honor of jazz singer <a href="https://en.wikipedia.org/wiki/Billie_Holiday">Billie Holiday</a>, is available for <a href="https://wordpress.org/download/">download</a> or update in your WordPress dashboard. New features in 4.3 make it even easier to format your content and customize your site.</p>\n<p><iframe width=''692'' height=''389'' src=''https://videopress.com/embed/T54Iy7Tw?hd=1'' frameborder=''0'' allowfullscreen></iframe><script src=''https://v0.wordpress.com/js/next/videopress-iframe.js?m=1435166243''></script></p>\n<hr />\n<h2>Menus in the Customizer</h2>\n<div><img src="//s.w.org/images/core/4.3/menu-customizer.png" alt="" /></div>\n<p>Create your menu, update it, and assign it, all while live-previewing in the customizer. The streamlined customizer design provides a mobile-friendly and accessible interface. With every release, it becomes easier and faster to make your site just the way you want it.</p>\n<hr />\n<h2>Formatting Shortcuts</h2>\n<div style="margin-bottom: 0"><div style="width: 640px; " class="wp-video"><!--[if lt IE 9]><script>document.createElement(''video'');</script><![endif]-->\n<video class="wp-video-shortcode" id="video-3845-1" width="640" height="360" loop="1" autoplay="1" preload="metadata" controls="controls"><source type="video/mp4" src="//s.w.org/images/core/4.3/formatting.mp4?_=1" /><source type="video/webm" src="//s.w.org/images/core/4.3/formatting.webm?_=1" /><source type="video/ogg" src="//s.w.org/images/core/4.3/formatting.ogv?_=1" /><a href="//s.w.org/images/core/4.3/formatting.mp4">//s.w.org/images/core/4.3/formatting.mp4</a></video></div></div>\n<p>Your writing flow just got faster with new formatting shortcuts in WordPress 4.3. Use asterisks to create lists and number signs to make a heading. No more breaking your flow; your text looks great with a <code>*</code> and a <code>#</code>.</p>\n<hr />\n<h2>Site Icons</h2>\n<p><img src="//s.w.org/images/core/4.3/site-icon-customizer.png" alt="" /><br />\n <br />\nSite icons represent your site in browser tabs, bookmark menus, and on the home screen of mobile devices. Add your unique site icon in the customizer; it will even stay in place when you switch themes. Make your whole site reflect your brand.</p>\n<hr />\n<h2>Better Passwords</h2>\n<p><img src="//s.w.org/images/core/4.3/better-passwords.png" alt="" /><br />\n <br />\nKeep your site more secure with WordPress’ improved approach to passwords. Instead of receiving passwords via email, you’ll get a password reset link. When you add new users to your site or edit a user profile, WordPress will automatically generate a secure password.</p>\n<hr />\n<h2>Other improvements</h2>\n<ul>\n<li><strong>A smoother admin experience</strong> – Refinements to the list view across the admin make your WordPress more accessible and easier to work with on any device.</li>\n<li><strong>Comments turned off on pages</strong> – All new pages that you create will have comments turned off. Keep discussions to your blog, right where they’re supposed to happen.</li>\n<li><strong>Customize your site quickly</strong> – Wherever you are on the front-end, you can click the customize link in the toolbar to swiftly make changes to your site.</li>\n</ul>\n<hr />\n<h2>The Team</h2>\n<p><a class="alignleft" href="https://profiles.wordpress.org/obenland"><img src="https://www.gravatar.com/avatar/2370ea5912750f4cb0f3c51ae1cbca55?d=mm&s=180&r=G" alt="Konstantin Obenland" width="80" height="80" /></a>This release was led by <a href="http://konstantin.obenland.it/">Konstantin Obenland</a>, with the help of these fine individuals. There are 246 contributors with props in this release. Pull up some Billie Holiday on your music service of choice, and check out some of their profiles:</p>\n<a href="https://profiles.wordpress.org/mercime">@mercime</a>, <a href="https://profiles.wordpress.org/aaroncampbell">Aaron D. Campbell</a>, <a href="https://profiles.wordpress.org/jorbin">Aaron Jorbin</a>, <a href="https://profiles.wordpress.org/adamkheckler">Adam Heckler</a>, <a href="https://profiles.wordpress.org/adamsilverstein">Adam Silverstein</a>, <a href="https://profiles.wordpress.org/akibjorklund">Aki Bjorklund</a>, <a href="https://profiles.wordpress.org/akirk">Alex Kirk</a>, <a href="https://profiles.wordpress.org/viper007bond">Alex Mills (Viper007Bond)</a>, <a href="https://profiles.wordpress.org/tellyworth">Alex Shiels</a>, <a href="https://profiles.wordpress.org/deconf">Alin Marcu</a>, <a href="https://profiles.wordpress.org/andfinally">andfinally</a>, <a href="https://profiles.wordpress.org/afercia">Andrea Fercia</a>, <a href="https://profiles.wordpress.org/andg">Andrea Gandino</a>, <a href="https://profiles.wordpress.org/nacin">Andrew Nacin</a>, <a href="https://profiles.wordpress.org/azaozz">Andrew Ozz</a>, <a href="https://profiles.wordpress.org/afragen">Andy Fragen</a>, <a href="https://profiles.wordpress.org/ankit-k-gupta">Ankit K Gupta</a>, <a href="https://profiles.wordpress.org/antpb">Anthony Burchell</a>, <a href="https://profiles.wordpress.org/anubisthejackle">anubisthejackle</a>, <a href="https://profiles.wordpress.org/aramzs">Aram Zucker-Scharff</a>, <a href="https://profiles.wordpress.org/arjunskumar">Arjun S Kumar</a>, <a href="https://profiles.wordpress.org/avnarun">avnarun</a>, <a href="https://profiles.wordpress.org/brad2dabone">Bad Feather</a>, <a href="https://profiles.wordpress.org/bcole808">Ben Cole</a>, <a href="https://profiles.wordpress.org/empireoflight">Ben Dunkle</a>, <a href="https://profiles.wordpress.org/binarykitten">BinaryKitten</a>, <a href="https://profiles.wordpress.org/birgire">Birgir Erlendsson (birgire)</a>, <a href="https://profiles.wordpress.org/bjornjohansen">Bjorn Johansen</a>, <a href="https://profiles.wordpress.org/bolo1988">bolo1988</a>, <a href="https://profiles.wordpress.org/boonebgorges">Boone B. Gorges</a>, <a href="https://profiles.wordpress.org/bradt">Brad Touesnard</a>, <a href="https://profiles.wordpress.org/bramd">Bram Duvigneau</a>, <a href="https://profiles.wordpress.org/kraftbj">Brandon Kraft</a>, <a href="https://profiles.wordpress.org/krogsgard">Brian Krogsgard</a>, <a href="https://profiles.wordpress.org/brianlayman">Brian Layman</a>, <a href="https://profiles.wordpress.org/icaleb">Caleb Burks</a>, <a href="https://profiles.wordpress.org/calevans">CalEvans</a>, <a href="https://profiles.wordpress.org/chasewiseman">Chase Wiseman</a>, <a href="https://profiles.wordpress.org/chipbennett">Chip Bennett</a>, <a href="https://profiles.wordpress.org/chouby">Chouby</a>, <a href="https://profiles.wordpress.org/c3mdigital">Chris Olbekson</a>, <a href="https://profiles.wordpress.org/chriscct7">chriscct7</a>, <a href="https://profiles.wordpress.org/posykrat">Clement Biron</a>, <a href="https://profiles.wordpress.org/craig-ralston">Craig Ralston</a>, <a href="https://profiles.wordpress.org/danielbachhuber">Daniel Bachhuber</a>, <a href="https://profiles.wordpress.org/redsweater">Daniel Jalkut (Red Sweater)</a>, <a href="https://profiles.wordpress.org/mte90">Daniele Mte90 Scasciafratte</a>, <a href="https://profiles.wordpress.org/daniluk4000">daniluk4000</a>, <a href="https://profiles.wordpress.org/dmchale">Dave McHale</a>, <a href="https://profiles.wordpress.org/daveal">DaveAl</a>, <a href="https://profiles.wordpress.org/davidakennedy">David A. Kennedy</a>, <a href="https://profiles.wordpress.org/dlh">David Herrera</a>, <a href="https://profiles.wordpress.org/daxelrod">daxelrod</a>, <a href="https://profiles.wordpress.org/denis-de-bernardy">Denis de Bernardy</a>, <a href="https://profiles.wordpress.org/realloc">Dennis Ploetner</a>, <a href="https://profiles.wordpress.org/valendesigns">Derek Herman</a>, <a href="https://profiles.wordpress.org/dd32">Dion Hulse</a>, <a href="https://profiles.wordpress.org/dipeshkakadiya">dipesh.kakadiya</a>, <a href="https://profiles.wordpress.org/dmsnell">dmsnell</a>, <a href="https://profiles.wordpress.org/ocean90">Dominik Schilling</a>, <a href="https://profiles.wordpress.org/drewapicture">Drew Jaynes</a>, <a href="https://profiles.wordpress.org/kucrut">Dzikri Aziz</a>, <a href="https://profiles.wordpress.org/eclev91">eclev91</a>, <a href="https://profiles.wordpress.org/eligijus">eligijus</a>, <a href="https://profiles.wordpress.org/eliorivero">Elio Rivero</a>, <a href="https://profiles.wordpress.org/iseulde">Ella Iseulde Van Dorpe</a>, <a href="https://profiles.wordpress.org/ericlewis">Eric Andrew Lewis</a>, <a href="https://profiles.wordpress.org/ebinnion">Eric Binnion</a>, <a href="https://profiles.wordpress.org/ericmann">Eric Mann</a>, <a href="https://profiles.wordpress.org/fab1en">Fabien Quatravaux</a>, <a href="https://profiles.wordpress.org/flixos90">Felix Arntz</a>, <a href="https://profiles.wordpress.org/francoeurdavid">francoeurdavid</a>, <a href="https://profiles.wordpress.org/frank-klein">Frank Klein</a>, <a href="https://profiles.wordpress.org/gabrielperezs">gabrielperezs</a>, <a href="https://profiles.wordpress.org/voldemortensen">Garth Mortensen</a>, <a href="https://profiles.wordpress.org/garyj">Gary Jones</a>, <a href="https://profiles.wordpress.org/pento">Gary Pendergast</a>, <a href="https://profiles.wordpress.org/georgestephanis">George Stephanis</a>, <a href="https://profiles.wordpress.org/glennm">glennm</a>, <a href="https://profiles.wordpress.org/gtuk">gtuk</a>, <a href="https://profiles.wordpress.org/hailin">hailin</a>, <a href="https://profiles.wordpress.org/hauvong">hauvong</a>, <a href="https://profiles.wordpress.org/helen">Helen Hou-Sandí</a>, <a href="https://profiles.wordpress.org/henrikakselsen">henrikakselsen</a>, <a href="https://profiles.wordpress.org/hnle">Hinaloe</a>, <a href="https://profiles.wordpress.org/hrishiv90">Hrishikesh Vaipurkar</a>, <a href="https://profiles.wordpress.org/hugobaeta">Hugo Baeta</a>, <a href="https://profiles.wordpress.org/polevaultweb">Iain Poulson</a>, <a href="https://profiles.wordpress.org/imath">imath</a>, <a href="https://profiles.wordpress.org/ipstenu">Ipstenu (Mika Epstein)</a>, <a href="https://profiles.wordpress.org/isaacchapman">isaacchapman</a>, <a href="https://profiles.wordpress.org/izem">izem</a>, <a href="https://profiles.wordpress.org/jdgrimes">J.D. Grimes</a>, <a href="https://profiles.wordpress.org/jacklenox">Jack Lenox</a>, <a href="https://profiles.wordpress.org/jadpm">jadpm</a>, <a href="https://profiles.wordpress.org/jamesgol">jamesgol</a>, <a href="https://profiles.wordpress.org/jancbeck">jancbeck</a>, <a href="https://profiles.wordpress.org/jfarthing84">Jeff Farthing</a>, <a href="https://profiles.wordpress.org/jeremyfelt">Jeremy Felt</a>, <a href="https://profiles.wordpress.org/jpry">Jeremy Pry</a>, <a href="https://profiles.wordpress.org/jmichaelward">Jeremy Ward</a>, <a href="https://profiles.wordpress.org/jesin">Jesin A</a>, <a href="https://profiles.wordpress.org/jipmoors">jipmoors</a>, <a href="https://profiles.wordpress.org/eltobiano">jjberry</a>, <a href="https://profiles.wordpress.org/joedolson">Joe Dolson</a>, <a href="https://profiles.wordpress.org/joehoyle">Joe Hoyle</a>, <a href="https://profiles.wordpress.org/joemcgill">Joe McGill</a>, <a href="https://profiles.wordpress.org/jkudish">Joey Kudish</a>, <a href="https://profiles.wordpress.org/johnbillion">John Blackbourn</a>, <a href="https://profiles.wordpress.org/johnjamesjacoby">John James Jacoby</a>, <a href="https://profiles.wordpress.org/picard102">John Leschinski</a>, <a href="https://profiles.wordpress.org/joostdevalk">Joost de Valk</a>, <a href="https://profiles.wordpress.org/maxxsnake">Josh Davis</a>, <a href="https://profiles.wordpress.org/jpyper">Jpyper</a>, <a href="https://profiles.wordpress.org/jrf">jrf</a>, <a href="https://profiles.wordpress.org/juliobox">Julio Potier</a>, <a href="https://profiles.wordpress.org/jtsternberg">Justin Sternberg</a>, <a href="https://profiles.wordpress.org/ungestaltbar">Kai</a>, <a href="https://profiles.wordpress.org/karinchristen">karinchristen</a>, <a href="https://profiles.wordpress.org/karpstrucking">karpstrucking</a>, <a href="https://profiles.wordpress.org/ryelle">Kelly Dwan</a>, <a href="https://profiles.wordpress.org/kevkoeh">Kevin Koehler</a>, <a href="https://profiles.wordpress.org/kitchin">kitchin</a>, <a href="https://profiles.wordpress.org/ixkaito">Kite</a>, <a href="https://profiles.wordpress.org/kovshenin">Konstantin Kovshenin</a>, <a href="https://profiles.wordpress.org/lancewillett">Lance Willett</a>, <a href="https://profiles.wordpress.org/leewillis77">Lee Willis</a>, <a href="https://profiles.wordpress.org/leogopal">Leo Gopal</a>, <a href="https://profiles.wordpress.org/loushou">loushou</a>, <a href="https://profiles.wordpress.org/lumaraf">Lumaraf</a>, <a href="https://profiles.wordpress.org/tyxla">Marin Atanasov</a>, <a href="https://profiles.wordpress.org/nofearinc">Mario Peshev</a>, <a href="https://profiles.wordpress.org/clorith">Marius (Clorith)</a>, <a href="https://profiles.wordpress.org/markjaquith">Mark Jaquith</a>, <a href="https://profiles.wordpress.org/markoheijnen">Marko Heijnen</a>, <a href="https://profiles.wordpress.org/marsjaninzmarsa">marsjaninzmarsa</a>, <a href="https://profiles.wordpress.org/martinsachse">martinsachse</a>, <a href="https://profiles.wordpress.org/matt">Matt Mullenweg</a>, <a href="https://profiles.wordpress.org/veraxus">Matt van Andel</a>, <a href="https://profiles.wordpress.org/mattwiebe">Matt Wiebe</a>, <a href="https://profiles.wordpress.org/mattyrob">mattyrob</a>, <a href="https://profiles.wordpress.org/melchoyce">Mel Choyce</a>, <a href="https://profiles.wordpress.org/nikonratm">Michael</a>, <a href="https://profiles.wordpress.org/mdawaffe">Michael Adams (mdawaffe)</a>, <a href="https://profiles.wordpress.org/michael-arestad">Michael Arestad</a>, <a href="https://profiles.wordpress.org/michaelryanmcneill">michaelryanmcneill</a>, <a href="https://profiles.wordpress.org/mcguive7">Mickey Kay</a>, <a href="https://profiles.wordpress.org/mihai">mihai</a>, <a href="https://profiles.wordpress.org/mikehansenme">Mike Hansen</a>, <a href="https://profiles.wordpress.org/mnelson4">Mike Nelson</a>, <a href="https://profiles.wordpress.org/dh-shredder">Mike Schroder</a>, <a href="https://profiles.wordpress.org/dimadin">Milan Dinic</a>, <a href="https://profiles.wordpress.org/morganestes">Morgan Estes</a>, <a href="https://profiles.wordpress.org/mrutz">mrutz</a>, <a href="https://profiles.wordpress.org/nabil_kadimi">nabil_kadimi</a>, <a href="https://profiles.wordpress.org/Nao">Naoko Takano</a>, <a href="https://profiles.wordpress.org/nazmulhossainnihal">Nazmul Hossain Nihal</a>, <a href="https://profiles.wordpress.org/nicholas_io">nicholas_io</a>, <a href="https://profiles.wordpress.org/celloexpressions">Nick Halsey</a>, <a href="https://profiles.wordpress.org/nickmomrik">Nick Momrik</a>, <a href="https://profiles.wordpress.org/nbachiyski">Nikolay Bachiyski</a>, <a href="https://profiles.wordpress.org/rabmalin">Nilambar Sharma</a>, <a href="https://profiles.wordpress.org/onnimonni">Onni Hakala</a>, <a href="https://profiles.wordpress.org/ozh">Ozh</a>, <a href="https://profiles.wordpress.org/pareshradadiya-1">Paresh Radadiya</a>, <a href="https://profiles.wordpress.org/swissspidy">Pascal Birchler</a>, <a href="https://profiles.wordpress.org/djpaul">Paul Gibbs</a>, <a href="https://profiles.wordpress.org/paulwilde">Paul Wilde</a>, <a href="https://profiles.wordpress.org/pavelevap">pavelevap</a>, <a href="https://profiles.wordpress.org/gungeekatx">Pete Nelson</a>, <a href="https://profiles.wordpress.org/peterwilsoncc">Peter Wilson</a>, <a href="https://profiles.wordpress.org/peterrknight">PeterRKnight</a>, <a href="https://profiles.wordpress.org/philiparthurmoore">Philip Arthur Moore</a>, <a href="https://profiles.wordpress.org/mordauk">Pippin Williamson</a>, <a href="https://profiles.wordpress.org/pragunbhutani">pragunbhutani</a>, <a href="https://profiles.wordpress.org/rachelbaker">Rachel Baker</a>, <a href="https://profiles.wordpress.org/ramiy">Rami Yushuvaev</a>, <a href="https://profiles.wordpress.org/rarylson">rarylson</a>, <a href="https://profiles.wordpress.org/lamosty">Rastislav Lamos</a>, <a href="https://profiles.wordpress.org/rauchg">rauchg</a>, <a href="https://profiles.wordpress.org/ravinderk">Ravinder Kumar</a>, <a href="https://profiles.wordpress.org/rclations">RC Lations</a>, <a href="https://profiles.wordpress.org/greuben">Reuben Gunday</a>, <a href="https://profiles.wordpress.org/rianrietveld">Rian Rietveld</a>, <a href="https://profiles.wordpress.org/ritteshpatel">Ritesh Patel</a>, <a href="https://profiles.wordpress.org/miqrogroove">Robert Chapin</a>, <a href="https://profiles.wordpress.org/rdall">Robert Dall</a>, <a href="https://profiles.wordpress.org/rodrigosprimo">Rodrigo Primo</a>, <a href="https://profiles.wordpress.org/rommelxcastro">Rommel Castro</a>, <a href="https://profiles.wordpress.org/magicroundabout">Ross Wintle</a>, <a href="https://profiles.wordpress.org/rhurling">Rouven Hurling</a>, <a href="https://profiles.wordpress.org/ryan">Ryan Boren</a>, <a href="https://profiles.wordpress.org/rmarks">Ryan Marks</a>, <a href="https://profiles.wordpress.org/rmccue">Ryan McCue</a>, <a href="https://profiles.wordpress.org/ohryan">Ryan Neudorf</a>, <a href="https://profiles.wordpress.org/welcher">Ryan Welcher</a>, <a href="https://profiles.wordpress.org/sagarjadhav">Sagar Jadhav</a>, <a href="https://profiles.wordpress.org/salcode">Sal Ferrarello</a>, <a href="https://profiles.wordpress.org/solarissmoke">Samir Shah</a>, <a href="https://profiles.wordpress.org/santagada">santagada</a>, <a href="https://profiles.wordpress.org/sc0ttkclark">Scott Kingsley Clark</a>, <a href="https://profiles.wordpress.org/coffee2code">Scott Reilly</a>, <a href="https://profiles.wordpress.org/wonderboymusic">Scott Taylor</a>, <a href="https://profiles.wordpress.org/scribu">scribu</a>, <a href="https://profiles.wordpress.org/scruffian">scruffian</a>, <a href="https://profiles.wordpress.org/seanchayes">Sean Hayes</a>, <a href="https://profiles.wordpress.org/sebastiantiede">Sebastian</a>, <a href="https://profiles.wordpress.org/sergeybiryukov">Sergey Biryukov</a>, <a href="https://profiles.wordpress.org/shooper">Shawn Hooper</a>, <a href="https://profiles.wordpress.org/designsimply">Sheri Bigelow</a>, <a href="https://profiles.wordpress.org/simonwheatley">Simon Wheatley</a>, <a href="https://profiles.wordpress.org/siobhan">Siobhan</a>, <a href="https://profiles.wordpress.org/metodiew">Stanko Metodiev</a>, <a href="https://profiles.wordpress.org/stephdau">Stephane Daury (stephdau)</a>, <a href="https://profiles.wordpress.org/netweb">Stephen Edgar</a>, <a href="https://profiles.wordpress.org/stevegrunwell">Steve Grunwell</a>, <a href="https://profiles.wordpress.org/stevenkword">Steven Word</a>, <a href="https://profiles.wordpress.org/stuartshields">stuartshields</a>, <a href="https://profiles.wordpress.org/sudar">Sudar</a>, <a href="https://profiles.wordpress.org/sunnyratilal">Sunny Ratilal</a>, <a href="https://profiles.wordpress.org/taka2">taka2</a>, <a href="https://profiles.wordpress.org/tharsheblows">tharsheblows</a>, <a href="https://profiles.wordpress.org/thorbrink">Thor Brink</a>, <a href="https://profiles.wordpress.org/creativeinfusion">Tim Smith</a>, <a href="https://profiles.wordpress.org/tlexcellent">tlexcellent</a>, <a href="https://profiles.wordpress.org/tmatsuur">tmatsuur</a>, <a href="https://profiles.wordpress.org/tobiasbg">TobiasBg</a>, <a href="https://profiles.wordpress.org/tomasm">Tomas Mackevicius</a>, <a href="https://profiles.wordpress.org/tomharrigan">TomHarrigan</a>, <a href="https://profiles.wordpress.org/toro_unit">Toro_Unit (Hiroshi Urabe)</a>, <a href="https://profiles.wordpress.org/toru">Toru Miki</a>, <a href="https://profiles.wordpress.org/liljimmi">Tracy (LilJimmi) Levesque</a>, <a href="https://profiles.wordpress.org/tryon">Tryon Eggleston</a>, <a href="https://profiles.wordpress.org/tywayne">Ty Carlson</a>, <a href="https://profiles.wordpress.org/desaiuditd">Udit Desai</a>, <a href="https://profiles.wordpress.org/vivekbhusal">vivekbhusal</a>, <a href="https://profiles.wordpress.org/westonruter">Weston Ruter</a>, <a href="https://profiles.wordpress.org/willnorris">Will Norris</a>, <a href="https://profiles.wordpress.org/willgladstone">willgladstone</a>, <a href="https://profiles.wordpress.org/earnjam">William Earnhardt</a>, <a href="https://profiles.wordpress.org/willstedt">willstedt</a>, <a href="https://profiles.wordpress.org/yoavf">Yoav Farhi</a>, <a href="https://profiles.wordpress.org/ysalame">Yuri Salame</a>, <a href="https://profiles.wordpress.org/oxymoron">Zach Wills</a>, <a href="https://profiles.wordpress.org/katzwebdesign">Zack Katz</a>, and <a href="https://profiles.wordpress.org/tollmanz">Zack Tollman</a>.\n<p> </p>\n<p>Special thanks go to <a href="http://siobhanmckeown.com/">Siobhan McKeown</a> for producing the release video, <a href="http://hugobaeta.com/">Hugo Baeta</a> for the design, and <a href="http://jacklenox.com/">Jack Lenox</a> for the voice-over.</p>\n<p>Finally, thanks to all of the contributors who provided subtitles for the release video, which at last count had been translated into 30 languages!</p>\n<p>If you want to follow along or help out, check out <a href="https://make.wordpress.org/">Make WordPress</a> and our <a href="https://make.wordpress.org/core/">core development blog</a>. Thanks for choosing WordPress. See you soon for version 4.4!</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:47:"https://wordpress.org/news/2015/08/billie/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:1;a:6:{s:4:"data";s:48:"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:48:"WordPress 4.2.4 Security and Maintenance Release";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:84:"https://wordpress.org/news/2015/08/wordpress-4-2-4-security-and-maintenance-release/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:93:"https://wordpress.org/news/2015/08/wordpress-4-2-4-security-and-maintenance-release/#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:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 04 Aug 2015 12:10: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:8:"category";a:3:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Security";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:2;a:5:{s:4:"data";s:3:"4.2";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3827";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:397:"WordPress 4.2.4 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. This release addresses six issues, including three cross-site scripting vulnerabilities and a potential SQL injection that could be used to compromise a site, which were discovered by Marc-Alexandre Montpas of Sucuri, Helen Hou-Sandí […]";s: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:"Samuel Sidler";s: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:2011:"<p>WordPress 4.2.4 is now available. This is a<strong> security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>This release addresses six issues, including three cross-site scripting vulnerabilities and a potential SQL injection that could be used to compromise a site, which were discovered by <a href="https://sucuri.net/">Marc-Alexandre Montpas</a> of Sucuri, <a href="http://helenhousandi.com/">Helen Hou-Sandí</a> of the WordPress security team, <a href="http://www.checkpoint.com/">Netanel Rubin</a> of Check Point, and <a href="https://hackerone.com/reactors08">Ivan Grigorov</a>. It also includes a fix for a potential timing side-channel attack, discovered by <a href="http://www.scrutinizer-ci.com/">Johannes Schmitt</a> of Scrutinizer, and prevents an attacker from locking a post from being edited, discovered by <a href="https://www.linkedin.com/in/symbiansymoh">Mohamed A. Baset</a>.</p>\n<p>Our thanks to those who have practiced <a href="https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/">responsible disclosure</a> of security issues.</p>\n<p>WordPress 4.2.4 also fixes four bugs. For more information, see the <a href="https://codex.wordpress.org/Version_4.2.4">release notes</a> or consult the <a href="https://core.trac.wordpress.org/log/branches/4.2?rev=33573&stop_rev=33396">list of changes</a>.</p>\n<p><a href="https://wordpress.org/download/">Download WordPress 4.2.4</a> or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.2.4.</p>\n<p><em>Already testing WordPress 4.3? The second release candidate is now available (<a href="https://wordpress.org/wordpress-4.3-RC2.zip">zip</a>) and it contains these fixes. For more on 4.3, see <a href="https://wordpress.org/news/2015/07/wordpress-4-3-release-candidate/">the RC 1 announcement post</a>.</em></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:89:"https://wordpress.org/news/2015/08/wordpress-4-2-4-security-and-maintenance-release/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:2;a:6:{s:4:"data";s:48:"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:31:"WordPress 4.3 Release Candidate";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:67:"https://wordpress.org/news/2015/07/wordpress-4-3-release-candidate/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:76:"https://wordpress.org/news/2015/07/wordpress-4-3-release-candidate/#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:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 29 Jul 2015 23:50:43 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:3:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:2;a:5:{s:4:"data";s:3:"4.3";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3817";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:340:"The release candidate for WordPress 4.3 is now available. We’ve made more than 100 changes since releasing Beta 4 a week ago. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.3 on Tuesday, August 18, but we […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:19:"Konstantin Obenland";s: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:2256:"<p>The release candidate for WordPress 4.3 is now available.</p>\n<p>We’ve made more than <a href="https://core.trac.wordpress.org/log/trunk?action=stop_on_copy&mode=stop_on_copy&rev=33512&stop_rev=33372&limit=120">100 changes</a> since releasing Beta 4 a week ago. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.3 on <strong>Tuesday, August 18</strong>, but we need your help to get there.</p>\n<p>If you haven’t tested 4.3 yet, now is the time!</p>\n<p><strong>Think you’ve found a bug?</strong> Please post to the <a href="https://wordpress.org/support/forum/alphabeta/">Alpha/Beta support forum</a>. If any known issues come up, you’ll be able to <a href="https://core.trac.wordpress.org/report/5">find them here</a>.</p>\n<p>To test WordPress 4.3 RC1, you can use the <a href="https://wordpress.org/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin or you can <a href="https://wordpress.org/wordpress-4.3-RC1.zip">download the release candidate here</a> (zip).</p>\n<p>For more information about what’s new in version 4.3, check out the <a href="https://wordpress.org/news/2015/07/wordpress-4-3-beta-1/">Beta 1</a>, <a href="https://wordpress.org/news/2015/07/wordpress-4-3-beta-2/">Beta 2</a>, <a href="https://wordpress.org/news/2015/07/wordpress-4-3-beta-3/">Beta 3</a>, and <a href="https://wordpress.org/news/2015/07/wordpress-4-3-beta-4/">Beta 4</a> blog posts.</p>\n<p><strong>Developers</strong>, please test your plugins and themes against WordPress 4.3 and update your plugin’s <em>Tested up to</em> version in the readme to 4.3 before next week. If you find compatibility problems, we never want to break things, so please be sure to post to the support forums so we can figure those out before the final release.</p>\n<p>Be sure to <a href="https://make.wordpress.org/core/">follow along the core development blog</a>, where we’ll continue to post <a href="https://make.wordpress.org/core/tag/dev-notes+4-3/">notes for developers</a> for 4.3.</p>\n<p><em>Drei Monate Arbeit</em><br />\n<em>Endlich das Ziel vor Augen</em><br />\n<em>Bald hab ich Urlaub!</em></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:72:"https://wordpress.org/news/2015/07/wordpress-4-3-release-candidate/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:3;a:6:{s:4:"data";s:48:"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:48:"WordPress 4.2.3 Security and Maintenance Release";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:51:"https://wordpress.org/news/2015/07/wordpress-4-2-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:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:60:"https://wordpress.org/news/2015/07/wordpress-4-2-3/#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:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 23 Jul 2015 11:21:10 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:3:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Security";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:2;a:5:{s:4:"data";s:3:"4.2";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3807";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:380:"WordPress 4.2.3 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. WordPress versions 4.2.2 and earlier are affected by a cross-site scripting vulnerability, which could allow users with the Contributor or Author role to compromise a site. This was initially reported by Jon Cave and […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"Gary Pendergast";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:2708:"<p>WordPress 4.2.3 is now available. This is a<strong> security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>WordPress versions 4.2.2 and earlier are affected by a cross-site scripting vulnerability, which could allow users with the Contributor or Author role to compromise a site. This was initially reported by <a href="https://profiles.wordpress.org/duck_">Jon Cave</a> and fixed by <a href="http://www.miqrogroove.com/">Robert Chapin</a>, both of the WordPress security team, and later reported by <a href="http://klikki.fi/">Jouko Pynnönen</a>.</p>\n<p>We also fixed an issue where it was possible for a user with Subscriber permissions to create a draft through Quick Draft. Reported by Netanel Rubin from <a href="https://www.checkpoint.com/">Check Point Software Technologies</a>.</p>\n<p>Our thanks to those who have practiced <a href="https://make.wordpress.org/core/handbook/reporting-security-vulnerabilities/">responsible disclosure</a> of security issues.</p>\n<p>WordPress 4.2.3 also contains fixes for 20 bugs from 4.2. For more information, see the <a href="https://codex.wordpress.org/Version_4.2.3">release notes</a> or consult the <a href="https://core.trac.wordpress.org/log/branches/4.2?rev=33382&stop_rev=32430">list of changes</a>.</p>\n<p><a href="https://wordpress.org/download/">Download WordPress 4.2.3</a> or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.2.3.</p>\n<p>Thanks to everyone who contributed to 4.2.3:</p>\n<p><a href="https://profiles.wordpress.org/jorbin">Aaron Jorbin</a>, <a href="https://profiles.wordpress.org/nacin">Andrew Nacin</a>, <a href="https://profiles.wordpress.org/azaozz">Andrew Ozz</a>, <a href="https://profiles.wordpress.org/boonebgorges">Boone Gorges</a>, <a href="https://profiles.wordpress.org/chriscct7">Chris Christoff</a>, <a href="https://profiles.wordpress.org/dd32">Dion Hulse</a>, <a href="https://profiles.wordpress.org/ocean90">Dominik Schilling</a>, <a href="https://profiles.wordpress.org/iseulde">Ella Iseulde Van Dorpe</a>, <a href="https://profiles.wordpress.org/gabrielperezs">Gabriel Pérez</a>, <a href="https://profiles.wordpress.org/pento">Gary Pendergast</a>, <a href="https://profiles.wordpress.org/mdawaffe">Mike Adams</a>, <a href="https://profiles.wordpress.org/miqrogroove">Robert Chapin</a>, <a href="https://profiles.wordpress.org/nbachiyski">Nikolay Bachiyski</a>, <a href="https://profiles.wordpress.org/magicroundabout">Ross Wintle</a>, and <a href="https://profiles.wordpress.org/wonderboymusic">Scott Taylor</a>.</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:56:"https://wordpress.org/news/2015/07/wordpress-4-2-3/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:4;a:6:{s:4:"data";s:48:"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:20:"WordPress 4.3 Beta 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:56:"https://wordpress.org/news/2015/07/wordpress-4-3-beta-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:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:65:"https://wordpress.org/news/2015/07/wordpress-4-3-beta-4/#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:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 22 Jul 2015 21:55:25 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:3:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:2;a:5:{s:4:"data";s:3:"4.3";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3796";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:337:"WordPress 4.3 Beta 4 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.3, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:19:"Konstantin Obenland";s: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:2212:"<p>WordPress 4.3 Beta 4 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.3, try the <a href="https://wordpress.org/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href="https://wordpress.org/wordpress-4.3-beta4.zip">download the beta here</a> (zip).</p>\n<p>For more information about what’s new in version 4.3, check out the <a href="https://wordpress.org/news/2015/07/wordpress-4-3-beta-1/">Beta 1</a>, <a href="https://wordpress.org/news/2015/07/wordpress-4-3-beta-2/">Beta 2</a>, and <a href="https://wordpress.org/news/2015/07/wordpress-4-3-beta-3/">Beta 3</a> blog posts. Some of the changes in Beta 4 include:</p>\n<ul>\n<li><span class="s1">Fixed several bugs and broken flows in the </span><span class="s1"><strong>publish box </strong></span><span class="s1">in the edit screen.</span></li>\n<li>Addressed a number of edge cases for word count in the <strong>editor</strong>.</li>\n<li><span class="s1"><strong>Site icons</strong> </span><span class="s1">can now be previewed within the customizer. The feature has been removed from general settings.</span></li>\n<li><strong>Various bug fixes</strong>. We’ve made <a href="https://core.trac.wordpress.org/log/trunk?action=stop_on_copy&mode=stop_on_copy&rev=33369&stop_rev=33289">more than 60 changes</a> in the last week.</li>\n</ul>\n<p>If you think you’ve found a bug, you can post to the <a href="https://wordpress.org/support/forum/alphabeta">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a bug report, <a href="https://core.trac.wordpress.org/">file one on the WordPress Trac</a>. There, you can also find <a href="https://core.trac.wordpress.org/tickets/major">a list of known bugs</a> and <a href="https://core.trac.wordpress.org/query?status=closed&group=component&milestone=4.3">everything we’ve fixed</a>.</p>\n<p><em>Few Tickets Remain</em><br />\n<em>Edge Cases Disappearing</em><br />\n<em>You Must Test Today</em></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:61:"https://wordpress.org/news/2015/07/wordpress-4-3-beta-4/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:5;a:6:{s:4:"data";s:48:"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:20:"WordPress 4.3 Beta 3";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:56:"https://wordpress.org/news/2015/07/wordpress-4-3-beta-3/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:65:"https://wordpress.org/news/2015/07/wordpress-4-3-beta-3/#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:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 15 Jul 2015 21:49:35 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:3:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:2;a:5:{s:4:"data";s:3:"4.3";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3787";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:337:"WordPress 4.3 Beta 3 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.3, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:19:"Konstantin Obenland";s: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:2529:"<p>WordPress 4.3 Beta 3 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.3, try the <a href="https://wordpress.org/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href="https://wordpress.org/wordpress-4.3-beta3.zip">download the beta here</a> (zip).</p>\n<p>For more information about what’s new in version 4.3, check out the <a href="https://wordpress.org/news/2015/07/wordpress-4-3-beta-1/">Beta 1</a> and <a href="https://wordpress.org/news/2015/07/wordpress-4-3-beta-2/">Beta 2</a> blog posts. Some of the changes in Beta 3 include:</p>\n<ul>\n<li>Performance improvements for <strong>Menus in the Customizer</strong>, as well as bug fixes and visual enhancements.</li>\n<li>Added <strong>Site Icon</strong> to the Customizer. The feature is now complete and requires lots of testing. Please help us ensure the site icon feature works well in both Settings and the Customizer.</li>\n<li>The improvements to <strong>Passwords</strong> have been added to the installation flow. When installing and setting up WordPress, a strong password will be suggested to site administrators. Please test and let us know if you encounter issues.</li>\n<li>Improved <strong>accessibility of comments and media list tables</strong>. If you use a screen reader, please let us know if you encounter any issues.</li>\n<li>Lots and lots of code documentation improvements.</li>\n<li><strong>Various other bug fixes</strong>. We’ve made <a href="https://core.trac.wordpress.org/log?action=stop_on_copy&mode=stop_on_copy&rev=33286&stop_rev=33141&limit=150">more than 140 changes</a> in the last week.</li>\n</ul>\n<p>If you think you’ve found a bug, you can post to the <a href="https://wordpress.org/support/forum/alphabeta">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a bug report, <a href="https://core.trac.wordpress.org/">file one on the WordPress Trac</a>. There, you can also find <a href="https://core.trac.wordpress.org/tickets/major">a list of known bugs</a> and <a href="https://core.trac.wordpress.org/query?status=closed&group=component&milestone=4.3">everything we’ve fixed</a>.</p>\n<p><em>Want to test new things?</em><br />\n<em>Wonder how four three shapes up?</em><br />\n<em>Answer: beta three</em></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:61:"https://wordpress.org/news/2015/07/wordpress-4-3-beta-3/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:6;a:6:{s:4:"data";s:48:"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:20:"WordPress 4.3 Beta 2";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:56:"https://wordpress.org/news/2015/07/wordpress-4-3-beta-2/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:65:"https://wordpress.org/news/2015/07/wordpress-4-3-beta-2/#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:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 08 Jul 2015 22:04: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:3:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:2;a:5:{s:4:"data";s:3:"4.3";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3769";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:337:"WordPress 4.3 Beta 2 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.3, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:19:"Konstantin Obenland";s: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:2876:"<p>WordPress 4.3 Beta 2 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.3, try the <a href="https://wordpress.org/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href="https://wordpress.org/wordpress-4.3-beta2.zip">download the beta here</a> (zip).</p>\n<p>For more information about what’s new in version 4.3, <a href="https://wordpress.org/news/2015/07/wordpress-4-3-beta-1/">check out the Beta 1 blog post</a>. Some of the changes in Beta 2 include:</p>\n<ul>\n<li>Fixed an issue in beta 1 where an alert appeared when saving or publishing a new post/page for the first time.</li>\n<li><strong><strong>Customizer</strong></strong> improvements including enhanced accessibility, smoother menu creation and location assignment, and the ability to handle nameless menus. Please help us test menus in the Customizer to fix any remaining edge cases!</li>\n<li>More robust<strong> list tables</strong> with full content support on small screens and a fallback for the primary column for custom list tables. We’d love to know how these list tables, such as All Posts and Comments, work for you now on small screen devices.</li>\n<li>The <strong>Site Icon</strong> feature has been improved so that cropping is skipped if the image is the exact size (512px square) and the media modal now suggests a minimum icon size. Please let us know how the flow feels and if you encounter any glitches!</li>\n<li>The <strong>toolbar</strong> now has a direct link to the customizer, along with quick access to themes, widgets, and menus in the dashboard.</li>\n<li>We enabled <strong>utf8mb4 for MySQL</strong> extension users, which was previously unintentionally limited to MySQLi users. Please let us know if you run into any issues.</li>\n<li><strong>Various bug fixes</strong>. We’ve made <a href="https://core.trac.wordpress.org/log?action=stop_on_copy&mode=stop_on_copy&rev=33138&stop_rev=33046">almost 100 changes</a> in the last week.</li>\n</ul>\n<p>If you think you’ve found a bug, you can post to the <a href="https://wordpress.org/support/forum/alphabeta">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a bug report, <a href="https://core.trac.wordpress.org/">file one on the WordPress Trac</a>. There, you can also find <a href="https://core.trac.wordpress.org/tickets/major">a list of known bugs</a> and <a href="https://core.trac.wordpress.org/query?status=closed&milestone=4.3&group=component&order=priority">everything we’ve fixed</a>.</p>\n<p><em>Edges polished up</em><br />\n<em>Features meliorated</em><br />\n<em>Beta Two: go test!</em></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:61:"https://wordpress.org/news/2015/07/wordpress-4-3-beta-2/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:7;a:6:{s:4:"data";s:48:"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:16:"WordCamps Update";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:52:"https://wordpress.org/news/2015/07/wordcamps-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:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:61:"https://wordpress.org/news/2015/07/wordcamps-update/#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:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 08 Jul 2015 16:13:45 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:3:{i:0;a:5:{s:4:"data";s:9:"Community";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:6:"Events";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:2;a:5:{s:4:"data";s:8:"WordCamp";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3758";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:311:"Last week saw the halfway point for 2015, yay! This seems like a good time to update you on WordCamp happenings in the first half of this year. There have been 39 WordCamps in 2015 so far, with events organized in 17 different countries and on 5 continents. More than 14,000 people have registered for […]";s: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:16:"Andrea Middleton";s: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:9419:"<p>Last week saw the halfway point for 2015, yay! This seems like a good time to update you on WordCamp happenings in the first half of this year.</p>\n<p>There have been <a href="https://central.wordcamp.org/schedule/past-wordcamps/">39 WordCamps in 2015</a> so far, with events organized in 17 different countries and on 5 continents. More than 14,000 people have registered for WordCamp tickets so far this year, isn’t that amazing?</p>\n<p><a href="https://europe.wordcamp.org/2015/">WordCamp Europe</a> was held in Seville, Spain just a few weeks ago, with close to 1,000 registered participants and over 500 live stream participants. You can watch <a href="http://wordpress.tv/2015/07/04/matt-mullenweg-keynote-qanda-wordcamp-europe-2015/">Matt Mullenweg’s keynote Q&A</a> session from WordCamp Europe right now on WordPress.tv.</p>\n<p>WordPress.tv has published 537 videos so far in 2015 from WordCamps around the world. Some of the more popular 2015 WordCamp talks on WordPress.tv include <a href="http://wordpress.tv/2015/03/13/tammie-lister-theme-dont-be-my-everything/">Tammie Lister: Theme, Don’t Be My Everything </a>from WordCamp Maui, <a href="http://wordpress.tv/2015/04/17/jenny-munn-seo-for-2015-whats-in-whats-out-and-how-to-be-in-it-to-win-it-for-good/">Jenny Munn: SEO for 2015 – What’s In, What’s Out and How to Be In It to Win It (For Good)</a> from WordCamp Atlanta, <a href="http://wordpress.tv/2015/02/27/fabrice-ducarme-les-constructeurs-de-page-pour-wordpress/">Fabrice Ducarme: Les Constructeurs de Page pour WordPress</a> from WordCamp Paris, <a href="http://wordpress.tv/2015/06/02/ben-furfie-how-to-value-price-websites/">Ben Furfie: How to Value Price Websites</a> from WordCamp London, and <a href="http://wordpress.tv/2015/06/09/morten-rand-hendriksen-building-themes-from-scratch-using-underscores-_s/">Morten Rand-Hendriksen: Building Themes From Scratch Using Underscores (_S)</a> from WordCamp Seattle. Check them out!</p>\n<h3>Lots of great WordCamps are still to come</h3>\n<p><a href="http://ma.tt/2015/06/wordcamp-us-survey/">WordCamp US</a> is currently in pre-planning, in the process of deciding on a host city. The following cities have proposed themselves as a great place to host the first WordCamp US: Chattanooga, Chicago, Detroit, Orlando, Philadelphia, and Phoenix. It’s possible the first WordCamp US will be held in 2016 so we can organize the best first WordCamp US imaginable.</p>\n<p>At this time, there are 28 <a href="https://central.wordcamp.org/schedule/">WordCamps</a>, in 9 different countries, that have announced their dates for the rest of 2015. Twelve of these have tickets on sale:</p>\n<ul>\n<li><a href="https://columbus.wordcamp.org/2015/">WordCamp Columbus</a>, Columbus, Ohio: July 17-18</li>\n<li><a href="https://scranton.wordcamp.org/2015/">WordCamp Scranton</a>, Scranton, Pennsylvania: July 18</li>\n<li><a href="https://boston.wordcamp.org/2015/">WordCamp Boston</a>, Boston, Massachussetts: July 18-19</li>\n<li><a href="https://milwaukee.wordcamp.org/2015/">WordCamp Milwaukee</a>, Milwaukee, Wisconsin: July 24-26</li>\n<li><a href="https://asheville.wordcamp.org/2015/">WordCamp Asheville</a>, Asheville, North Carolina: July 24-26</li>\n<li><a href="https://kansai.wordcamp.org/2015/">WordCamp Kansai</a>, Kansai, Japan: July 25-26</li>\n<li><a href="https://fayetteville.wordcamp.org/2015/">WordCamp Fayetteville</a>, Fayetteville, Arkansas: July 31-August 2</li>\n<li><a href="https://brighton.buddycamp.org/2015/">BuddyCamp Brighton</a>,
Brighton, UK: August 8</li>\n<li><a href="https://vancouver.wordcamp.org/2015/">WordCamp Vancouver, BC,</a> Vancouver, BC, Canada: August 15-16</li>\n<li><a href="https://russia.wordcamp.org/2015/">WordCamp Russia</a>, Moscow, Russia: August 15</li>\n<li><a href="https://norrkoping.wordcamp.org/2015/">WordCamp Norrköping</a>, Norrköping, Sweden: August 28-29</li>\n<li><a href="https://croatia.wordcamp.org/2015/">WordCamp Croatia</a>, Rijeka, Croatia: September 5-6</li>\n<li><a href="https://krakow.wordcamp.org/2015/">WordCamp Krakow,</a>
Krakow, Poland: September 12-13</li>\n<li><a href="https://nyc.wordcamp.org/2015/">WordCamp NYC</a>, New York City, New York: October 30-November 1</li>\n</ul>\n<p>The other 16 events don’t have tickets on sale yet, but they’ve set their dates! Subscribe to the sites to find out when registration opens:</p>\n<ul>\n<li><a href="https://pune.wordcamp.org/2015/">WordCamp Pune</a>, Pune, India: September 6</li>\n<li><a href="https://capetown.wordcamp.org/2015/">WordCamp Cape Town</a>, Cape Town, South Africa: September 10-11</li>\n<li><a href="https://baltimore.wordcamp.org/2015/">WordCamp Baltimore</a>, Baltimore, Maryland: September 12</li>\n<li><a href="https://slc.wordcamp.org/2015/">WordCamp Salt Lake City</a>, Salt Lake City, Utah: September 12</li>\n<li><a href="https://lithuania.wordcamp.org/2015/">WordCamp Lithuania</a>, Vilnius, Lithuania: September 19</li>\n<li><a href="https://vegas.wordcamp.org/2015">WordCamp Vegas</a>, Las Vegas, Nevada: September 19-20</li>\n<li><a href="https://switzerland.wordcamp.org/2015/">WordCamp Switzerland</a>, Zurich, Switzerland: September 19-20</li>\n<li><a href="https://tampa.wordcamp.org/2015/">WordCamp Tampa</a>, Tampa, Florida: September 25-27</li>\n<li><a href="https://rhodeisland.wordcamp.org/2015/">WordCamp Rhode Island</a>,
Providence, Rhode Island: September 25-26</li>\n<li><a href="https://la.wordcamp.org/2015/">WordCamp Los Angeles</a>, Los Angeles, California: September 26-27</li>\n<li><a href="https://denmark.wordcamp.org/2015/">WordCamp Denmark,</a>
Copenhagen, Denmark: October 3-4</li>\n<li><a href="https://toronto.wordcamp.org/2015">WordCamp Toronto</a>, Toronto, Ontario, Canada: October 3-4</li>\n<li><a href="https://hamptonroads.wordcamp.org/2015/">WordCamp Hampton Roads, </a>
Virginia Beach, VA, USA: October 17</li>\n<li><a href="https://annarbor.wordcamp.org/2015">WordCamp Ann Arbor</a>, Ann Arbor, Michigan: October 24</li>\n<li><a href="https://portland.wordcamp.org/2015/">WordCamp Portland</a>,
Portland, OR: October 24-25</li>\n</ul>\n<p>On top of all those exciting community events, there are 26 WordCamps in pre-planning as they look for the right event space. If you have a great idea for a free or cheap WordCamp venue in any of the below locations, get in touch with the organizers through the WordCamp sites:</p>\n<ul>\n<li><a href="https://dfw.wordcamp.org/2015/">WordCamp DFW</a>:
Dallas/Fort Worth, Texas</li>\n<li><a href="https://riodejaneiro.wordcamp.org/2015/">WordCamp Rio</a>: Rio de Janeiro, Brazil</li>\n<li><a href="https://saratoga.wordcamp.org/2015/">WordCamp Saratoga</a>:
Saratoga Springs, New York</li>\n<li><a href="https://sofia.wordcamp.org/2015">WordCamp Sofia</a>:
Sofia, Bulgaria</li>\n<li><a href="https://austin.wordcamp.org/2015/">WordCamp Austin</a>:
Austin, TX</li>\n<li><a href="https://ottawa.wordcamp.org/2015/">WordCamp Ottawa</a>:
Ottawa, Canada</li>\n<li><a href="https://charleston.wordcamp.org/2015/">WordCamp Charleston</a>:
Charleston, South Carolina</li>\n<li><a href="https://chicago.wordcamp.org/2015/">WordCamp Chicago</a>:
Chicago, Illinois</li>\n<li><a href="https://albuquerque.wordcamp.org/2015/">WordCamp Albuquerque</a>:
Albuquerque, New Mexico</li>\n<li><a href="https://prague.wordcamp.org/2015/">WordCamp Prague</a>:
Prague, Czech Republic</li>\n<li><a href="https://seoul.wordcamp.org/2014/">WordCamp Seoul: </a>Seoul, South Korea</li>\n<li><a href="https://louisville.wordcamp.org/2014/">WordCamp Louisville</a>: Louisville, Kentucky</li>\n<li><a href="https://omaha.wordcamp.org/2015/">WordCamp Omaha</a>:
Omaha, Nebraska</li>\n<li><a href="https://grandrapids.wordcamp.org/2015/">WordCamp Grand Rapids</a>:
Grand Rapids, Michigan</li>\n<li><a href="https://easttroy.wordcamp.org/2015/">WordCamp East Troy</a>:
East Troy, Wisconsin</li>\n<li><a href="https://palmademallorca.wordcamp.org/2015">WordCamp Mallorca</a>: Palma de Mallorca, Spain</li>\n<li><a href="https://edinburgh.wordcamp.org/2015/">WordCamp Edinburgh</a>:
Edinburgh, United Kingdom</li>\n<li><a href="https://orlando.wordcamp.org/2015/">WordCamp Orlando</a>:
Orlando, Florida</li>\n<li><a href="https://mexico.wordcamp.org/2015/">WordCamp Mexico City</a>:
Mexico City, Mexico</li>\n<li><a href="https://netherlands.wordcamp.org/2015/">WordCamp Netherlands</a>:
Utrecht, Netherlands</li>\n<li><a href="https://phoenix.wordcamp.org/2016/">WordCamp Phoenix</a>:
Phoenix, Arizona</li>\n<li><a href="https://saopaulo.wordcamp.org/2015/">WordCamp São Paulo</a>:
São Paulo, Brazil</li>\n<li><a href="https://manchester.wordcamp.org/2015/">WordCamp Manchester</a>:
Manchester, United Kingdom</li>\n<li><a href="https://tokyo.wordcamp.org/2015/">WordCamp Tokyo</a>:
Tokyo, Japan</li>\n<li><a href="https://lima.wordcamp.org/2015/">WordCamp Lima</a>:
Lima, Peru</li>\n<li><a href="https://seattle.wordcamp.org/2015-beginner/">WordCamp Seattle: Beginner</a>: Seattle, WA</li>\n</ul>\n<p>Don’t see your city on the list, but yearning for a local WordCamp? WordCamps are organized by local volunteers from the WordPress community, and we have a whole team of people to support new organizers setting up a first-time WordCamp. If you want to bring WordCamp to town, check out how you can <a href="https://central.wordcamp.org/become-an-organizer/">become a WordCamp organizer</a>!</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:57:"https://wordpress.org/news/2015/07/wordcamps-update/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:8;a:6:{s:4:"data";s:48:"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:20:"WordPress 4.3 Beta 1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:56:"https://wordpress.org/news/2015/07/wordpress-4-3-beta-1/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:65:"https://wordpress.org/news/2015/07/wordpress-4-3-beta-1/#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:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 02 Jul 2015 01:30:22 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:3:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:2;a:5:{s:4:"data";s:3:"4.3";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3738";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:329:"WordPress 4.3 Beta 1 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.3, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:19:"Konstantin Obenland";s: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:4352:"<p>WordPress 4.3 Beta 1 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.3, try the <a href="https://wordpress.org/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href="https://wordpress.org/wordpress-4.3-beta1.zip">download the beta here</a> (zip).</p>\n<p>4.3 is due out next month, but to get there, we need your help testing what we’ve been working on:</p>\n<ul>\n<li><strong>Menus</strong> can now be managed with the <strong>Customizer</strong>, which allows you to live preview changes you’re making without changing your site for visitors until you’re ready. We’re especially interested to know if this helps streamline the process of setting up your site (<a href="https://core.trac.wordpress.org/ticket/32576">#32576</a>).</li>\n<li>Take control of another piece of your site with the <strong>Site Icon</strong> feature. You can now manage your site’s favicon and app icon from the admin area (<a href="https://core.trac.wordpress.org/ticket/16434">#16434</a>).</li>\n<li>We put a lot of work into <strong>Better Passwords</strong> throughout WordPress. Now, WordPress will limit the life time of password resets, no longer send passwords via email, and generate and suggest secure passwords for you. Try it out and let us know what you think! (<a href="https://core.trac.wordpress.org/ticket/32589">#32589</a>)</li>\n<li>We’ve also added <strong>Editor Improvements</strong>. Certain text patterns are automatically transformed as you type, including <code>*</code> and <code>-</code> transforming into unordered lists, <code>1.</code> and <code>1)</code> for ordered lists, <code>></code> for blockquotes and two to six number signs (<code>#</code>) for headings (<a href="https://core.trac.wordpress.org/ticket/31441">#31441</a>).</li>\n<li>We’ve improved the <strong>list view</strong> across the admin dashboard. Now, when you view your posts and pages <strong>on small screen devices</strong>, columns are not truncated and can be toggled into view (<a href="https://core.trac.wordpress.org/ticket/32395">#32395</a>).</li>\n</ul>\n<p><strong>Developers</strong>: There have been a few of changes for you to test as well, including:</p>\n<ul>\n<li><strong>Taxonomy Roadmap:</strong> Terms shared across multiple taxonomies will <a href="https://make.wordpress.org/core/2015/06/09/eliminating-shared-taxonomy-terms-in-wordpress-4-3/">now be split</a> into separate terms on update to 4.3. Please let us know if you hit any snags (<a href="https://core.trac.wordpress.org/ticket/30261">#30261</a>).</li>\n<li>Added <code>singular.php</code> to the template hierarchy as a fallback for <code>single.php</code> and <code>page.php</code>. (<a href="https://core.trac.wordpress.org/ticket/22314">#22314</a>).</li>\n<li>The old Distraction Free Writing code was removed (<a href="https://core.trac.wordpress.org/ticket/30949">#30949</a>).</li>\n<li>List tables now can (and often should) have a primary column defined. We’re working on a fallback for existing custom list tables but right now they likely have some breakage in the aforementioned responsive view (<a href="https://core.trac.wordpress.org/ticket/25408">#25408</a>).</li>\n</ul>\n<p>If you want a more in-depth view of what changes have made it into 4.3, <a href="https://make.wordpress.org/core/tag/4-3/">check out all 4.3-tagged posts</a> on the main development blog.</p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href="https://wordpress.org/support/forum/alphabeta">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href="https://make.wordpress.org/core/reports/">file one on the WordPress Trac</a>. There, you can also find <a href="https://core.trac.wordpress.org/tickets/major">a list of known bugs</a> and <a href="https://core.trac.wordpress.org/query?status=closed&group=component&milestone=4.3">everything we’ve fixed</a> so far.</p>\n<p>Happy testing!</p>\n<p><em>Site icons for all</em><br />\n<em>Live preview menu changes</em><br />\n<em>Four three beta now</em></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:61:"https://wordpress.org/news/2015/07/wordpress-4-3-beta-1/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:9;a:6:{s:4:"data";s:48:"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:48:"WordPress 4.2.2 Security and Maintenance Release";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:51:"https://wordpress.org/news/2015/05/wordpress-4-2-2/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:60:"https://wordpress.org/news/2015/05/wordpress-4-2-2/#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:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 07 May 2015 02:24:10 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:3:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Security";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:2;a:5:{s:4:"data";s:3:"4.2";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3718";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:355:"WordPress 4.2.2 is now available. This is a critical security release for all previous versions and we strongly encourage you to update your sites immediately. Version 4.2.2 addresses two security issues: The Genericons icon font package, which is used in a number of popular themes and plugins, contained an HTML file vulnerable to a cross-site […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Samuel Sidler";s: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:3213:"<p>WordPress 4.2.2 is now available. This is a <strong>critical security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>Version 4.2.2 addresses two security issues:</p>\n<ul>\n<li>The Genericons icon font package, which is used in a number of popular themes and plugins, contained an HTML file vulnerable to a cross-site scripting attack. All affected themes and plugins hosted on <a href="https://wordpress.org/">WordPress.org</a> (including the Twenty Fifteen default theme) have been updated today by the WordPress security team to address this issue by removing this nonessential file. To help protect other Genericons usage, WordPress 4.2.2 proactively scans the wp-content directory for this HTML file and removes it. Reported by Robert Abela of <a href="http://netsparker.com">Netsparker</a>.</li>\n<li>WordPress versions 4.2 and earlier are affected by a <a href="https://wordpress.org/news/2015/04/wordpress-4-2-1/">critical cross-site scripting vulnerability</a>, which could enable anonymous users to compromise a site. WordPress 4.2.2 includes a comprehensive fix for this issue. Reported separately by Rice Adu and Tong Shi from Baidu[X-team].</li>\n</ul>\n<p>The release also includes hardening for a potential cross-site scripting vulnerability when using the visual editor. This issue was reported by Mahadev Subedi.</p>\n<p>Our thanks to those who have practiced <a href="https://make.wordpress.org/core/handbook/reporting-security-vulnerabilities/">responsible disclosure</a> of security issues.</p>\n<p>WordPress 4.2.2 also contains fixes for 13 bugs from 4.2. For more information, see the <a href="https://codex.wordpress.org/Version_4.2.2">release notes</a> or consult the <a href="https://core.trac.wordpress.org/log/branches/4.2?rev=32418&stop_rev=32324">list of changes</a>.</p>\n<p><a href="https://wordpress.org/download/">Download WordPress 4.2.2</a> or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.2.2.</p>\n<p>Thanks to everyone who contributed to 4.2.2:</p>\n<p><a href="https://profiles.wordpress.org/jorbin">Aaron Jorbin</a>, <a href="https://profiles.wordpress.org/azaozz">Andrew Ozz</a>, <a href="https://profiles.wordpress.org/nacin">Andrew Nacin</a>, <a href="https://profiles.wordpress.org/boonebgorges">Boone Gorges</a>, <a href="https://profiles.wordpress.org/dd32">Dion Hulse</a>, <a href="https://profiles.wordpress.org/iseulde">Ella Iseulde Van Dorpe</a>, <a href="https://profiles.wordpress.org/pento">Gary Pendergast</a>, <a href="https://profiles.wordpress.org/hnle">Hinaloe</a>, <a href="https://profiles.wordpress.org/jeremyfelt">Jeremy Felt</a>, <a href="https://profiles.wordpress.org/johnjamesjacoby">John James Jacoby</a>, <a href="https://profiles.wordpress.org/kovshenin">Konstantin Kovshenin</a>, <a href="https://profiles.wordpress.org/mdawaffe">Mike Adams</a>, <a href="https://profiles.wordpress.org/nbachiyski">Nikolay Bachiyski</a>, <a href="https://profiles.wordpress.org/taka2">taka2</a>, and <a href="https://profiles.wordpress.org/willstedt">willstedt</a>.</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:56:"https://wordpress.org/news/2015/05/wordpress-4-2-2/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:3:{s:4:"href";s:32:"https://wordpress.org/news/feed/";s:3:"rel";s:4:"self";s:4:"type";s:19:"application/rss+xml";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:44:"http://purl.org/rss/1.0/modules/syndication/";a:2:{s:12:"updatePeriod";a:1:{i:0;a:5:{s:4:"data";s:6:"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:1:"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";a:9:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Thu, 10 Sep 2015 04:46:24 GMT";s:12:"content-type";s:34:"application/rss+xml; charset=UTF-8";s:10:"connection";s:5:"close";s:25:"strict-transport-security";s:11:"max-age=360";s:10:"x-pingback";s:37:"https://wordpress.org/news/xmlrpc.php";s:13:"last-modified";s:29:"Wed, 19 Aug 2015 13:10:24 GMT";s:15:"x-frame-options";s:10:"SAMEORIGIN";s:4:"x-nc";s:11:"HIT lax 250";}s:5:"build";s:14:"20150903044347";}', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(700, '_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1441903588', 'no'),
(701, '_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1441860388', 'no'),
(702, '_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9', '1441903591', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(703, '_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:94:"WPTavern: A Conceptual WordPress Plugin by Stephen Cronin That Makes Comment Moderation Easier";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=48149";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:104:"http://wptavern.com/a-conceptual-wordpress-plugin-by-stephen-cronin-that-makes-comment-moderation-easier";s: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:2409:"<p>Moderating replies to comments in the backend of WordPress is tough. For example, WordPress 4.3 displays the reply and who it’s in response too, but doesn’t show the text of the parent comment.</p>\n<p>You can’t see the parent comment unless you open the author link in a new browser tab. This is not an optimal user experience and makes it more difficult to determine if the reply is from a spammer.</p>\n<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/09/WordPress43CommentContent.png"><img class="size-full wp-image-48150" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/09/WordPress43CommentContent.png?resize=851%2C161" alt="WordPress 4.3 Comment Content Area" /></a>WordPress 4.3 Comment Content Area\n<p><a href="https://wordpress.org/plugins/show-parent-comment/">Show Parent Comment</a> by Stephen Cronin, founder of <a href="http://scratch99.com/">Scratch99 Design</a>, is a potential solution to the problem. Simply activate and browse to the comment section of the WordPress backend.</p>\n<p>Show Parent Comment displays the text of the parent comment inside the reply. This helps moderators keep track of the conversation and helps to identify copy/paste spammers.</p>\n<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/09/ShowParentCommentPlugin.png"><img class="size-full wp-image-48151" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/09/ShowParentCommentPlugin.png?resize=847%2C223" alt="Show Parent Comment Plugin" /></a>Easy Way to See The Parent Comment\n<p>While the plugin works as advertised and shows the parent comment text, the interface needs to be improved. I’m not a fan of the background color and some of the comment information is repeated.</p>\n<p>One idea is to replace the <strong>In Reply to Author</strong> text to say, <strong>In Response To</strong>. The show more or less button is a good idea but I think the text size needs to be increased.</p>\n<p>Although Show Parent Comment is available on the <a href="https://wordpress.org/plugins/show-parent-comment/">plugin directory for free</a>, it’s a proof of concept and is not officially supported by Cronin.</p>\n<p>The concept needs work but I think something similar needs to be added to WordPress core. As it stands, moderating comment replies is not a great experience and I think Cronin’s plugin is a step in the right direction.</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, 09 Sep 2015 22:12:34 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:66:"WPTavern: WPML Emails Passwords to Affected Customers in Plaintext";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=48123";s:7:"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:"http://wptavern.com/wpml-emails-passwords-to-affected-customers-in-plaintext";s: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:3791:"<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/ClearTextPasswordFeaturedImage.png"><img class="size-full wp-image-31477" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/ClearTextPasswordFeaturedImage.png?resize=637%2C200" alt="Clear Text Password" /></a>photo credit: <a href="https://www.flickr.com/photos/thegloaming/1402099967/">thegloaming</a> – <a href="http://creativecommons.org/licenses/by-nc-sa/2.0/">cc</a>Customers who purchased <a href="https://wpml.org/">WPML</a>, a multilingual plugin for WordPress, <a href="https://wpml.org/forums/topic/strange-email-from-wpml/#post-699832">are receiving</a> a suspicious email that looks similar to a phishing attempt. Matt Radford, a customer of WPML, kindly sent the Tavern a copy of the email.</p>\n<blockquote><p><b>Dear Matt</b>,</p>\n<p>We want to make sure that your WPML account remains secure. For this, we are updating all client accounts with auto-generated strong passwords. A strong password helps prevent unauthorized use of your WPML account.</p>\n<p>Our system will start the password update shortly. We will send you another email with your new password.</p>\n<p>All the best,</p>\n<p><b>WPML team</b></p></blockquote>\n<p>Radford received a follow-up email that includes his new password in plaintext. WPML explains why the passwords were sent in plaintext, “We detected weak passwords in our system and following this we are enforcing, on a one-time procedure, strong passwords to all our clients.</p>\n<p>“As for sending them in plaintext, if you consider it not to be safe, please update your password in order to keep it secure,” WPML said.</p>\n<p>When questioned if passwords are stored in plaintext within the database, WPML replied, “As for storing passwords in our database we are not storing it in plaintext, we are using standard WordPress. Yes they’re salted and hashed.”</p>\n<p>Denise VanDeCruze, a WPML support forum moderator, says <a href="https://wpml.org/forums/topic/strange-email-from-wpml/#post-700143">the email was generated automatically</a> from their systems. She confirms that sending passwords in plaintext is not a best practice and urges users to login to their accounts and generate a new password using the reset password link.</p>\n<blockquote><p>This email was automatically generated by our system and sent to clients with passwords that were deemed too simple. However, sending new passwords in plain text via email without requiring user action is not best practice. I urge you to change your WPML account password. <a href="https://wpml.org/account/account-settings/" rel="nofollow">https://wpml.org/account/account-settings/</a></p>\n<p>You were right to be cautious of this sudden email. Although it was not a phishing attempt, it was not the best way to ensure a safe password. In the future we will be mindful of adhering to strict security standards. Please let me know if you have any further questions.</p></blockquote>\n<p>WPML has not published any information on <a href="https://wpml.org/blog/">its blog</a> that explains the situation and has yet to respond to our requests for comment. If you’re a WPML customer and receive an email with a new password, you should immediately login and generate a new password using the site’s reset password link and follow the instructions.</p>\n<p>Emailing passwords in plaintext is a terrible security practice. One of the key improvements in WordPress 4.3 is that <a href="https://make.wordpress.org/core/2015/07/28/passwords-strong-by-default/">WordPress no longer emails passwords</a>. Instead, it sends password reset links that expire after 24 hours. In hindsight, WPML should have generated and sent password reset emails to affected customers.</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, 08 Sep 2015 23:54: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:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:2;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:57:"Post Status: Using React with WordPress — Draft podcast";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"https://poststatus.com/?p=14241";s:7:"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://poststatus.com/using-react-with-wordpress-draft-podcast/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2240:"<p>Welcome to the Post Status Draft podcast, which you can find <a href="https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008">on iTunes</a> and <a href="http://simplecast.fm/podcasts/1061/rss">via RSS</a> for your favorite podcatcher. Brian and his co-host, <a href="https://twitter.com/joe_hoyle">Joe Hoyle</a>, a co-founder and the CTO of <a href="https://hmn.md/">Human Made</a>, discuss some of today’s hottest, current WordPress news.</p>\n<p>Listen now:</p>\n<!--[if lt IE 9]><script>document.createElement(''audio'');</script><![endif]-->\n<a href="https://audio.simplecast.fm/16368.mp3">https://audio.simplecast.fm/16368.mp3</a>\n<p><a href="http://audio.simplecast.fm/16368.mp3">Direct download</a></p>\n<p>Stories discussed:</p>\n<ul>\n<li><a href="https://poststatus.com/notes/language-packs-for-wordpress-themes-and-plugins/">Language packs background and details</a> (members only)</li>\n<li><a href="https://make.wordpress.org/plugins/2015/09/01/plugin-translations-on-wordpress-org/">Plugin translation details</a></li>\n<li><a href="https://translate.wordpress.org/">WordPress.org sub-site for translations of WordPress, plugins, and themes</a></li>\n<li><a href="https://make.wordpress.org/core/2015/09/01/lets-garden-trac/">Trac gardening</a></li>\n<li><a href="http://facebook.github.io/react/">ReactJS</a></li>\n<li><a href="https://www.youtube.com/channel/UCorlLn2oZfgOJ-FUcF2eZ1A">React Europe talks</a></li>\n<li><a href="https://github.com/rackt/redux">Redux framework</a></li>\n<li><a href="https://webpack.github.io/">Web Pack</a></li>\n<li><a href="https://ustwo.com/">USTwo site in React with a WordPress backend</a></li>\n<li><a href="https://loopconf.io/talks/react-flux-wordpress-developers/">Loopconf talk on React and Flux</a></li>\n<li><a href="https://nomadbase.io/location-update/">Nomadbase React app</a></li>\n<li><a href="https://deliciousbrains.com/creating-mobile-app-wp-api-react-native/">React and the WP API for a native app</a></li>\n<li><a href="http://feelingrestful.com/">A Day of Rest: a WordPress REST API conference</a></li>\n<li><a href="https://poststatus.com/a-day-of-rest-a-conference-devoted-to-the-wordpress-rest-api/">Details for A Day of REST</a></li>\n</ul>\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, 05 Sep 2015 14:19: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:14:"Katie Richards";s: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:65:"WPTavern: Help Me Add Comment Approval Notifications to WordPress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=48059";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:75:"http://wptavern.com/help-me-add-comment-approval-notifications-to-wordpress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1094:"<p>Since <a href="http://wptavern.com/the-wp-tavern-comment-moderation-policy">enabling comment moderation</a> on the Tavern, I’ve discovered that WordPress does not notify commenters when their comments are approved.</p>\n<p>On the Tavern, I’m using the <a title="http://wordpress.org/plugins/comment-approved/" href="http://wordpress.org/plugins/comment-approved/">Comment Approved</a> plugin by <a title="http://media-enzo.nl/" href="http://media-enzo.nl/">Niels van Renselaar</a>. It allows me to create a custom notification message that is sent when a comment is approved. Unfortunately, I don’t think it’s working. Please let me know if you’ve received any comment approval emails from the Tavern.</p>\n<p>I strongly believe this feature should be in core. I’ve started the process by creating a <a href="https://core.trac.wordpress.org/ticket/33717">feature request ticket</a> on WordPress trac. Let’s discuss the pros and cons or why you think it shouldn’t be in core. Please give me your feedback in the comments or within the ticket.</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, 04 Sep 2015 19:30: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: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:83:"WPTavern: How Chris Klosowski’s Lifestyle Changed by Writing One WordPress Plugin";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=48051";s:7:"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:"http://wptavern.com/how-chris-klosowskis-lifestyle-changed-by-writing-one-wordpress-plugin";s: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:1458:"<p>Chris Klosowski, co-lead developer of Easy Digital Downloads, <a href="https://kungfugrep.com/2015/09/how-writing-one-plugin-changed-my-lifestyle/">explains how writing one plugin</a> changed his lifestyle. He left his corporate job to be a full-time distributed worker and being a distributed worker comes with its own set of challenges.</p>\n<blockquote><p>My truest challenge in this new lifestyle is knowing when it’s time to ignore Slack, shut off email, take off the Pebble, and just spend time with my family. It’s a challenge I’m learning to face, and the hardest part is admitting to myself that it’s a problem.</p>\n<p>It’s come up in conversation a couple times with my wife, and every time, she lets me know when I’m failing. Honesty here is the key. Not guilt, not anger, just brutal honesty of when I’m not being the best husband and dad because I’m putting work before them.</p></blockquote>\n<p>One of the greatest challenges a distributed worker faces is figuring out the balance between work, family, and personal life. If you’re struggling to find balance, I encourage you to read <a href="http://wptavern.com/the-mantra-of-family-comes-first">this post</a> and the nearly 100 comments that follow.</p>\n<p>The comments are from people in similar positions trying to figure out how to balance work, life, and family. After nearly three years of being a distributed worker, I’m still trying to figure it out.</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, 04 Sep 2015 16:43:04 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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:65:"WPTavern: A Bug in Chrome 45 Causes WordPress Admin Menu to Break";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=48045";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:75:"http://wptavern.com/a-bug-in-chrome-45-causes-wordpress-admin-menu-to-break";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2136:"<p>Within the last five weeks, <a href="https://core.trac.wordpress.org/ticket/33199">several people have reported</a> an issue in Chrome that breaks the WordPress admin menu. If you hover the mouse cursor over menu items in the sidebar, they’ll occasionally fall out-of-place.</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/09/ChromeWPAdminMenu.png"><img class="aligncenter size-full wp-image-48046" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/09/ChromeWPAdminMenu.png?resize=764%2C543" alt="Chrome WordPress Admin Menu " /></a>Using Chrome 45.0.2454.85, I’m able to inconsistently reproduce the behaviour reported in the ticket. Through the process of elimination, users discovered Chrome is the software at fault and not WordPress.</p>\n<p>The <a href="https://code.google.com/p/chromium/issues/detail?id=509179#c17">source of the problem</a> stems from Slimming Paint which is enabled by default in Chrome 45. Disabling slimming paint fixes the issue.</p>\n<p>To disable this feature, visit <strong>chrome://flags/#disable-slimming-paint</strong> in Chrome and <strong>Enable</strong> the <em>Disable slimming paint</em> option, and make sure the other two <strong>Enable</strong> options are disabled because they will override the Disable option.</p>\n<p>If this sounds confusing, please refer to the following screenshot provided by Samuel Wood.</p>\n<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/09/DisableSlimmingPaint.png"><img class="size-full wp-image-48056" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/09/DisableSlimmingPaint.png?resize=839%2C185" alt="Disable Slimming Paint Options" /></a>Disable Slimming Paint Options\n<p>Chrome’s development team is <a href="https://code.google.com/p/chromium/issues/detail?id=509179&q=label%3AM-47%20slimming%20paint&colspec=ID%20Pri%20M%20Stars%20ReleaseBlock%20Cr%20Status%20Owner%20Summary%20OS%20Modified">aware of the issue</a> and is working towards a solution that is marked for release in Chrome 47. Until then, users are encouraged to disable Slimming Paint until Chrome fixes the issue.</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, 04 Sep 2015 15:49:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"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: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:63:"WPTavern: A Dashboard Widget That Displays New Registered Users";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=48037";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:73:"http://wptavern.com/a-dashboard-widget-that-displays-new-registered-users";s: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:1119:"<p>If you run a WordPress site with user registration enabled and want to see recently registered accounts from the dashboard, check out the <a href="https://wordpress.org/plugins/new-user-dashboard/">New User Dashboard Widget plugin</a> by <a href="https://profiles.wordpress.org/swadeshswain/">Swadeshswain</a>. After installing and activating the plugin, a new registered user widget appears on the dashboard.</p>\n<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/09/NewUserDashboardWidget.png"><img class="size-full wp-image-48038" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/09/NewUserDashboardWidget.png?resize=536%2C146" alt="New Registered User Widget" /></a>New Registered User Widget\n<p>The widget tells you a user’s registration date, name, and role. If you don’t see the widget after activating the plugin, click on the Screen Options tab and make sure the box next to New User is checked. New User Dashboard Widget is the type of plugin that does one thing only and does it well. There’s nothing to configure and it works out-of-the-box with WordPress 4.3.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 04 Sep 2015 00:02:04 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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:92:"WPTavern: Proposal to Overhaul the Shortcode API in WordPress Goes Back to the Drawing Board";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=48026";s:7:"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:"http://wptavern.com/proposal-to-overhaul-the-shortcode-api-in-wordpress-goes-back-to-the-drawing-board";s: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:7118:"<p><a href="https://profiles.wordpress.org/miqrogroove">Robert Chapin</a>, who contributes to WordPress core, <a href="https://make.wordpress.org/core/2015/09/02/shortcode-roadmap-draft-one/">published the first draft</a> of a roadmap that explains how the Shortcode API could be overhauled. “The decision to create this roadmap arose from specific needs that are not met by the old code,” Chapin said.</p>\n<p>The proposal has an aggressive timeline with development starting in WordPress 4.4 and ending in WordPress 4.7. In WordPress 4.4, a new syntax would be introduced that provides opportunities to make significant changes to the API.</p>\n<p>Here are a few examples of shortcodes that use the new syntax.<br />\n<strong>Self-Closing</strong>: [{{shortcode}}]</p>\n<p><strong>Attributes</strong>: [{{shortcode attr1=”value1″ attr2=’value2′ “value3” ‘value4’ value5}}]</p>\n<p><strong>Enclosing</strong>: [{{shortcode}$] HTML [${shortcode}}]</p>\n<p><strong>Multiple Enclosures</strong>: [{{shortcode}$] HTML [${encl2}$] HTML [${encl3}$] HTML [${shortcode}}]</p>\n<p><strong>Escaped Code</strong>: [!{{shortcode}}]</p>\n<p>In the WordPress 4.5 development cycle, the focus would be to deprecate the old syntax, “Plugins that register shortcodes without declaring support for new features will raise debugging errors to alert developers that support for the old shortcode syntax is ending,” Chapin said. Posts using the old syntax would continue to work.</p>\n<p>During the WordPress 4.6 update process, shortcodes using the old syntax would be converted to use the new syntax. The Shortcode API would continue to provide deprecated support for the old syntax to provide a smooth transition.</p>\n<p>An important point to note is that the new syntax does not support HTML inside of shortcode attributes. This leaves the potential for many sites to break as shortcodes may not perform the same way prior to WordPress 4.6</p>\n<p>The transition process ends with WordPress 4.7 where support for the old syntax is eliminated. Shortcodes and plugins that use the old syntax would stop working. During the WordPress 4.7 update process, a second attempt would be made to upgrade old content to use the new syntax.</p>\n<h2>The Proposal Raises Concerns</h2>\n<p>The proposal has drawn constructive criticism from several members of the WordPress community. Nick Haskins, founder of Aesop Interactive, <a href="https://make.wordpress.org/core/2015/09/02/shortcode-roadmap-draft-one/#comment-27426">voiced his concern</a> saying the syntax isn’t easier for authors to use and will affect a large number of sites.</p>\n<p><a href="http://halfelf.org/">Mika Epstein</a>, who voluntarily moderates the WordPress.org support forums and interacts with users on a daily basis, <a href="https://make.wordpress.org/core/2015/09/02/shortcode-roadmap-draft-one/#comment-27472">sums up a list of concerns</a> that many developers agree with.</p>\n<blockquote>\n<ul>\n<li>All the plugins and themes on the planet we will break (because we will, they won’t read or test). We have to degrade them as gracefully as humanly possibly. Continuing to say “Well the developers were notified and should have updated” now that we’re as big as we are is not sustainable.</li>\n</ul>\n<ul>\n<li>All the very (legitimately) angry end users who are broken because they didn’t upgrade plugins and themes (or the themes/plugins didn’t get updated). People were rightly angry last time. It’s the end users, not the developers, who will be hardest hit by this change.</li>\n</ul>\n<ul>\n<li>Communicating clearly to the users that it’s now <code>{{gallery}}</code>. That’s going to be very hard. Incredibly hard. Updating their old posts (keeping in mind Justin’s Markdown caveat and those who use them as an aside – I know I know) is easier than making sure everyone knows what to do. At best we can keep tabs on the ones built into WP and perhaps use the logic we have in the visual editor NOW to convert them, but we have to figure out how to make sure everyone knows. This is nothing like the move of Menus to customizer. That was confusing, but the users could see what happened. This is a legit change, your old way is no longer going to work. That is huge.</li>\n</ul>\n<ul>\n<li>The number of users who have premium themes and plugins that <em>do not</em> get update alerts. These people are simply not going to know they need to update and this is not their fault. We should never be breaking them if there’s possibly any alternative.</li>\n</ul>\n<ul>\n<li>Users will be upgraded by their hosts vis-a-vis one-click installs and managed hosting so they will have up to date WP and out of date plugins/themes. So yes, many users will be on 4.7 and then a theme from 2014. It sucks, it’s the reality, we know it’s the reality, we cannot stick our heads in the sand.</li>\n</ul>\n<ul>\n<li>Plugins that are already using {{template}} tags in their code. Yeah, I’ve seen it. Most of them use it for search/replace within their own code, but we’ll want to make sure we check for everyone in the repo who might be doing it on their own.</li>\n</ul>\n</blockquote>\n<p>The best argument against using the new shortcode syntax is <a href="https://make.wordpress.org/core/2015/09/02/shortcode-roadmap-draft-one/#comment-27518">made by Stefano Agiletti.</a> Agiletti says Italian keyboards don’t have keys that create curly braces.</p>\n<blockquote><p>Maybe English people don’t know that { and } are not present in all keyboards directly as the [ and ] are. On Italian keyboards [ and ] are generated using ALT-GR+è or ALT-GR++ and keyboards show ALT-GR basic sign like €@## and [ ].</p>\n<p>To get { and } you need to type ALT-GR+SHIFT+è and ALT-GR+SHIFT++. Most people don’t know about this combination (I think only those who write code do) and the parentheses are not written on any key.</p></blockquote>\n<h2>Back to the Drawing Board</h2>\n<p>After a considerable amount of feedback and concerns shared by developers, the proposal is heading back to the drawing board. In a comment <a href="https://make.wordpress.org/core/2015/09/02/shortcode-roadmap-draft-one/#comment-27484">summarizing the feedback</a>, Andrew Nacin confirms that the new shortcode syntax does not fit the core team’s vision of being easy and intuitive for non-technical authors to use.</p>\n<p>At the same time, he cautions that the team needs to do something, “The proposed syntax significantly clashes with the proposed vision and given all of your feedback, we’re clearly going to have to go back to the drawing board. Please note that <strong>we still need to do something</strong>, but maybe we can think further outside the box.”</p>\n<p>I highly encourage you to read the <a href="https://make.wordpress.org/core/2015/09/02/shortcode-roadmap-draft-one/">proposal and the comments</a> that follow it. It’s a great read that highlights how difficult it will be to make changes to the Shortcode API that don’t end up causing a lot of sites to break.</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, 03 Sep 2015 21:16:33 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:8;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:65:"WPTavern: WPWeekly Episode 206 – Stream Reverts to its Old Ways";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=48018";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:71:"http://wptavern.com/wpweekly-episode-206-stream-reverts-to-its-old-ways";s: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:2645:"<p>In this week’s episode of WordPress Weekly, <a href="http://marcuscouch.com/">Marcus Couch</a> and I discuss the news of the week including, Envato’s new item support policy, Twenty Sixteen available on GitHub, and BuddyPress 2.3.3. We also discuss Stream 3 which returns to hosting activity logs on the local server. We end the show with Marcus’ plugin picks up the week.</p>\n<h2>Stories Discussed:</h2>\n<p><a href="http://wptavern.com/envato-implements-item-support-policy-for-themeforest-and-codecanyon">Envato Implements Item Support Policy for ThemeForest and CodeCanyon</a><br />\n<a href="http://wptavern.com/twenty-sixteen-now-available-on-github-and-the-wordpress-theme-directory">Twenty Sixteen Now Available on GitHub and the WordPress Theme Directory</a><br />\n<a href="http://wptavern.com/buddypress-2-3-3-patches-security-vulnerabilities-in-buddypress-messages-component">BuddyPress 2.3.3 Patches Security Vulnerabilities in BuddyPress Messages Component</a><br />\n<a href="http://wptavern.com/wordpress-community-summit-set-for-december-2-3-2015">WordPress Community Summit Set for December 2-3, 2015</a><br />\n<a href="http://wptavern.com/stream-is-shutting-down-its-cloud-data-storage-october-1st">Stream Is Shutting Down Its Cloud Data Storage October 1st</a></p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a href="https://wordpress.org/plugins/new-user-dashboard/">New User Dashboard Widget</a> is a dashboard widget that shows new registered members.</p>\n<p><a href="https://wordpress.org/plugins/facebook-secret-meta/">Facebook Secret Meta</a> adds the necessary secret codes to your site, so when someone shares a link to your site on Facebook, they’ll see the site’s information and the new <strong>Author By</strong> data.</p>\n<p><a href="https://wordpress.org/plugins/bp-automatic-friends/">BuddyPress Automatic Friends</a> automatically creates and accepts friendships for specified users upon new user registration.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, September 9th 9:30 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href="https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738" target="_blank">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href="http://www.wptavern.com/feed/podcast" target="_blank">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href="http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr" target="_blank">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #206:</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, 03 Sep 2015 08:21:46 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"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:49:"WPTavern: The WP Tavern Comment Moderation Policy";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=48012";s:7:"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:"http://wptavern.com/the-wp-tavern-comment-moderation-policy";s: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:3471:"<p>Those of you who regularly comment on the Tavern may have noticed that your comments don’t show up immediately after submitting them. That’s because about four weeks ago, for the first time in the Tavern’s history, comment moderation for all comments was enabled. I enabled moderation to address concerns raised by members of the community and to sleep better at night.</p>\n<p>At the request of a few readers and to be more transparent, I’ve created a <a href="http://wptavern.com/comment-policy">comment moderation policy</a>. With the help of at least a dozen people, I’ve crafted a policy that is easy to read and more importantly, easy to follow. It explains our expectations, has a few tips on writing better comments, and lists possible reasons a comment may be deleted.</p>\n<p>The policy is <a href="http://creativecommons.org/publicdomain/zero/1.0/">CC0 licensed</a> which is the least restrictive license offered by Creative Commons. Feel free to copy and modify it for your own use.</p>\n<h2 class="font-headlines">WP Tavern Comment Moderation Policy</h2>\n<p>We strive to create a fun, friendly, and inviting atmosphere. The ground rules for commenting on WP Tavern are simple. Treat people the way you want to be treated. Try to understand someone else’s perspective and if you disagree, respectfully explain why.</p>\n<p>Text is a difficult medium to decipher context. Emoticons and emoji help, but it doesn’t solve the problem. Take a deep breath and assume the commenter has the best of intentions before responding and approach discussions with open minds.</p>\n<p>We welcome different perspectives and viewpoints but we all need to clearly communicate them without tearing the opposition down in the process.</p>\n<p>Stay on point using concise language. If your comment is more than a few paragraphs long, consider publishing it on your own site instead.</p>\n<p>Your comment may be deleted if it matches any of the following criteria:</p>\n<ul>\n<li>Advocates an illegal practice</li>\n<li>Uses vulgar, profane, or unnecessarily harsh language</li>\n<li>Is spam or appears to be written primarily to post a link or advertise</li>\n<li>Is written anonymously</li>\n<li>Contains copyrighted material not licensed for distribution on the site</li>\n<li>Impersonates another user</li>\n<li>Contains an affiliate link</li>\n<li>Personal insults, including those using racist or sexist terms.</li>\n</ul>\n<p>These guidelines are not meant to be an exhaustive list. The deletion of comments is wholly within the discretion of the moderators at WP Tavern and we will err on the side of maintaining a safe and friendly community.</p>\n<h2 class="font-headlines">How Do I Report Comments?</h2>\n<p>If you believe a comment published on WP Tavern violates any of the listed guidelines or that you feel needs special attention, <a href="http://wptavern.com/contact-me">contact us</a>. Please do not publicly report comments using social media such as Facebook or Twitter.</p>\n<p>Form submissions are sent to authors with comment moderation capabilities. Include a link to the comment in your email with a short explanation as to why it needs our attention.</p>\n<h2>The Goal</h2>\n<p>The goal is to reestablish the comment section as a place where people feel welcome to voice their opinions without the fear of being ripped apart. We encourage criticism, disagreements, and open conversation but it needs to take place in a respectful manner.</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, 03 Sep 2015 06:36:42 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"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: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:77:"Post Status: A Day of REST — a conference devoted to the WordPress REST API";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"https://poststatus.com/?p=14173";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:84:"https://poststatus.com/a-day-of-rest-a-conference-devoted-to-the-wordpress-rest-api/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:6733:"<p><a href="http://feelingrestful.com/">A Day of REST</a> will be the first ever event dedicated to the WordPress REST API. It’ll happen on January 28th 2016, with a follow-on hack day on the 29th, and will be held at Bishopsgate Institute in London, UK.</p>\n<p>The event is aimed at developers who want to learn how to interact with the new WordPress REST API. From WordPress developers to Javascript developers, to application developers, A Day of REST promises to provide in-depth information that covers every aspect of the WordPress REST API.</p>\n<p>This is exactly the kind of event I’ve been hoping to see in the WordPress community. Sessions will vary from an introduction to the WordPress REST API to in-depth case studies and guides on utilizing it in the real world.</p>\n<p>It will be an incredible and rare opportunity to learn from the people making the API and those extending it further than anyone else. A niche event to be sure, A Day of REST is a big bet on the WordPress REST API — which is not yet slated for core, but is widely expected to make it to core in the next few releases.</p>\n<p>The conference is being organized to supply a clear demand for more information, resources, and education on the subject. At most WordCamps, REST API sessions seem to be some of the most crowded, with the most engaged and curious audiences. A Day of REST will be like those sessions, but much bigger, as the entire day will be dedicated to the single topic.</p>\n<h3>Who is speaking at A Day of REST</h3>\n<p><img class="aligncenter size-large wp-image-14179" src="https://cdn.poststatus.com/wp-content/uploads/2015/09/speakers-day-of-rest-752x603.jpg" alt="speakers-day-of-rest" width="752" height="603" /></p>\n<p>The speaker roster consists of people who are building the WordPress REST API, and those who are already using it for production applications and websites. The speakers are:</p>\n<ul>\n<li>Ryan McCue – WordPress REST API co-lead</li>\n<li>Joe Hoyle – WordPress REST API team</li>\n<li>Daniel Bachhuber – WordPress REST API team</li>\n<li>Kathleen Vignos – Director of Engineering, WIRED</li>\n<li>K. Adam White – Open Web Engineer, Bocoup</li>\n<li>Jack Lenox – Design Engineer, Automattic</li>\n<li>Scott Taylor – Senior Engineer, New York Times</li>\n<li>Nikolay Bachiyski – Meta Engineer, Automattic</li>\n</ul>\n<h3>Post Status will be an official partner</h3>\n<p>I’m really pleased that Post Status will be the official content partner for A Day of REST. That means I’ll be attending the event, and I’ll offer a number of in-depth posts related to the WordPress REST API, the sessions, interviews, and more.</p>\n<p>I’ll also manage content for some of the larger event announcements, like this one. I’ve known the organizers for a long time, and they are big supporters of Post Status. A Day of REST offers a really great opportunity for me to work with them and offer my readers some unique privileges and exclusive content for a subject that’s of interest to most of my audience.</p>\n<h3>So who is organizing?</h3>\n<p><img class="aligncenter size-large wp-image-14180" src="https://cdn.poststatus.com/wp-content/uploads/2015/09/humans-752x333.jpg" alt="humans" width="752" height="333" /></p>\n<p>A Day of REST is organized by <a href="https://poststatus.com/organizations/human-made/">Human Made</a>, who’ve brought on board <a href="http://siobhanmckeown.com/about/">Siobhan McKeown</a> to lead the charge putting the event together.</p>\n<p>Human Made uses the API in a good bit of their services and product work, are really interested to see more adoption of the API, and are eager to provide education resources so that can happen. Those of you who pay close attention may know that two of Human Made’s own are actually part of the team of four that does much of the REST API development.</p>\n<p><a href="https://twitter.com/rmccue">Ryan McCue</a> is the project co-lead, and is generally steering the ship; the API started as his GSoC (Google Summer of Code) project years ago. <a href="https://twitter.com/joe_hoyle">Joe Hoyle</a> is in day to day conversations for project direction and also commits a lot of code to the API; he is a co-founder of Human Made.</p>\n<h3>Hack Day</h3>\n<p>On 29th January 2016, there will be a WordPress REST API hack day. This event is being hosted by Mozilla Spaces in London. Space for the hack day is limited but the team would love for anyone interested to come along and help make the WordPress REST API. Bring a laptop and expect to get hacking. This event will be for building the REST API specifically, and not geared toward other projects.</p>\n<h3>Ticket details</h3>\n<p>Tickets are available <a href="http://feelingrestful.com/tickets/">from the website</a>. They’re £125 (+ VAT & booking fees) — which ends up being around $235 US — and the price includes all of the usual conference goodies: presentations, lunch, swag, and an informal afterparty.</p>\n<h3>Confirmed sponsors</h3>\n<p>A Day of REST is excited to already have some awesome sponsors on board.</p>\n<ul>\n<li><a href="http://prospress.com/">ProsPress</a> – Gold sponsor</li>\n<li><a href="http://www.gravityforms.com/">Gravity Forms</a> – Gold sponsor</li>\n<li><a href="https://sucuri.net/">Sucuri</a> – Gold sponsor</li>\n</ul>\n<p>The team is also looking for more sponsors to get involved and help make this unique event happen. If you’d like to sponsor, send an email to [email protected].</p>\n<h3>More information</h3>\n<p>Depending on the content, you can get updates either from this blog, or from the A Day of REST website, <a href="http://feelingrestful.com/">feelingrestful.com</a>. You should also follow <a href="https://twitter.com/feelingrestful">@feelingrestful</a> on Twitter for live updates. I’ll have in-depth content and broader event information and the event site will have more general announcements, news, and event updates.</p>\n<p>London is quite accessible from much of the world, so I am hopeful and confident that there will be a diverse audience in attendance. I certainly look forward to visiting; and I was pleasantly surprised that it doesn’t get as cold there as I thought; January temperatures (lows and highs) stay around the 40s (F, or 5-9<strong><span class="temperature_label_default"><span class="temperature_label_unit_c">°</span></span></strong> C) — which is likely warmer than it’ll be where I live in January.</p>\n<p>A Day of REST is an exciting development in the WordPress conference ecosystem and I’m confident it’s going to be a huge success.</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, 02 Sep 2015 13:36: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:15:"Brian Krogsgard";s: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:78:"WPTavern: Envato Implements Item Support Policy for ThemeForest and CodeCanyon";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=47990";s:7:"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:"http://wptavern.com/envato-implements-item-support-policy-for-themeforest-and-codecanyon";s: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:3537:"<p>In August of 2014, Envato <a href="http://marketblog.envato.com/news/item-support-sustainability-authors-clarity-buyers/">announced a new initiative</a> that would allow sellers on <a href="http://codecanyon.net/?_ga=1.16356721.691392842.1429566039">CodeCanyon</a> and <a href="http://themeforest.net/?_ga=1.16356721.691392842.1429566039">ThemeForest</a> to inform buyers whether or not an item is supported. Earlier today, <a href="http://marketblog.envato.com/releases/item-support-policy-and-functionality-launched/">Envato implemented</a> an <a href="http://themeforest.net/page/item_support_policy">Item Support Policy</a> for sellers on ThemeForest and CodeCanyon.</p>\n<p>When browsing items on ThemeForest or CodeCanyon, a blue badge indicates the seller provides support. There’s also a badge and text that informs potential buyers if an item is not supported.</p>\n<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/09/SupportedBadge.png"><img class="size-full wp-image-47991" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/09/SupportedBadge.png?resize=639%2C408" alt="This Item is Supported" /></a>This Item is Supported\n<p>According to <a href="http://themeforest.net/page/item_support_policy">the policy</a>, buyers automatically receive six months of support from the date of purchase. If you need support for an entire year, you can buy an extension for a nominal upgrade fee. Envato takes 30% and gives 70% of the purchase to authors.</p>\n<p>The price of a <b>6-month support extension</b> for a <b>Regular License</b> is calculated as:</p>\n<ol>\n<li>37.5% of the item price (30% of the list price) when purchased at the same time as the license;</li>\n<li>62.5% of the item price (50% of the list price) when purchased during the support period; and</li>\n<li>87.5% of the item price (70% of the list price) when purchased after the support period has ended.</li>\n</ol>\n<p>Andrew Freeman, product manager for Envato, says the changes provide a standardized definition of support, “Buyers will know exactly what to expect from all purchases on ThemeForest and CodeCanyon.”</p>\n<p>Buyers who purchased supported items before the new policy went into effect have six months of free tech support starting on September 1st.</p>\n<h2>Disgruntled Authors</h2>\n<p>In a <a href="https://forums.envato.com/t/item-support-policy-and-functionality-launched/3619">forum thread</a> with over 165 responses, sellers discussed the pros and cons of the policy while some expressed anger. <a href="http://themeforest.net/user/jonathan01">Jonathan Atkinson</a>, founder of <a href="https://cr3ativ.com/">Cr3ativ</a>, who sells several items on ThemeForest, thinks the policy is not as good as alternatives offered outside of the marketplaces because of its confusing complexity for both authors and buyers,</p>\n<blockquote><p>I’m not sure why Envato chose this solution when we already have a well established support/upgrade system in place within most of the WordPress community where 12 months of support is included in the purchase and customers receive a 50% discount to continue receiving support and updates.</p></blockquote>\n<p>The policy is a work in progress, “We will be monitoring the impacts of this change very closely and will be tweaking, improving and enhancing the support tools over coming weeks and months,” Freeman said.</p>\n<p>If you’re a buyer or seller on ThemeForest or CodeCanyon, let us know what you think of the support policy 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:"Wed, 02 Sep 2015 00:52: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: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:28:"Matt: On VentureBeat Podcast";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=45294";s:7:"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:44:"http://ma.tt/2015/08/on-venturebeat-podcast/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:303:"<p>I was on VentureBeat’s podcast with Dylan Tweeney, <a href="http://venturebeat.com/2015/08/11/how-matt-mullenweg-built-wordpress-into-a-giant-platform-powering-14-of-the-web-podcast/">talking a bit about how WordPress came to be and geeking out on some of the tech behind our approach</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, 01 Sep 2015 02:23:38 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:13;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:82:"WPTavern: Twenty Sixteen Now Available on GitHub and the WordPress Theme Directory";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=47973";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:92:"http://wptavern.com/twenty-sixteen-now-available-on-github-and-the-wordpress-theme-directory";s: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:2332:"<p>Twenty Sixteen, the default theme scheduled to ship with WordPress 4.4, is available for download on <a href="https://github.com/WordPress/twentysixteen">GitHub</a> and the <a href="https://wordpress.org/themes/twentysixteen/">WordPress theme directory</a>. According <a href="https://make.wordpress.org/core/2015/08/29/twenty-sixteen-is-now-on-github/">to Tammie Lister</a>, Twenty Sixteen will be developed as if it were a feature plugin and will merge into WordPress core later this year.</p>\n<p>As development takes place on GitHub, changes will regularly sync up to the WordPress theme directory. By installing and activating Twenty Sixteen from the theme directory, users can easily update to new versions as they become available.</p>\n<p>So far, Twenty Sixteen has 23 issues and 27 pull requests on GitHub. Many of the issues such as, <a href="https://github.com/WordPress/twentysixteen/pull/23">introducing automated Travis CI build testing into Twenty Sixteen,</a> are <a href="https://github.com/WordPress/twentysixteen/labels/discussion">up for discussion</a>.</p>\n<p>Here is what the top half of the Tavern looks like with Twenty Sixteen activated.</p>\n<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/08/TavernOnTwentySixteen.png"><img class="size-full wp-image-47974" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/08/TavernOnTwentySixteen.png?resize=1025%2C563" alt="Twenty Sixteen on the Tavern" /></a>Twenty Sixteen on the Tavern\n<p>Here is what the content section looks like. Notice the block of code that displays instead of an image.</p>\n<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/08/TavernContentOnTwentySixteen.png"><img class="size-full wp-image-47976" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/08/TavernContentOnTwentySixteen.png?resize=881%2C648" alt="Content on the Tavern with Twenty Sixteen " /></a>Content on the Tavern with Twenty Sixteen Activated\n<p>Testers are encouraged to open issues and pull requests on GitHub. If you’re not familiar with how GitHub works, <a href="https://github.com/WordPress/twentysixteen/blob/master/CONTRIBUTING.md">this guide</a> explains how to contribute to the Twenty Sixteen project. Keep in mind that Twenty Sixteen is a work in progress and should not be used in a production environment.</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, 31 Aug 2015 20:05: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: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:22:"Matt: Rigamortis Cover";s:7:"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:21:"http://ma.tt/?p=45313";s:7:"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:"http://ma.tt/2015/08/rigamortis-cover/";s: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:267:"<p><span class="embed-youtube"></span></p>\n<p>Great jazz cover of one of my favorite Kendrick Lamar songs, Rigamortis, which of course is inspired by the great jazz song <a href="https://www.youtube.com/watch?t=27&v=TstRwZygLAo">The Thorn by Willie Jones III</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:"Sat, 29 Aug 2015 03:33: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: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:15;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:57:"Post Status: Our WordPress 4.4 wishlist — Draft podcast";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"https://poststatus.com/?p=14136";s:7:"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://poststatus.com/our-wordpress-4-4-wishlist-draft-podcast/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1568:"<p>Welcome to the Post Status Draft podcast, which you can find <a href="https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008">on iTunes</a> and <a href="http://simplecast.fm/podcasts/1061/rss">via RSS</a> for your favorite podcatcher. Brian and his co-host, <a href="https://twitter.com/joe_hoyle">Joe Hoyle</a>, a co-founder and the CTO of <a href="https://hmn.md/">Human Made</a>, discuss some of today’s hottest, current WordPress news.</p>\n<p>Listen now:</p>\n<a href="https://audio.simplecast.fm/16131.mp3">https://audio.simplecast.fm/16131.mp3</a>\n<p><a href="http://audio.simplecast.fm/16131.mp3">Direct Download</a></p>\n<p>Stories discussed:</p>\n<ul>\n<li><a href="https://poststatus.com/wordpress-4-3-billie-released/">WordPress 4.3 “Billie” released</a></li>\n<li><a href="https://make.wordpress.org/core/2015/08/19/wordpress-4-4-whats-on-your-wishlist/">What is on your wishlist for WordPress 4.4?</a></li>\n<li><a href="https://make.wordpress.org/core/2015/08/19/wordpress-4-4-whats-on-your-wishlist/#comment-26718">Don’t add WP API to Core in 4.4?</a></li>\n<li><a href="https://choycedesign.com/2015/01/23/my-top-wordpress-pain-points/">Mel Choyce’s biggest issues with WordPress</a></li>\n<li><a href="https://make.wordpress.org/core/2015/07/23/rest-api-whos-using-this-thing/">Who is using WP REST API and why?</a></li>\n<li><a href="http://wp-api.org/">REST API Documentation</a></li>\n<li><a href="https://poststatus.com/wordpress-json-rest-api/">A not-so-brief summary of the REST API</a></li>\n</ul>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 28 Aug 2015 13:45:16 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Katie Richards";s: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:46:"WPTavern: WordPress.com Unveils the Action Bar";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=47954";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:56:"http://wptavern.com/wordpress-com-unveils-the-action-bar";s: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:3846:"<p>WordPress.com has <a href="https://en.blog.wordpress.com/2015/08/26/new-action-bar/">unveiled a new user interface</a> called the Action Bar. It’s a bar that shows up in the bottom right corner of the screen for logged in users and is accessible from any device. The bar performs multiple tasks depending on the page you’re on.</p>\n<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/08/WordPressComActionBar.png"><img class="size-full wp-image-47955" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/08/WordPressComActionBar.png?resize=1025%2C627" alt="WordPress Action Bar" /></a>WordPress Action Bar\n<p>When on a WordPress.com powered site that you’re not following, the bar turns into a Follow button. Clicking the follow button will notify you of new posts published on the site.</p>\n<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/08/actionbar-follow.png"><img class="size-full wp-image-47956" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/08/actionbar-follow.png?resize=192%2C60" alt="Action Bar Follow Button" /></a>Action Bar Follow Button\n<p>If you click the three dots to the right, you’ll see a variety of options depending upon the page you’re viewing. If it’s the homepage, you’ll see links to download the theme the site uses, report the content, or manage the sites you follow.</p>\n<p>If you’re browsing a specific post on a WordPress.com site, you’ll see an additional link to copy a shortlink for quick and easy sharing.</p>\n<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/08/ActionBarThreeDots.png"><img class="size-full wp-image-47957" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/08/ActionBarThreeDots.png?resize=265%2C319" alt="Easily Share Posts" /></a>Easily Share Posts\n<p>If you have a site on WordPress.com and are logged in, the Follow button turns into a Customize button. This link provides a quick way to enter the Customizer. There’s also an Edit link if you’re browsing a published post.</p>\n<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/08/ActionBarEditCustomizeButton.png"><img class="size-full wp-image-47958" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/08/ActionBarEditCustomizeButton.png?resize=307%2C348" alt="Edit and Customize Links" /></a>Edit and Customize Links\n<p>If the action bar is too big and you want to minimize it, click the three dots and select the option to Collapse the bar. It will shrink the bar into squares and get out of your way.</p>\n<h2>My User Experience</h2>\n<p>One of the best features of the action bar is the ability to quickly see and download a theme used on a WordPress.com site. However, it doesn’t work for WordPress.com specific sites like <a href="https://dailypost.wordpress.com/">The Daily Post</a>.</p>\n<p>What annoys me about the action bar is that it disappears when I scroll down. I caught myself scrolling down to read a post and when I looked for the edit button to fix a typo, the action bar was gone. I think it should stay on the screen at all times.</p>\n<p>I’d also like to see the Edit link in the action bar open a front-end editor. It’s time WordPress.com step up its game and stop forcing users through a backend interface to edit published content.</p>\n<p>I like the experimental action bar but at the same time, I question the reasoning for adding yet another user interface element to mimic actions already supported by other buttons and links.</p>\n<p>For example, between the admin bar, dashboard, the edit link underneath a post, and the action bar, there are now four different ways to edit a post. How many roads are necessary to reach the same destination?</p>\n<p>If you have a site on WordPress.com, let me know what you think of the action bar.</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 Aug 2015 07:43: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: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:29:"Matt: Frequent Flyer Syndrome";s:7:"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:21:"http://ma.tt/?p=45311";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:45:"http://ma.tt/2015/08/frequent-flyer-syndrome/";s: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:175:"<p>It turns out <a href="http://www.economist.com/blogs/gulliver/2015/08/frequent-flyers">not everything about traveling all the time is roses</a>. (Posted from 38k feet.)</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 Aug 2015 07:17:38 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:92:"WPTavern: BuddyPress 2.3.3 Patches Security Vulnerabilities in BuddyPress Messages Component";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=47948";s:7:"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:"http://wptavern.com/buddypress-2-3-3-patches-security-vulnerabilities-in-buddypress-messages-component";s: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:1516:"<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/04/BuddyPressFeaturedImage.png"><img class="aligncenter size-full wp-image-41978" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/04/BuddyPressFeaturedImage.png?resize=828%2C265" alt="BuddyPress Featured Image" /></a>BuddyPress 2.3.3<a href="https://buddypress.org/2015/08/buddypress-2-3-3/"> is available</a> and users are encouraged to <strong>update as soon as possible</strong>. A few security vulnerabilities were discovered in <a href="https://codex.buddypress.org/buddypress-components-and-features/#internal-messaging">BuddyPress Messages, </a>a core component that allows users to send and receive private messages.</p>\n<p>A vulnerability was responsibly disclosed to the BuddyPress team that could allow members to manipulate a failed private outbound message and inject unexpected output to the browser. The vulnerability was reported by Krzysztof Katowicz-Kowalewski.</p>\n<p>In addition to the first vulnerability, the BuddyPress core development team independently discovered and fixed related vulnerabilities with the messages component that could allow for carefully crafted private message content to be rendered incorrectly to the browser.</p>\n<p>BuddyPress 2.3.3 also fixes a couple of bugs in the 2.3 codebase and improves support for backend changes made in WordPress 4.3. To protect your sites from these vulnerabilities, you should perform a full backup and <strong>update BuddyPress as soon as possible</strong>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 28 Aug 2015 06:27: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: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:62:"WPTavern: Theme Review Team Begins Phasing Out Favicon Support";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=47940";s:7:"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:"http://wptavern.com/theme-review-team-begins-phasing-out-favicon-support";s: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:2148:"<p>One of the main features in WordPress 4.3 are Site Icons. A <a href="http://wptavern.com/wordpress-4-3-adds-new-site-icons-feature-and-a-text-editor-to-press-this">Site Icon</a> is an image that represents a website across multiple platforms and replaces Favicons. With Site Icons in WordPress core, the WordPress Theme Review team is <a href="https://make.wordpress.org/themes/2015/08/28/backward-compatible-faviconsicons/">phasing out the feature</a> in existing themes hosted in the theme directory.</p>\n<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/08/site-icon-customizer.png"><img class="size-full wp-image-47808" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/08/site-icon-customizer.png?resize=1010%2C568" alt="Site Icons in The Customizer" /></a>Site Icons in The Customizer\n<p>Justin Tadlock, a theme review admin, <a href="https://make.wordpress.org/themes/2015/08/28/backward-compatible-faviconsicons/">published a tutorial</a> that explains how to provide a backwards compatible experience.</p>\n<p>According to Tadlock, the easiest method is to check if the <code>has_site_icon()</code> function exists. This tells you if the user is running WordPress 4.3 and has the site icon feature available.</p>\n<p>You can also check if the user has set up a new icon using the core WordPress feature by using the <code>has_site_icon()</code> conditional tag which returns either <code>TRUE</code> or <code>FALSE</code>.</p>\n<p>Here’s some example code from the tutorial you can use to handle the check:</p>\n<pre><code>if ( ! function_exists( ''has_site_icon'' ) || ! has_site_icon() ) {\n\n // Output old, custom favicon feature.\n}</code></pre>\n<p>For additional information, I encourage you to read<a href="http://scratch99.com/wordpress/development/backwards-compatibility-site-icons/"> Stephen Cronin’s post</a> which goes into more detail.</p>\n<p>The Theme Review Team enforces a guideline where features added to core are phased out of themes within two major releases. By the time WordPress 4.5 is released, theme authors will be able to remove legacy code without disrupting the user experience.</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 Aug 2015 05:05: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:"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: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:63:"WPTavern: WordPress Community Summit Set for December 2-3, 2015";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=47930";s:7:"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:"http://wptavern.com/wordpress-community-summit-set-for-december-2-3-2015";s: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:2007:"<p>The <a href="https://2015.us.wordcamp.org/2015/08/26/2015-wordpress-community-summit-dates-announced/">WordPress community summit</a> will take place on December 2-3, 2015, in Philadelphia, PA two days before WordCamp US. The summit will be held at <a href="http://philadelphia.impacthub.net/" target="_blank">Impact Hub Philadelphia</a>, a co-working space where freelancers, entrepreneurs, and social innovators work together, share ideas, and build networks.</p>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/08/ImpactHub.jpg"><img class="size-large wp-image-47931" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/08/ImpactHub.jpg?resize=500%2C333" alt="inside Impact Hub" /></a>Inside Impact HubImpact Hub is spacious and has dedicated meeting and conference rooms. According to the announcement, the summit is invite only similar to last year’s event at WordCamp San Francisco:</p>\n<blockquote><p>The WordPress Community Summit is a smaller, invite-only event for active members and contributors on the many teams that work to improve WordPress: Core, Design, Mobile, Accessibility, Support, Polygots, Documentation, Themes, Plugins, Community, Meta, Training, Flow and TV .</p></blockquote>\n<p>A survey or application form will soon be published which will result in a pool from which the attendees will be invited.</p>\n<p>The summit is a rare opportunity for members of various contributor teams to focus and work together in the same physical location.</p>\n<h2>Annual WordPress Survey</h2>\n<p>If you use, build, or make a living with WordPress, please take the <a href="http://wp-survey.polldaddy.com/s/wp-2015">annual survey</a>. Results will be shared during Matt Mullenweg’s State of the Word presentation at WordCamp US. The more people who fill out the survey, the more representative the data will be.</p>\n<p>Watch Mullenweg’s State of the Word presentation from 2014 to see results from the previous survey.</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, 27 Aug 2015 21: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:"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:68:"WPTavern: Stream Is Shutting Down Its Cloud Data Storage October 1st";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=47925";s:7:"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:78:"http://wptavern.com/stream-is-shutting-down-its-cloud-data-storage-october-1st";s: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:3977:"<p>Stream 3 is <a href="https://wp-stream.com/introducing-stream-3/">available for download</a> and includes some significant improvements. Stream is a WordPress plugin that tracks changes to a site similar to an audit trail. When <a href="http://wptavern.com/stream-morphs-from-a-plugin-into-a-service">version two was released</a> nearly a year ago, it morphed from a plugin to a service. Activity logs were stored in the cloud which lessened the amount of resources used on local webservers.</p>\n<p>Version three will no longer store data in the cloud. Instead, it will store activity logs locally. The cloud service provided by Stream 2 is closing on <strong>October 1st</strong>. This gives users a little more than a month to migrate data from the cloud to their local webserver.</p>\n<h2>The Cloud is Expensive</h2>\n<p>Luke Carbis, lead developer of Stream, says the time frame was chosen based on a number of factors, “We chose a 6 week migration window as a balance between bleeding cash and doing the right thing by our users.</p>\n<p>“It’s also helpful to remember that the vast majority of our users are on a Free plan, which only includes 12 weeks of storage. We are monitoring the accounts of each of our paid users and I’m personally making sure that every one of them has migrated,” Carbis told the Tavern.</p>\n<p>The move away from the cloud is largely based on cost. The majority of Stream’s customers signed up to the free plan with a significant lack of interest in the Pro Subscription. Server costs were also higher than expected.</p>\n<h2>XWP to The Rescue</h2>\n<p>With a lack of income from Stream 2 and acquisition talks failing, Carbis was contracted to do outside work leaving Frankie Jarrett the only person working on the project. Stream’s investor decided to pull the plug on the project at the same time Jarrett decided to resign from the company.</p>\n<p>“When I heard that Frankie had resigned I gave him a call. We reminisced on our achievements, and threw around some of our ideas on what could have been. That conversation renewed my inspiration. I jotted down some notes, and that’s when things started to turn around,” Carbis said.</p>\n<p>Members from <a href="https://xwp.co/">XWP</a> stepped in to lend a helping hand and the project is now officially under the XWP umbrella. This allows Stream to remain free and open source. The partnership will also facilitate add-on, connectors, and adapters</p>\n<h2>What’s New in Stream 3</h2>\n<p>Stream 3 is rewritten from the ground up. Activity logs use half the space in the database compared to Stream 2. It supports multisite through the use of Network Admin and uses a dependency injection model to be more extendable and efficient.</p>\n<p>Although Stream 3 includes a variety of improvements two notable features have been removed, Notifications and Reports. If you depend on these features, please <a href="https://wp-stream.com/stream-3-faq/">review the following FAQ</a>.</p>\n<h2>A New Direction</h2>\n<p>Carbis and XWP are taking Stream into a new direction. Stream’s <a href="https://github.com/wp-stream/roadmap/">proposed roadmap</a> is available on GitHub and Carbis encourages users to not only review it, but to contribute to the project’s future, “I’d like to see Stream’s users contribute more to its direction. Contribution isn’t limited to ideas either. If you can design, develop, or translate, please consider <a href="http://github.com/wp-stream/stream">contributing to the Stream project</a>,” he said.</p>\n<p>It will be interesting to see if Stream can regain the momentum it lost after transitioning to a cloud based system to store data. Now that Stream stores activity logs locally again, those in the EU should be able to use it without breaking privacy laws. Stream is <a href="https://wordpress.org/plugins/stream/">available for free</a> on the WordPress plugin 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:"Thu, 27 Aug 2015 20:17: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:"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:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:35:"Akismet: Quantifying Reddit Bigotry";s:7:"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:"http://blog.akismet.com/?p=1859";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:62:"http://blog.akismet.com/2015/08/27/quantifying-reddit-bigotry/";s: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:1729:"<p><small><em><strong>Update (2015-08-30): It looks like the team who created the tool decided to retire it due to some reported accuracy concerns.</strong></em></small></p>\n<p>We never pass on the opportunity to mix in a little bit of humor with our passion for web content moderation.</p>\n<p>One of our engineers, Dan Walmsley, participated in <a href="http://www.comedyhackday.org/la-2015">Cultivated Wit’s Comedy Hack Day</a> in Los Angeles last weekend, and his team’s resulting project has since surfaced on <a href="http://motherboard.vice.com/read/this-tool-quantifies-reddit-bigotry">Motherboard</a> and <a href="http://www.engadget.com/2015/08/26/reddit-bigotry-check/">Engadget</a>.</p>\n<p><a href="http://www.freeredditcheck.com/">Free Reddit Check</a>, created by Dan’s team and crowned with the day’s top prize, is a site which attempts to quantify the terribleness of Reddit users based on their public comment content and subreddit participation. While perfectly suited for a hack day which pairs developers and comedians, there is certainly usefulness in determining the respectability of a potential online acquaintance. Or just knowing who to ignore.</p>\n<p>And being obsessed with content analysis, community moderation, and keeping the web’s underbelly in check, we can’t help but think it’s a nifty idea.</p><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/akismet.wordpress.com/1859/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/akismet.wordpress.com/1859/" /></a> <img alt="" border="0" src="http://pixel.wp.com/b.gif?host=blog.akismet.com&blog=116920&post=1859&subd=akismet&ref=&feed=1" width="1" height="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 27 Aug 2015 11:43:52 +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:"Anthony Bubel";s: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:63:"WPTavern: WPWeekly Episode 205 – Interview With Miriam Schwab";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=47915";s:7:"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:"http://wptavern.com/wpweekly-episode-205-interview-with-miriam-schwab";s: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:2039:"<p>In this episode of WordPress Weekly, I’m joined by Miriam Schwab, founder and CEO of <a href="http://illuminea.com/">Illuminea</a>, a web development company based in Israel. She’s also on the Steering Board of <a href="http://digitaleveisrael.com/">Digital Eve Israel</a>, one of the leading communities for professional women in Israel to help empower women economically.</p>\n<p>Schwab explains her WordPress origin story, what it’s like to live in Israel, and how active the WordPress community is in her area. She shares her thoughts on the future of WordPress and warns that if it doesn’t improve the user experience, it will drive users away to competing platforms. At the end of the interview, she tells us her favorite plugins that she installs on most of her client sites.</p>\n<h2>Stories Discussed:</h2>\n<p><a href="http://wptavern.com/first-look-at-the-twenty-sixteen-default-wordpress-theme">First Look at the Twenty Sixteen Default WordPress Theme</a><br />\n<a href="http://wptavern.com/sessions-from-buddycamp-brighton-uk-now-available-to-watch-on-wordpress-tv">Sessions From BuddyCamp Brighton, UK Now Available to Watch on WordPress.tv</a><br />\n<a href="http://wptavern.com/ostraining-makes-pods-framework-video-training-series-available-for-free">OSTraining Makes Pods Framework Video Training Series Available for Free</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, September 2nd 9:30 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href="https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738" target="_blank">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href="http://www.wptavern.com/feed/podcast" target="_blank">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href="http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr" target="_blank">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #205:</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, 27 Aug 2015 04:24: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:"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: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:66:"WPTavern: First Look at the Twenty Sixteen Default WordPress Theme";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=47897";s:7:"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:"http://wptavern.com/first-look-at-the-twenty-sixteen-default-wordpress-theme";s: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:2281:"<p>WordPress 4.4 is the last scheduled major release of the year and with it will come a new default theme to replace Twenty Fifteen. On the Make WordPress Core site, Tammie Lister <a href="https://make.wordpress.org/core/2015/08/25/introducing-twenty-sixteen/">published an image gallery</a> that shows off the design of Twenty Sixteen.</p>\n<p>According to Lister, the process of determining the new default theme has taken months, “Lots of themes were considered, eventually settling on the one you see below. It’s a perfect fit,” she said.</p>\n<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/08/TwentySixteenConcept.png"><img class="size-large wp-image-47898" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/08/TwentySixteenConcept.png?resize=433%2C500" alt="Twenty Sixteen" /></a>Twenty Sixteen\n<p>Twenty Sixteen is designed by <a href="https://profiles.wordpress.org/iamtakashi">Takashi Irie,</a> who also designed the <a href="http://takashiirie.com/2013/12/13/twenty-fourteen-wordpress-3-8-parker/">Twenty Fourteen</a> and <a href="http://takashiirie.com/2015/03/19/twenty-fifteen-the-wordpress-default-theme-for-2015/">Twenty Fifteen</a> default themes. Irie describes Twenty Sixteen as:</p>\n<blockquote><p>A modernized approach of an ever-popular layout — a horizontal masthead and an optional right sidebar that works well with both blogs and websites. It has custom color options that allow you to make your own Twenty Sixteen. The theme was designed on a harmonious fluid grid with a mobile first approach. This means it looks great on any device.</p></blockquote>\n<p>The new theme has hints of Twenty Fourteen but is different enough to stand on its own as a unique design. It doesn’t look as modern as <a href="https://twentyfifteendemo.wordpress.com/">Twenty Fifteen</a> out-of-the box but the design could change during the 4.4 development cycle.</p>\n<p>If you want to help Twenty Sixteen be the best it can be, please join the weekly meetings held every Monday and Friday at 16:00 UTC in the #core-themes channel on <a href="https://make.wordpress.org/chat/">SlackHQ</a>. The meetings are a half hour-long and start once the theme is initially added to WordPress core.</p>\n<p>What do you think of Twenty Sixteen?</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, 26 Aug 2015 01:20:16 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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: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:85:"WPTavern: Sessions From BuddyCamp Brighton, UK Now Available to Watch on WordPress.tv";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=47892";s:7:"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:"http://wptavern.com/sessions-from-buddycamp-brighton-uk-now-available-to-watch-on-wordpress-tv";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1354:"<p>Earlier this month, the first <a href="https://brighton.buddycamp.org/2015/">BuddyCamp Brighton, UK</a> successfully took place. Six speakers presented their sessions from within the venue while four participated remotely. Here’s a break down of the attendees:</p>\n<ul>\n<li>13 Sponsors.</li>\n<li>8 Sessions.</li>\n<li>7 Volunteers.</li>\n<li>6 Speakers plus another 4 via video message.</li>\n<li>33 Attendees.</li>\n</ul>\n<p>The conference featured sessions on the <a href="https://brighton.buddycamp.org/2015/session/the-origin-of-buddypress/">origin of BuddyPress</a>, a <a href="https://brighton.buddycamp.org/2015/session/fireside-with-paul-gibbs/">fireside chat with Paul Gibbs</a>, and <a href="https://brighton.buddycamp.org/2015/session/messages-from-contributors/">messages from BuddyPress contributors</a>.</p>\n<p>Photographs of the event <a href="https://brighton.buddycamp.org/2015/photos/">are available</a> on the official BuddyCamp Brighton website. In addition to photographs, sessions were recorded and are <a href="http://wordpress.tv/event/buddycamp-brighton-2015/">available to watch for free</a> on WordPress.tv.</p>\n<p>In the following video, Gibbs explains the origins of <a href="https://buddypress.org/">BuddyPress</a>.</p>\n<p></p>\n<p>If you attended BuddyCamp Brighton, UK please share your experience 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:"Wed, 26 Aug 2015 01: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:"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: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:82:"WPTavern: OSTraining Makes Pods Framework Video Training Series 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:28:"http://wptavern.com/?p=47885";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:92:"http://wptavern.com/ostraining-makes-pods-framework-video-training-series-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:2214:"<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/pods.jpg"><img class="aligncenter size-full wp-image-40653" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/pods.jpg?resize=628%2C290" alt="pods" /></a><a href="https://www.ostraining.com/">OSTraining</a>, a site that offers video training for WordPress, Joomla, Drupal, and other technologies <a href="https://www.ostraining.com/blog/wordpress/pods/">announced</a> their <a href="http://pods.io/">Pods Framework</a> video <a href="https://www.ostraining.com/courses/class/wordpress/pods/">training series</a> is now available for free. Steve Burge, founder of OSTraining.com, says offering the video series for free is the result of a partnership with the Pods Framework project.</p>\n<p>“This project came about because the OSTraining and Pods teams bumped into each other on a regular basis. I often ran into Jim True and Josh Pollock from Pods. We met at WordCamps and WordPress meetups in Tampa, Orlando, and Miami, FL.</p>\n<p>“The Pods team explained that they were working on improving their documentation. They started a YouTube series, wrote tutorials, and started the <a href="http://wptavern.com/pods-lead-developer-scott-kingsley-clark-launches-friends-of-pods-funding-campaign">Friends of Pods</a> initiative to support their efforts. Making the videos free is our way of contributing to the Pods project,” Burge told the Tavern.</p>\n<p>Burge recorded the series after using Pods to create the <a href="http://appalachiantrail.com/">Appalachian Trail</a> website. The series provides an introduction to Pods, templates, creating a custom taxonomy, and more. Those interested can view the series on <a href="https://www.ostraining.com/courses/class/wordpress/pods/">OSTraining.com</a> or <a href="https://www.youtube.com/watch?list=PLtaXuX0nEZk9dCVMQRmSptuJ6YdVzMkr5&v=4rm95kNxRXg">YouTube</a>.</p>\n<p>Here’s a look at the first video in the series which introduces viewers to the Pods Framework.</p>\n<p><span class="embed-youtube"></span></p>\n<p>Although it was created in 2014, the series contains great insight into the project and provides an educational foundation for learning Pods 3.0.</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, 24 Aug 2015 21:20: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:"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: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:43:"Alex King: Request: Alex King Rememberances";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://alexking.org/?p=22017";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:49:"http://alexking.org/blog/2015/08/24/rememberances";s: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:1445:"<p>Dear WordPress community,</p>\n<p>My apologies for the selfish and personal nature of this post. I hope you will forgive me given the circumstances. As most of you know, I was <a href="http://alexking.org/blog/thread/cancer">diagnosed with stage 4 colon cancer in 2013</a>.</p>\n<p>One of the things my wife and I are trying to do is put together some information about my career that will hopefully give my 6 year-old daughter a better sense of who I was as an adult. She knows me as “dad”, but when she gets older she’ll be curious about who I was to my peers and colleagues.</p>\n<p>I’ve spent more than a decade in the WordPress community and I’d like to request that you to share a few thoughts or remembrances about me that we can compile and share with her when the time is right.</p>\n<p>If we have crossed paths or if I have managed to do something that you found helpful, I’d love it if you would take a few minutes to write it down and <a href="http://alexking.org/contact">send it to me</a> or my wife: [email protected]. If you’re willing to have the story shared publicly, please indicate that accordingly. By default, we will keep everything confidential.</p>\n<p class="threads-post-notice">This post is part of the thread: <a href="http://alexking.org/blog/thread/cancer">Cancer</a> – an ongoing story on this site. View the thread timeline for more context on this post.</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, 24 Aug 2015 21:01:30 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Alex";s: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:74:"WPTavern: Step Up Your Game: How to Work With Successful WordPress Clients";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=47868";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:83:"http://wptavern.com/step-up-your-game-how-to-work-with-successful-wordpress-clients";s: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:25388:"<hr />\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/08/MarioPeshev.jpg"><img class="alignright size-thumbnail wp-image-47869" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/08/MarioPeshev.jpg?resize=150%2C150" alt="Mario Y. Peshev" /></a>This post was contributed by <a title="Ryan Hellyer" href="http://geek.ryanhellyer.net/" target="_blank">Mario Peshev</a>. Mario is the founder and WordPress Architect at <a href="http://t.co/p9TnMSFMi2">DevriX</a> building and maintaining large WordPress-driven platforms. With over 10,000 hours of consulting and training, Mario’s Yin and Yang is his Open Source advocacy and business growth strategy.</p>\n<hr />\n<blockquote><p>Without continual growth and progress, such words as improvement, achievement, and success have no meaning – Benjamin Franklin</p></blockquote>\n<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/08/StepUpYourGameFeaturedImage.png"><img class="size-full wp-image-47879" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/08/StepUpYourGameFeaturedImage.png?resize=682%2C281" alt="Step up your game featured image" /></a>photo credit: <a href="http://www.flickr.com/photos/58522126@N00/430932479">Stairwell</a> – <a href="https://creativecommons.org/licenses/by/2.0/">(license)</a>\n<p>I’ve been a learnaholic for as long as I can remember and when I read the aforementioned quote, it resonates strongly with me. My prelude to WordPress years ago was one of the steps toward improvement and success and I’ve developed a special love-hate relationship with WordPress.</p>\n<p>Utmost admiration about its influence over the world in terms of Open Source and opportunities for various people in different niches, and its plague of being diminished and depreciated by professional developers and successful businesses.</p>\n<p>There are ways to solve these issues as long as the inner circle works towards the same goal.</p>\n<p><strong>Note</strong>: If you are happy building lego type websites with random ThemeForest themes and you see that as your future, this post is not for you. If you love doing the same repeatedly for mom and pop shops, this may not resonate with you. This is applicable to people who want to get better at what they do, be more professional, and make some impact by solving complex problems for larger customers.</p>\n<h2>WordPress For a Better Future</h2>\n<p>In May, I presented at a conference focused on kids and teenagers to motivate them, prepare them for the adult life, and nurture their creativity. Kids these days hardly think about their future, between their teenage emotional dramas and boring homework assignments. If you think about it, how can they be passionate about becoming someone if they have no real idea what they need to know and do on a daily basis?</p>\n<p>I used WordPress as an example of a platform that children can use, one that provides them with the opportunity to develop a talent or passion.</p>\n<p>Using WordPress for homework and general notes (or a diary) could indicate interest in several areas:</p>\n<ul>\n<li>Young bloggers can potentially do creative writing or copywriting.</li>\n<li>Constantly switching themes and playing with colors might open the room to design.</li>\n<li>Adding plugins and trying to implement complex combinations is the first step to programming.</li>\n<li>Sharing posts, looking at analytics and comparing different titles or photos is the way to marketing.</li>\n</ul>\n<p>There are other potential areas of course, but as long as kids can associate with an activity, become passionate about it, and start digging into it, they can save years of slacking, not to mention tens of thousands of dollars on college degrees for specialties they couldn’t care less about.</p>\n<p>This is one of the reasons why more and more people join the WordPress industry and switch boring jobs in order to make a living off of WordPress.</p>\n<h2>What Types Of WordPress Services Exist?</h2>\n<p>The amount of opportunities for WordPress work is incredible but the vast pool of WordPress jobs is so vague and blurry, that hiring and educating talent is out of control.</p>\n<p>I keep an eye on dozens of job boards, portals, and freelance networks. Clients look for Virtual Assistants to get their websites built. They look for expert WordPress developers to apply content changes to their site or web designers to develop complex plugins.</p>\n<p>On a weekly basis I see references to WordPress administrators, programmers, developers, designers, marketers, digital artists, webmasters, VAs, and plenty of other job titles used improperly. As a matter of fact, I’m now fascinated when I see a WordPress related job post or an offer looking for the right type of candidate.</p>\n<p>The great news is that you can do anything with WordPress. The caveat here is that WordPress itself is not a skill. You don’t ask for an Internet expert nowadays and you don’t go to the same doctor when you have a headache or you’ve injured your leg.</p>\n<p>The wide industry of innocent clients and amateur service providers have made it nearly impossible to tell a developer from a marketer, or from a general user who has installed WordPress with an auto-installer twice.</p>\n<h2>The Indecent World of WordPress Experts</h2>\n<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/JobTitleFeaturedImage.png"><img class="size-full wp-image-39089" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/JobTitleFeaturedImage.png?resize=650%2C200" alt="Job Titles Featured Image" /></a>photo credit: <a href="http://www.flickr.com/photos/58871905@N03/5565517971">I love ’84</a> – <a href="https://creativecommons.org/licenses/by/2.0/">(license)</a>\n<p>I’ve read a lot about impostor syndrome in several reputable WordPress blogs, and people keep identifying themselves in the comments. In my opinion, this is a problem so insignificant as compared to the ever-growing pool of people claiming to be WordPress Experts.</p>\n<p>In the last several years, I’ve interacted with people all around the world working with WordPress. From freelancers to successful business owners at conferences, and from beginner virtual assistants to full-stack consultants in social media, blogs and job networks.</p>\n<p>The largest group of service providers that I’ve found is the one of <em>WordPress experts</em>. You can easily substitute expert with specialist, guru, master, ninja and rockstar. Just open a new tab and do a few quick searches in Google, job networks, social media and view the large number of results.</p>\n<p>Next on the list are <em>WordPress developers</em>. A WordPress developer is often described as people who install plugins. There are various possible scenarios, but this is rarely the definition of an actual developer proficient in WordPress.</p>\n<p>Some boards or blogs list specific skills that let you filter by programming language or a separate tool. My latest research with 200 contractors with WordPress developer titles led to 170 people who rate themselves with 4 or 5 out of 5 stars in PHP proficiency, and 30 with 3 stars.</p>\n<p>Out of the 170 people in the first group, 150 were college students, Internet marketers, VAs, and people who have substituted strings in WordPress themes thanks to support forums or help from the Codex. Not a single line of code was written from scratch, let alone building anything, and 4 out of 5 or higher self-assessed their level of PHP experience.</p>\n<p>Tom McFarlin <a href="http://tommcfarlin.com/wordpress-developers-programmer-implementer/">published a post</a> on the difference between a developer and implementer and I wrote an overview defining <a href="http://wptavern.com/why-wordpress-job-titles-dont-mean-much-anymore">various technical skills in the WordPress context</a>. Due to the lack of proper training, any official educational resource or meaningful set of skills per role, both finding talent and improving one’s skills is being challenged.</p>\n<p>I challenge you to interview several successful clients around you who looked for skillful WordPress folks. They either happened to know the right people, were recommended someone, ended up with several freelancers who messed up big time, went AWOL and suddenly took the cash and disappeared, couldn’t deliver, or they did and the site is incredibly slow and/or got hacked soon thereafter.</p>\n<p>That’s sending serious businesses away and I won’t touch the topic of under pricing services and products which brings the quality and support way down.</p>\n<p>What motivates people to use a reliable resource in order to grow? The WordPress Foundation, nor any of the big players provide official training curriculum, and a definition for formal roles. There is no WordPress certification program (I won’t get into that to avoid unnecessary discussions), and there are no clear paths for requirements.</p>\n<h2>The WordPress Community is Filled with Amateurs</h2>\n<p>As a result, our community is a large group mostly composed of amateurs who started using WordPress one way or another. These people started earning money and reached a point where they don’t know where they stand, what they’re proficient in, if they’re doing fine, whether they’re experts, impostors, or somewhere in the middle, and what would be helpful to them?</p>\n<p>We still use FTP and work with PHP 5.2-supported hosts. The most popular theme marketplaces provide products with broken and inconsistent code. The WordPress.org plugin repository accepts plenty of plugins with suspicious consistency and compatibility.</p>\n<p>None of these issues are recognized publicly in the WordPress community. Some hosts prohibit SSH and allow solely FTP. PHP 5.2 will be supported by Core for a while, which doesn’t motivate hosts to upgrade. Marketplaces earn millions from their top sellers, so they’re not interested in quickly bringing up quality as long as poorly coded themes sell well. There’s also no formal constantly reviewed plugin repository for high quality plugins and no one is actively backing this idea up.</p>\n<p>If you read the last paragraph as a rant, it’s because it is. It’s meant to be a “wake up call” to clients who don’t know better and service providers who want to become better. While the WordPress Core itself is incredibly stable and flexible, the rest of the infrastructure is mostly poorly coded due to under pricing, lack of skills, and lack of more successful clients interested in backing up WordPress teams and consultants.</p>\n<p>There are different kinds of people and plenty of applications of WordPress. Whatever you do, it’s your professional duty to offer the right type of service instead of misleading your clients, and be aware of the other pertinent verticals. Moreover, it’s the only way forward working with reputable organizations and large profitable corporations.</p>\n<h2>What is a Successful Client?</h2>\n<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/10/SuccessFeaturedImage.png"><img class="size-full wp-image-32204" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/10/SuccessFeaturedImage.png?resize=636%2C278" alt="Success Featured Image" /></a>photo credit: <a href="https://www.flickr.com/photos/seeveeaar/2035597695/">seeveeaar</a> – <a href="http://creativecommons.org/licenses/by-nd/2.0/">cc</a>\n<p><a href="http://prestigeconf.com/">Prestige Conference</a> happened a few weeks ago, and Shane Pearlman from <a href="https://tri.be/">Modern Tribe</a> shared his experience in a presentation entitled, Land the Big Fish: Strategies Acquiring Larger Clients. It’s a motivational talk that outlines different strategies on negotiating and landing larger customers.</p>\n<p>During the Q&A at the end of the session, Pearlman is asked, “What’s in it for me to go through all of that headache to procure bigger brand names?”</p>\n<p>As I stated at the beginning, working with successful clients is not for everyone. Some people are afraid to leave their comfort zone. Others are too lazy to learn new skills or sometimes doing the same thing repeatedly may be their perfect job. For every other entrepreneur or business player, successful clients are exciting.</p>\n<p>Each small change is magnified when working with successful clients. Usually, they have a lot of employees, a solid budget for marketing and advertising, a lot of traffic, and various complex requirements that help them attract more leads or automate their processes. T</p>\n<p>hey are often respectable and have access to more capital. This allows them to invest more since their return of investment is worth it; while taking a risk due to saving a few bucks could very well ruin their reputation and harm their business. There are several examples of products or companies in the WordPress community that were hacked or where updates caused major issues.</p>\n<p>Working with successful clients is extremely rewarding and exciting, but getting there requires ace skills and solid experience, as well as the right mindset.</p>\n<h2>How to Target Successful Clients</h2>\n<p>Based on my experience with banks, telecoms, automotive, airline brands, large educational institutions and media outlets over the last 12 years as a developer and a technical lead, there are several specific areas where courageous WordPress freelancers and small business owners can focus on if they are aiming for growth and successful clients, but aren’t there yet.</p>\n<p>I have identified some steps for <a href="http://www.wpelevation.com/2015/08/8-steps-to-move-from-freelancer-to-successful-company/">moving from a freelancer to a successful company</a>. Here is what we should focus on in the WordPress context in order to step up our game, understand our industry better, and start acting professionally if we want to be taken seriously.</p>\n<h2>WordPress is a Vague Term</h2>\n<p>Being a WordPress Expert says nothing. You may be a lead developer of WordPress or someone who can memorize the order of all submenus under Settings in the admin dashboard. Both are classified as WordPress experts and that’s what many people don’t realize.</p>\n<p>Specialize in a given niche and polish your skills. Focus on a specific group of projects – membership websites, eCommerce stores, multisite installs. Become a know-it-all professional for an extensible plugin such as, BuddyPress, Gravity Forms, or Easy Digital Downloads.</p>\n<p>Understand the value you are providing and what it corresponds to. Be respectful to the broad community of professionals in your area, learn from them, ask them to be your mentors. Even the best athletes and CEOs have coaches, business mentors, and boards of directors. Find out what it is that you do whether it’s design, development, marketing, or something else and learn the skill inside and out.</p>\n<h2>WordPress Installments Don’t Matter</h2>\n<p>Plenty of people offer WordPress services as an add-on to their portfolio of other services without realizing the impact it has on the business. While WordPress is used for plenty of purposes, it’s still a technical platform that comes with its own specific set of requirements.</p>\n<p>Imagine what will happen if:</p>\n<ul>\n<li>You set up a vulnerable plugin that is exploited and your client’s password is stolen, along with their private details.</li>\n<li>You forget to protect the media uploader and the client uploads sensitive data. Scanned images of contracts and ID cards end up in the public space.</li>\n<li>Your sitemap plugin indexes protected data since you used a plugin that doesn’t work.</li>\n<li>You set up a site and sell it to a client, and due to the terrible choice of plugins, the site crashes miserably and kills the server during a demonstration in front of their big clients.</li>\n</ul>\n<p>Its a small list of what ifs, but they happen all the time. If you don’t possess the skills or offer the wrong service, this could damage your client’s business. Upping your game and providing solutions instead of websites allows you to take care of the infrastructure, maintenance work, support, development, security, marketing of the project.</p>\n<p>At the very least, be aware of the consequences and partner up with other agencies and consultants. Complete packages are what successful clients look for and inexperienced people often mess up what others have built.</p>\n<h2>WordPress Expert Skills Won’t Cut It</h2>\n<p>Successful clients look for professional skills. They have real problems that can’t be solved with yet another plugin, and they are smart enough to know that.</p>\n<p>If you are in the business of configuring themes and installing a few plugins for clients, that won’t do it for successful customers. You need to specialize in code, design, user experience, marketing, or something else that brings real value to them.</p>\n<p>Large clients are looking for state of the art designs, performant and secure code, brilliant marketing skills, and growth hacking strategy. Large clients are successful because they are outstanding at what they do, the services they offer, and they appreciate high quality.</p>\n<h2>Context-Specific WordPress Solutions</h2>\n<p>Large organizations take their marketing presence and technical stack seriously. They carefully delegate based on multiple factors. Being in a meeting with a large client typically means discussing a use case together with several people such as, a creative director, VP of marketing, network engineer, and project manager.</p>\n<p>In addition to being skillful in your niche and ready to provide value, you have to learn the business processes of your target client. Your idea of a solution may be applicable for small sites, but it may very well be a bad fit based on the company policy or the variety of services used by the team.</p>\n<p>As an example, a creative director may require you to prepare your theme to be ADA Section 508 compliant, which is an accessibility standard required by certain organizations. The VP of marketing may ask for a Hubspot integration with Cvent within your website for proper CRM and meeting request management.</p>\n<p>The network engineer could outline that they need to host the solution on-site, and set up a specific set of web application firewalls and internal web server security rules restricting certain process callbacks. The project manager might share a complicated timeline based on the organization load, holiday schedule, decision maker’s availability, conferences, and various deliverables that need to be presented by different people and other third-parties.</p>\n<p>All of the above are things that we’ve been asked for over the past few months. If you are used to working with a specific host using Apache, prepare for writing documentation and shipping to a restricted server running HHVM. If you use a framework that isn’t accessible, you will need to step back, explore the Section 508 standards, and build something compatible.</p>\n<p>Generic solutions are often not the right fit for large clients. But if you’re determined to learn more and become a better professional, that’s the perfect challenge for you.</p>\n<h2>Solving More Complex Problems</h2>\n<p>In addition to being able to adjust to different environments, working with large clients means solving more complex problems.</p>\n<p>If a mom and pop shop is somewhat broken or down, it’s probably not a big deal if their site receives 100 visits per month. But for a project with tens of millions of views a month and thousands of concurrent users, it is unacceptable.</p>\n<p>Working on larger and heavy platforms often means dealing with a lot of data, complex relationships, and solid traffic. This means that every single line of your code and business decision will inevitably impact the entire system in a way visible to hundreds of thousands of people.</p>\n<p>In order to be able to cope with these, you should study your specialty in detail and understand what the impact is of every single change. These skills increase your value and let you face similar challenges and solve problems that the majority of beginners can’t even imagine.</p>\n<p>You will learn a lot about the entire stack, and get to know hundreds of different rules. At some point you will voluntarily violate those rules, being aware of the fact that some design patterns and best practices don’t solve specific problems. It’s better to denormalize a database or minify a compression algorithm in order to solve a business problem for a large platform.</p>\n<p>It’s just as they say at a music college – you learn the music theory for three years, and then you throw everything away and start playing jazz. You need to know the entire architecture and strategy first in order to decide how to optimize it in the best possible manner, whether it’s using a best practice or violating one for a specific purpose.</p>\n<h2>Teaming Up</h2>\n<p>If you have worked solo or in a small team, you will eventually need to partner up or grow. Either way, large projects are time consuming and require different expertise, and it’s unthinkable for one to know it all. Therefore, you will work with other professionals from more industries, team up and solve more complex problems together, and learn more about their challenges.</p>\n<p>If you have thought about mastering a single skill, teaming up with the right people will add a few more skills as an extra perk, which will increase the potential of your main skill as well. Working with financial analysts on a project for a bank helped me to understand the entire model of loans and mortgages, as well as the internal banking policy.</p>\n<p>This allowed me to learn how loans and interests work in different cases and get acquainted with standardized security regulations at companies in the financial field.</p>\n<h2>Security Concerns</h2>\n<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/05/HelloSecurityFeaturedImage.png"><img class="size-full wp-image-44224" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/05/HelloSecurityFeaturedImage.png?resize=688%2C368" alt="Hello Security Featured Image" /></a>photo credit: <a href="http://www.flickr.com/photos/8264582@N06/3383392046">Two Locks</a> – <a href="https://creativecommons.org/licenses/by/2.0/">(license)</a>\n<p>Data privacy and security are important topics that people often misjudge. Working with large clients means more responsibility and higher impact in case of a problem. In the process of building a solution or consulting a reputable organization, you will most likely have to comply with various security policies.</p>\n<p>While some of them may seem unnecessary, there is a reason they exist. The more familiar you are with them, the better it is for you, your clients, and future endeavors. If you’re not using VPNs, SSH keys, two-factor authentication, or voice recognition IDS, this may be a good lesson for you. Why are they needed, what problems do they solve, and how can you apply them to your personal data and existing set of clients?</p>\n<h2>Organization and Accountability</h2>\n<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/08/BrainyQuote1.jpg"><img class="size-full wp-image-47877" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/08/BrainyQuote1.jpg?resize=620%2C400" alt="BrainyQuote" /></a>BrainyQuote\n<p>In order to be helpful to large businesses as a consultant, or an agency, you need to be reliable. This may be a result of a number of testimonials, successful track record at previous companies or a good portfolio. It’s always challenging to start with large customers, so improving your skills and working hard in order to become valuable is important.</p>\n<p>Being organized and process-oriented is essential to most reputable organizations. The majority of them are more conservative and operate slowly, since a minor mistake could cost them millions or more.</p>\n<p>They rely on detailed specifications, scope of work documents, use case diagrams, UX mockups/wireframes, E/R diagrams, and a large list of documents. They include every single detail in their planning – from holidays for each member of their team, to different dependencies from other service providers and third-party members.</p>\n<p>Successful clients have managed to build a process and scale it in a way that grows their revenue in a predictable way. In order to be able to handle large projects, you need to treat them as a small project that takes longer to complete.</p>\n<p>Learn how to use a project management system and version control properly, define your pricing strategy, make sure to predict all of the delays for both communication and payments. Learn how large organizations operate and do your due diligence upfront in order to avoid surprises.</p>\n<p>Don’t take anything for granted and don’t assume anything. The more confident you are, the higher the possibility of making a major mistake. There are always new automatic deployment strategies or a DevOps service you haven’t heard of, another massive CSS3 grid, or a growth hacking strategy that you haven’t explored.</p>\n<p>The more challenges you face, the more you’ll learn, and be able to solve complex problems.</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, 24 Aug 2015 18:42: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: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:35:"Alex King: Personal WordPress Theme";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://alexking.org/?p=21662";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:60:"http://alexking.org/blog/2015/08/22/personal-wordpress-theme";s: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:2188:"<p>I’ve forked the FavePersonal theme to release a few changes that I’ve made to it for my own site.</p>\n<ol>\n<li>An improved Gallery feature, including support for WordPress shortcode galleries. If you’re uploading photos directly to your gallery post, you can use drag and drop to set the order for them now.</li>\n<li>The Post Formats admin UI is now responsive and works great on mobile devices.</li>\n<li>Remove the Social plugin from the theme (requested by WP.org) – it can still be installed separately.</li>\n<li>Make tons of misc. code changes to match new coding standards vs. previous coding standards (and pass the theme check).</li>\n</ol>\n<p><img src="http://alexking.org/wp-content/uploads/2015/08/maine-gallery-510x469.png" alt="Gallery" width="480" height="441" class="alignnone size-medium-img wp-image-22028" /></p>\n<p>I was originally hoping to have the modified theme hosted on WordPress.org but after weeks of waiting for review, they responded that features of the theme like <a href="https://themes.trac.wordpress.org/ticket/24520#comment:4">choosing colors and post formats</a> should be done in separate plugins instead. This makes no sense to me as these are core features of the theme, but happily there are great places like <a href="https://github.com/alexkingorg/wp-personal">GitHub</a> that will host the project for us.</p>\n<p>The Personal theme is quite assuredly <a href="https://www.google.com/webmasters/tools/mobile-friendly/?url=alexking.org">mobile-friendly</a>, which makes it a great fit for the importance Google’s is placing on mobile-friendly sites lately.</p>\n<p>You can download from the <a href="https://github.com/alexkingorg/wp-personal/releases">releases page</a> on GitHub or, for you technically minded, grab the reop with git. Just make sure to also grab the submodules.</p>\n<p><code>git clone [email protected]:alexkingorg/wp-personal.git<br />\ncd wp-personal<br />\ngit submodule update --init --recursive</code></p>\n<p class="threads-post-notice">This post is part of the project: <a href="http://alexking.org/project/personal">Personal Theme</a>. View the project timeline for more context on this post.</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, 22 Aug 2015 19:11: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:4:"Alex";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:30;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:80:"WPTavern: WordCampus a Conference Devoted to Using WordPress in Higher Education";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=47853";s:7:"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:"http://wptavern.com/wordcampus-a-conference-devoted-to-using-wordpress-in-higher-education";s: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:1861:"<p>Higher education is a subject that <a href="http://wordpress.tv/?s=education">some WordCamps</a> have tackled over the years, but what if there was an event entirely devoted to it? That’s the idea <a href="http://bamadesigner.com">Rachel Carden</a> is proposing with <a href="http://wpcampus.org/">WordCampus</a>. The idea started off as a tweet but quickly gained momentum with others in the community.</p>\n<blockquote class="twitter-tweet" width="550"><p lang="en" dir="ltr">Ooh. Dream with me: "<a href="https://twitter.com/hashtag/WordCampus?src=hash">#WordCampus</a>: A WordCamp for folks using <a href="https://twitter.com/hashtag/WordPress?src=hash">#WordPress</a> in Higher Education." I like it. <a href="https://twitter.com/hashtag/heweb?src=hash">#heweb</a> <a href="https://t.co/m1zEkpkP4B">https://t.co/m1zEkpkP4B</a></p>\n<p>— Rachel Carden (@bamadesigner) <a href="https://twitter.com/bamadesigner/status/628324358126235648">August 3, 2015</a></p></blockquote>\n<p></p>\n<p>WordCampus is an event that would cover topics such as, how to manage a large-scale network of faculty blogs, abiding by FERPA regulations, or how to best implement single sign-on that integrates with Active Directory.</p>\n<p>Carden <a href="https://poststatus.com/wordpress-higher-ed-conference-wordcampus/">outlines her idea in detail</a> on Post Status and says that even though camp is in the event’s name, it doesn’t imply that it would be an official WordCamp event. She’s also open to organizing an event not affiliated with the WordPress Foundation.</p>\n<p>If you’re interested in speaking, sponsoring, or attending WordCampus, please <a href="http://wpcampus.org/">fill out the survey </a>and help spread the word. The more interest Carden generates, the more likely it is that the WordPress Foundation will back 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, 20 Aug 2015 19:40:14 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"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: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:51:"WPTavern: What Do You Want to See in WordPress 4.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:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=47850";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:60:"http://wptavern.com/what-do-you-want-to-see-in-wordpress-4-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:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1220:"<p>Scott Taylor, who is <a href="http://wptavern.com/wordpress-core-team-announces-release-leads-for-wordpress-4-3-and-4-4">leading the development cycle</a> for WordPress 4.4, <a href="https://make.wordpress.org/core/2015/08/19/wordpress-4-4-whats-on-your-wishlist/">published a post</a> on the Make WordPress Core site asking people what they’d like to see in WordPress 4.4. The post has generated a number of comments from the community. Some of the most popular suggestions include:</p>\n<ul>\n<li>REST API</li>\n<li>Fields API</li>\n<li>Term Meta</li>\n<li>Shortcake UI</li>\n<li><a href="https://core.trac.wordpress.org/ticket/31467">Ticket 31467</a> Images should default to not linking</li>\n<li>RICG Responsive Images</li>\n<li>Posts 2 Posts</li>\n</ul>\n<p>Most of the items suggested are at various stages of development and there’s no guarantee any of them will make it into WordPress 4.4. However, the comments provide insight into what a lot of developers want in WordPress.</p>\n<p>If there’s a ticket, feature, or plugin you’d like to see in WordPress 4.4, please <a href="https://make.wordpress.org/core/2015/08/19/wordpress-4-4-whats-on-your-wishlist/">leave a comment</a> on the post.</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, 20 Aug 2015 18:16:34 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:60:"WPTavern: WPWeekly Episode 204 – Overview of WordPress 4.3";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=47844";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:66:"http://wptavern.com/wpweekly-episode-204-overview-of-wordpress-4-3";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2272:"<p>In this week’s episode of WordPress Weekly, <a href="http://marcuscouch.com/">Marcus Couch</a> and I review WordPress 4.3. We discuss the Kim Parsell memorial scholarship and the events that led to its creation. We also discuss Nick Haskins’ rebrand of Lasso. Last but not least, we spread the news that Automattic is hiring.</p>\n<h2>Stories Discussed:</h2>\n<p><a href="http://wptavern.com/wordpress-4-3-billie-named-after-jazz-singer-billie-holiday-is-available-for-download">WordPress 4.3 “Billie” Named After Jazz Singer Billie Holiday Is Available</a><br />\n<a href="http://wptavern.com/the-wordpress-foundation-begins-accepting-applications-for-the-kim-parsell-memorial-scholarship"> The WordPress Foundation Begins Accepting Applications for the Kim Parsell Memorial Scholarship</a><br />\n<a href="http://wptavern.com/nick-haskins-rebrands-lasso-to-editus"> Nick Haskins Rebrands Lasso to Editus</a><br />\n<a href="https://automattic.com/work-with-us/">Automattic is Hiring</a></p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a href="https://wordpress.org/plugins/wp-remote-multisite-post/">WP Remote Multisite Post</a> allows for advanced remote posting from a WordPress master site to many WordPress client sites using XML-RPC.</p>\n<p><a href="https://wordpress.org/plugins/fb-group-feed/">FB Group Feed</a> is a plugin to display Facebook group posts or a feed on your site in a post or a widget.</p>\n<p><a href="https://wordpress.org/plugins/wp-webinarsystem/">WP Webinar System</a> allows you to run webinars within your WordPress website and customize everything around it.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, August 26th 4:00 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href="https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738" target="_blank">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href="http://www.wptavern.com/feed/podcast" target="_blank">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href="http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr" target="_blank">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #204:</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, 20 Aug 2015 17:28:56 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"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:105:"WPTavern: The WordPress Foundation Begins Accepting Applications for the Kim Parsell Memorial Scholarship";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=47835";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:115:"http://wptavern.com/the-wordpress-foundation-begins-accepting-applications-for-the-kim-parsell-memorial-scholarship";s: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:2885:"<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/KimParsell.png"><img class="size-full wp-image-36619" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/01/KimParsell.png?resize=655%2C418" alt="WordCamp San Francisco 2014 By Sheri Bigelow" /></a>WordCamp San Francisco 2014 By Sheri Bigelow\n<p>Earlier this year, the WordPress Foundation <a href="https://make.wordpress.org/community/2015/01/15/remembering-kim-parsell/">created a scholarship</a> in memory of <a href="http://wptavern.com/kim-parsell-affectionately-known-as-wpmom-passes-away">Kim Parsell</a> to celebrate her life and contributions to WordPress. With the date and location secured for <a href="http://wptavern.com/philadelphia-pa-to-host-wordcamp-us-december-4th-6th">WordCamp US</a>, applications for the scholarship are now <a href="http://wordcampcentral.polldaddy.com/s/kim-parsell-scholarship-application">being accepted</a> by the Foundation.</p>\n<p>Details of the scholarship are as follows:</p>\n<ul>\n<li>It is a scholarship for a woman contributor with financial need who has never attended WordCamp San Francisco before.</li>\n<li>It will cover the ticket cost, flight, and lodging.</li>\n<li>It will not cover things like taxis, meals outside the official event, or airport transportation.</li>\n<li>One scholarship is awarded per year.</li>\n<li>It is funded by the WordPress Foundation.</li>\n<li>The application deadline is September 2, 2015.</li>\n<li>A decision will be made by September 16, 2015, and applicants contacted.</li>\n</ul>\n<p>Because of the nature of this scholarship <a href="https://make.wordpress.org/community/2015/01/15/remembering-kim-parsell/">explained here</a>, applicants must fulfill four requirements.</p>\n<ol>\n<li>A woman (this includes trans women)</li>\n<li>An active contributor to the WordPress open source project (through one of the contributor teams or as a local meetup/WordCamp organizer)</li>\n<li>Someone with financial need</li>\n<li>Someone who has never attended WordCamp San Francisco (the precursor to WCUS).</li>\n</ol>\n<p>Kim was an older woman who encouraged others, especially women around the same age group to get involved with WordPress. In light of this, older women are highly encouraged to apply for the scholarship if you meet the other requirements.</p>\n<p>Kim once told me that attending WordCamp San Francisco 2014 was one of the best experiences of her life. It was her first WordCamp San Francisco and although she was unemployed at the time, she was able to attend thanks to financial assistance received from the <a title="http://wordpressfoundation.org/" href="http://wordpressfoundation.org/">WordPress Foundation</a>.</p>\n<p>Thank you to Jen Mylo, the WordPress Foundation, and Matt Mullenweg for not only creating the scholarship, but for providing the opportunity for others to potentially have the same experience.</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, 19 Aug 2015 20:18:54 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"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: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:73:"WPTavern: Hybrid Core 3.0 Experiments With Community-driven Documentation";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=47825";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:83:"http://wptavern.com/hybrid-core-3-0-experiments-with-community-driven-documentation";s: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:2762:"<p>Hybrid Core 3.0, developed by Justin Tadlock, is <a href="http://themehybrid.com/weblog/hybrid-core-version-3-0-mr-reynolds">available for download</a>. More than a year in the making, 3.0 has over 269 commits and a slew of new features.</p>\n<p>After the release of Hybrid Core 2.0 last year, Tadlock assumed it would be at least two years before he tackled another major release, “I’d planned on doing minor and patch releases for a while, all along building themes,” he said.</p>\n<p>“However, a lot has changed in the theming world in just the past year. WordPress has added a lot of cool features for theme authors that were previously handled by Hybrid Core,” Tadlock said.</p>\n<p>Tadlock wants the project to feel fresh and one way to do that is to remove features that are handled natively by WordPress. Features removed from Hybrid Core include:</p>\n<ul>\n<li>Atomic hooks functionality.</li>\n<li>Random Custom Background extension.</li>\n<li>Featured Header extension.</li>\n<li>Cleaner Caption extension (handled in WP).</li>\n<li>Loop title/description (replaced by WP).</li>\n<li>Pagination (replaced by WP).</li>\n</ul>\n<p>It’s clear that the <a href="https://make.wordpress.org/core/2015/06/09/trust-live-preview-and-menus-in-the-customizer/">customizer in WordPress is here to stay</a> and will be an important part of the project’s future. Hybrid Core 3.0 adds a variety of enhancements that make the customizer more flexible, these include:</p>\n<ul>\n<li>Color Palette.</li>\n<li>Multiple Checkbox.</li>\n<li>Dropdown Terms.</li>\n<li>Layout.</li>\n<li>Radio Image.</li>\n<li>Select Group.</li>\n<li>Multiple Select.</li>\n</ul>\n<p>There’s also a few customizer setting classes:</p>\n<ul>\n<li>Array Map.</li>\n<li>Image Data.</li>\n</ul>\n<h2>Tadlock Experiments with Community-driven Documentation</h2>\n<p>One of the largest changes to the Hybrid project is opening up documentation to be community-driven. The <a href="https://github.com/justintadlock/hybrid-core/wiki">Hybrid Core wiki</a> hosted on Github is now open to contributions from the community.</p>\n<p>Tadlock believes that this will drive adoption of the framework by more theme authors, “The more developers we have using and contributing to the project, the better,” he said.</p>\n<p>If the community responds well to the experiment, it will allow Tadlock to focus on longer-form tutorials for club members, something he feels he’s better at doing than reference style documentation.</p>\n<p>Hybrid Core 3.0 includes a number of features, bug fixes, and improvements. If you want to see all of the changes in 3.0, check out the <a href="https://github.com/justintadlock/hybrid-core/blob/master/changelog.md">lengthy 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:"Wed, 19 Aug 2015 19:38:04 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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: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:32:"Matt: 1.6m Downloads in 23 Hours";s:7:"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:21:"http://ma.tt/?p=45306";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:48:"http://ma.tt/2015/08/1-6m-downloads-in-23-hours/";s: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:344:"<p></p>\n<p>23 hours hours ago, WordPress 4.3 was released. <a href="https://wordpress.org/download/counter/">It’s already had 1.6 million downloads and counting</a>. For a look at what’s new in this version you can watch the quick video above, or <a href="https://wordpress.org/news/2015/08/billie/">check out the blog 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, 19 Aug 2015 18:01:33 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:36;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:101:"WPTavern: WordPress 4.3 “Billie” Named After Jazz Singer Billie Holiday Is Available for Download";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=47803";s:7:"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:105:"http://wptavern.com/wordpress-4-3-billie-named-after-jazz-singer-billie-holiday-is-available-for-download";s: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:10229:"<p>After four months of development led by <a href="http://konstantin.obenland.it/">Konstantin Obenland</a>, WordPress 4.3 “Billie” named after jazz singer <a href="http://www.billieholiday.com/">Billie Holiday</a>, is <a href="https://wordpress.org/news/2015/08/billie/">available for download</a>. This release features menus in the customizer, strong passwords by default, site icons, and variety of other improvements.</p>\n<p></p>\n<p></p>\n<h2>Menus in the Customizer</h2>\n<p>You can now create, add, and edit menus in the customizer while previewing changes to your site in real-time. Unlike other parts of the customizer, previewing menus should be fast as it uses a new hybrid transport layer. Weston Ruter, who contributed to fast previews in the customizer <a href="https://make.wordpress.org/core/2015/07/29/fast-previewing-changes-to-menus-in-the-customizer/">explains the approach</a>.</p>\n<blockquote><p>We also wanted to enable fast previewing of menu changes by default. So we implemented a <code>postMessage</code>/<code>refresh</code> hybrid approach which uses <code>postMessage</code> to sync the menus settings to the preview, and then the preview does an Ajax request to render just the contents of the menu container, and this Ajax response is then inserted into the DOM to replace the previous menu container. The technical name for this approach we have been calling ‘partial refresh’, but you can call it fast preview.</p></blockquote>\n<p>In general, previewing menus in most themes should be a fast experience.</p>\n<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/08/menu-customizer.png"><img class="size-full wp-image-47806" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/08/menu-customizer.png?resize=1010%2C568" alt="Menu Customizer" /></a>Menu Customizer\n<h2>Strong Passwords by Default</h2>\n<p>Mark Jaquith <a href="https://make.wordpress.org/core/2015/07/28/passwords-strong-by-default/">led the effort</a> to improve the way passwords are chosen and changed in WordPress. On the account management page, clicking the Generate Password button generates a strong password by default. The password strength meter is better integrated into the password field which lets users know immediately when their password is weak.</p>\n<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/08/better-passwords.png"><img class="size-full wp-image-47807" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/08/better-passwords.png?resize=1010%2C568" alt="Better Passwords in WordPress" /></a>Better Passwords in WordPress\n<p>The same interface is on the add new user screen, the password reset screen, and the WordPress install screen. While WordPress doesn’t require users to have a strong password, it does everything it can to encourage users to choose one.</p>\n<p>In addition, WordPress no longer emails passwords and password reset links expire after 24 hours. When your password or e-mail changes, WordPress sends you an email so if someone hijacks your browser session and changes these items, you’ll be notified that it happened, and you can take action. You can disable these e-mails via the <code>send_pass_change_email</code> and <code>send_email_change_email</code> filters by setting them to false.</p>\n<h2>Site Icons</h2>\n<p><a href="http://wptavern.com/wordpress-4-3-adds-new-site-icons-feature-and-a-text-editor-to-press-this">Site Icons</a> are images that represent a website across multiple platforms. You can configure your Site Icon in the Site Identity panel within the customizer where you can upload a 512X512 sized image. This image will be used for browsers, iOS, Android, and Microsoft devices when a visitor bookmarks your site.</p>\n<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/08/site-icon-customizer.png"><img class="size-full wp-image-47808" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/08/site-icon-customizer.png?resize=1010%2C568" alt="Site Icons in The Customizer" /></a>Site Icons in The Customizer\n<h2>Text Patterns, Quick Link Toolbar, and Word Count Changes</h2>\n<p>The editor in WordPress 4.3 has <a href="http://wptavern.com/text-patterns-and-the-quick-link-toolbar-in-wordpress-4-3">undergone more improvements</a> with text shortcuts, a quick link toolbar, and word count changes. Text patterns or text shortcuts allow you to quickly add unordered lists, ordered lists, headers, and blockquotes without having to use a mouse.</p>\n<p>When starting a new paragraph with one of these formatting shortcuts followed by a space, the formatting will be applied automatically. Press Backspace or Escape to undo.</p>\n<p>In the visual editor in WordPress 4.3, typing <code>*</code> or <code>-</code> and hitting the space bar will generate a bulleted list. Typing <code>1. </code> or <code>1)</code> and hitting space will generate a numbered list. If you don’t want to create these lists or do so in error, clicking the undo button or hitting <code>ctrl/cmd+z</code> or <code>esc</code> will undo the text pattern.</p>\n<p>Starting a paragraph with two to six number signs <code>#</code> will convert the paragraph to a heading. Similarly, the greater-than symbol <code>></code> will convert the paragraph to a blockquote.</p>\n<ul>\n<li>## = H2</li>\n<li>### = H3</li>\n<li>#### = H4</li>\n<li>##### = H5</li>\n<li>###### = H6</li>\n</ul>\n<h3>Quick Link Preview Toolbar</h3>\n<p>When you click a link in the WordPress 4.3 visual editor, a small inline link toolbar displays the full URL with buttons to edit or remove it. This avoids having to use the Insert/edit link modal window.</p>\n<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/08/PreviewLinks.png"><img class="size-full wp-image-47792" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/08/PreviewLinks.png?resize=571%2C102" alt="Preview Links in The Visual Editor WordPress 4.3" /></a>Preview Links in The Visual Editor WordPress 4.3\n<p>Word and character counts have also changed in WordPress 4.3. Instead of updating counts when pressing enter or return, it will refresh when you stop typing. A lot more characters that shouldn’t be counted as words are excluded. Ella Iseulde Van Dorpe, WordPress core contributor, <a href="https://make.wordpress.org/core/2015/07/23/wordcharacter-count-updates-in-4-3/">lists other notable changes</a>.</p>\n<h2>Changes to the Admin Bar</h2>\n<p>WordPress 4.3 moves the Customize link to the top-level menu of the admin bar. This link opens the customizer, allowing you to manage menus, appearance, and widgets through the customizer interface.</p>\n<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/WP42AdminBar.png"><img class="wp-image-46995 size-full" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/WP42AdminBar.png?resize=429%2C232" alt="WordPress 4.2 Admin Bar" /></a>WordPress 4.2 Admin Bar\n<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/WP43AdminBar.png"><img class="wp-image-46996 size-full" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/WP43AdminBar.png?resize=428%2C202" alt="WP43AdminBar" /></a>WordPress 4.3 Admin Bar\n<p>The Dashboard, Themes, Widgets, and Menus links take users to their corresponding admin pages in the backend of WordPress. This makes it clear which interface users are about to enter. The enhancement is a result of <a href="https://core.trac.wordpress.org/ticket/32678">ticket #32678</a> where Helen Hou-Sandí and other WordPress core contributors discussed ways to improve the context of each link over the course of five weeks.</p>\n<h2>Noteworthy Changes</h2>\n<ul>\n<li><a href="http://wptavern.com/wordpress-4-3-improves-user-search-and-turns-comments-off-on-pages-by-default">Comments are turned off on pages by default</a>.</li>\n<li><a href="https://make.wordpress.org/core/2015/07/02/deprecating-php4-style-constructors-in-wordpress-4-3/">PHP-4 Style constructors have been deprecated</a> to prepare for the release of PHP 7.</li>\n<li>Singular.php was added to the <a href="https://make.wordpress.org/core/2015/07/06/singular-php-new-theme-template-in-wordpress-4-3/">WordPress template hierarchy.</a></li>\n<li>Changes to c<a href="https://make.wordpress.org/core/2015/07/27/changes-to-customizer-panels-and-sections-in-4-3/">ustomizer panels and sections.</a></li>\n<li><a href="https://make.wordpress.org/core/2015/07/31/headings-in-admin-screens-change-in-wordpress-4-3/">Header tags were updated through the admin screens</a>. Plugin, theme, and framework developers, please change the main heading from an <code><h2></code> into an <code><h1></code>. Also, check the rest of your heading structure to ensure it’s semantic.</li>\n<li><a href="https://make.wordpress.org/core/2015/07/24/multisite-focused-changes-in-4-3/">Multisite focused changes in 4.3</a> specifically, the introduction of get_main_network_id()</li>\n<li><a href="https://make.wordpress.org/core/2015/07/30/get_transient-is-now-more-strict-in-4-3/">get_transient() is now more strict in 4.3</a></li>\n<li>The old <a href="https://make.wordpress.org/core/2015/07/29/old-distraction-free-writing-code-removed-in-4-3/">Distraction Free Writing (DFW) code has been removed</a>.</li>\n<li>The code that powered the <a href="https://make.wordpress.org/core/2015/07/30/legacy-theme-preview-removed-in-4-3/">old theme preview has been removed</a>.</li>\n<li><a href="https://make.wordpress.org/core/2015/08/08/list-table-changes-in-4-3/">List tables have undergone API and UI changes</a>, with the introduction of a primary column concept and easier subclassing.</li>\n</ul>\n<p>WordPress 4.3 is the result of hundreds of paid and non-paid volunteers working tirelessly to improve the software used on more than 24% of the web. If you experience any issues with WordPress 4.3, please <a href="https://wordpress.org/support/">report them on the support forums</a>. Volunteers are watching support threads closely and if warranted, will create a thread listing known issues.</p>\n<p>To enjoy the full upgrade experience, I encourage you to listen to Lady sings The Blues by Billie Holiday as you upgrade your WordPress sites.</p>\n<p><span class="embed-youtube"></span></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, 18 Aug 2015 19:13: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: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:26:"Matt: Automattic is Hiring";s:7:"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:21:"http://ma.tt/?p=45297";s:7:"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:44:"http://ma.tt/2015/08/automattic-is-hiring-2/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:635:"<p>Do you know someone who is an amazing developer or designer? Someone who is passionate about helping people? An awesome lounge manager? Or maybe that person is you. <a href="https://automattic.com/work-with-us/">Automattic is hiring for a variety of positions</a>, and for all except two you can live and work wherever you like in the entire planet. There are also a number of other benefits; the main downside it’s a high performance culture and expectations are extremely high. Automattic hires the best folks regardless of geography, and we are <em>especially</em> looking for people right now outside of US timezones.</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, 18 Aug 2015 16:05: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:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:38;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:67:"WPTavern: Text Patterns and the Quick Link Toolbar in WordPress 4.3";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=47790";s:7:"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:"http://wptavern.com/text-patterns-and-the-quick-link-toolbar-in-wordpress-4-3";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4590:"<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/08/QuickLinkToolbarFeaturedImage.png"><img class="size-full wp-image-47794" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/08/QuickLinkToolbarFeaturedImage.png?resize=675%2C209" alt="Quick Link Toolbar Featured Image" /></a>photo credit: <a href="http://www.flickr.com/photos/34547181@N00/4309431757">metal chain</a> – <a href="https://creativecommons.org/licenses/by-nd/2.0/">(license)</a>\n<p>WordPress 4.3 is on schedule to be released <a href="https://make.wordpress.org/core/version-4-3-project-schedule/">August 18th</a> and contains a number of improvements. Among the enhancements to the visual editor are text patterns. Text patterns or text shortcuts allow you to quickly add unordered lists, ordered lists, headers, and blockquotes without having to use a mouse.</p>\n<p>In the visual editor in WordPress 4.3, typing <code>*</code> or <code>-</code> and hitting the space bar will generate a bulleted list. Typing <code>1. </code> or <code>1)</code> and hitting space will generate a numbered list. If you don’t want to create these lists or do so in error, clicking the undo button or hitting <code>ctrl/cmd+z</code> or <code>esc</code> will undo the text pattern.</p>\n<p>Starting a paragraph with two to six number signs <code>#</code> will convert the paragraph to a heading. Similarly, the greater-than symbol <code>></code> will convert the paragraph to a blockquote.</p>\n<ul>\n<li>## = H2</li>\n<li>### = H3</li>\n<li>#### = H4</li>\n<li>##### = H5</li>\n<li>###### = H6</li>\n</ul>\n<p>It took a few tries to figure out but once I got the hang of it, I discovered that I prefer using text patterns versus clicking the appropriate button in the editor.</p>\n<p>For example, the blockquote text pattern places text into a blockquote and automatically closes it while also starting a new paragraph. Traditionally, I highlight text and click on the blockquote button in the editor. Often times, I have to visit the text editor and close the blockquote to start a new paragraph.</p>\n<p>Ryan Boren, WordPress core lead developer, created the <a href="https://make.wordpress.org/core/2015/08/01/editor-enhancements-in-4-3-%E2%9C%A8/">following video</a> which shows the text patterns in action on a mobile device.</p>\n<h2>Quick Previews of Links</h2>\n<p>WordPress 4.2 included a subtle but convenient feature for adding links to text. Pasting the URL to highlighted text automatically turns it into a link. The problem is that there isn’t an easy way to preview the URL without opening it in a new browser tab.</p>\n<p>When you click a link in the WordPress 4.3 visual editor, a small inline link toolbar displays the full URL with buttons to edit or remove it. This avoids having to use the Insert/edit link modal window.</p>\n<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/08/PreviewLinks.png"><img class="size-full wp-image-47792" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/08/PreviewLinks.png?resize=571%2C102" alt="Preview Links in The Visual Editor WordPress 4.3" /></a>Preview Links in The WordPress 4.3 Visual Editor\n<h2>Changes to Word and Character Counts</h2>\n<p>Word and character counts have also changed in WordPress 4.3. Instead of updating counts when pressing enter or return, it will refresh when you stop typing. A lot more characters that shouldn’t be counted as words are excluded. Ella Iseulde Van Dorpe, WordPress core contributor, <a href="https://make.wordpress.org/core/2015/07/23/wordcharacter-count-updates-in-4-3/">lists other notable changes</a>.</p>\n<ul>\n<li>For <strong>character</strong> count, we no longer exclude any of these characters. This means that numbers and common western punctuation are no longer excluded compared to 4.2. Emoji and other astral characters are now counted as one character instead of two.</li>\n<li>We added a new type <strong>all</strong>, in addition to words and characters, that will count characters including spaces. This seemed necessary for Japanese and maybe other languages. This is now <code>character_including_spaces</code> and <code>character_excluding_spaces</code>.</li>\n<li>Shortcodes and HTML comments are now excluded.</li>\n</ul>\n<p>To view details and a summary of all the work that went into improving word counts, check out <a href="https://core.trac.wordpress.org/ticket/30966">ticket #30966</a> on trac. As someone who uses the WordPress content editor for a living, I’m anxiously looking forward to utilizing these enhancements on an everyday basis.</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, 17 Aug 2015 22:13:36 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"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: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:86:"Post Status: A WordPress conference for higher education: coming to a campus near you?";s:7:"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=14001";s:7:"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://poststatus.com/wordpress-higher-ed-conference-wordcampus/";s: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:8684:"<p><em><strong>Editor’s Note</strong>: Thus far, there have been numerous niche WordPress conferences aiming toward for-profit initiatives and geared toward businesses, marketers, or eCommerce site owners. But <a href="http://bamadesigner.com/">Rachel Carden</a>‘s concept for a niche, education focused, non-profit event is unique and I’d love to see it happen.</em></p>\n<p><em>As she notes, universities have unique challenges for managing websites and are also great candidates for utilizing WordPress to its full potential. What follows is her pitch and public brainstorming session on what a <a href="http://wordcampus.org/">higher education focused WordPress conference</a> might look like.</em></p>\n<p>This all started with a tweet.</p>\n<blockquote class="twitter-tweet" width="550"><p lang="en" dir="ltr">Ooh. Dream with me: "<a href="https://twitter.com/hashtag/WordCampus?src=hash">#WordCampus</a>: A WordCamp for folks using <a href="https://twitter.com/hashtag/WordPress?src=hash">#WordPress</a> in Higher Education." I like it. <a href="https://twitter.com/hashtag/heweb?src=hash">#heweb</a> <a href="https://t.co/m1zEkpkP4B">https://t.co/m1zEkpkP4B</a></p>\n<p>— Rachel Carden (@bamadesigner) <a href="https://twitter.com/bamadesigner/status/628324358126235648">August 3, 2015</a></p></blockquote>\n<p></p>\n<p>WordCamp U.S. made a big announcement that was all over Twitter, Chris Lema tweeted what we were all thinking, and I couldn’t help but start daydreaming about the possibilities.</p>\n<p>You see, I’m a web designer and developer with a passion for all things WordPress, especially using WordPress to build the world of higher ed web. Having spent the last 8 years working in higher education, I’m always looking for ways to utilize the power of WordPress to fulfill my campus’s needs and to help its communication grow, whether it’s using the powerful CMS to stretch limited resources or using its new API capabilities to share information, and break down silos, across campus departments.</p>\n<p>I love attending WordCamps and other WordPress-related events, but the issues we generally encounter in higher ed are often overlooked.</p>\n<p>Much like online businesses or blogging, higher ed is a world of its own with unique challenges, content, stakeholders, and target audiences. In our world, we don’t worry so much about which eCommerce plugin is best. Instead, we’re more concerned with things like how to manage a large-scale network of faculty blogs, making sure we’re abiding with FERPA regulations, or wondering how to best implement single sign-on that integrates with Active Directory.</p>\n<p>That’s why I’m proposing a new event in the WordPress community: a conference focused on using WordPress in the world of higher education. I call the idea “WordCampus”. (Kind of a perfect name, right? How did nobody think of this before?)</p>\n<p>The name “WordCampus” came to me from a tweet and does not, at this point, imply it would be an official WordCamp event. If needed, I’m open to organizing an event that is not affiliated with the WordPress Foundation. This is a detail that remains to be seen, but honestly, at this point, all details remain to be seen. A WordCamp representative has confirmed that a user group specific WordCamp is possible, but I would need to prove that it could draw a crowd. That’s why I need your help.</p>\n<p>If a WordPress conference for higher ed is something you would be interested in (whether it’s as an attendee, speaker, planner, sponsor, or all of the above), I invite you to read a few of my thoughts, share yours in the comments, and visit <a href="http://wordcampus.org/">wordcampus.org</a> to show your support.</p>\n<h3>Cost and fee consideration</h3>\n<p>Much like your usual WordCamp, the goal for this event is to keep the costs and ticket price as low as possible. The point of this event is professional development and community, not profit. The phrases “big budget” and “higher ed” don’t generally appear in the same sentence anyway.</p>\n<p>A lot of higher ed-oriented web conferences can run upwards of $500 so an inexpensive, but valuable, event would be attractive for most higher education web professionals.</p>\n<h3>Unique sponsorship opportunity</h3>\n<p>Having sponsors to help with costs would be crucial and I am open to all kinds of support, whether it’s monetary or in-kind. Sponsoring an event like WordCampus would be a unique way to get an organization’s name in front of one of the best communities <em>outside</em> of WordPress that <em>uses</em> WordPress all the time.</p>\n<p>In the world of higher education, you often have limited resources, so there are plenty of opportunities for third party products or services like hosting, themes, plugins, custom design, accessibility consulting, and custom development, among others.</p>\n<h3>Location is a factor</h3>\n<p>The location could be a sticking point, as high travel costs might be a deal breaker for many WordCampus attendees. The beauty of local WordCamps is that they are tied to a geographical region and therefore, for most attendees, have limited travel requirements. This could be a problem for an event that is not tied to a specific region.</p>\n<p>Venue wise, universities have beautiful facilities, so I’d love to host the event on an actual college campus and, if the hosting university could donate the space in kind, this would be a huge cost saver. The most preferable universities would also be located near a major airport to help reduce travel time.</p>\n<p>If I’m really dreaming big, it would be great to find numerous universities that would be willing to host and, therefore, we could have regional WordCampus events spread across the country. I don’t think this is outside the realm of possibility, but would depend on interest and attendance. I’m certainly interested in hearing from anyone that may be interested in hosting WordCampus at their university.</p>\n<h3>A big target audience</h3>\n<p>There are a wide variety of WordPress users in higher ed, from the university-level WordPress developers and administrators, to the users who run WordPress for a college, to the faculty members using WordPress as a learning tool, and any students who’d love to learn a thing or two (they are our future, you know). That’s not even including content strategists, designers, social media managers, and more.</p>\n<p>WordCampus has the potential to attract a variety of users who could inspire a multitude of topics and professional development.</p>\n<h3>A broad variety of topics, even within the education umbrella</h3>\n<p>Speaking of topics, these could also run the gamut from higher ed marketing and content strategy to infrastructure, managing multi-author blogs, and streamlining application processes. Accessibility should also be a featured topic as federally funded institutions are required by law to make their electronic and information technology accessible to people with disabilities.</p>\n<p>Personally, I see the structure of higher ed as tailor-made for the open source mindset and would love to hear someone encourage collaboration and openness by comparing the ideologies of open source with the inner workings of higher education.</p>\n<h3>Event timing</h3>\n<p>As organizing something of this magnitude takes time, I’m looking at a 2016 booking. What time of the year in 2016, however, remains to be seen. There are obviously a lot of variables at play, from venue availability to which time of the year is best for our target attendees. In higher ed, you need time to clear your schedule and request funding, so I’d want to allow for that.</p>\n<p>Usually, the middle of the semester is best for most higher ed professionals, but this can vary depending on their field. And if we’re being honest, the majority of fall might be out of the question because of football season. We’ve included a straw poll <a href="http://wordcampus.org">on the event landing page</a> to help us gauge which time of year might be best for those interested in attending.</p>\n<p>Thank you for taking the time to read through my proposal and hopefully interested parties will have a few additional thoughts for the comments. If you would like be notified of any future developments, or show your support for the project, please visit <a href="http://wordcampus.org">wordcampus.org</a> to share a little bit of information. And don’t forget to tell your friends!</p>\n<p>If you have any questions, or would like to chat, you can also find me on Twitter <a href="https://twitter.com/bamadesigner">@bamadesigner</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, 17 Aug 2015 21:33:59 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Rachel Carden";s: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:21:"Matt: Artisanal Water";s:7:"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:21:"http://ma.tt/?p=45285";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:27:"http://ma.tt/2015/08/water/";s: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:301:"<p></p>\n<p>Many of my friends know how obsessed I am with different types of water, from <a href="http://www.badoit.com/">Badoit</a> to <a href="https://www.drinkhint.com/">Hint Water (yum)</a> to <a href="http://delaubier.ca/site_en.html">De L’aubier</a>. This definitely hit close to home.</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, 17 Aug 2015 06:38:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:21:"Matt: SF Germ Warfare";s:7:"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:21:"http://ma.tt/?p=45300";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:37:"http://ma.tt/2015/08/sf-germ-warfare/";s: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:258:"<p>Speaking of San Francisco, did you know <a href="http://www.businessinsider.com/the-military-tested-bacterial-weapons-in-san-francisco-2015-7">for 20 years, the military secretly tested biological/bacterial agents there, delivered through the fog</a>?</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 16 Aug 2015 03:04:33 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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:23:"Matt: Smokestack SF BBQ";s:7:"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:21:"http://ma.tt/?p=45290";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:39:"http://ma.tt/2015/08/smokestack-sf-bbq/";s: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:454:"<p>I had great BBQ in San Francisco last week at a new place called Smokestack. The brisket was on-point, and competitive with anything I’ve had in Texas. <a href="http://insidescoopsf.sfgate.com/blog/2014/05/08/magnolia-opens-dogpatch-brewery-and-its-restaurant-smokestack/#photo-451076">This review in the SF Chronicle covers things pretty well</a>, if you’re hankering for some great Southern food in SF this is the place to check out.</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, 15 Aug 2015 05:34:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:53:"WPTavern: WP REST API 1.2.3 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:28:"http://wptavern.com/?p=47770";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:63:"http://wptavern.com/wp-rest-api-1-2-3-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:798:"<p>WP REST API version 1.2.3 and 2.0 Beta 4 <a href="https://make.wordpress.org/core/2015/08/14/rest-api-v1-2-3-and-v2-0-b4/">address a security issue</a> that affects sites running 1.2 or 2.0 beta. This release fixes a potential XSS vulnerability related to JSONP support in 1.2 and 2.0 of the API. Automatic updates are in progress for 1.2.3 but if your site hasn’t automatically updated, the team suggests updating manually as soon as possible.</p>\n<p>In addition to the security release, <a href="https://wordpress.org/plugins/rest-api/">2.0 Beta 4</a> includes a number of enhancements, some of which break backwards compatibility. Developers and beta testers should read the <a href="https://github.com/WP-API/WP-API/releases/tag/2.0-beta4">detailed changelog</a> and release notes.</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, 14 Aug 2015 15:22: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: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:47:"WPTavern: Nick Haskins Rebrands Lasso to Editus";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=47763";s:7:"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:"http://wptavern.com/nick-haskins-rebrands-lasso-to-editus";s: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:1876:"<p>In mid July, Nick Haskins, founder and lead developer of Lasso, was served a <a href="http://wptavern.com/nick-haskins-receives-cease-and-desist-letter-for-violating-lassosoft-trademarks">cease and desist letter</a> from LassoSoft. LassoSoft argued that Lasso violates its <a href="http://www.tmfile.com/mark/?q=861046116">registered trademarks</a> and causes confusion to its customers.</p>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/08/EdiusFeaturedImage.png"><img class="aligncenter size-full wp-image-47764" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/08/EdiusFeaturedImage.png?resize=650%2C182" alt="Edit us Featured Image" /></a>Instead of fighting litigation, Haskins decided to rebrand the product from Lasso to<a href="https://edituswp.com/lasso-is-now-editus/"> Editus.</a> The name was suggested by <a href="http://www.iklektive.com/">Gavin Aldrich</a>. According to Haskins, the only references to the name is a band in Costa Rica and a directory in Luxemburg.</p>\n<p>In addition to a new domain and cloned website, Lasso 0.9.8 is available for download which includes the renaming of various admin menu items that used the term Lasso.</p>\n<h2>Lasso 0.9.8 Requires a Manual Update</h2>\n<p>Haskins says users will need to update to 0.9.8 manually because of the switch in domain names but automatic updates will return after 0.9.8, “Updates after 0.9.8, will continue to be automatic, just as the way they were before,” Haskins said.</p>\n<p>Aesopinteractive LLC is <a href="http://nickhaskins.com/2015/07/on-life-and-family/">looking for a buyer</a> but after receiving low offers, Haskins has decided to use a broker to facilitate the sale. The broker requested that the rebrand of Lasso be completed before proceeding with the sale process.</p>\n<p>I think Editus has a nice ring to it, what do you think?</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, 14 Aug 2015 13:39:55 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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: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:25:"Matt: Death of Mobile Web";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=45292";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:41:"http://ma.tt/2015/08/death-of-mobile-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:633:"<blockquote><p>Mobile web and mobile in-app behaviour are not binary. When users are in the facebook app, they spend a tremendous amount of time accessing the mobile web through facebook’s own in-app browser. The same for twitter and others. We enter social apps for discovery and then access the mobile web while still in-app. It is a mistake to conflate time spent on the mobile web with time spent in a traditional browser.</p></blockquote>\n<p>Amen. Tony Haile of Chartbeat: <a href="http://www.tonyhaile.com/2015/08/11/a-correction-around-the-death-of-the-mobile-web/">A correction around the death of the mobile web.</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, 14 Aug 2015 03:19:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:66:"WPTavern: WordPress for iOS: Version 5.4 Adds Statistical Insights";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=47740";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:75:"http://wptavern.com/wordpress-for-ios-version-5-4-adds-statistical-insights";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2285:"<p>WordPress for iOS: Version 5.4 is <a href="https://itunes.apple.com/us/app/wordpress/id335703880?mt=8&uo=6&at=&ct=">available on the app store</a> and includes a couple of new features. To compliment the <a href="http://wptavern.com/wordpress-for-ios-5-3-released-with-refreshed-stats-and-a-new-layout-for-posts-and-pages">improvements to stats in 5.3</a>, 5.4 adds a new stats screen called insights.</p>\n<p>Insights is similar to the Right Now widget in the WordPress dashboard in that it displays a summary of key statistics for a site including, total number of published posts, views, visitors, and the best traffic day. There’s also a section that displays the current day’s stats.</p>\n<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/08/IMG_7433.png"><img class="size-large wp-image-47744" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/08/IMG_7433.png?resize=282%2C500" alt="Stat Insights" /></a>Stat Insights\n<p>Prior to 5.4, you could only add images to posts that were stored on the device. WordPress for iOS 5.4 adds the ability to insert images from the WordPress media library.</p>\n<p>To add an image from the WordPress media library, select media library from the menu at the top of the screen. If you have a lot of items in the media library, it may take a few minutes to load.</p>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/08/WPiPhoneMediaLibrary.png"><img class="aligncenter size-large wp-image-47746" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/08/WPiPhoneMediaLibrary.png?resize=500%2C399" alt="WP For iOS 5.4 Media Library Selection" /></a>Other improvements include the ability to search the My Sites list and viewing embedded images in comments. This makes it easier to see the full context of a comment without having to view it in a different part of the app.</p>\n<p>Last but not least, the team fixed a bug that caused the app to not restore its state properly. WordPress for iOS: Version 5.4 is <a href="https://itunes.apple.com/us/app/wordpress/id335703880?mt=8&uo=6&at=&ct=">free and available</a> on the app store. If you encounter any issues, you’re encouraged to report them on the <a href="https://ios.forums.wordpress.org/">WordPress for iOS support forums</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, 13 Aug 2015 20:15:10 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"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: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:75:"WPTavern: Short Interview With Nikolay Bachiyski WordPress’ Security Czar";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=47728";s:7:"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:"http://wptavern.com/short-interview-with-nikolay-bachiyski-wordpress-security-czar";s: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:2331:"<p>While on stage at <a href="https://europe.wordcamp.org/2015/">WordCamp Europe</a> answering a question related to WordPress’ security track record, Matt Mullenweg named <a href="https://profiles.wordpress.org/nbachiyski">Nikolay Bachiyski</a> as the first Security Czar for the <a href="https://wordpress.org/">WordPress project</a>.</p>\n<p>I interviewed Bachiyski to learn why the role was created and what its purpose is.</p>\n<p><strong>What are the responsibilities of your new role?</strong></p>\n<p>My responsibilities are to coordinate the security efforts of<span class="Apple-converted-space"> </span><a href="http://wordpress.org/" target="_blank" rel="noreferrer">WordPress.org</a><span class="Apple-converted-space">, </span>mostly with incident response and to make sure we respond quickly, have solid fixes, and make sure everyone involved is informed.</p>\n<p><strong>What circumstances led to this role’s creation?<br />\n</strong></p>\n<p>Nothing too spicy around the creation of the role. As the volume of requests increased, we realized a bit more structure would be helpful so that we are more focused and use our resources wisely.</p>\n<p><strong>Will you only handle security issues for the open source project or will you also help with Automattic’s bounty program as well?</strong></p>\n<p>There are other colleagues at Automattic who are responsible for the bounty program.</p>\n<p><strong>How important are the connections and trust you’ve established over the last 11 years to your role?</strong></p>\n<p>Offline relationships are very important in an online community and I am lucky to know many of the members of the security team in person. This definitely makes working with them easier.</p>\n<h2>Learn More About the WordPress Security Team</h2>\n<p>If you’d like to learn more about who’s on the WordPress security team, what they do, and how they handle security releases, listen to my interview with Gary Pendergast.</p>\n<p>Pendergast who works for Automattic, is a WordPress core contributor, and a member of the WordPress core security team. In the interview, we discuss what happened behind the scenes before <a href="http://wptavern.com/plugin-developers-demand-a-better-security-release-process-after-wordpress-4-2-3-breaks-thousands-of-websites">4.2.3 was released</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, 13 Aug 2015 18: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: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:96:"WPTavern: WPWeekly Episode 203 – Interview With Kiko Doran Co-organizer of Prestige Conference";s:7:"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:44:"http://wptavern.com?p=47721&preview_id=47721";s:7:"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:"http://wptavern.com/wpweekly-episode-203-interview-with-kiko-doran-co-organizer-of-prestige-conference";s: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:2165:"<p>In this episode of WordPress Weekly, <a href="http://marcuscouch.com/">Marcus Couch</a> and I are joined by <a href="http://kikodoran.com/">Kiko Doran</a>, co-organizer of <a href="http://prestigeconf.com/">Prestige conference</a>. Doran describes how he discovered WordPress in 2009 and explains the origin of Prestige, a career and business development conference.</p>\n<p>We discuss the <a href="http://wptavern.com/the-mantra-of-family-comes-first">mantra of family first </a>and how Brazilian Jiu Jitsu helps him in his everyday life. Near the end of the interview, we learn Prestige 4 is in the planning stages.</p>\n<h2>Stories Discussed:</h2>\n<p><a href="http://wptavern.com/wordpress-plugin-directory-surpasses-one-billion-total-downloads">WordPress Plugin Directory Surpasses One Billion Total Downloads</a></p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a href="https://wordpress.org/plugins/site-import/">Site Import</a> allows you to import posts and items from other websites without having to export anything. The content is extracted directly from the site.</p>\n<p><a href="https://wordpress.org/plugins/followprice/">Followprice</a> adds a button to your storefront that when clicked, saves products into a universal wish list. This allows visitors to subscribe and receive price or stock alerts from your store.</p>\n<p><a href="https://wordpress.org/plugins/revision-strike/">Revision Strike</a> is designed to automatically remove unneeded revisions on older, published posts.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, August 19th 9:30 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href="https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738" target="_blank">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href="http://www.wptavern.com/feed/podcast" target="_blank">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href="http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr" target="_blank">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #203:</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, 13 Aug 2015 16:31:52 +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: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:14:"Matt: Avis GPS";s:7:"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:21:"http://ma.tt/?p=45255";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:30:"http://ma.tt/2015/08/avis-gps/";s: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:2713:"<p>After an amazing WordCamp Scranton on Saturday I was heading to a friend’s birthday on Long Island on Sunday, a few people were surprised I had flown from New York and said driving took about the same amount of time when you factor in all the airport hassle.</p>\n<p>I Google Mapped it and it did look like it was only 5-6 hours from Scranton to where I was going. Being a born and raised Texan, I love a good drive, and I probably haven’t had a proper road trip since my sister’s birthday a few years ago when we went up Highway 1. I’ve also never driven on the East Coast, and it seemed like there were some really pretty parks and lakes in between Scranton and Long Island so I ended up going to the airport anyway because that’s where the rental cars were.</p>\n<p>I like <a href="http://www.avis.com/">Avis</a>. They try harder. <img src="http://i2.wp.com/s.ma.tt/blog/wp-includes/images/smilies/simple-smile.png?w=604" alt=":)" class="wp-smiley" /> One thing they do that’s pretty cool is sell decent cables, USB wall chargers, and car chargers for a cheap price right at the check-in desk. (I always carry my own car charger, <a href="http://www.amazon.com/Incase-Speed-Charger-Lightning-Cable/dp/B00P7Y6M2Y/">this is my current pick</a>. It’s super-handy in Ubers as well.) Amazingly though they still try to give you one of those Garmin GPS units that’s worse than your smartphone in every possible way. I’m sure it’s a money maker, otherwise the only reasonable thing to do would be provide <a href="http://www.amazon.com/dp/B00O5JARCI">a smartphone mount</a> (or have one already set up in the car) rather than saddling people with an <a href="http://www.amazon.com/gp/bestsellers/electronics/559938/ref=zg_b_bs_559938_1">archaic, non-networked navigation device</a> that has no idea about construction or traffic.</p>\n<p>I ended up going to a Walmart that was nearby to pick up a car mount (price, $12) that ended up being a life-saver for the trip. <strong>I also believe that every person in tech should visit Walmart at least once a year, and spend time in their technology section.</strong> It’s good to understand and see how people who don’t live for technology every day interact with it. It’s eye-opening, and it’s handy to know what’s in stock in case you need 50 feet of ethernet at 4 AM.</p>\n<p>Dropping the car off in Manhattan, it looks like they charged me $20 for a GPS which I don’t even have, so now going to need to sort out both the fee and the “missing” GPS system.</p>\n<p>tl; dr: Smart car rental companies should ditch the GPS, provide smartphone mounts instead.</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, 13 Aug 2015 02:44:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}}}}}}}}}}s:4:"type";i:128;s:7:"headers";a:10:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Thu, 10 Sep 2015 04:46:27 GMT";s:12:"content-type";s:8:"text/xml";s:14:"content-length";s:6:"180728";s:10:"connection";s:5:"close";s:4:"vary";s:15:"Accept-Encoding";s:13:"last-modified";s:29:"Thu, 10 Sep 2015 04:30:19 GMT";s:15:"x-frame-options";s:10:"SAMEORIGIN";s:4:"x-nc";s:11:"HIT lax 249";s:13:"accept-ranges";s:5:"bytes";}s:5:"build";s:14:"20150903044347";}', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(704, '_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1441903592', 'no'),
(705, '_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1441860392', 'no'),
(706, '_transient_timeout_feed_b9388c83948825c1edaef0d856b7b109', '1441903594', 'no'),
(707, '_transient_feed_b9388c83948825c1edaef0d856b7b109', '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";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:117:"\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:2:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:34:"WordPress Plugins » View: Popular";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:45:"https://wordpress.org/plugins/browse/popular/";s: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:34:"WordPress Plugins » View: Popular";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"language";a:1:{i:0;a:5:{s:4:"data";s:5:"en-US";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 10 Sep 2015 04:34:20 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"generator";a:1:{i:0;a:5:{s:4:"data";s:25:"http://bbpress.org/?v=1.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:"item";a:30:{i:0;a:6:{s:4:"data";s:30:"\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:14:"W3 Total Cache";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:56:"https://wordpress.org/plugins/w3-total-cache/#post-12073";s: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, 29 Jul 2009 18:46: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:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"12073@http://wordpress.org/plugins/";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:132:"Easy Web Performance Optimization (WPO) using caching: browser, page, object, database, minify and content delivery network support.";s: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:16:"Frederick Townes";s: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:30:"\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:"WooCommerce - excelling eCommerce";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:53:"https://wordpress.org/plugins/woocommerce/#post-29860";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 05 Sep 2011 08:13:36 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"29860@http://wordpress.org/plugins/";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:97:"WooCommerce is a powerful, extendable eCommerce plugin that helps you sell anything. Beautifully.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:9:"WooThemes";s: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:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:24:"Jetpack by WordPress.com";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:49:"https://wordpress.org/plugins/jetpack/#post-23862";s: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, 20 Jan 2011 02:21: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:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"23862@http://wordpress.org/plugins/";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:28:"Your WordPress, Streamlined.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:9:"Tim Moore";s: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:30:"\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:11:"Hello Dolly";s:7:"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://wordpress.org/plugins/hello-dolly/#post-5790";s: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, 29 May 2008 22:11:34 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"5790@http://wordpress.org/plugins/";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:150:"This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Matt Mullenweg";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:4;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:22:"Advanced Custom Fields";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:64:"https://wordpress.org/plugins/advanced-custom-fields/#post-25254";s: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, 17 Mar 2011 04:07: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:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"25254@http://wordpress.org/plugins/";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:68:"Customise WordPress with powerful, professional and intuitive fields";s: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:"elliotcondon";s: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:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:15:"NextGEN Gallery";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:56:"https://wordpress.org/plugins/nextgen-gallery/#post-1169";s: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, 23 Apr 2007 20:08:06 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"1169@http://wordpress.org/plugins/";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:121:"The most popular WordPress gallery plugin and one of the most popular plugins of all time with over 13 million downloads.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:9:"Alex Rabe";s: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:30:"\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:19:"Google XML Sitemaps";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:64:"https://wordpress.org/plugins/google-sitemap-generator/#post-132";s: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 Mar 2007 22:31: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:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"132@http://wordpress.org/plugins/";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:105:"This plugin will generate a special XML sitemap which will help search engines to better index your blog.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Arne Brachhold";s: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:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:16:"TinyMCE Advanced";s:7:"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://wordpress.org/plugins/tinymce-advanced/#post-2082";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 27 Jun 2007 15:00:26 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"2082@http://wordpress.org/plugins/";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:71:"Enables the advanced features of TinyMCE, the WordPress WYSIWYG editor.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:10:"Andrew Ozz";s: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:30:"\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:9:"Yoast SEO";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:54:"https://wordpress.org/plugins/wordpress-seo/#post-8321";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 01 Jan 2009 20:34:44 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"8321@http://wordpress.org/plugins/";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:114:"Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using Yoast SEO plugin.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Joost de Valk";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:9;a:6:{s:4:"data";s:30:"\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:14:"WP Super Cache";s:7:"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:55:"https://wordpress.org/plugins/wp-super-cache/#post-2572";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 05 Nov 2007 11:40:04 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"2572@http://wordpress.org/plugins/";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:73:"A very fast caching engine for WordPress that produces static html files.";s: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:16:"Donncha O Caoimh";s: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:30:"\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:21:"Regenerate Thumbnails";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:62:"https://wordpress.org/plugins/regenerate-thumbnails/#post-6743";s: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, 23 Aug 2008 14:38: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:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"6743@http://wordpress.org/plugins/";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:76:"Allows you to regenerate your thumbnails after changing the thumbnail sizes.";s: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:25:"Alex Mills (Viper007Bond)";s: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:30:"\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:25:"Google Analytics by Yoast";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:71:"https://wordpress.org/plugins/google-analytics-for-wordpress/#post-2316";s: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, 14 Sep 2007 12:15: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:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"2316@http://wordpress.org/plugins/";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:124:"Track your WordPress site easily with the latest tracking codes and lots added data for search result pages and error pages.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Joost de Valk";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:12;a:6:{s:4:"data";s:30:"\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:14:"Contact Form 7";s:7:"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:55:"https://wordpress.org/plugins/contact-form-7/#post-2141";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 02 Aug 2007 12:45:03 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"2141@http://wordpress.org/plugins/";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:54:"Just another contact form plugin. Simple but flexible.";s: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:16:"Takayuki Miyoshi";s: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:30:"\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:7:"Akismet";s:7:"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:46:"https://wordpress.org/plugins/akismet/#post-15";s: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 Mar 2007 22:11: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:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:32:"15@http://wordpress.org/plugins/";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:98:"Akismet checks your comments against the Akismet Web service to see if they look like spam or not.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Matt Mullenweg";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:14;a:6:{s:4:"data";s:30:"\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:19:"All in One SEO Pack";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:59:"https://wordpress.org/plugins/all-in-one-seo-pack/#post-753";s: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, 30 Mar 2007 20:08: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:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"753@http://wordpress.org/plugins/";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:126:"All in One SEO Pack is a WordPress SEO plugin to automatically optimize your WordPress blog for Search Engines such as Google.";s: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:8:"uberdose";s: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:30:"\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:21:"Really Simple CAPTCHA";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:62:"https://wordpress.org/plugins/really-simple-captcha/#post-9542";s: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, 09 Mar 2009 02:17: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:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"9542@http://wordpress.org/plugins/";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:138:"Really Simple CAPTCHA is a CAPTCHA module intended to be called from other plugins. It is originally created for my Contact Form 7 plugin.";s: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:16:"Takayuki Miyoshi";s: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:30:"\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:18:"Wordfence Security";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:51:"https://wordpress.org/plugins/wordfence/#post-29832";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 04 Sep 2011 03:13: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:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"29832@http://wordpress.org/plugins/";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:138:"The Wordfence WordPress security plugin provides free enterprise-class WordPress security, protecting your website from hacks and malware.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:9:"Wordfence";s: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:30:"\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:18:"WordPress Importer";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:60:"https://wordpress.org/plugins/wordpress-importer/#post-18101";s: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, 20 May 2010 17:42:45 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"18101@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:101:"Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.";s: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:"Brian Colinger";s: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:30:"\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:11:"WP-PageNavi";s:7:"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://wordpress.org/plugins/wp-pagenavi/#post-363";s: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 Mar 2007 23:17:57 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"363@http://wordpress.org/plugins/";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:49:"Adds a more advanced paging navigation interface.";s: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:"Lester Chan";s: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:30:"\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:14:"Duplicate Post";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:55:"https://wordpress.org/plugins/duplicate-post/#post-2646";s: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, 05 Dec 2007 17:40:03 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"2646@http://wordpress.org/plugins/";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:22:"Clone posts and pages.";s: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:"lopo";s: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:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:16:"Disable 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:"link";a:1:{i:0;a:5:{s:4:"data";s:58:"https://wordpress.org/plugins/disable-comments/#post-26907";s: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, 27 May 2011 04:42: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:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"26907@http://wordpress.org/plugins/";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:134:"Allows administrators to globally disable comments on their site. Comments can be disabled according to post type. Multisite friendly.";s: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:"Samir Shah";s: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:30:"\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:18:"WP Multibyte Patch";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:60:"https://wordpress.org/plugins/wp-multibyte-patch/#post-28395";s: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, 14 Jul 2011 12:22: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:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"28395@http://wordpress.org/plugins/";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:71:"Multibyte functionality enhancement for the WordPress Japanese package.";s: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:"plugin-master";s: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:30:"\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:27:"Black Studio TinyMCE Widget";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:69:"https://wordpress.org/plugins/black-studio-tinymce-widget/#post-31973";s: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, 10 Nov 2011 15:06: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:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"31973@http://wordpress.org/plugins/";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:39:"The visual editor widget for Wordpress.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"Marco Chiesi";s: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:30:"\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:"iThemes Security (formerly Better WP Security)";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:60:"https://wordpress.org/plugins/better-wp-security/#post-21738";s: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 Oct 2010 22:06: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:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"21738@http://wordpress.org/plugins/";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:150:"Protect your WordPress site by hiding vital areas of your site, protecting access to important files, preventing brute-force login attempts, detecting";s: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:"Chris Wiegman";s: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:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:26:"Page Builder by SiteOrigin";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:59:"https://wordpress.org/plugins/siteorigin-panels/#post-51888";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 11 Apr 2013 10:36: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:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"51888@http://wordpress.org/plugins/";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:111:"Build responsive page layouts using the widgets you know and love using this simple drag and drop page builder.";s: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:"Greg Priday";s: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:30:"\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:11:"Meta Slider";s:7:"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://wordpress.org/plugins/ml-slider/#post-49521";s: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, 14 Feb 2013 16:56: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:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"49521@http://wordpress.org/plugins/";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:145:"Easy to use WordPress slider plugin. Create SEO optimised responsive slideshows with Nivo Slider, Flex Slider, Coin Slider and Responsive Slides.";s: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:"Matcha Labs";s: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:30:"\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:"Google Analytics Dashboard for WP";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:75:"https://wordpress.org/plugins/google-analytics-dashboard-for-wp/#post-50539";s: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, 10 Mar 2013 17:07: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:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"50539@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:127:"Displays Google Analytics reports in your WordPress Dashboard. Inserts the latest Google Analytics tracking code in your pages.";s: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:"Alin Marcu";s: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:30:"\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:10:"Duplicator";s:7:"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://wordpress.org/plugins/duplicator/#post-26607";s: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, 16 May 2011 12:15: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:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"26607@http://wordpress.org/plugins/";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:88:"Duplicate, clone, backup, move and transfer an entire site from one location to another.";s: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:"Cory Lamle";s: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:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:16:"Google Analytics";s:7:"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://wordpress.org/plugins/googleanalytics/#post-11199";s: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 Jun 2009 22:09: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:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"11199@http://wordpress.org/plugins/";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:38:"Enables google analytics on all pages.";s: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:"Kevin Sylvestre";s: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:30:"\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:12:"WP-DB-Backup";s:7:"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://wordpress.org/plugins/wp-db-backup/#post-472";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 17 Mar 2007 04:41: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:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"472@http://wordpress.org/plugins/";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:44:"On-demand backup of your WordPress database.";s: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:"ringmaster";s: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:46:"https://wordpress.org/plugins/rss/view/popular";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:4:"type";i:128;s:7:"headers";a:9:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Thu, 10 Sep 2015 04:46:31 GMT";s:12:"content-type";s:23:"text/xml; charset=UTF-8";s:10:"connection";s:5:"close";s:4:"vary";s:15:"Accept-Encoding";s:25:"strict-transport-security";s:11:"max-age=360";s:13:"last-modified";s:29:"Wed, 29 Jul 2009 18:46:31 GMT";s:15:"x-frame-options";s:10:"SAMEORIGIN";s:4:"x-nc";s:11:"HIT lax 250";}s:5:"build";s:14:"20150903044347";}', 'no'),
(708, '_transient_timeout_feed_mod_b9388c83948825c1edaef0d856b7b109', '1441903594', 'no'),
(709, '_transient_feed_mod_b9388c83948825c1edaef0d856b7b109', '1441860394', 'no'),
(710, '_transient_timeout_dash_88ae138922fe95674369b1cb3d215a2b', '1441903594', 'no'),
(711, '_transient_dash_88ae138922fe95674369b1cb3d215a2b', '<div class="rss-widget"><ul><li><a class=''rsswidget'' href=''https://wordpress.org/news/2015/08/billie/''>WordPress 4.3 “Billie”</a> <span class="rss-date">August 18, 2015</span><div class="rssSummary">Version 4.3 of WordPress, named “Billie” in honor of jazz singer Billie Holiday, is available for download or update in your WordPress dashboard. New features in 4.3 make it even easier to format your content and customize your site. Menus in the Customizer Create your menu, update it, and assign it, all while live-previewing in […]</div></li></ul></div><div class="rss-widget"><ul><li><a class=''rsswidget'' href=''http://wptavern.com/a-conceptual-wordpress-plugin-by-stephen-cronin-that-makes-comment-moderation-easier''>WPTavern: A Conceptual WordPress Plugin by Stephen Cronin That Makes Comment Moderation Easier</a></li><li><a class=''rsswidget'' href=''http://wptavern.com/wpml-emails-passwords-to-affected-customers-in-plaintext''>WPTavern: WPML Emails Passwords to Affected Customers in Plaintext</a></li><li><a class=''rsswidget'' href=''https://poststatus.com/using-react-with-wordpress-draft-podcast/''>Post Status: Using React with WordPress — Draft podcast</a></li></ul></div><div class="rss-widget"><ul><li class=''dashboard-news-plugin''><span>Popular Plugin:</span> <a href=''https://wordpress.org/plugins/woocommerce/'' class=''dashboard-news-plugin-link''>WooCommerce - excelling eCommerce</a> <span>(<a href=''plugin-install.php?tab=plugin-information&plugin=woocommerce&_wpnonce=152f08c2a1&TB_iframe=true&width=600&height=800'' class=''thickbox'' title=''WooCommerce - excelling eCommerce''>Install</a>)</span></li></ul></div>', 'no'),
(712, 'limit_posts', '1', 'yes'),
(713, 'points', '...', 'yes'),
(714, 'limit', '350', 'yes'),
(715, 'feat_width', '860', 'yes'),
(716, 'feat_height', '210', 'yes'),
(717, 'order', 'ASC', 'yes'),
(718, 'sort', 'post_date', 'yes'),
(719, 'effect', 'scrollRight', 'yes'),
(720, 'timeout', '3000', 'yes'),
(721, 'feat_bg', 'FFF', 'yes'),
(722, 'feat_border', 'CCC', 'yes'),
(723, 'text_width', '450', 'yes'),
(724, 'text_color', '333', 'yes'),
(725, 'img_width', '320', 'yes'),
(726, 'img_height', '200', 'yes'),
(729, '_site_transient_timeout_available_translations', '1441871948', 'yes');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(730, '_site_transient_available_translations', 'a:65:{s:2:"ar";a:8:{s:8:"language";s:2:"ar";s:7:"version";s:3:"4.3";s:7:"updated";s:19:"2015-08-18 00:32:07";s:12:"english_name";s:6:"Arabic";s:11:"native_name";s:14:"العربية";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.3/ar.zip";s:3:"iso";a:2:{i:1;s:2:"ar";i:2;s:3:"ara";}s:7:"strings";a:1:{s:8:"continue";s:16:"المتابعة";}}s:3:"ary";a:8:{s:8:"language";s:3:"ary";s:7:"version";s:3:"4.3";s:7:"updated";s:19:"2015-09-07 00:00:29";s:12:"english_name";s:15:"Moroccan Arabic";s:11:"native_name";s:31:"العربية المغربية";s:7:"package";s:60:"https://downloads.wordpress.org/translation/core/4.3/ary.zip";s:3:"iso";a:2:{i:1;s:5:"ar_MA";i:3;s:3:"ary";}s:7:"strings";a:1:{s:8:"continue";s:16:"المتابعة";}}s:2:"az";a:8:{s:8:"language";s:2:"az";s:7:"version";s:3:"4.3";s:7:"updated";s:19:"2015-08-27 19:48:02";s:12:"english_name";s:11:"Azerbaijani";s:11:"native_name";s:16:"Azərbaycan dili";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.3/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:5:"bg_BG";a:8:{s:8:"language";s:5:"bg_BG";s:7:"version";s:3:"4.3";s:7:"updated";s:19:"2015-08-17 19:15:29";s:12:"english_name";s:9:"Bulgarian";s:11:"native_name";s:18:"Български";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.3/bg_BG.zip";s:3:"iso";a:2:{i:1;s:2:"bg";i:2;s:3:"bul";}s:7:"strings";a:1:{s:8:"continue";s:22:"Продължение";}}s:5:"bn_BD";a:8:{s:8:"language";s:5:"bn_BD";s:7:"version";s:3:"4.3";s:7:"updated";s:19:"2015-08-20 08:45:05";s:12:"english_name";s:7:"Bengali";s:11:"native_name";s:15:"বাংলা";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.3/bn_BD.zip";s:3:"iso";a:1:{i:1;s:2:"bn";}s:7:"strings";a:1:{s:8:"continue";s:23:"এগিয়ে চল.";}}s:5:"bs_BA";a:8:{s:8:"language";s:5:"bs_BA";s:7:"version";s:3:"4.3";s:7:"updated";s:19:"2015-08-18 21:20:44";s:12:"english_name";s:7:"Bosnian";s:11:"native_name";s:8:"Bosanski";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.3/bs_BA.zip";s:3:"iso";a:2:{i:1;s:2:"bs";i:2;s:3:"bos";}s:7:"strings";a:1:{s:8:"continue";s:7:"Nastavi";}}s:2:"ca";a:8:{s:8:"language";s:2:"ca";s:7:"version";s:3:"4.3";s:7:"updated";s:19:"2015-08-18 04:19:00";s:12:"english_name";s:7:"Catalan";s:11:"native_name";s:7:"Català";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.3/ca.zip";s:3:"iso";a:2:{i:1;s:2:"ca";i:2;s:3:"cat";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continua";}}s:2:"cy";a:8:{s:8:"language";s:2:"cy";s:7:"version";s:3:"4.3";s:7:"updated";s:19:"2015-08-19 09:17:13";s:12:"english_name";s:5:"Welsh";s:11:"native_name";s:7:"Cymraeg";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.3/cy.zip";s:3:"iso";a:2:{i:1;s:2:"cy";i:2;s:3:"cym";}s:7:"strings";a:1:{s:8:"continue";s:6:"Parhau";}}s:5:"da_DK";a:8:{s:8:"language";s:5:"da_DK";s:7:"version";s:3:"4.3";s:7:"updated";s:19:"2015-08-18 19:34:34";s:12:"english_name";s:6:"Danish";s:11:"native_name";s:5:"Dansk";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.3/da_DK.zip";s:3:"iso";a:2:{i:1;s:2:"da";i:2;s:3:"dan";}s:7:"strings";a:1:{s:8:"continue";s:12:"Fortsæt";}}s:5:"de_DE";a:8:{s:8:"language";s:5:"de_DE";s:7:"version";s:3:"4.3";s:7:"updated";s:19:"2015-09-08 13:22:20";s:12:"english_name";s:6:"German";s:11:"native_name";s:7:"Deutsch";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.3/de_DE.zip";s:3:"iso";a:1:{i:1;s:2:"de";}s:7:"strings";a:1:{s:8:"continue";s:10:"Fortfahren";}}s:5:"de_CH";a:8:{s:8:"language";s:5:"de_CH";s:7:"version";s:3:"4.3";s:7:"updated";s:19:"2015-09-09 10:05:26";s:12:"english_name";s:20:"German (Switzerland)";s:11:"native_name";s:17:"Deutsch (Schweiz)";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.3/de_CH.zip";s:3:"iso";a:1:{i:1;s:2:"de";}s:7:"strings";a:1:{s:8:"continue";s:10:"Fortfahren";}}s:12:"de_DE_formal";a:8:{s:8:"language";s:12:"de_DE_formal";s:7:"version";s:3:"4.3";s:7:"updated";s:19:"2015-09-08 13:35:36";s:12:"english_name";s:15:"German (Formal)";s:11:"native_name";s:13:"Deutsch (Sie)";s:7:"package";s:69:"https://downloads.wordpress.org/translation/core/4.3/de_DE_formal.zip";s:3:"iso";a:1:{i:1;s:2:"de";}s:7:"strings";a:1:{s:8:"continue";s:10:"Fortfahren";}}s:2:"el";a:8:{s:8:"language";s:2:"el";s:7:"version";s:3:"4.3";s:7:"updated";s:19:"2015-09-03 22:30:30";s:12:"english_name";s:5:"Greek";s:11:"native_name";s:16:"Ελληνικά";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.3/el.zip";s:3:"iso";a:2:{i:1;s:2:"el";i:2;s:3:"ell";}s:7:"strings";a:1:{s:8:"continue";s:16:"Συνέχεια";}}s:5:"en_AU";a:8:{s:8:"language";s:5:"en_AU";s:7:"version";s:3:"4.3";s:7:"updated";s:19:"2015-08-13 23:56:05";s:12:"english_name";s:19:"English (Australia)";s:11:"native_name";s:19:"English (Australia)";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.3/en_AU.zip";s:3:"iso";a:3:{i:1;s:2:"en";i:2;s:3:"eng";i:3;s:3:"eng";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continue";}}s:5:"en_NZ";a:8:{s:8:"language";s:5:"en_NZ";s:7:"version";s:3:"4.3";s:7:"updated";s:19:"2015-08-17 22:20:50";s:12:"english_name";s:21:"English (New Zealand)";s:11:"native_name";s:21:"English (New Zealand)";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.3/en_NZ.zip";s:3:"iso";a:3:{i:1;s:2:"en";i:2;s:3:"eng";i:3;s:3:"eng";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continue";}}s:5:"en_GB";a:8:{s:8:"language";s:5:"en_GB";s:7:"version";s:3:"4.3";s:7:"updated";s:19:"2015-08-17 20:57:21";s:12:"english_name";s:12:"English (UK)";s:11:"native_name";s:12:"English (UK)";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.3/en_GB.zip";s:3:"iso";a:3:{i:1;s:2:"en";i:2;s:3:"eng";i:3;s:3:"eng";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continue";}}s:5:"en_CA";a:8:{s:8:"language";s:5:"en_CA";s:7:"version";s:3:"4.3";s:7:"updated";s:19:"2015-08-14 00:38:16";s:12:"english_name";s:16:"English (Canada)";s:11:"native_name";s:16:"English (Canada)";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.3/en_CA.zip";s:3:"iso";a:3:{i:1;s:2:"en";i:2;s:3:"eng";i:3;s:3:"eng";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continue";}}s:2:"eo";a:8:{s:8:"language";s:2:"eo";s:7:"version";s:3:"4.3";s:7:"updated";s:19:"2015-08-16 10:50:33";s:12:"english_name";s:9:"Esperanto";s:11:"native_name";s:9:"Esperanto";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.3/eo.zip";s:3:"iso";a:2:{i:1;s:2:"eo";i:2;s:3:"epo";}s:7:"strings";a:1:{s:8:"continue";s:8:"Daŭrigi";}}s:5:"es_ES";a:8:{s:8:"language";s:5:"es_ES";s:7:"version";s:3:"4.3";s:7:"updated";s:19:"2015-08-19 00:53:46";s:12:"english_name";s:15:"Spanish (Spain)";s:11:"native_name";s:8:"Español";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.3/es_ES.zip";s:3:"iso";a:1:{i:1;s:2:"es";}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.3-RC";s:7:"updated";s:19:"2015-08-04 06:10:33";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.3-RC/es_CO.zip";s:3:"iso";a:2:{i:1;s:2:"es";i:2;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:3:"4.0";s:7:"updated";s:19:"2014-09-04 19:47:01";s:12:"english_name";s:15:"Spanish (Chile)";s:11:"native_name";s:17:"Español de Chile";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.0/es_CL.zip";s:3:"iso";a:2:{i:1;s:2:"es";i:2;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:"4.3";s:7:"updated";s:19:"2015-08-18 18:40:22";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/4.3/es_MX.zip";s:3:"iso";a:2:{i:1;s:2:"es";i:2;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:3:"4.3";s:7:"updated";s:19:"2015-08-19 14:33:57";s:12:"english_name";s:14:"Spanish (Peru)";s:11:"native_name";s:17:"Español de Perú";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.3/es_PE.zip";s:3:"iso";a:2:{i:1;s:2:"es";i:2;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:3:"4.3";s:7:"updated";s:19:"2015-09-05 16:34:02";s:12:"english_name";s:8:"Estonian";s:11:"native_name";s:5:"Eesti";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.3/et.zip";s:3:"iso";a:2:{i:1;s:2:"et";i:2;s:3:"est";}s:7:"strings";a:1:{s:8:"continue";s:6:"Jätka";}}s:2:"eu";a:8:{s:8:"language";s:2:"eu";s:7:"version";s:3:"4.3";s:7:"updated";s:19:"2015-08-25 13:32:40";s:12:"english_name";s:6:"Basque";s:11:"native_name";s:7:"Euskara";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.3/eu.zip";s:3:"iso";a:2:{i:1;s:2:"eu";i:2;s:3:"eus";}s:7:"strings";a:1:{s:8:"continue";s:8:"Jarraitu";}}s:5:"fa_IR";a:8:{s:8:"language";s:5:"fa_IR";s:7:"version";s:3:"4.3";s:7:"updated";s:19:"2015-08-20 13:36:08";s:12:"english_name";s:7:"Persian";s:11:"native_name";s:10:"فارسی";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.3/fa_IR.zip";s:3:"iso";a:2:{i:1;s:2:"fa";i:2;s:3:"fas";}s:7:"strings";a:1:{s:8:"continue";s:10:"ادامه";}}s:2:"fi";a:8:{s:8:"language";s:2:"fi";s:7:"version";s:3:"4.3";s:7:"updated";s:19:"2015-08-18 09:17:58";s:12:"english_name";s:7:"Finnish";s:11:"native_name";s:5:"Suomi";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.3/fi.zip";s:3:"iso";a:2:{i:1;s:2:"fi";i:2;s:3:"fin";}s:7:"strings";a:1:{s:8:"continue";s:5:"Jatka";}}s:5:"fr_FR";a:8:{s:8:"language";s:5:"fr_FR";s:7:"version";s:3:"4.3";s:7:"updated";s:19:"2015-09-07 12:55:52";s:12:"english_name";s:15:"French (France)";s:11:"native_name";s:9:"Français";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.3/fr_FR.zip";s:3:"iso";a:1:{i:1;s:2:"fr";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuer";}}s:5:"fr_BE";a:8:{s:8:"language";s:5:"fr_BE";s:7:"version";s:3:"4.3";s:7:"updated";s:19:"2015-09-06 20:37:24";s:12:"english_name";s:16:"French (Belgium)";s:11:"native_name";s:21:"Français de Belgique";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.3/fr_BE.zip";s:3:"iso";a:2:{i:1;s:2:"fr";i:2;s:3:"fra";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuer";}}s:2:"gd";a:8:{s:8:"language";s:2:"gd";s:7:"version";s:3:"4.3";s:7:"updated";s:19:"2015-08-27 14:28:09";s:12:"english_name";s:15:"Scottish Gaelic";s:11:"native_name";s:9:"Gàidhlig";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.3/gd.zip";s:3:"iso";a:3:{i:1;s:2:"gd";i:2;s:3:"gla";i:3;s:3:"gla";}s:7:"strings";a:1:{s:8:"continue";s:15:"Lean air adhart";}}s:5:"gl_ES";a:8:{s:8:"language";s:5:"gl_ES";s:7:"version";s:3:"4.3";s:7:"updated";s:19:"2015-08-18 23:34:00";s:12:"english_name";s:8:"Galician";s:11:"native_name";s:6:"Galego";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.3/gl_ES.zip";s:3:"iso";a:2:{i:1;s:2:"gl";i:2;s:3:"glg";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:3:"haz";a:8:{s:8:"language";s:3:"haz";s:7:"version";s:5:"4.1.7";s:7:"updated";s:19:"2015-03-26 15:20:27";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.1.7/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:3:"4.3";s:7:"updated";s:19:"2015-08-17 15:13:38";s:12:"english_name";s:6:"Hebrew";s:11:"native_name";s:16:"עִבְרִית";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.3/he_IL.zip";s:3:"iso";a:1:{i:1;s:2:"he";}s:7:"strings";a:1:{s:8:"continue";s:12:"להמשיך";}}s:2:"hr";a:8:{s:8:"language";s:2:"hr";s:7:"version";s:3:"4.3";s:7:"updated";s:19:"2015-09-08 19:57:36";s:12:"english_name";s:8:"Croatian";s:11:"native_name";s:8:"Hrvatski";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.3/hr.zip";s:3:"iso";a:2:{i:1;s:2:"hr";i:2;s:3:"hrv";}s:7:"strings";a:1:{s:8:"continue";s:7:"Nastavi";}}s:5:"hu_HU";a:8:{s:8:"language";s:5:"hu_HU";s:7:"version";s:3:"4.3";s:7:"updated";s:19:"2015-08-20 12:47:55";s:12:"english_name";s:9:"Hungarian";s:11:"native_name";s:6:"Magyar";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.3/hu_HU.zip";s:3:"iso";a:2:{i:1;s:2:"hu";i:2;s:3:"hun";}s:7:"strings";a:1:{s:8:"continue";s:7:"Tovább";}}s:2:"hy";a:8:{s:8:"language";s:2:"hy";s:7:"version";s:3:"4.3";s:7:"updated";s:19:"2015-08-17 13:36:47";s:12:"english_name";s:8:"Armenian";s:11:"native_name";s:14:"Հայերեն";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.3/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:3:"4.3";s:7:"updated";s:19:"2015-09-08 17:47:38";s:12:"english_name";s:10:"Indonesian";s:11:"native_name";s:16:"Bahasa Indonesia";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.3/id_ID.zip";s:3:"iso";a:2:{i:1;s:2:"id";i:2;s:3:"ind";}s:7:"strings";a:1:{s:8:"continue";s:9:"Lanjutkan";}}s:5:"is_IS";a:8:{s:8:"language";s:5:"is_IS";s:7:"version";s:3:"4.3";s:7:"updated";s:19:"2015-08-22 13:47:37";s:12:"english_name";s:9:"Icelandic";s:11:"native_name";s:9:"Íslenska";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.3/is_IS.zip";s:3:"iso";a:2:{i:1;s:2:"is";i:2;s:3:"isl";}s:7:"strings";a:1:{s:8:"continue";s:6:"Áfram";}}s:5:"it_IT";a:8:{s:8:"language";s:5:"it_IT";s:7:"version";s:3:"4.3";s:7:"updated";s:19:"2015-08-19 06:13:38";s:12:"english_name";s:7:"Italian";s:11:"native_name";s:8:"Italiano";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.3/it_IT.zip";s:3:"iso";a:2:{i:1;s:2:"it";i:2;s:3:"ita";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continua";}}s:2:"ja";a:8:{s:8:"language";s:2:"ja";s:7:"version";s:3:"4.3";s:7:"updated";s:19:"2015-09-03 02:18:06";s:12:"english_name";s:8:"Japanese";s:11:"native_name";s:9:"日本語";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.3/ja.zip";s:3:"iso";a:1:{i:1;s:2:"ja";}s:7:"strings";a:1:{s:8:"continue";s:9:"続ける";}}s:5:"ko_KR";a:8:{s:8:"language";s:5:"ko_KR";s:7:"version";s:3:"4.3";s:7:"updated";s:19:"2015-08-17 22:59:51";s:12:"english_name";s:6:"Korean";s:11:"native_name";s:9:"한국어";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.3/ko_KR.zip";s:3:"iso";a:2:{i:1;s:2:"ko";i:2;s:3:"kor";}s:7:"strings";a:1:{s:8:"continue";s:6:"계속";}}s:5:"lt_LT";a:8:{s:8:"language";s:5:"lt_LT";s:7:"version";s:3:"4.3";s:7:"updated";s:19:"2015-08-18 07:48:28";s:12:"english_name";s:10:"Lithuanian";s:11:"native_name";s:15:"Lietuvių kalba";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.3/lt_LT.zip";s:3:"iso";a:2:{i:1;s:2:"lt";i:2;s:3:"lit";}s:7:"strings";a:1:{s:8:"continue";s:6:"Tęsti";}}s:5:"my_MM";a:8:{s:8:"language";s:5:"my_MM";s:7:"version";s:5:"4.1.7";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:64:"https://downloads.wordpress.org/translation/core/4.1.7/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:3:"4.3";s:7:"updated";s:19:"2015-08-17 18:45:19";s:12:"english_name";s:19:"Norwegian (Bokmål)";s:11:"native_name";s:13:"Norsk bokmål";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.3/nb_NO.zip";s:3:"iso";a:2:{i:1;s:2:"nb";i:2;s:3:"nob";}s:7:"strings";a:1:{s:8:"continue";s:8:"Fortsett";}}s:5:"nl_NL";a:8:{s:8:"language";s:5:"nl_NL";s:7:"version";s:3:"4.3";s:7:"updated";s:19:"2015-08-20 06:57:09";s:12:"english_name";s:5:"Dutch";s:11:"native_name";s:10:"Nederlands";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.3/nl_NL.zip";s:3:"iso";a:2:{i:1;s:2:"nl";i:2;s:3:"nld";}s:7:"strings";a:1:{s:8:"continue";s:8:"Doorgaan";}}s:5:"nn_NO";a:8:{s:8:"language";s:5:"nn_NO";s:7:"version";s:3:"4.3";s:7:"updated";s:19:"2015-08-17 18:56:13";s:12:"english_name";s:19:"Norwegian (Nynorsk)";s:11:"native_name";s:13:"Norsk nynorsk";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.3/nn_NO.zip";s:3:"iso";a:2:{i:1;s:2:"nn";i:2;s:3:"nno";}s:7:"strings";a:1:{s:8:"continue";s:9:"Hald fram";}}s:3:"oci";a:8:{s:8:"language";s:3:"oci";s:7:"version";s:6:"4.3-RC";s:7:"updated";s:19:"2015-08-02 07:53:33";s:12:"english_name";s:7:"Occitan";s:11:"native_name";s:7:"Occitan";s:7:"package";s:63:"https://downloads.wordpress.org/translation/core/4.3-RC/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:"pl_PL";a:8:{s:8:"language";s:5:"pl_PL";s:7:"version";s:3:"4.3";s:7:"updated";s:19:"2015-08-27 13:38:57";s:12:"english_name";s:6:"Polish";s:11:"native_name";s:6:"Polski";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.3/pl_PL.zip";s:3:"iso";a:2:{i:1;s:2:"pl";i:2;s:3:"pol";}s:7:"strings";a:1:{s:8:"continue";s:9:"Kontynuuj";}}s:2:"ps";a:8:{s:8:"language";s:2:"ps";s:7:"version";s:5:"4.1.7";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:61:"https://downloads.wordpress.org/translation/core/4.1.7/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:8:"دوام";}}s:5:"pt_BR";a:8:{s:8:"language";s:5:"pt_BR";s:7:"version";s:3:"4.3";s:7:"updated";s:19:"2015-08-20 02:24:55";s:12:"english_name";s:19:"Portuguese (Brazil)";s:11:"native_name";s:20:"Português do Brasil";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.3/pt_BR.zip";s:3:"iso";a:2:{i:1;s:2:"pt";i:2;s:3:"por";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"pt_PT";a:8:{s:8:"language";s:5:"pt_PT";s:7:"version";s:3:"4.3";s:7:"updated";s:19:"2015-09-08 14:23:10";s:12:"english_name";s:21:"Portuguese (Portugal)";s:11:"native_name";s:10:"Português";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.3/pt_PT.zip";s:3:"iso";a:1:{i:1;s:2:"pt";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"ro_RO";a:8:{s:8:"language";s:5:"ro_RO";s:7:"version";s:3:"4.3";s:7:"updated";s:19:"2015-08-18 16:44:05";s:12:"english_name";s:8:"Romanian";s:11:"native_name";s:8:"Română";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.3/ro_RO.zip";s:3:"iso";a:2:{i:1;s:2:"ro";i:2;s:3:"ron";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuă";}}s:5:"ru_RU";a:8:{s:8:"language";s:5:"ru_RU";s:7:"version";s:3:"4.3";s:7:"updated";s:19:"2015-09-03 10:08:50";s:12:"english_name";s:7:"Russian";s:11:"native_name";s:14:"Русский";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.3/ru_RU.zip";s:3:"iso";a:2:{i:1;s:2:"ru";i:2;s:3:"rus";}s:7:"strings";a:1:{s:8:"continue";s:20:"Продолжить";}}s:5:"sk_SK";a:8:{s:8:"language";s:5:"sk_SK";s:7:"version";s:3:"4.3";s:7:"updated";s:19:"2015-08-31 19:45:06";s:12:"english_name";s:6:"Slovak";s:11:"native_name";s:11:"Slovenčina";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.3/sk_SK.zip";s:3:"iso";a:2:{i:1;s:2:"sk";i:2;s:3:"slk";}s:7:"strings";a:1:{s:8:"continue";s:12:"Pokračovať";}}s:5:"sl_SI";a:8:{s:8:"language";s:5:"sl_SI";s:7:"version";s:3:"4.3";s:7:"updated";s:19:"2015-09-06 16:10:24";s:12:"english_name";s:9:"Slovenian";s:11:"native_name";s:13:"Slovenščina";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.3/sl_SI.zip";s:3:"iso";a:2:{i:1;s:2:"sl";i:2;s:3:"slv";}s:7:"strings";a:1:{s:8:"continue";s:10:"Nadaljujte";}}s:2:"sq";a:8:{s:8:"language";s:2:"sq";s:7:"version";s:3:"4.3";s:7:"updated";s:19:"2015-08-18 17:16:31";s:12:"english_name";s:8:"Albanian";s:11:"native_name";s:5:"Shqip";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.3/sq.zip";s:3:"iso";a:2:{i:1;s:2:"sq";i:2;s:3:"sqi";}s:7:"strings";a:1:{s:8:"continue";s:6:"Vazhdo";}}s:5:"sr_RS";a:8:{s:8:"language";s:5:"sr_RS";s:7:"version";s:3:"4.3";s:7:"updated";s:19:"2015-08-17 18:31:56";s:12:"english_name";s:7:"Serbian";s:11:"native_name";s:23:"Српски језик";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.3/sr_RS.zip";s:3:"iso";a:2:{i:1;s:2:"sr";i:2;s:3:"srp";}s:7:"strings";a:1:{s:8:"continue";s:14:"Настави";}}s:5:"sv_SE";a:8:{s:8:"language";s:5:"sv_SE";s:7:"version";s:3:"4.3";s:7:"updated";s:19:"2015-08-19 10:43:45";s:12:"english_name";s:7:"Swedish";s:11:"native_name";s:7:"Svenska";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.3/sv_SE.zip";s:3:"iso";a:2:{i:1;s:2:"sv";i:2;s:3:"swe";}s:7:"strings";a:1:{s:8:"continue";s:9:"Fortsätt";}}s:2:"th";a:8:{s:8:"language";s:2:"th";s:7:"version";s:3:"4.3";s:7:"updated";s:19:"2015-08-18 14:10:42";s:12:"english_name";s:4:"Thai";s:11:"native_name";s:9:"ไทย";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.3/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:3:"4.3";s:7:"updated";s:19:"2015-08-20 03:52:15";s:12:"english_name";s:7:"Tagalog";s:11:"native_name";s:7:"Tagalog";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.3/tl.zip";s:3:"iso";a:2:{i:1;s:2:"tl";i:2;s:3:"tgl";}s:7:"strings";a:1:{s:8:"continue";s:10:"Magpatuloy";}}s:5:"tr_TR";a:8:{s:8:"language";s:5:"tr_TR";s:7:"version";s:3:"4.3";s:7:"updated";s:19:"2015-08-20 05:50:57";s:12:"english_name";s:7:"Turkish";s:11:"native_name";s:8:"Türkçe";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.3/tr_TR.zip";s:3:"iso";a:2:{i:1;s:2:"tr";i:2;s:3:"tur";}s:7:"strings";a:1:{s:8:"continue";s:5:"Devam";}}s:5:"ug_CN";a:8:{s:8:"language";s:5:"ug_CN";s:7:"version";s:5:"4.1.7";s:7:"updated";s:19:"2015-03-26 16:45:38";s:12:"english_name";s:6:"Uighur";s:11:"native_name";s:9:"Uyƣurqə";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/4.1.7/ug_CN.zip";s:3:"iso";a:2:{i:1;s:2:"ug";i:2;s:3:"uig";}s:7:"strings";a:1:{s:8:"continue";s:26:"داۋاملاشتۇرۇش";}}s:2:"uk";a:8:{s:8:"language";s:2:"uk";s:7:"version";s:3:"4.3";s:7:"updated";s:19:"2015-09-09 21:02:17";s:12:"english_name";s:9:"Ukrainian";s:11:"native_name";s:20:"Українська";s:7:"package";s:59:"https://downloads.wordpress.org/translation/core/4.3/uk.zip";s:3:"iso";a:2:{i:1;s:2:"uk";i:2;s:3:"ukr";}s:7:"strings";a:1:{s:8:"continue";s:20:"Продовжити";}}s:5:"zh_CN";a:8:{s:8:"language";s:5:"zh_CN";s:7:"version";s:3:"4.3";s:7:"updated";s:19:"2015-08-20 19:10:20";s:12:"english_name";s:15:"Chinese (China)";s:11:"native_name";s:12:"简体中文";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.3/zh_CN.zip";s:3:"iso";a:2:{i:1;s:2:"zh";i:2;s:3:"zho";}s:7:"strings";a:1:{s:8:"continue";s:6:"继续";}}s:5:"zh_TW";a:8:{s:8:"language";s:5:"zh_TW";s:7:"version";s:3:"4.3";s:7:"updated";s:19:"2015-08-19 00:50:06";s:12:"english_name";s:16:"Chinese (Taiwan)";s:11:"native_name";s:12:"繁體中文";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.3/zh_TW.zip";s:3:"iso";a:2:{i:1;s:2:"zh";i:2;s:3:"zho";}s:7:"strings";a:1:{s:8:"continue";s:6:"繼續";}}}', 'yes'),
(733, '_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a', '1441872815', 'yes'),
(734, '_site_transient_poptags_40cd750bba9870f18aada2478b24840a', 'a:40:{s:6:"widget";a:3:{s:4:"name";s:6:"widget";s:4:"slug";s:6:"widget";s:5:"count";s:4:"5223";}s:4:"post";a:3:{s:4:"name";s:4:"Post";s:4:"slug";s:4:"post";s:5:"count";s:4:"3269";}s:6:"plugin";a:3:{s:4:"name";s:6:"plugin";s:4:"slug";s:6:"plugin";s:5:"count";s:4:"3204";}s:5:"admin";a:3:{s:4:"name";s:5:"admin";s:4:"slug";s:5:"admin";s:5:"count";s:4:"2734";}s:5:"posts";a:3:{s:4:"name";s:5:"posts";s:4:"slug";s:5:"posts";s:5:"count";s:4:"2503";}s:7:"sidebar";a:3:{s:4:"name";s:7:"sidebar";s:4:"slug";s:7:"sidebar";s:5:"count";s:4:"2001";}s:9:"shortcode";a:3:{s:4:"name";s:9:"shortcode";s:4:"slug";s:9:"shortcode";s:5:"count";s:4:"1906";}s:6:"google";a:3:{s:4:"name";s:6:"google";s:4:"slug";s:6:"google";s:5:"count";s:4:"1836";}s:7:"twitter";a:3:{s:4:"name";s:7:"twitter";s:4:"slug";s:7:"twitter";s:5:"count";s:4:"1787";}s:6:"images";a:3:{s:4:"name";s:6:"images";s:4:"slug";s:6:"images";s:5:"count";s:4:"1769";}s:4:"page";a:3:{s:4:"name";s:4:"page";s:4:"slug";s:4:"page";s:5:"count";s:4:"1738";}s:8:"comments";a:3:{s:4:"name";s:8:"comments";s:4:"slug";s:8:"comments";s:5:"count";s:4:"1728";}s:5:"image";a:3:{s:4:"name";s:5:"image";s:4:"slug";s:5:"image";s:5:"count";s:4:"1621";}s:8:"facebook";a:3:{s:4:"name";s:8:"Facebook";s:4:"slug";s:8:"facebook";s:5:"count";s:4:"1419";}s:3:"seo";a:3:{s:4:"name";s:3:"seo";s:4:"slug";s:3:"seo";s:5:"count";s:4:"1357";}s:9:"wordpress";a:3:{s:4:"name";s:9:"wordpress";s:4:"slug";s:9:"wordpress";s:5:"count";s:4:"1299";}s:5:"links";a:3:{s:4:"name";s:5:"links";s:4:"slug";s:5:"links";s:5:"count";s:4:"1207";}s:6:"social";a:3:{s:4:"name";s:6:"social";s:4:"slug";s:6:"social";s:5:"count";s:4:"1165";}s:7:"gallery";a:3:{s:4:"name";s:7:"gallery";s:4:"slug";s:7:"gallery";s:5:"count";s:4:"1150";}s:5:"email";a:3:{s:4:"name";s:5:"email";s:4:"slug";s:5:"email";s:5:"count";s:4:"1021";}s:7:"widgets";a:3:{s:4:"name";s:7:"widgets";s:4:"slug";s:7:"widgets";s:5:"count";s:3:"975";}s:11:"woocommerce";a:3:{s:4:"name";s:11:"woocommerce";s:4:"slug";s:11:"woocommerce";s:5:"count";s:3:"942";}s:5:"pages";a:3:{s:4:"name";s:5:"pages";s:4:"slug";s:5:"pages";s:5:"count";s:3:"932";}s:6:"jquery";a:3:{s:4:"name";s:6:"jquery";s:4:"slug";s:6:"jquery";s:5:"count";s:3:"896";}s:3:"rss";a:3:{s:4:"name";s:3:"rss";s:4:"slug";s:3:"rss";s:5:"count";s:3:"865";}s:5:"media";a:3:{s:4:"name";s:5:"media";s:4:"slug";s:5:"media";s:5:"count";s:3:"853";}s:5:"video";a:3:{s:4:"name";s:5:"video";s:4:"slug";s:5:"video";s:5:"count";s:3:"806";}s:4:"ajax";a:3:{s:4:"name";s:4:"AJAX";s:4:"slug";s:4:"ajax";s:5:"count";s:3:"791";}s:7:"content";a:3:{s:4:"name";s:7:"content";s:4:"slug";s:7:"content";s:5:"count";s:3:"767";}s:5:"login";a:3:{s:4:"name";s:5:"login";s:4:"slug";s:5:"login";s:5:"count";s:3:"743";}s:9:"ecommerce";a:3:{s:4:"name";s:9:"ecommerce";s:4:"slug";s:9:"ecommerce";s:5:"count";s:3:"738";}s:10:"javascript";a:3:{s:4:"name";s:10:"javascript";s:4:"slug";s:10:"javascript";s:5:"count";s:3:"736";}s:10:"buddypress";a:3:{s:4:"name";s:10:"buddypress";s:4:"slug";s:10:"buddypress";s:5:"count";s:3:"695";}s:5:"photo";a:3:{s:4:"name";s:5:"photo";s:4:"slug";s:5:"photo";s:5:"count";s:3:"687";}s:4:"feed";a:3:{s:4:"name";s:4:"feed";s:4:"slug";s:4:"feed";s:5:"count";s:3:"682";}s:4:"link";a:3:{s:4:"name";s:4:"link";s:4:"slug";s:4:"link";s:5:"count";s:3:"669";}s:7:"youtube";a:3:{s:4:"name";s:7:"youtube";s:4:"slug";s:7:"youtube";s:5:"count";s:3:"649";}s:8:"security";a:3:{s:4:"name";s:8:"security";s:4:"slug";s:8:"security";s:5:"count";s:3:"645";}s:4:"spam";a:3:{s:4:"name";s:4:"spam";s:4:"slug";s:4:"spam";s:5:"count";s:3:"640";}s:6:"photos";a:3:{s:4:"name";s:6:"photos";s:4:"slug";s:6:"photos";s:5:"count";s:3:"639";}}', 'yes'),
(735, 'wpanything_title', 'Announcement', 'yes'),
(736, '_site_transient_update_plugins', 'O:8:"stdClass":5:{s:12:"last_checked";i:1441877296;s:7:"checked";a:12:{s:19:"akismet/akismet.php";s:5:"3.1.3";s:36:"contact-form-7/wp-contact-form-7.php";s:5:"4.2.2";s:34:"envato-wordpress-toolkit/index.php";s:5:"1.7.2";s:9:"hello.php";s:3:"1.6";s:35:"image-watermark/image-watermark.php";s:5:"1.5.1";s:27:"LayerSlider/layerslider.php";s:5:"5.4.0";s:27:"simple-html-slider/main.php";s:5:"1.1.4";s:59:"ultimate-social-media-icons/ultimate_social_media_icons.php";s:5:"1.2.7";s:45:"social-media-feather/social-media-feather.php";s:5:"1.7.8";s:41:"wp-anything-slider/wp-anything-slider.php";s:3:"7.6";s:27:"js_composer/js_composer.php";s:5:"4.5.3";s:54:"wp-featured-content-slider/featured-content-slider.php";s:3:"2.6";}s:8:"response";a:0:{}s:12:"translations";a:0:{}s:9:"no_update";a:9:{s:19:"akismet/akismet.php";O:8:"stdClass":6:{s:2:"id";s:2:"15";s:4:"slug";s:7:"akismet";s:6:"plugin";s:19:"akismet/akismet.php";s:11:"new_version";s:5:"3.1.3";s:3:"url";s:38:"https://wordpress.org/plugins/akismet/";s:7:"package";s:56:"https://downloads.wordpress.org/plugin/akismet.3.1.3.zip";}s:36:"contact-form-7/wp-contact-form-7.php";O:8:"stdClass":6:{s:2:"id";s:3:"790";s:4:"slug";s:14:"contact-form-7";s:6:"plugin";s:36:"contact-form-7/wp-contact-form-7.php";s:11:"new_version";s:5:"4.2.2";s:3:"url";s:45:"https://wordpress.org/plugins/contact-form-7/";s:7:"package";s:63:"https://downloads.wordpress.org/plugin/contact-form-7.4.2.2.zip";}s:9:"hello.php";O:8:"stdClass":6:{s:2:"id";s:4:"3564";s:4:"slug";s:11:"hello-dolly";s:6:"plugin";s:9:"hello.php";s:11:"new_version";s:3:"1.6";s:3:"url";s:42:"https://wordpress.org/plugins/hello-dolly/";s:7:"package";s:58:"https://downloads.wordpress.org/plugin/hello-dolly.1.6.zip";}s:35:"image-watermark/image-watermark.php";O:8:"stdClass":7:{s:2:"id";s:5:"39872";s:4:"slug";s:15:"image-watermark";s:6:"plugin";s:35:"image-watermark/image-watermark.php";s:11:"new_version";s:5:"1.5.1";s:3:"url";s:46:"https://wordpress.org/plugins/image-watermark/";s:7:"package";s:64:"https://downloads.wordpress.org/plugin/image-watermark.1.5.1.zip";s:14:"upgrade_notice";s:83:"New: Introducing plugin documentation\nTweak: Improved transparent watermark support";}s:27:"simple-html-slider/main.php";O:8:"stdClass":6:{s:2:"id";s:5:"32474";s:4:"slug";s:18:"simple-html-slider";s:6:"plugin";s:27:"simple-html-slider/main.php";s:11:"new_version";s:5:"1.1.4";s:3:"url";s:49:"https://wordpress.org/plugins/simple-html-slider/";s:7:"package";s:61:"https://downloads.wordpress.org/plugin/simple-html-slider.zip";}s:59:"ultimate-social-media-icons/ultimate_social_media_icons.php";O:8:"stdClass":7:{s:2:"id";s:5:"53724";s:4:"slug";s:27:"ultimate-social-media-icons";s:6:"plugin";s:59:"ultimate-social-media-icons/ultimate_social_media_icons.php";s:11:"new_version";s:5:"1.2.7";s:3:"url";s:58:"https://wordpress.org/plugins/ultimate-social-media-icons/";s:7:"package";s:76:"https://downloads.wordpress.org/plugin/ultimate-social-media-icons.1.2.7.zip";s:14:"upgrade_notice";s:36:"Count issues fixed - please upgrade!";}s:45:"social-media-feather/social-media-feather.php";O:8:"stdClass":6:{s:2:"id";s:5:"37248";s:4:"slug";s:20:"social-media-feather";s:6:"plugin";s:45:"social-media-feather/social-media-feather.php";s:11:"new_version";s:5:"1.7.8";s:3:"url";s:51:"https://wordpress.org/plugins/social-media-feather/";s:7:"package";s:63:"https://downloads.wordpress.org/plugin/social-media-feather.zip";}s:41:"wp-anything-slider/wp-anything-slider.php";O:8:"stdClass":7:{s:2:"id";s:5:"30933";s:4:"slug";s:18:"wp-anything-slider";s:6:"plugin";s:41:"wp-anything-slider/wp-anything-slider.php";s:11:"new_version";s:3:"7.6";s:3:"url";s:49:"https://wordpress.org/plugins/wp-anything-slider/";s:7:"package";s:61:"https://downloads.wordpress.org/plugin/wp-anything-slider.zip";s:14:"upgrade_notice";s:16:"Tested up to 4.3";}s:54:"wp-featured-content-slider/featured-content-slider.php";O:8:"stdClass":6:{s:2:"id";s:5:"10146";s:4:"slug";s:26:"wp-featured-content-slider";s:6:"plugin";s:54:"wp-featured-content-slider/featured-content-slider.php";s:11:"new_version";s:3:"2.6";s:3:"url";s:57:"https://wordpress.org/plugins/wp-featured-content-slider/";s:7:"package";s:69:"https://downloads.wordpress.org/plugin/wp-featured-content-slider.zip";}}}', 'yes'),
(744, '_site_transient_timeout_theme_roots', '1441871514', 'yes'),
(745, '_site_transient_theme_roots', 'a:7:{s:12:"bridge-child";s:7:"/themes";s:6:"bridge";s:7:"/themes";s:4:"edin";s:7:"/themes";s:5:"goran";s:7:"/themes";s:13:"twentyfifteen";s:7:"/themes";s:14:"twentyfourteen";s:7:"/themes";s:14:"twentythirteen";s:7:"/themes";}', 'yes'),
(746, 'slides_category_children', 'a:0:{}', 'yes');
-- --------------------------------------------------------
--
-- Table structure for table `wp_postmeta`
--
CREATE TABLE IF NOT EXISTS `wp_postmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`meta_id`),
KEY `post_id` (`post_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=309 ;
--
-- Dumping data for table `wp_postmeta`
--
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1, 2, '_wp_page_template', 'full_width.php'),
(4, 1, '_qode-like', '0'),
(5, 5, '_wp_attached_file', '2015/09/array-img.png'),
(6, 5, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:857;s:6:"height";i:509;s:4:"file";s:21:"2015/09/array-img.png";s:5:"sizes";a:13:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"array-img-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:21:"array-img-300x178.png";s:5:"width";i:300;s:6:"height";i:178;s:9:"mime-type";s:9:"image/png";}s:16:"portfolio-square";a:4:{s:4:"file";s:21:"array-img-570x509.png";s:5:"width";i:570;s:6:"height";i:509;s:9:"mime-type";s:9:"image/png";}s:18:"portfolio-portrait";a:4:{s:4:"file";s:21:"array-img-600x509.png";s:5:"width";i:600;s:6:"height";i:509;s:9:"mime-type";s:9:"image/png";}s:19:"portfolio-landscape";a:4:{s:4:"file";s:21:"array-img-800x509.png";s:5:"width";i:800;s:6:"height";i:509;s:9:"mime-type";s:9:"image/png";}s:18:"menu-featured-post";a:4:{s:4:"file";s:21:"array-img-345x198.png";s:5:"width";i:345;s:6:"height";i:198;s:9:"mime-type";s:9:"image/png";}s:20:"qode-carousel_slider";a:4:{s:4:"file";s:21:"array-img-400x260.png";s:5:"width";i:400;s:6:"height";i:260;s:9:"mime-type";s:9:"image/png";}s:16:"portfolio_slider";a:4:{s:4:"file";s:21:"array-img-500x380.png";s:5:"width";i:500;s:6:"height";i:380;s:9:"mime-type";s:9:"image/png";}s:25:"portfolio_masonry_regular";a:4:{s:4:"file";s:21:"array-img-500x500.png";s:5:"width";i:500;s:6:"height";i:500;s:9:"mime-type";s:9:"image/png";}s:22:"portfolio_masonry_wide";a:4:{s:4:"file";s:21:"array-img-857x500.png";s:5:"width";i:857;s:6:"height";i:500;s:9:"mime-type";s:9:"image/png";}s:22:"portfolio_masonry_tall";a:4:{s:4:"file";s:21:"array-img-500x509.png";s:5:"width";i:500;s:6:"height";i:509;s:9:"mime-type";s:9:"image/png";}s:28:"portfolio_masonry_with_space";a:4:{s:4:"file";s:21:"array-img-700x416.png";s:5:"width";i:700;s:6:"height";i:416;s:9:"mime-type";s:9:"image/png";}s:17:"latest_post_boxes";a:4:{s:4:"file";s:21:"array-img-539x303.png";s:5:"width";i:539;s:6:"height";i:303;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:11:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;}}'),
(7, 6, '_edit_last', '1'),
(8, 6, '_edit_lock', '1441346628:1'),
(9, 6, '_wp_page_template', 'default'),
(10, 6, 'qode_animate-page-title', 'no'),
(11, 6, 'qode_show-sidebar', 'default'),
(12, 8, '_edit_last', '1'),
(13, 8, '_wp_page_template', 'default'),
(14, 8, 'qode_animate-page-title', 'no'),
(15, 8, 'qode_show-sidebar', 'default'),
(16, 8, '_edit_lock', '1441691113:1'),
(17, 10, '_edit_last', '1'),
(18, 10, '_wp_page_template', 'full_screen.php'),
(19, 10, 'qode_animate-page-title', 'no'),
(20, 10, 'qode_show-sidebar', 'default'),
(21, 10, '_edit_lock', '1441885571:1'),
(22, 12, '_edit_last', '1'),
(23, 12, '_wp_page_template', 'default'),
(24, 12, 'qode_animate-page-title', 'no'),
(25, 12, 'qode_show-sidebar', 'default'),
(26, 12, '_edit_lock', '1441710174:1'),
(27, 14, '_edit_last', '1'),
(28, 14, '_wp_page_template', 'full_width.php'),
(29, 14, 'qode_animate-page-title', 'no'),
(30, 14, 'qode_show-sidebar', 'default'),
(31, 14, '_edit_lock', '1441792642:1'),
(32, 17, '_wp_attached_file', '2015/09/Banner.png'),
(33, 17, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:956;s:6:"height";i:717;s:4:"file";s:18:"2015/09/Banner.png";s:5:"sizes";a:13:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"Banner-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:18:"Banner-300x225.png";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:9:"image/png";}s:16:"portfolio-square";a:4:{s:4:"file";s:18:"Banner-570x570.png";s:5:"width";i:570;s:6:"height";i:570;s:9:"mime-type";s:9:"image/png";}s:18:"portfolio-portrait";a:4:{s:4:"file";s:18:"Banner-600x717.png";s:5:"width";i:600;s:6:"height";i:717;s:9:"mime-type";s:9:"image/png";}s:19:"portfolio-landscape";a:4:{s:4:"file";s:18:"Banner-800x600.png";s:5:"width";i:800;s:6:"height";i:600;s:9:"mime-type";s:9:"image/png";}s:18:"menu-featured-post";a:4:{s:4:"file";s:18:"Banner-345x198.png";s:5:"width";i:345;s:6:"height";i:198;s:9:"mime-type";s:9:"image/png";}s:20:"qode-carousel_slider";a:4:{s:4:"file";s:18:"Banner-400x260.png";s:5:"width";i:400;s:6:"height";i:260;s:9:"mime-type";s:9:"image/png";}s:16:"portfolio_slider";a:4:{s:4:"file";s:18:"Banner-500x380.png";s:5:"width";i:500;s:6:"height";i:380;s:9:"mime-type";s:9:"image/png";}s:25:"portfolio_masonry_regular";a:4:{s:4:"file";s:18:"Banner-500x500.png";s:5:"width";i:500;s:6:"height";i:500;s:9:"mime-type";s:9:"image/png";}s:22:"portfolio_masonry_wide";a:4:{s:4:"file";s:18:"Banner-956x500.png";s:5:"width";i:956;s:6:"height";i:500;s:9:"mime-type";s:9:"image/png";}s:22:"portfolio_masonry_tall";a:4:{s:4:"file";s:18:"Banner-500x717.png";s:5:"width";i:500;s:6:"height";i:717;s:9:"mime-type";s:9:"image/png";}s:28:"portfolio_masonry_with_space";a:4:{s:4:"file";s:18:"Banner-700x525.png";s:5:"width";i:700;s:6:"height";i:525;s:9:"mime-type";s:9:"image/png";}s:17:"latest_post_boxes";a:4:{s:4:"file";s:18:"Banner-539x303.png";s:5:"width";i:539;s:6:"height";i:303;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:11:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;}}'),
(34, 16, '_edit_last', '1'),
(35, 16, '_vc_post_settings', 'a:2:{s:7:"vc_grid";a:0:{}s:10:"vc_grid_id";a:0:{}}'),
(36, 16, 'qode_slide-background-type', 'image'),
(37, 16, 'qode_slide-image', 'http://localhost/rocketlaunch/wp-content/uploads/2015/09/Banner.png'),
(38, 16, 'qode_enable_image_animation', 'no'),
(39, 16, 'qode_enable_image_animation_type', 'zoom_center'),
(40, 16, 'qode_slide-thumbnail-animation', 'flip'),
(41, 16, 'qode_slide-content-animation', 'all_at_once'),
(42, 16, 'qode_slide-title-font-family', '-1'),
(43, 16, 'qode_slide-separator-after-title', 'no'),
(44, 16, 'qode_slide-border-around-title', 'no'),
(45, 16, 'qode_slide-subtitle-position', 'above_title'),
(46, 16, 'qode_slide-subtitle-font-family', '-1'),
(47, 16, 'qode_slide-text-font-family', '-1'),
(48, 16, 'qode_slide_svg_drawing', 'no'),
(49, 16, 'qode_slide-separate-text-graphic', 'no'),
(50, 16, 'qode_slide_general_animation', 'yes'),
(51, 16, 'qode_slide_title_animation_scroll', 'no'),
(52, 16, 'qode_slide_subtitle_animation_scroll', 'no'),
(53, 16, 'qode_slide_graphic_animation_scroll', 'no'),
(54, 16, 'qode_slide_text_animation_scroll', 'no'),
(55, 16, 'qode_slide_button1_animation_scroll', 'no'),
(56, 16, 'qode_slide_button2_animation_scroll', 'no'),
(57, 16, 'qode_slide_separator_bottom_animation_scroll', 'no'),
(58, 16, 'qode_slide_svg_animation_scroll', 'no'),
(59, 16, '_edit_lock', '1441882932:1'),
(60, 2, '_edit_lock', '1441802241:1'),
(61, 2, '_edit_last', '1'),
(62, 2, '_wpb_vc_js_status', 'false'),
(63, 2, '_vc_post_settings', 'a:2:{s:7:"vc_grid";a:0:{}s:10:"vc_grid_id";a:0:{}}'),
(65, 2, 'qode_animate-page-title', 'no'),
(66, 2, 'qode_show-sidebar', 'default'),
(67, 16, 'qode_slide-header-style', 'light'),
(68, 16, 'qode_slide-navigation-color', '#ffffff'),
(69, 2, 'qode_page_background_color', '#000000'),
(71, 23, '_menu_item_type', 'post_type'),
(72, 23, '_menu_item_menu_item_parent', '0'),
(73, 23, '_menu_item_object_id', '14'),
(74, 23, '_menu_item_object', 'page'),
(75, 23, '_menu_item_target', ''),
(76, 23, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(77, 23, '_menu_item_xfn', ''),
(78, 23, '_menu_item_url', ''),
(80, 24, '_menu_item_type', 'post_type'),
(81, 24, '_menu_item_menu_item_parent', '0'),
(82, 24, '_menu_item_object_id', '12'),
(83, 24, '_menu_item_object', 'page'),
(84, 24, '_menu_item_target', ''),
(85, 24, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(86, 24, '_menu_item_xfn', ''),
(87, 24, '_menu_item_url', ''),
(89, 25, '_menu_item_type', 'post_type'),
(90, 25, '_menu_item_menu_item_parent', '0'),
(91, 25, '_menu_item_object_id', '10'),
(92, 25, '_menu_item_object', 'page'),
(93, 25, '_menu_item_target', ''),
(94, 25, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(95, 25, '_menu_item_xfn', ''),
(96, 25, '_menu_item_url', ''),
(98, 26, '_menu_item_type', 'post_type'),
(99, 26, '_menu_item_menu_item_parent', '0'),
(100, 26, '_menu_item_object_id', '8'),
(101, 26, '_menu_item_object', 'page'),
(102, 26, '_menu_item_target', ''),
(103, 26, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(104, 26, '_menu_item_xfn', ''),
(105, 26, '_menu_item_url', ''),
(107, 27, '_menu_item_type', 'post_type'),
(108, 27, '_menu_item_menu_item_parent', '0'),
(109, 27, '_menu_item_object_id', '6'),
(110, 27, '_menu_item_object', 'page'),
(111, 27, '_menu_item_target', ''),
(112, 27, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(113, 27, '_menu_item_xfn', ''),
(114, 27, '_menu_item_url', ''),
(116, 23, '_vc_post_settings', 'a:2:{s:7:"vc_grid";a:0:{}s:10:"vc_grid_id";a:0:{}}'),
(117, 24, '_vc_post_settings', 'a:2:{s:7:"vc_grid";a:0:{}s:10:"vc_grid_id";a:0:{}}'),
(118, 25, '_vc_post_settings', 'a:2:{s:7:"vc_grid";a:0:{}s:10:"vc_grid_id";a:0:{}}'),
(119, 26, '_vc_post_settings', 'a:2:{s:7:"vc_grid";a:0:{}s:10:"vc_grid_id";a:0:{}}'),
(120, 27, '_vc_post_settings', 'a:2:{s:7:"vc_grid";a:0:{}s:10:"vc_grid_id";a:0:{}}'),
(123, 2, 'qode_header_color_per_page', '#d6d6d6'),
(124, 2, 'qode_header_color_transparency_per_page', '0'),
(125, 1, '_wp_trash_meta_status', 'publish'),
(126, 1, '_wp_trash_meta_time', '1441362646'),
(127, 1, '_vc_post_settings', 'a:2:{s:7:"vc_grid";a:0:{}s:10:"vc_grid_id";a:0:{}}'),
(128, 1, '_wp_trash_meta_comments_status', 'a:1:{i:1;s:1:"1";}'),
(129, 16, 'qode_slide-text', 'We partner with companies to execute a comprehensive growth that integrates sales, marketing and product'),
(130, 16, 'qode_slide-button-label', 'SEE OUR WORK'),
(131, 16, 'qode_slide-text-color', '#ffffff'),
(133, 16, 'qode_slide-subtitle-color', '#ffffff'),
(134, 16, 'qode_slide-title-color', '#ffffff'),
(135, 16, 'qode_slide-title-font-size', '34'),
(136, 16, 'qode_slide-title-bg-color-transparency', '0'),
(137, 16, 'qode_slide-text-font-size', '21px'),
(138, 16, 'qode_slide_text_padding_left', '220'),
(139, 16, 'qode_slide-subtitle', 'WE BUILD MARKETING SYSTEM'),
(140, 16, 'qode_slide-subtitle-font-size', '60px'),
(141, 16, 'qode_slide-hide-title', 'yes'),
(142, 14, '_wpb_vc_js_status', 'false'),
(143, 14, '_vc_post_settings', 'a:2:{s:7:"vc_grid";a:0:{}s:10:"vc_grid_id";a:0:{}}'),
(144, 33, '_edit_last', '1'),
(145, 33, '_edit_lock', '1441529984:1'),
(146, 34, '_wp_attached_file', '2015/09/Contact_BG.jpg'),
(147, 34, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:2500;s:6:"height";i:629;s:4:"file";s:22:"2015/09/Contact_BG.jpg";s:5:"sizes";a:15:{s:9:"thumbnail";a:4:{s:4:"file";s:22:"Contact_BG-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:21:"Contact_BG-300x75.jpg";s:5:"width";i:300;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:23:"Contact_BG-1024x258.jpg";s:5:"width";i:1024;s:6:"height";i:258;s:9:"mime-type";s:10:"image/jpeg";}s:16:"portfolio-square";a:4:{s:4:"file";s:22:"Contact_BG-570x570.jpg";s:5:"width";i:570;s:6:"height";i:570;s:9:"mime-type";s:10:"image/jpeg";}s:18:"portfolio-portrait";a:4:{s:4:"file";s:22:"Contact_BG-600x629.jpg";s:5:"width";i:600;s:6:"height";i:629;s:9:"mime-type";s:10:"image/jpeg";}s:19:"portfolio-landscape";a:4:{s:4:"file";s:22:"Contact_BG-800x600.jpg";s:5:"width";i:800;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:18:"menu-featured-post";a:4:{s:4:"file";s:22:"Contact_BG-345x198.jpg";s:5:"width";i:345;s:6:"height";i:198;s:9:"mime-type";s:10:"image/jpeg";}s:20:"qode-carousel_slider";a:4:{s:4:"file";s:22:"Contact_BG-400x260.jpg";s:5:"width";i:400;s:6:"height";i:260;s:9:"mime-type";s:10:"image/jpeg";}s:16:"portfolio_slider";a:4:{s:4:"file";s:22:"Contact_BG-500x380.jpg";s:5:"width";i:500;s:6:"height";i:380;s:9:"mime-type";s:10:"image/jpeg";}s:25:"portfolio_masonry_regular";a:4:{s:4:"file";s:22:"Contact_BG-500x500.jpg";s:5:"width";i:500;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}s:22:"portfolio_masonry_wide";a:4:{s:4:"file";s:23:"Contact_BG-1000x500.jpg";s:5:"width";i:1000;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}s:22:"portfolio_masonry_tall";a:4:{s:4:"file";s:22:"Contact_BG-500x629.jpg";s:5:"width";i:500;s:6:"height";i:629;s:9:"mime-type";s:10:"image/jpeg";}s:23:"portfolio_masonry_large";a:4:{s:4:"file";s:23:"Contact_BG-1000x629.jpg";s:5:"width";i:1000;s:6:"height";i:629;s:9:"mime-type";s:10:"image/jpeg";}s:28:"portfolio_masonry_with_space";a:4:{s:4:"file";s:22:"Contact_BG-700x176.jpg";s:5:"width";i:700;s:6:"height";i:176;s:9:"mime-type";s:10:"image/jpeg";}s:17:"latest_post_boxes";a:4:{s:4:"file";s:22:"Contact_BG-539x303.jpg";s:5:"width";i:539;s:6:"height";i:303;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:11:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;}}'),
(148, 33, '_vc_post_settings', 'a:2:{s:7:"vc_grid";a:0:{}s:10:"vc_grid_id";a:0:{}}'),
(149, 33, 'qode_slide-background-type', 'image'),
(150, 33, 'qode_enable_image_animation', 'no'),
(151, 33, 'qode_enable_image_animation_type', 'zoom_center'),
(152, 33, 'qode_slide-header-style', 'light'),
(153, 33, 'qode_slide-navigation-color', '#ffffff'),
(154, 33, 'qode_slide-thumbnail-animation', 'flip'),
(155, 33, 'qode_slide-content-animation', 'all_at_once'),
(156, 33, 'qode_slide-title-font-family', '-1'),
(157, 33, 'qode_slide-separator-after-title', 'no'),
(158, 33, 'qode_slide-border-around-title', 'no'),
(159, 33, 'qode_slide-subtitle-position', 'above_title'),
(160, 33, 'qode_slide-subtitle-font-family', '-1'),
(161, 33, 'qode_slide-text-font-family', '-1'),
(162, 33, 'qode_slide-thumbnail', 'http://localhost/rocketlaunch/wp-content/uploads/2015/09/Contact_BG.jpg'),
(163, 33, 'qode_slide_svg_drawing', 'no'),
(164, 33, 'qode_slide-separate-text-graphic', 'no'),
(165, 33, 'qode_slide_general_animation', 'yes'),
(166, 33, 'qode_slide_title_animation_scroll', 'no'),
(167, 33, 'qode_slide_subtitle_animation_scroll', 'no'),
(168, 33, 'qode_slide_graphic_animation_scroll', 'no'),
(169, 33, 'qode_slide_text_animation_scroll', 'no'),
(170, 33, 'qode_slide_button1_animation_scroll', 'no'),
(171, 33, 'qode_slide_button2_animation_scroll', 'no'),
(172, 33, 'qode_slide_separator_bottom_animation_scroll', 'no'),
(173, 33, 'qode_slide_svg_animation_scroll', 'no'),
(174, 36, '_form', '<p> [text* full-name watermark "Full Name*"] </p>\n\n<p>[email* email watermark "Email*"] </p>\n\n<p>[textarea message watermark "Message*"] </p>\n\n<p style="text-align:right">[submit "Submit"]</p>'),
(175, 36, '_mail', 'a:8:{s:7:"subject";s:14:"[your-subject]";s:6:"sender";s:36:"[your-name] <[email protected]>";s:4:"body";s:167:"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on (http://localhost/rocketlaunch)";s:9:"recipient";s:22:"[email protected]";s:18:"additional_headers";s:22:"Reply-To: [your-email]";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}'),
(176, 36, '_mail_2', 'a:9:{s:6:"active";b:0;s:7:"subject";s:14:"[your-subject]";s:6:"sender";s:24:"<[email protected]>";s:4:"body";s:109:"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on (http://localhost/rocketlaunch)";s:9:"recipient";s:12:"[your-email]";s:18:"additional_headers";s:32:"Reply-To: [email protected]";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}'),
(177, 36, '_messages', 'a:23:{s:12:"mail_sent_ok";s:43:"Your message was sent successfully. Thanks.";s:12:"mail_sent_ng";s:93:"Failed to send your message. Please try later or contact the administrator by another method.";s:16:"validation_error";s:74:"Validation errors occurred. Please confirm the fields and submit it again.";s:4:"spam";s:93:"Failed to send your message. Please try later or contact the administrator by another method.";s:12:"accept_terms";s:35:"Please accept the terms to proceed.";s:16:"invalid_required";s:34:"Please fill in the required field.";s:16:"invalid_too_long";s:23:"This input is too long.";s:17:"invalid_too_short";s:24:"This input is too short.";s:17:"captcha_not_match";s:31:"Your entered code is incorrect.";s:14:"invalid_number";s:28:"Number format seems invalid.";s:16:"number_too_small";s:25:"This number is too small.";s:16:"number_too_large";s:25:"This number is too large.";s:13:"invalid_email";s:28:"Email address seems invalid.";s:11:"invalid_url";s:18:"URL seems invalid.";s:11:"invalid_tel";s:31:"Telephone number seems invalid.";s:23:"quiz_answer_not_correct";s:27:"Your answer is not correct.";s:12:"invalid_date";s:26:"Date format seems invalid.";s:14:"date_too_early";s:23:"This date is too early.";s:13:"date_too_late";s:22:"This date is too late.";s:13:"upload_failed";s:22:"Failed to upload file.";s:24:"upload_file_type_invalid";s:30:"This file type is not allowed.";s:21:"upload_file_too_large";s:23:"This file is too large.";s:23:"upload_failed_php_error";s:38:"Failed to upload file. Error occurred.";}'),
(178, 36, '_additional_settings', ''),
(179, 36, '_locale', 'en_US'),
(180, 36, '_vc_post_settings', 'a:2:{s:7:"vc_grid";a:0:{}s:10:"vc_grid_id";a:0:{}}'),
(181, 14, 'qode_page_background_color', '#f6f6f7'),
(182, 14, '_wpb_post_custom_css', '::-webkit-input-placeholder {\r\n color: #0080C5;\r\n}\r\n\r\n:-moz-placeholder { /* Firefox 18- */\r\n color: #0080C5; \r\n}\r\n\r\n::-moz-placeholder { /* Firefox 19+ */\r\n color: #0080C5; \r\n}\r\n\r\n:-ms-input-placeholder { \r\n color: #0080C5; \r\n}\r\n\r\n\r\n\r\n.wpcf7-form-control.wpcf7-submit{\r\n border-color: #0080C5 !important;\r\n color: #0080C5 !important;\r\n}\r\n.wpcf7-form-control.wpcf7-submit:hover{\r\n background-color: #0080C5 !important;\r\n border-color: #0080C5 !important;\r\n color: #FFFFFF !important;\r\n}'),
(183, 38, '_edit_last', '1'),
(184, 38, '_vc_post_settings', 'a:2:{s:7:"vc_grid";a:0:{}s:10:"vc_grid_id";a:0:{}}'),
(185, 38, 'qode_slide-background-type', 'image'),
(186, 38, 'qode_slide-image', 'http://localhost/rocketlaunch/wp-content/uploads/2015/09/Contact_BG.jpg'),
(187, 38, 'qode_enable_image_animation', 'no'),
(188, 38, 'qode_enable_image_animation_type', 'zoom_center'),
(189, 38, 'qode_slide-thumbnail-animation', 'flip'),
(190, 38, 'qode_slide-content-animation', 'all_at_once'),
(191, 38, 'qode_slide-title-font-family', '-1'),
(192, 38, 'qode_slide-separator-after-title', 'no'),
(193, 38, 'qode_slide-border-around-title', 'no'),
(194, 38, 'qode_slide-subtitle-position', 'above_title'),
(195, 38, 'qode_slide-subtitle-font-family', '-1'),
(196, 38, 'qode_slide-text-font-family', '-1'),
(197, 38, 'qode_slide_svg_drawing', 'no'),
(198, 38, 'qode_slide-separate-text-graphic', 'no'),
(199, 38, 'qode_slide_general_animation', 'yes'),
(200, 38, 'qode_slide_title_animation_scroll', 'no'),
(201, 38, 'qode_slide_subtitle_animation_scroll', 'no'),
(202, 38, 'qode_slide_graphic_animation_scroll', 'no'),
(203, 38, 'qode_slide_text_animation_scroll', 'no'),
(204, 38, 'qode_slide_button1_animation_scroll', 'no'),
(205, 38, 'qode_slide_button2_animation_scroll', 'no'),
(206, 38, 'qode_slide_separator_bottom_animation_scroll', 'no'),
(207, 38, 'qode_slide_svg_animation_scroll', 'no'),
(208, 38, '_edit_lock', '1441530515:1'),
(210, 2, '_thumbnail_id', '17'),
(211, 56, '_menu_item_type', 'post_type'),
(212, 56, '_menu_item_menu_item_parent', '0'),
(213, 56, '_menu_item_object_id', '2'),
(214, 56, '_menu_item_object', 'page'),
(215, 56, '_menu_item_target', ''),
(216, 56, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(217, 56, '_menu_item_xfn', ''),
(218, 56, '_menu_item_url', ''),
(219, 56, '_menu_item_orphaned', '1441630080'),
(220, 58, '_wp_attached_file', '2015/09/Img_Global_Logo.svg'),
(221, 62, '_menu_item_type', 'post_type'),
(222, 62, '_menu_item_menu_item_parent', '0'),
(223, 62, '_menu_item_object_id', '2'),
(224, 62, '_menu_item_object', 'page'),
(225, 62, '_menu_item_target', ''),
(226, 62, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(227, 62, '_menu_item_xfn', ''),
(228, 62, '_menu_item_url', ''),
(229, 62, '_menu_item_orphaned', '1441695832'),
(230, 63, '_menu_item_type', 'post_type'),
(231, 63, '_menu_item_menu_item_parent', '0'),
(232, 63, '_menu_item_object_id', '2'),
(233, 63, '_menu_item_object', 'page'),
(234, 63, '_menu_item_target', ''),
(235, 63, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(236, 63, '_menu_item_xfn', ''),
(237, 63, '_menu_item_url', ''),
(239, 63, '_vc_post_settings', 'a:2:{s:7:"vc_grid";a:0:{}s:10:"vc_grid_id";a:0:{}}'),
(243, 14, 'qode_show-page-title', 'yes'),
(244, 14, 'qode_show-page-title-text', 'yes'),
(246, 14, 'qode_responsive-title-image', 'yes'),
(247, 14, 'qode_separator_bellow_title', 'no'),
(248, 14, 'qode_margin_after_title', '0'),
(249, 14, 'qode_page_title_position', 'center'),
(250, 14, 'qode_page-title-color', '#ffffff'),
(251, 14, 'qode_page_title_font_size', 'medium'),
(252, 14, 'qode_title_text_shadow', 'no'),
(253, 2, 'qode_show-page-title', 'yes'),
(254, 2, 'qode_header-style', 'light'),
(255, 12, '_wpb_vc_js_status', 'false'),
(256, 12, '_vc_post_settings', 'a:2:{s:7:"vc_grid";a:0:{}s:10:"vc_grid_id";a:0:{}}'),
(257, 12, 'qode_enable_breadcrumbs', 'no'),
(260, 10, '_wpb_vc_js_status', 'false'),
(261, 10, '_vc_post_settings', 'a:2:{s:7:"vc_grid";a:0:{}s:10:"vc_grid_id";a:0:{}}'),
(264, 10, 'feat_slider', '1'),
(267, 38, '_wp_trash_meta_status', 'publish'),
(268, 38, '_wp_trash_meta_time', '1441879008'),
(269, 33, '_wp_trash_meta_status', 'publish'),
(270, 33, '_wp_trash_meta_time', '1441879009'),
(271, 99, '_edit_last', '1'),
(272, 99, '_edit_lock', '1441885294:1'),
(273, 99, '_vc_post_settings', 'a:2:{s:7:"vc_grid";a:0:{}s:10:"vc_grid_id";a:0:{}}'),
(274, 99, 'qode_slide-background-type', 'image'),
(275, 99, 'qode_slide-image', 'http://localhost/rocketlaunch/wp-content/uploads/2015/09/Banner.png'),
(276, 99, 'qode_enable_image_animation', 'no'),
(277, 99, 'qode_enable_image_animation_type', 'zoom_center'),
(278, 99, 'qode_slide-header-style', 'dark'),
(279, 99, 'qode_slide-hide-title', 'yes'),
(280, 99, 'qode_slide-thumbnail-animation', 'flip'),
(281, 99, 'qode_slide-content-animation', 'all_at_once'),
(282, 99, 'qode_slide-title-font-family', '-1'),
(283, 99, 'qode_slide-separator-after-title', 'no'),
(284, 99, 'qode_slide-border-around-title', 'no'),
(285, 99, 'qode_slide-subtitle', 'WE BUILD PRODUCTS'),
(286, 99, 'qode_slide-subtitle-position', 'above_title'),
(287, 99, 'qode_slide-subtitle-color', '#ffffff'),
(288, 99, 'qode_slide-subtitle-font-size', '60px'),
(289, 99, 'qode_slide-subtitle-font-family', '-1'),
(290, 99, 'qode_slide-text', 'We partner with companies to develop a comprehensive growth strategy that integrates sales, marketing, and product.'),
(291, 99, 'qode_slide-text-font-family', '-1'),
(292, 99, 'qode_slide_svg_drawing', 'no'),
(293, 99, 'qode_slide-content-alignment', 'center'),
(294, 99, 'qode_slide-separate-text-graphic', 'no'),
(295, 99, 'qode_slide_general_animation', 'yes'),
(296, 99, 'qode_slide_title_animation_scroll', 'no'),
(297, 99, 'qode_slide_subtitle_animation_scroll', 'no'),
(298, 99, 'qode_slide_graphic_animation_scroll', 'no'),
(299, 99, 'qode_slide_text_animation_scroll', 'no'),
(300, 99, 'qode_slide_button1_animation_scroll', 'no'),
(301, 99, 'qode_slide_button2_animation_scroll', 'no'),
(302, 99, 'qode_slide_separator_bottom_animation_scroll', 'no'),
(303, 99, 'qode_slide_svg_animation_scroll', 'no'),
(304, 16, 'qode_slide-content-alignment', 'center'),
(305, 99, 'qode_slide-text-font-size', '21px'),
(306, 99, 'qode_slide-text-color', '#ffffff'),
(307, 99, 'qode_slide-button-label', 'See Our Work'),
(308, 99, 'qode_slide-button-link', '#');
-- --------------------------------------------------------
--
-- Table structure for table `wp_posts`
--
CREATE TABLE IF NOT EXISTS `wp_posts` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_author` bigint(20) unsigned NOT NULL DEFAULT '0',
`post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`post_title` text COLLATE utf8mb4_unicode_ci NOT NULL,
`post_excerpt` text COLLATE utf8mb4_unicode_ci NOT NULL,
`post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
`ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
`post_password` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`to_ping` text COLLATE utf8mb4_unicode_ci NOT NULL,
`pinged` text COLLATE utf8mb4_unicode_ci NOT NULL,
`post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`menu_order` int(11) NOT NULL DEFAULT '0',
`post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_count` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`),
KEY `post_name` (`post_name`(191)),
KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
KEY `post_parent` (`post_parent`),
KEY `post_author` (`post_author`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=100 ;
--
-- Dumping data for table `wp_posts`
--
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1, 1, '2015-09-03 05:25:52', '2015-09-03 05:25:52', 'Welcome to WordPress. This is your first post. Edit or delete it, then start writing!', 'Hello world!', '', 'trash', 'open', 'open', '', 'hello-world', '', '', '2015-09-04 10:30:46', '2015-09-04 10:30:46', '', 0, 'http://localhost/wordpress/?p=1', 0, 'post', '', 1),
(2, 1, '2015-09-03 05:25:52', '2015-09-03 05:25:52', '<body>\r\n<div class="home-br">\r\n <h1 class="heading-tittle">WE BUILD <span>MARKETING</span> ENGINES</h1>\r\n <div class="text-box">\r\n <div class="grid-1">\r\n <div class="box">\r\n <p>We partner with companies to execute a comprehensive growth strategy that integrates sales, marketing, and product.</p>\r\n <a href="#" class="link-see">SEE OUR WORK</a>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n</body>\r\n', 'Home', '', 'publish', 'open', 'open', '', 'sample-page', '', '', '2015-09-09 12:39:23', '2015-09-09 12:39:23', '', 0, 'http://localhost/wordpress/?page_id=2', 0, 'page', '', 0),
(5, 1, '2015-09-03 12:25:55', '2015-09-03 12:25:55', '', 'array img', '', 'inherit', 'open', 'closed', '', 'array-img', '', '', '2015-09-03 12:25:55', '2015-09-03 12:25:55', '', 0, 'http://localhost/rocketlaunch/wp-content/uploads/2015/09/array-img.png', 0, 'attachment', 'image/png', 0),
(6, 1, '2015-09-04 06:06:04', '2015-09-04 06:06:04', '', 'SERVICES', '', 'publish', 'closed', 'closed', '', 'services', '', '', '2015-09-04 06:06:04', '2015-09-04 06:06:04', '', 0, 'http://localhost/rocketlaunch/?page_id=6', 0, 'page', '', 0),
(7, 1, '2015-09-04 06:06:04', '2015-09-04 06:06:04', '', 'SERVICES', '', 'inherit', 'closed', 'closed', '', '6-revision-v1', '', '', '2015-09-04 06:06:04', '2015-09-04 06:06:04', '', 6, 'http://localhost/rocketlaunch/2015/09/04/6-revision-v1/', 0, 'revision', '', 0),
(8, 1, '2015-09-04 06:06:37', '2015-09-04 06:06:37', '', 'PROJECTS', '', 'publish', 'closed', 'closed', '', 'projects', '', '', '2015-09-04 06:06:37', '2015-09-04 06:06:37', '', 0, 'http://localhost/rocketlaunch/?page_id=8', 0, 'page', '', 0),
(9, 1, '2015-09-04 06:06:37', '2015-09-04 06:06:37', '', 'PROJECTS', '', 'inherit', 'closed', 'closed', '', '8-revision-v1', '', '', '2015-09-04 06:06:37', '2015-09-04 06:06:37', '', 8, 'http://localhost/rocketlaunch/2015/09/04/8-revision-v1/', 0, 'revision', '', 0),
(10, 1, '2015-09-04 06:07:04', '2015-09-04 06:07:04', '[qode_slider slider=''myslider'' auto_start=''true'' animation_type=''slide'' slide_animation=''6000'' height='''' responsive_height=''yes'' anchor='''' show_navigation_arrows=''yes'']', 'ABOUT', '', 'publish', 'closed', 'closed', '', 'about', '', '', '2015-09-10 11:46:09', '2015-09-10 11:46:09', '', 0, 'http://localhost/rocketlaunch/?page_id=10', 0, 'page', '', 0),
(11, 1, '2015-09-04 06:07:04', '2015-09-04 06:07:04', '', 'ABOUT', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2015-09-04 06:07:04', '2015-09-04 06:07:04', '', 10, 'http://localhost/rocketlaunch/2015/09/04/10-revision-v1/', 0, 'revision', '', 0),
(12, 1, '2015-09-04 06:07:53', '2015-09-04 06:07:53', '', 'BLOG', '', 'publish', 'closed', 'closed', '', 'blog', '', '', '2015-09-08 11:01:47', '2015-09-08 11:01:47', '', 0, 'http://localhost/rocketlaunch/?page_id=12', 0, 'page', '', 0),
(13, 1, '2015-09-04 06:07:53', '2015-09-04 06:07:53', '', 'BLOG', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2015-09-04 06:07:53', '2015-09-04 06:07:53', '', 12, 'http://localhost/rocketlaunch/2015/09/04/12-revision-v1/', 0, 'revision', '', 0),
(14, 1, '2015-09-04 06:08:13', '2015-09-04 06:08:13', '<div class="contact-br"><h1 class="heading-tittle">LET''S KEEP <span>IN TOUCH</span></h1></div>\r\n<div style="display: block;width: 70%; margin: 40px auto auto auto">\r\n[contact-form-7 id="36" title="Contact form 1"]\r\n</div>', 'CONTACT', '', 'publish', 'closed', 'closed', '', 'contact', '', '', '2015-09-08 11:16:19', '2015-09-08 11:16:19', '', 0, 'http://localhost/rocketlaunch/?page_id=14', 0, 'page', '', 0),
(15, 1, '2015-09-04 06:08:13', '2015-09-04 06:08:13', '', 'CONTACT', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2015-09-04 06:08:13', '2015-09-04 06:08:13', '', 14, 'http://localhost/rocketlaunch/2015/09/04/14-revision-v1/', 0, 'revision', '', 0),
(16, 1, '2015-09-04 06:30:59', '2015-09-04 06:30:59', '', 'WE BUILD MARKETING SYSTEM', '', 'publish', 'closed', 'closed', '', '16', '', '', '2015-09-10 11:02:11', '2015-09-10 11:02:11', '', 0, 'http://localhost/rocketlaunch/?post_type=slides&p=16', 0, 'slides', '', 0),
(17, 1, '2015-09-04 06:25:49', '2015-09-04 06:25:49', '', 'Banner', 'We Build Products', 'inherit', 'open', 'closed', '', 'banner', '', '', '2015-09-07 07:10:58', '2015-09-07 07:10:58', '', 2, 'http://localhost/rocketlaunch/wp-content/uploads/2015/09/Banner.png', 0, 'attachment', 'image/png', 0),
(18, 1, '2015-09-04 06:38:29', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'closed', '', '', '', '', '2015-09-04 06:38:29', '0000-00-00 00:00:00', '', 0, 'http://localhost/rocketlaunch/?post_type=slides&p=18', 0, 'slides', '', 0),
(19, 1, '2015-09-04 07:01:47', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'closed', '', '', '', '', '2015-09-04 07:01:47', '0000-00-00 00:00:00', '', 0, 'http://localhost/rocketlaunch/?post_type=carousels&p=19', 0, 'carousels', '', 0),
(20, 1, '2015-09-04 07:31:17', '2015-09-04 07:31:17', 'This is an example page. It''s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\r\n<blockquote>Hi there! I''m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin'' caught in the rain.)</blockquote>\r\n...or something like this:\r\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</blockquote>\r\nAs a new WordPress user, you should go to <a href="http://localhost/wordpress/wp-admin/">your dashboard</a> to delete this page and create new pages for your content. Have fun!', 'Sample Page', '', 'inherit', 'closed', 'closed', '', '2-revision-v1', '', '', '2015-09-04 07:31:17', '2015-09-04 07:31:17', '', 2, 'http://localhost/rocketlaunch/2015/09/04/2-revision-v1/', 0, 'revision', '', 0),
(21, 1, '2015-09-04 07:38:43', '2015-09-04 07:38:43', 'This is an example page. It''s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\r\n<blockquote>Hi there! I''m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin'' caught in the rain.)</blockquote>\r\n...or something like this:\r\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</blockquote>\r\nAs a new WordPress user, you should go to <a href="http://localhost/wordpress/wp-admin/">your dashboard</a> to delete this page and create new pages for your content. Have fun!', '', '', 'inherit', 'closed', 'closed', '', '2-revision-v1', '', '', '2015-09-04 07:38:43', '2015-09-04 07:38:43', '', 2, 'http://localhost/rocketlaunch/2015/09/04/2-revision-v1/', 0, 'revision', '', 0),
(23, 1, '2015-09-04 07:52:46', '2015-09-04 07:52:46', ' ', '', '', 'publish', 'closed', 'closed', '', '23', '', '', '2015-09-08 07:06:05', '2015-09-08 07:06:05', '', 0, 'http://localhost/rocketlaunch/?p=23', 6, 'nav_menu_item', '', 0),
(24, 1, '2015-09-04 07:52:47', '2015-09-04 07:52:47', ' ', '', '', 'publish', 'closed', 'closed', '', '24', '', '', '2015-09-08 07:06:05', '2015-09-08 07:06:05', '', 0, 'http://localhost/rocketlaunch/?p=24', 5, 'nav_menu_item', '', 0),
(25, 1, '2015-09-04 07:52:47', '2015-09-04 07:52:47', ' ', '', '', 'publish', 'closed', 'closed', '', '25', '', '', '2015-09-08 07:06:05', '2015-09-08 07:06:05', '', 0, 'http://localhost/rocketlaunch/?p=25', 4, 'nav_menu_item', '', 0),
(26, 1, '2015-09-04 07:52:48', '2015-09-04 07:52:48', ' ', '', '', 'publish', 'closed', 'closed', '', '26', '', '', '2015-09-08 07:06:04', '2015-09-08 07:06:04', '', 0, 'http://localhost/rocketlaunch/?p=26', 3, 'nav_menu_item', '', 0),
(27, 1, '2015-09-04 07:52:48', '2015-09-04 07:52:48', ' ', '', '', 'publish', 'closed', 'closed', '', '27', '', '', '2015-09-08 07:06:04', '2015-09-08 07:06:04', '', 0, 'http://localhost/rocketlaunch/?p=27', 2, 'nav_menu_item', '', 0),
(28, 1, '2015-09-04 07:55:36', '2015-09-04 07:55:36', '', '', '', 'inherit', 'closed', 'closed', '', '2-revision-v1', '', '', '2015-09-04 07:55:36', '2015-09-04 07:55:36', '', 2, 'http://localhost/rocketlaunch/2015/09/04/2-revision-v1/', 0, 'revision', '', 0),
(30, 1, '2015-09-04 10:30:46', '2015-09-04 10:30:46', 'Welcome to WordPress. This is your first post. Edit or delete it, then start writing!', 'Hello world!', '', 'inherit', 'closed', 'closed', '', '1-revision-v1', '', '', '2015-09-04 10:30:46', '2015-09-04 10:30:46', '', 1, 'http://localhost/rocketlaunch/2015/09/04/1-revision-v1/', 0, 'revision', '', 0),
(31, 1, '2015-09-04 10:34:34', '2015-09-04 10:34:34', '', 'Home', '', 'inherit', 'closed', 'closed', '', '2-revision-v1', '', '', '2015-09-04 10:34:34', '2015-09-04 10:34:34', '', 2, 'http://localhost/rocketlaunch/2015/09/04/2-revision-v1/', 0, 'revision', '', 0),
(32, 1, '2015-09-04 16:25:25', '2015-09-04 16:25:25', '', 'WE BUILD MARKETING SYSTEM', '', 'inherit', 'closed', 'closed', '', '16-autosave-v1', '', '', '2015-09-04 16:25:25', '2015-09-04 16:25:25', '', 16, 'http://localhost/rocketlaunch/2015/09/04/16-autosave-v1/', 0, 'revision', '', 0),
(33, 1, '2015-09-05 15:03:06', '2015-09-05 15:03:06', '', 'LET''S KEEP IN TOUCH', '', 'trash', 'closed', 'closed', '', 'lets-keep-in-touch', '', '', '2015-09-10 09:56:49', '2015-09-10 09:56:49', '', 0, 'http://localhost/rocketlaunch/?post_type=slides&p=33', 0, 'slides', '', 0),
(34, 1, '2015-09-05 15:02:42', '2015-09-05 15:02:42', '', 'Contact_BG', '', 'inherit', 'open', 'closed', '', 'contact_bg', '', '', '2015-09-05 15:02:42', '2015-09-05 15:02:42', '', 0, 'http://localhost/rocketlaunch/wp-content/uploads/2015/09/Contact_BG.jpg', 0, 'attachment', 'image/jpeg', 0),
(36, 1, '2015-09-05 19:19:26', '2015-09-05 19:19:26', '<p> [text* full-name watermark "Full Name*"] </p>\r\n\r\n<p>[email* email watermark "Email*"] </p>\r\n\r\n<p>[textarea message watermark "Message*"] </p>\r\n\r\n<p style="text-align:right">[submit "Submit"]</p>\n[your-subject]\n[your-name] <[email protected]>\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on (http://localhost/rocketlaunch)\[email protected]\nReply-To: [your-email]\n\n\n\n\n[your-subject]\n<[email protected]>\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on (http://localhost/rocketlaunch)\n[your-email]\nReply-To: [email protected]\n\n\n\nYour message was sent successfully. Thanks.\nFailed to send your message. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm the fields and submit it again.\nFailed to send your message. Please try later or contact the administrator by another method.\nPlease accept the terms to proceed.\nPlease fill in the required field.\nThis input is too long.\nThis input is too short.\nYour entered code is incorrect.\nNumber format seems invalid.\nThis number is too small.\nThis number is too large.\nEmail address seems invalid.\nURL seems invalid.\nTelephone number seems invalid.\nYour answer is not correct.\nDate format seems invalid.\nThis date is too early.\nThis date is too late.\nFailed to upload file.\nThis file type is not allowed.\nThis file is too large.\nFailed to upload file. Error occurred.', 'Contact form 1', '', 'publish', 'closed', 'closed', '', 'contact-form-1', '', '', '2015-09-06 06:52:48', '2015-09-06 06:52:48', '', 0, 'http://localhost/rocketlaunch/?post_type=wpcf7_contact_form&p=36', 0, 'wpcf7_contact_form', '', 0),
(37, 1, '2015-09-05 19:25:17', '2015-09-05 19:25:17', '[contact-form-7 id="36" title="Contact form 1"]', 'CONTACT', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2015-09-05 19:25:17', '2015-09-05 19:25:17', '', 14, 'http://localhost/rocketlaunch/2015/09/05/14-revision-v1/', 0, 'revision', '', 0),
(38, 1, '2015-09-06 09:10:44', '2015-09-06 09:10:44', '', '', '', 'trash', 'closed', 'closed', '', '38', '', '', '2015-09-10 09:56:49', '2015-09-10 09:56:49', '', 0, 'http://localhost/rocketlaunch/?post_type=slides&p=38', 0, 'slides', '', 0),
(39, 1, '2015-09-08 11:11:56', '2015-09-08 11:11:56', '<div class="contact-br"><h1 class="heading-tittle">LET''S KEEP <span>IN TOUCH</span></h1></div>\n<div style="display: block;width: inherit; margin: 40px auto auto auto">\n[contact-form-7 id="36" title="Contact form 1"]\n</div>', 'CONTACT', '', 'inherit', 'closed', 'closed', '', '14-autosave-v1', '', '', '2015-09-08 11:11:56', '2015-09-08 11:11:56', '', 14, 'http://localhost/rocketlaunch/2015/09/06/14-autosave-v1/', 0, 'revision', '', 0),
(40, 1, '2015-09-06 09:16:04', '2015-09-06 09:16:04', '[vc_row row_type="row" use_row_as_full_screen_section="no" type="full_width" header_style="" parallax_content_width="in_grid" anchor="" in_content_menu="" content_menu_title="" content_menu_icon="" angled_section="no" angled_section_position="both" angled_section_direction="from_left_to_right" text_align="left" video="" video_overlay="" video_overlay_image="" video_webm="" video_mp4="" video_ogv="" video_image="" background_image="" background_image_as_pattern="without_pattern" section_height="" parallax_speed="" background_color="" border_color="" row_negative_margin="" side_padding="" parallax_side_padding="" padding_top="" padding_bottom="" color="" hover_color="" more_button_label="" less_button_label="" button_position="" css_animation="" transition_delay=""][vc_column width="1/1"][image_slider_no_space height="126" navigation_style="light" highlight_active_image="no" images="34"][/vc_column][/vc_row]\r\n\r\n[contact-form-7 id="36" title="Contact form 1"]', 'CONTACT', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2015-09-06 09:16:04', '2015-09-06 09:16:04', '', 14, 'http://localhost/rocketlaunch/2015/09/06/14-revision-v1/', 0, 'revision', '', 0),
(41, 1, '2015-09-06 09:20:53', '2015-09-06 09:20:53', '[contact-form-7 id="36" title="Contact form 1"][vc_row row_type="row" use_row_as_full_screen_section="no" type="full_width" header_style="" parallax_content_width="in_grid" anchor="" in_content_menu="" content_menu_title="" content_menu_icon="" angled_section="no" angled_section_position="both" angled_section_direction="from_left_to_right" text_align="left" video="" video_overlay="" video_overlay_image="" video_webm="" video_mp4="" video_ogv="" video_image="" background_image="" background_image_as_pattern="without_pattern" section_height="" parallax_speed="" background_color="" border_color="" row_negative_margin="" side_padding="" parallax_side_padding="" padding_top="" padding_bottom="" color="" hover_color="" more_button_label="" less_button_label="" button_position="" css_animation="" transition_delay=""][vc_column width="1/1"][vc_column_text css=".vc_custom_1441531165455{background-image: url(http://localhost/rocketlaunch/wp-content/uploads/2015/09/Contact_BG.jpg?id=34) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}"]\r\n\r\nI am text block.\r\n\r\n[/vc_column_text][/vc_column][/vc_row]', 'CONTACT', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2015-09-06 09:20:53', '2015-09-06 09:20:53', '', 14, 'http://localhost/rocketlaunch/2015/09/06/14-revision-v1/', 0, 'revision', '', 0),
(42, 1, '2015-09-06 09:22:24', '2015-09-06 09:22:24', '[vc_row row_type="row" use_row_as_full_screen_section="no" type="full_width" header_style="" parallax_content_width="in_grid" anchor="" in_content_menu="" content_menu_title="" content_menu_icon="" angled_section="no" angled_section_position="both" angled_section_direction="from_left_to_right" text_align="left" video="" video_overlay="" video_overlay_image="" video_webm="" video_mp4="" video_ogv="" video_image="" background_image="" background_image_as_pattern="without_pattern" section_height="" parallax_speed="" background_color="" border_color="" row_negative_margin="" side_padding="" parallax_side_padding="" padding_top="" padding_bottom="" color="" hover_color="" more_button_label="" less_button_label="" button_position="" css_animation="" transition_delay=""][vc_column width="1/1"][vc_column_text css=".vc_custom_1441531165455{background-image: url(http://localhost/rocketlaunch/wp-content/uploads/2015/09/Contact_BG.jpg?id=34) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}"]\r\n\r\nI am text block.\r\n\r\n[/vc_column_text][/vc_column][/vc_row]\r\n\r\n \r\n\r\n[contact-form-7 id="36" title="Contact form 1"]', 'CONTACT', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2015-09-06 09:22:24', '2015-09-06 09:22:24', '', 14, 'http://localhost/rocketlaunch/2015/09/06/14-revision-v1/', 0, 'revision', '', 0),
(43, 1, '2015-09-06 17:01:39', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'closed', '', '', '', '', '2015-09-06 17:01:39', '0000-00-00 00:00:00', '', 0, 'http://localhost/rocketlaunch/?post_type=masonry_gallery&p=43', 0, 'masonry_gallery', '', 0),
(44, 1, '2015-09-07 07:08:39', '2015-09-07 07:08:39', ' <div>\r\n <img src="../wp-content/themes/bridge/img/home_bg.png" style="height: 500px" align="center">\r\n </div>', 'Home', '', 'inherit', 'closed', 'closed', '', '2-revision-v1', '', '', '2015-09-07 07:08:39', '2015-09-07 07:08:39', '', 2, 'http://localhost/rocketlaunch/2015/09/07/2-revision-v1/', 0, 'revision', '', 0),
(45, 1, '2015-09-07 07:11:21', '2015-09-07 07:11:21', '<a href="http://localhost/rocketlaunch/wp-content/uploads/2015/09/Banner.png"><img class="size-medium wp-image-17" src="http://localhost/rocketlaunch/wp-content/uploads/2015/09/Banner-300x225.png" alt="We Build Products" width="300" height="225" /></a>', 'Home', '', 'inherit', 'closed', 'closed', '', '2-revision-v1', '', '', '2015-09-07 07:11:21', '2015-09-07 07:11:21', '', 2, 'http://localhost/rocketlaunch/2015/09/07/2-revision-v1/', 0, 'revision', '', 0),
(46, 1, '2015-09-07 07:12:12', '2015-09-07 07:12:12', '<a href="http://localhost/rocketlaunch/wp-content/uploads/2015/09/Banner.png"><img class="size-medium wp-image-17" src="http://localhost/rocketlaunch/wp-content/uploads/2015/09/Banner-300x225.png" alt="We Build Products" width="1500" height="500" /></a>', 'Home', '', 'inherit', 'closed', 'closed', '', '2-revision-v1', '', '', '2015-09-07 07:12:12', '2015-09-07 07:12:12', '', 2, 'http://localhost/rocketlaunch/2015/09/07/2-revision-v1/', 0, 'revision', '', 0),
(47, 1, '2015-09-07 07:13:20', '2015-09-07 07:13:20', '<a href="http://localhost/rocketlaunch/wp-content/uploads/2015/09/Banner.png"><img class="size-medium wp-image-17" src="http://localhost/rocketlaunch/wp-content/uploads/2015/09/Banner-300x225.png" alt="We Build Products" width="2000" height="700" /></a>', 'Home', '', 'inherit', 'closed', 'closed', '', '2-revision-v1', '', '', '2015-09-07 07:13:20', '2015-09-07 07:13:20', '', 2, 'http://localhost/rocketlaunch/2015/09/07/2-revision-v1/', 0, 'revision', '', 0),
(48, 1, '2015-09-09 10:16:36', '2015-09-09 10:16:36', '\n\n\n<body>\n<div class="home-br">\n\n <h1 class="heading-tittle">WE BUILD <span>MARKETING</span> ENGINES</h1>\n <div class="text-box">\n <div class="grid-1">\n <div class="box">\n <p>We partner with companies to execute a comprehensive growth strategy that integrates sales, marketing, and product.</p>\n <a href="#" class="link-see">SEE OUR WORK</a>\n </div>\n </div>\n </div>\n</div>\n</body>', 'Home', '', 'inherit', 'closed', 'closed', '', '2-autosave-v1', '', '', '2015-09-09 10:16:36', '2015-09-09 10:16:36', '', 2, 'http://localhost/rocketlaunch/2015/09/07/2-autosave-v1/', 0, 'revision', '', 0),
(49, 1, '2015-09-07 07:19:59', '2015-09-07 07:19:59', ' <div>\r\n <img src="../wp-content/themes/bridge/img/home_bg.png" style="height: 500px" align="center">\r\n </div>', 'Home', '', 'inherit', 'closed', 'closed', '', '2-revision-v1', '', '', '2015-09-07 07:19:59', '2015-09-07 07:19:59', '', 2, 'http://localhost/rocketlaunch/2015/09/07/2-revision-v1/', 0, 'revision', '', 0),
(50, 1, '2015-09-07 07:20:27', '2015-09-07 07:20:27', '<div>\r\n<img src="../wp-content/themes/bridge/img/home_bg.png" style="height: 500px" align="center">\r\n</div>', 'Home', '', 'inherit', 'closed', 'closed', '', '2-revision-v1', '', '', '2015-09-07 07:20:27', '2015-09-07 07:20:27', '', 2, 'http://localhost/rocketlaunch/2015/09/07/2-revision-v1/', 0, 'revision', '', 0),
(51, 1, '2015-09-07 07:23:24', '2015-09-07 07:23:24', '\r\n<img src="../wp-content/themes/bridge/img/Img_home_bg.png" style="height: 500px" align="center">', 'Home', '', 'inherit', 'closed', 'closed', '', '2-revision-v1', '', '', '2015-09-07 07:23:24', '2015-09-07 07:23:24', '', 2, 'http://localhost/rocketlaunch/2015/09/07/2-revision-v1/', 0, 'revision', '', 0),
(52, 1, '2015-09-07 07:23:50', '2015-09-07 07:23:50', '<img src="../wp-content/themes/bridge/img/Img_home_bg.png" style="height: 500px; width:1000px" align="center">', 'Home', '', 'inherit', 'closed', 'closed', '', '2-revision-v1', '', '', '2015-09-07 07:23:50', '2015-09-07 07:23:50', '', 2, 'http://localhost/rocketlaunch/2015/09/07/2-revision-v1/', 0, 'revision', '', 0),
(53, 1, '2015-09-07 07:34:40', '2015-09-07 07:34:40', '<a href="#" class="home-background">We Build Marketing Engines</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '2-revision-v1', '', '', '2015-09-07 07:34:40', '2015-09-07 07:34:40', '', 2, 'http://localhost/rocketlaunch/2015/09/07/2-revision-v1/', 0, 'revision', '', 0),
(54, 1, '2015-09-07 12:21:08', '2015-09-07 12:21:08', '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\r\n<html xmlns="http://www.w3.org/1999/xhtml">\r\n<head>\r\n<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />\r\n<title>Untitled Document</title>\r\n<link href=''https://fonts.googleapis.com/css?family=Roboto:400,300,300italic,700,700italic,900,400italic'' rel=''stylesheet'' type=''text/css''>\r\n<style type="text/css">\r\n body {margin:0; padding:0;font-family: ''Roboto'', sans-serif;}\r\n.home-br {\r\n background: rgba(0, 0, 0, 0) url("home-br.jpg") no-repeat scroll 0 0 / 100% 100%;\r\n display: inline-block;\r\n min-height: 630px;\r\n width: 100%;\r\n}\r\n.home-br h1.heading-tittle {\r\n color: #fff;\r\n font-size: 60px;\r\n margin: 150px 0 0;\r\n text-align: center;\r\n}\r\n.home-br h1 span {\r\n color: #000;\r\n text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;\r\n}\r\n.text-box { margin-left:30%;}\r\n.grid-1 {\r\n background: rgba(0, 0, 0, 0) url("login-br.png") no-repeat scroll 0 0 / 19% auto;\r\n min-height: 300px;\r\n padding-left: 215px;\r\n}\r\n.box {\r\n width: 385px;\r\n}\r\n.box p {\r\n color: #fff;\r\n font-size: 21px;\r\n font-weight: normal;\r\n}\r\n.box a.link-see {\r\n border: 2px solid #0080c5;\r\n border-radius: 3px;\r\n color: #fff;\r\n display: inline-block;\r\n font-weight: 700;\r\n margin-top: 40px;\r\n padding: 10px 25px;\r\n text-decoration: none;\r\n}\r\n</style>\r\n</head>\r\n\r\n<body>\r\n<div class="home-br">\r\n <h1 class="heading-tittle">WE BUILD <span>MARKETING</span> ENGINES</h1>\r\n <div class="text-box">\r\n <div class="grid-1">\r\n <div class="box">\r\n <p>We partner with companies to execute a\r\ncomprehensive growth strategy that\r\nintegrates sales, marketing, and product.</p>\r\n <a href="#" class="link-see">SEE OUR WORK</a>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n</body>\r\n</html>\r\n', 'Home', '', 'inherit', 'closed', 'closed', '', '2-revision-v1', '', '', '2015-09-07 12:21:08', '2015-09-07 12:21:08', '', 2, 'http://localhost/rocketlaunch/2015/09/07/2-revision-v1/', 0, 'revision', '', 0),
(55, 1, '2015-09-07 12:47:10', '2015-09-07 12:47:10', '\r\n', 'Home', '', 'inherit', 'closed', 'closed', '', '2-revision-v1', '', '', '2015-09-07 12:47:10', '2015-09-07 12:47:10', '', 2, 'http://localhost/rocketlaunch/2015/09/07/2-revision-v1/', 0, 'revision', '', 0),
(56, 1, '2015-09-07 12:47:59', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'closed', 'closed', '', '', '', '', '2015-09-07 12:47:59', '0000-00-00 00:00:00', '', 0, 'http://localhost/rocketlaunch/?p=56', 1, 'nav_menu_item', '', 0),
(57, 1, '2015-09-07 16:23:57', '2015-09-07 16:23:57', '<body>\r\n<div class="home-br">\r\n <h1 class="heading-tittle">WE BUILD <span>MARKETING</span> ENGINES</h1>\r\n <div class="text-box">\r\n <div class="grid-1">\r\n <div class="box">\r\n <p>We partner with companies to execute a\r\ncomprehensive growth strategy that\r\nintegrates sales, marketing, and product.</p>\r\n <a href="#" class="link-see">SEE OUR WORK</a>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n</body>', 'Home', '', 'inherit', 'closed', 'closed', '', '2-revision-v1', '', '', '2015-09-07 16:23:57', '2015-09-07 16:23:57', '', 2, 'http://localhost/rocketlaunch/2015/09/07/2-revision-v1/', 0, 'revision', '', 0),
(58, 1, '2015-09-07 19:08:02', '2015-09-07 19:08:02', '', 'Img_Global_Logo', '', 'inherit', 'open', 'closed', '', 'img_global_logo', '', '', '2015-09-07 19:08:02', '2015-09-07 19:08:02', '', 0, 'http://localhost/rocketlaunch/wp-content/uploads/2015/09/Img_Global_Logo.svg', 0, 'attachment', 'image/svg+xml', 0),
(59, 1, '2015-09-07 19:22:19', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'closed', '', '', '', '', '2015-09-07 19:22:19', '0000-00-00 00:00:00', '', 0, 'http://localhost/rocketlaunch/?page_id=59', 0, 'page', '', 0),
(60, 1, '2015-09-07 19:50:15', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'open', 'open', '', '', '', '', '2015-09-07 19:50:15', '0000-00-00 00:00:00', '', 0, 'http://localhost/rocketlaunch/?p=60', 0, 'post', '', 0),
(61, 1, '2015-09-08 06:55:50', '2015-09-08 06:55:50', '\r\n[contact-form-7 id="36" title="Contact form 1"]', 'CONTACT', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2015-09-08 06:55:50', '2015-09-08 06:55:50', '', 14, 'http://localhost/rocketlaunch/2015/09/08/14-revision-v1/', 0, 'revision', '', 0),
(62, 1, '2015-09-08 07:03:51', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'closed', 'closed', '', '', '', '', '2015-09-08 07:03:51', '0000-00-00 00:00:00', '', 0, 'http://localhost/rocketlaunch/?p=62', 1, 'nav_menu_item', '', 0),
(63, 1, '2015-09-08 07:05:47', '2015-09-08 07:05:47', '', 'HOME', '', 'publish', 'closed', 'closed', '', 'home', '', '', '2015-09-08 07:06:04', '2015-09-08 07:06:04', '', 0, 'http://localhost/rocketlaunch/?p=63', 1, 'nav_menu_item', '', 0),
(64, 1, '2015-09-08 09:33:43', '2015-09-08 09:33:43', '\r\n<div class="home-br">\r\n <h1 class="heading-tittle">WE BUILD <span>MARKETING</span> ENGINES</h1>\r\n <div class="text-box">\r\n <div class="grid-1">\r\n <div class="box">\r\n <p>We partner with companies to execute a\r\ncomprehensive growth strategy that\r\nintegrates sales, marketing, and product.</p>\r\n <a href="#" class="link-see">SEE OUR WORK</a>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n', 'Home', '', 'inherit', 'closed', 'closed', '', '2-revision-v1', '', '', '2015-09-08 09:33:43', '2015-09-08 09:33:43', '', 2, 'http://localhost/rocketlaunch/2015/09/08/2-revision-v1/', 0, 'revision', '', 0),
(65, 1, '2015-09-08 09:37:41', '2015-09-08 09:37:41', '<div class="home-br">\r\n<h1 class="heading-tittle">WE BUILD MARKETING ENGINES</h1>\r\n<div class="text-box">\r\n<div class="grid-1">\r\n<div class="box">\r\n\r\nWe partner with companies to execute a comprehensive growth strategy that integrates sales, marketing, and product.\r\n<a class="link-see" href="#">SEE OUR WORK</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>', 'Home', '', 'inherit', 'closed', 'closed', '', '2-revision-v1', '', '', '2015-09-08 09:37:41', '2015-09-08 09:37:41', '', 2, 'http://localhost/rocketlaunch/2015/09/08/2-revision-v1/', 0, 'revision', '', 0),
(66, 1, '2015-09-08 10:00:48', '2015-09-08 10:00:48', '<div class="home-br">\r\n<h1 class="heading-tittle">LET''S KEEP <span>IN TOUCH</span></h1>\r\n</div>\r\n[contact-form-7 id="36" title="Contact form 1"]', 'CONTACT', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2015-09-08 10:00:48', '2015-09-08 10:00:48', '', 14, 'http://localhost/rocketlaunch/2015/09/08/14-revision-v1/', 0, 'revision', '', 0),
(67, 1, '2015-09-08 10:01:14', '2015-09-08 10:01:14', '\r\n<h1 class="heading-tittle">LET''S KEEP <span>IN TOUCH</span></h1>\r\n[contact-form-7 id="36" title="Contact form 1"]', 'CONTACT', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2015-09-08 10:01:14', '2015-09-08 10:01:14', '', 14, 'http://localhost/rocketlaunch/2015/09/08/14-revision-v1/', 0, 'revision', '', 0),
(68, 1, '2015-09-08 10:02:09', '2015-09-08 10:02:09', '<div class="home-br"><h1 class="heading-tittle">LET''S KEEP <span>IN TOUCH</span></h1></div>\r\n[contact-form-7 id="36" title="Contact form 1"]', 'CONTACT', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2015-09-08 10:02:09', '2015-09-08 10:02:09', '', 14, 'http://localhost/rocketlaunch/2015/09/08/14-revision-v1/', 0, 'revision', '', 0),
(69, 1, '2015-09-08 10:03:53', '2015-09-08 10:03:53', '<div class="contact-br"><h1 class="heading-tittle">LET''S KEEP <span>IN TOUCH</span></h1></div>\r\n[contact-form-7 id="36" title="Contact form 1"]', 'CONTACT', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2015-09-08 10:03:53', '2015-09-08 10:03:53', '', 14, 'http://localhost/rocketlaunch/2015/09/08/14-revision-v1/', 0, 'revision', '', 0),
(70, 1, '2015-09-08 10:17:37', '2015-09-08 10:17:37', '<div class="contact-br"><h1 class="heading-tittle">LET''S KEEP <span>IN TOUCH</span></h1></div>\r\n<div style="display: block;width: 60%; margin: auto">[contact-form-7 id="36" title="Contact form 1"]</div>', 'CONTACT', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2015-09-08 10:17:37', '2015-09-08 10:17:37', '', 14, 'http://localhost/rocketlaunch/2015/09/08/14-revision-v1/', 0, 'revision', '', 0),
(71, 1, '2015-09-08 10:19:02', '2015-09-08 10:19:02', '<div class="contact-br"><h1 class="heading-tittle">LET''S KEEP <span>IN TOUCH</span></h1></div>\r\n<div style="display: block;width: 70%; margin: 40px auto auto auto">\r\n[contact-form-7 id="36" title="Contact form 1"]\r\n</div>', 'CONTACT', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2015-09-08 10:19:02', '2015-09-08 10:19:02', '', 14, 'http://localhost/rocketlaunch/2015/09/08/14-revision-v1/', 0, 'revision', '', 0),
(72, 1, '2015-09-08 10:30:39', '2015-09-08 10:30:39', '<body>\r\n<div class="home-br">\r\n <h1 class="heading-tittle">WE BUILD <span>MARKETING</span> ENGINES</h1>\r\n <div class="text-box">\r\n <div class="grid-1">\r\n <div class="box">\r\n <p>We partner with companies to execute a\r\ncomprehensive growth strategy that\r\nintegrates sales, marketing, and product.</p>\r\n <a href="#" class="link-see">SEE OUR WORK</a>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n</body>', 'Home', '', 'inherit', 'closed', 'closed', '', '2-revision-v1', '', '', '2015-09-08 10:30:39', '2015-09-08 10:30:39', '', 2, 'http://localhost/rocketlaunch/2015/09/08/2-revision-v1/', 0, 'revision', '', 0),
(73, 1, '2015-09-08 10:34:45', '2015-09-08 10:34:45', '<body>\r\n<div class="home-br">\r\n <h1 class="heading-tittle">WE BUILD <span>MARKETING</span> ENGINES</h1>\r\n <div class="text-box">\r\n <div class="grid-1">\r\n <div class="box">\r\n <p>We partner with companies to execute a comprehensive growth strategy that integrates sales, marketing, and product.</p>\r\n <a href="#" class="link-see">SEE OUR WORK</a>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n</body>', 'Home', '', 'inherit', 'closed', 'closed', '', '2-revision-v1', '', '', '2015-09-08 10:34:45', '2015-09-08 10:34:45', '', 2, 'http://localhost/rocketlaunch/2015/09/08/2-revision-v1/', 0, 'revision', '', 0),
(74, 1, '2015-09-08 11:11:00', '2015-09-08 11:11:00', '<div class="contact-br"><h1 class="heading-tittle">LET''S KEEP <span>IN TOUCH</span></h1></div>\r\n<div style="display: block;width: auto; margin: 40px auto auto auto">\r\n[contact-form-7 id="36" title="Contact form 1"]\r\n</div>', 'CONTACT', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2015-09-08 11:11:00', '2015-09-08 11:11:00', '', 14, 'http://localhost/rocketlaunch/2015/09/08/14-revision-v1/', 0, 'revision', '', 0),
(75, 1, '2015-09-08 11:12:41', '2015-09-08 11:12:41', '<div class="contact-br"><h1 class="heading-tittle">LET''S KEEP <span>IN TOUCH</span></h1></div>\r\n<div style="display: block;width: inherit; margin: 40px auto auto auto">\r\n[contact-form-7 id="36" title="Contact form 1"]\r\n</div>', 'CONTACT', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2015-09-08 11:12:41', '2015-09-08 11:12:41', '', 14, 'http://localhost/rocketlaunch/2015/09/08/14-revision-v1/', 0, 'revision', '', 0),
(76, 1, '2015-09-08 11:16:19', '2015-09-08 11:16:19', '<div class="contact-br"><h1 class="heading-tittle">LET''S KEEP <span>IN TOUCH</span></h1></div>\r\n<div style="display: block;width: 70%; margin: 40px auto auto auto">\r\n[contact-form-7 id="36" title="Contact form 1"]\r\n</div>', 'CONTACT', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2015-09-08 11:16:19', '2015-09-08 11:16:19', '', 14, 'http://localhost/rocketlaunch/2015/09/08/14-revision-v1/', 0, 'revision', '', 0),
(78, 1, '2015-09-09 10:14:29', '2015-09-09 10:14:29', '<body>\r\n<div class="home-br">\r\n[shs_slider_show]\r\n <h1 class="heading-tittle">WE BUILD <span>MARKETING</span> ENGINES</h1>\r\n <div class="text-box">\r\n <div class="grid-1">\r\n <div class="box">\r\n <p>We partner with companies to execute a comprehensive growth strategy that integrates sales, marketing, and product.</p>\r\n <a href="#" class="link-see">SEE OUR WORK</a>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n</body>', 'Home', '', 'inherit', 'closed', 'closed', '', '2-revision-v1', '', '', '2015-09-09 10:14:29', '2015-09-09 10:14:29', '', 2, 'http://localhost/rocketlaunch/2015/09/09/2-revision-v1/', 0, 'revision', '', 0),
(79, 1, '2015-09-09 10:16:40', '2015-09-09 10:16:40', '[shs_slider_show]\r\n\r\n\r\n<body>\r\n<div class="home-br">\r\n\r\n <h1 class="heading-tittle">WE BUILD <span>MARKETING</span> ENGINES</h1>\r\n <div class="text-box">\r\n <div class="grid-1">\r\n <div class="box">\r\n <p>We partner with companies to execute a comprehensive growth strategy that integrates sales, marketing, and product.</p>\r\n <a href="#" class="link-see">SEE OUR WORK</a>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n</body>', 'Home', '', 'inherit', 'closed', 'closed', '', '2-revision-v1', '', '', '2015-09-09 10:16:40', '2015-09-09 10:16:40', '', 2, 'http://localhost/rocketlaunch/2015/09/09/2-revision-v1/', 0, 'revision', '', 0),
(80, 1, '2015-09-09 10:17:17', '2015-09-09 10:17:17', '<body>\r\n<div class="home-br">\r\n\r\n <h1 class="heading-tittle">WE BUILD <span>MARKETING</span> ENGINES</h1>\r\n <div class="text-box">\r\n <div class="grid-1">\r\n <div class="box">\r\n <p>We partner with companies to execute a comprehensive growth strategy that integrates sales, marketing, and product.</p>\r\n <a href="#" class="link-see">SEE OUR WORK</a>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n</body>', 'Home', '', 'inherit', 'closed', 'closed', '', '2-revision-v1', '', '', '2015-09-09 10:17:17', '2015-09-09 10:17:17', '', 2, 'http://localhost/rocketlaunch/2015/09/09/2-revision-v1/', 0, 'revision', '', 0),
(81, 1, '2015-09-09 10:24:56', '2015-09-09 10:24:56', '[shs_slider_show]', 'ABOUT', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2015-09-09 10:24:56', '2015-09-09 10:24:56', '', 10, 'http://localhost/rocketlaunch/2015/09/09/10-revision-v1/', 0, 'revision', '', 0),
(82, 1, '2015-09-09 10:29:02', '2015-09-09 10:29:02', '<body>\r\n[shs_slider_show]\r\n<div class="home-br">\r\n\r\n <h1 class="heading-tittle">WE BUILD <span>MARKETING</span> ENGINES</h1>\r\n <div class="text-box">\r\n <div class="grid-1">\r\n <div class="box">\r\n <p>We partner with companies to execute a comprehensive growth strategy that integrates sales, marketing, and product.</p>\r\n <a href="#" class="link-see">SEE OUR WORK</a>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n</body>', 'Home', '', 'inherit', 'closed', 'closed', '', '2-revision-v1', '', '', '2015-09-09 10:29:02', '2015-09-09 10:29:02', '', 2, 'http://localhost/rocketlaunch/2015/09/09/2-revision-v1/', 0, 'revision', '', 0),
(83, 1, '2015-09-09 10:33:22', '2015-09-09 10:33:22', '\r\n[shs_slider_show]\r\n', 'Home', '', 'inherit', 'closed', 'closed', '', '2-revision-v1', '', '', '2015-09-09 10:33:22', '2015-09-09 10:33:22', '', 2, 'http://localhost/rocketlaunch/2015/09/09/2-revision-v1/', 0, 'revision', '', 0),
(84, 1, '2015-09-09 10:35:05', '2015-09-09 10:35:05', '<body>\r\n<div class="home-br">\r\n <h1 class="heading-tittle">WE BUILD <span>MARKETING</span> ENGINES</h1>\r\n <div class="text-box">\r\n <div class="grid-1">\r\n <div class="box">\r\n <p>We partner with companies to execute a comprehensive growth strategy that integrates sales, marketing, and product.</p>\r\n <a href="#" class="link-see">SEE OUR WORK</a>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n</body>\r\n', 'Home', '', 'inherit', 'closed', 'closed', '', '2-revision-v1', '', '', '2015-09-09 10:35:05', '2015-09-09 10:35:05', '', 2, 'http://localhost/rocketlaunch/2015/09/09/2-revision-v1/', 0, 'revision', '', 0),
(85, 1, '2015-09-09 11:08:52', '2015-09-09 11:08:52', '\r\n[shs_slider_show]\r\n \r\n<div class="home-br">\r\n<h1 class="heading-tittle">WE BUILD MARKETING ENGINES</h1>\r\n<div class="text-box">\r\n<div class="grid-1">\r\n<div class="box">\r\n\r\nWe partner with companies to execute a comprehensive growth strategy that integrates sales, marketing, and product.\r\n\r\n<a class="link-see" href="#">SEE OUR WORK</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n ', 'Home', '', 'inherit', 'closed', 'closed', '', '2-revision-v1', '', '', '2015-09-09 11:08:52', '2015-09-09 11:08:52', '', 2, 'http://localhost/rocketlaunch/2015/09/09/2-revision-v1/', 0, 'revision', '', 0),
(86, 1, '2015-09-09 11:12:05', '2015-09-09 11:12:05', '<div class="home-br">\r\n<h1 class="heading-tittle">WE BUILD MARKETING ENGINES</h1>\r\n<div class="text-box">\r\n<div class="grid-1">\r\n<div class="box">\r\n[shs_slider_show]\r\n\r\nWe partner with companies to execute a comprehensive growth strategy that integrates sales, marketing, and product.\r\n\r\n<a class="link-see" href="#">SEE OUR WORK</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n', 'Home', '', 'inherit', 'closed', 'closed', '', '2-revision-v1', '', '', '2015-09-09 11:12:05', '2015-09-09 11:12:05', '', 2, 'http://localhost/rocketlaunch/2015/09/09/2-revision-v1/', 0, 'revision', '', 0),
(87, 1, '2015-09-09 11:21:12', '2015-09-09 11:21:12', '<div class="home-br">\r\n<h1 class="heading-tittle">WE BUILD MARKETING ENGINES</h1>\r\n<div class="text-box">\r\n<div class="grid-1">\r\n<div class="box">\r\n[layerslider id="1"]\r\n\r\nWe partner with companies to execute a comprehensive growth strategy that integrates sales, marketing, and product.\r\n\r\n<a class="link-see" href="#">SEE OUR WORK</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n', 'Home', '', 'inherit', 'closed', 'closed', '', '2-revision-v1', '', '', '2015-09-09 11:21:12', '2015-09-09 11:21:12', '', 2, 'http://localhost/rocketlaunch/2015/09/09/2-revision-v1/', 0, 'revision', '', 0),
(88, 1, '2015-09-09 11:29:49', '2015-09-09 11:29:49', '<div class="home-br">\r\n<h1 class="heading-tittle">WE BUILD MARKETING ENGINES</h1>\r\n<div class="text-box">\r\n<div class="grid-1">\r\n<div class="box">\r\n[layerslider id="2"]\r\n\r\nWe partner with companies to execute a comprehensive growth strategy that integrates sales, marketing, and product.\r\n\r\n<a class="link-see" href="#">SEE OUR WORK</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n', 'Home', '', 'inherit', 'closed', 'closed', '', '2-revision-v1', '', '', '2015-09-09 11:29:49', '2015-09-09 11:29:49', '', 2, 'http://localhost/rocketlaunch/2015/09/09/2-revision-v1/', 0, 'revision', '', 0),
(89, 1, '2015-09-09 11:31:21', '2015-09-09 11:31:21', '<div class="home-br">\r\n<h1 class="heading-tittle">WE BUILD MARKETING ENGINES</h1>\r\n<div class="text-box">\r\n<div class="grid-1">\r\n<div class="box">\r\n[layerslider id="2"]\r\n[layerslider id="1"]\r\nWe partner with companies to execute a comprehensive growth strategy that integrates sales, marketing, and product.\r\n\r\n<a class="link-see" href="#">SEE OUR WORK</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n', 'Home', '', 'inherit', 'closed', 'closed', '', '2-revision-v1', '', '', '2015-09-09 11:31:21', '2015-09-09 11:31:21', '', 2, 'http://localhost/rocketlaunch/2015/09/09/2-revision-v1/', 0, 'revision', '', 0),
(90, 1, '2015-09-09 11:32:32', '2015-09-09 11:32:32', '<div class="home-br">\r\n<h1 class="heading-tittle">WE BUILD MARKETING ENGINES</h1>\r\n<div class="text-box">\r\n<div class="grid-1">\r\n<div class="box">\r\n[layerslider id="3"]\r\nWe partner with companies to execute a comprehensive growth strategy that integrates sales, marketing, and product.\r\n\r\n<a class="link-see" href="#">SEE OUR WORK</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n', 'Home', '', 'inherit', 'closed', 'closed', '', '2-revision-v1', '', '', '2015-09-09 11:32:32', '2015-09-09 11:32:32', '', 2, 'http://localhost/rocketlaunch/2015/09/09/2-revision-v1/', 0, 'revision', '', 0),
(91, 1, '2015-09-09 12:23:54', '2015-09-09 12:23:54', '[layerslider id="3"]', 'ABOUT', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2015-09-09 12:23:54', '2015-09-09 12:23:54', '', 10, 'http://localhost/rocketlaunch/2015/09/09/10-revision-v1/', 0, 'revision', '', 0),
(92, 1, '2015-09-09 12:39:23', '2015-09-09 12:39:23', '<body>\r\n<div class="home-br">\r\n <h1 class="heading-tittle">WE BUILD <span>MARKETING</span> ENGINES</h1>\r\n <div class="text-box">\r\n <div class="grid-1">\r\n <div class="box">\r\n <p>We partner with companies to execute a comprehensive growth strategy that integrates sales, marketing, and product.</p>\r\n <a href="#" class="link-see">SEE OUR WORK</a>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n</body>\r\n', 'Home', '', 'inherit', 'closed', 'closed', '', '2-revision-v1', '', '', '2015-09-09 12:39:23', '2015-09-09 12:39:23', '', 2, 'http://localhost/rocketlaunch/2015/09/09/2-revision-v1/', 0, 'revision', '', 0),
(94, 1, '2015-09-10 04:57:39', '2015-09-10 04:57:39', 'fghjk', 'ABOUT', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2015-09-10 04:57:39', '2015-09-10 04:57:39', '', 10, 'http://localhost/rocketlaunch/2015/09/10/10-revision-v1/', 0, 'revision', '', 0),
(95, 1, '2015-09-10 06:00:00', '2015-09-10 06:00:00', '', 'ABOUT', '', 'inherit', 'closed', 'closed', '', '10-autosave-v1', '', '', '2015-09-10 06:00:00', '2015-09-10 06:00:00', '', 10, 'http://localhost/rocketlaunch/2015/09/10/10-autosave-v1/', 0, 'revision', '', 0),
(97, 1, '2015-09-10 05:58:42', '2015-09-10 05:58:42', '[wp-anything-slider setting="SETTING10"]', 'ABOUT', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2015-09-10 05:58:42', '2015-09-10 05:58:42', '', 10, 'http://localhost/rocketlaunch/2015/09/10/10-revision-v1/', 0, 'revision', '', 0),
(98, 1, '2015-09-10 08:07:36', '2015-09-10 08:07:36', '[qode_slider slider=''myslider'' auto_start=''true'' animation_type=''slide'' slide_animation=''6000'' height='''' responsive_height=''yes'' anchor='''' show_navigation_arrows=''yes'']', 'ABOUT', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2015-09-10 08:07:36', '2015-09-10 08:07:36', '', 10, 'http://localhost/rocketlaunch/2015/09/10/10-revision-v1/', 0, 'revision', '', 0),
(99, 1, '2015-09-10 10:10:03', '2015-09-10 10:10:03', '', 'WE BUILD PRODUCT', '', 'publish', 'closed', 'closed', '', 'we-build-product', '', '', '2015-09-10 11:43:36', '2015-09-10 11:43:36', '', 0, 'http://localhost/rocketlaunch/?post_type=slides&p=99', 0, 'slides', '', 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp_terms`
--
CREATE TABLE IF NOT EXISTS `wp_terms` (
`term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`term_group` bigint(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`term_id`),
KEY `slug` (`slug`(191)),
KEY `name` (`name`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=6 ;
--
-- Dumping data for table `wp_terms`
--
INSERT INTO `wp_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES
(1, 'Uncategorized', 'uncategorized', 0),
(2, 'mySlider', 'myslider', 0),
(3, 'mymenu', 'mymenu', 0),
(4, 'contact', 'contact', 0),
(5, 'footer-image', 'footer-image', 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp_term_relationships`
--
CREATE TABLE IF NOT EXISTS `wp_term_relationships` (
`object_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`term_order` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`object_id`,`term_taxonomy_id`),
KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `wp_term_relationships`
--
INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES
(1, 1, 0),
(16, 2, 0),
(23, 3, 0),
(24, 3, 0),
(25, 3, 0),
(26, 3, 0),
(27, 3, 0),
(33, 2, 0),
(38, 4, 0),
(63, 3, 0),
(99, 2, 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp_term_taxonomy`
--
CREATE TABLE IF NOT EXISTS `wp_term_taxonomy` (
`term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`description` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`count` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`term_taxonomy_id`),
UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=6 ;
--
-- Dumping data for table `wp_term_taxonomy`
--
INSERT INTO `wp_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES
(1, 1, 'category', '', 0, 0),
(2, 2, 'slides_category', 'We build marketing engines', 0, 2),
(3, 3, 'nav_menu', '', 0, 6),
(4, 4, 'slides_category', '', 0, 0),
(5, 5, 'masonry_gallery_category', '', 0, 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp_usermeta`
--
CREATE TABLE IF NOT EXISTS `wp_usermeta` (
`umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`umeta_id`),
KEY `user_id` (`user_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=27 ;
--
-- Dumping data for table `wp_usermeta`
--
INSERT INTO `wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES
(1, 1, 'nickname', 'admin'),
(2, 1, 'first_name', ''),
(3, 1, 'last_name', ''),
(4, 1, 'description', ''),
(5, 1, 'rich_editing', 'true'),
(6, 1, 'comment_shortcuts', 'false'),
(7, 1, 'admin_color', 'fresh'),
(8, 1, 'use_ssl', '0'),
(9, 1, 'show_admin_bar_front', 'true'),
(10, 1, 'wp_capabilities', 'a:1:{s:13:"administrator";b:1;}'),
(11, 1, 'wp_user_level', '10'),
(12, 1, 'dismissed_wp_pointers', 'vc_pointers_backend_editor'),
(13, 1, 'show_welcome_panel', '1'),
(14, 1, 'session_tokens', 'a:2:{s:64:"3dbaa63b4041569f9692cf902fd6f94783553b987061acc305b7af6ba15c9b7f";a:4:{s:10:"expiration";i:1441785559;s:2:"ip";s:3:"::1";s:2:"ua";s:108:"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.85 Safari/537.36";s:5:"login";i:1441612759;}s:64:"6e61aab5ef506587bb5fbef27626dcf00476d9e53219c3be67f81cf7c8d6144e";a:4:{s:10:"expiration";i:1441957369;s:2:"ip";s:3:"::1";s:2:"ua";s:108:"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.85 Safari/537.36";s:5:"login";i:1441784569;}}'),
(15, 1, 'wp_user-settings', 'libraryContent=browse&posts_list_mode=list&widgets_access=off&editor=html&mfold=o&uploader=1'),
(16, 1, 'wp_user-settings-time', '1441609717'),
(17, 1, 'wp_dashboard_quick_press_last_post_id', '3'),
(18, 1, 'managenav-menuscolumnshidden', 'a:4:{i:0;s:11:"link-target";i:1;s:11:"css-classes";i:2;s:3:"xfn";i:3;s:11:"description";}'),
(19, 1, 'metaboxhidden_nav-menus', 'a:9:{i:0;s:18:"add-portfolio_page";i:1;s:12:"add-post_tag";i:2;s:15:"add-post_format";i:3;s:22:"add-portfolio_category";i:4;s:17:"add-portfolio_tag";i:5;s:25:"add-testimonials_category";i:6;s:19:"add-slides_category";i:7;s:22:"add-carousels_category";i:8;s:28:"add-masonry_gallery_category";}'),
(20, 1, 'layerslider_help_wp_pointer', '1'),
(21, 1, 'nav_menu_recently_edited', '3'),
(22, 1, 'layerslider_builder_help_wp_pointer', '1'),
(23, 1, 'closedpostboxes_slides', 'a:0:{}'),
(24, 1, 'metaboxhidden_slides', 'a:2:{i:0;s:7:"slugdiv";i:1;s:36:"qodef-meta-box-slides_video_settings";}'),
(25, 1, 'closedpostboxes_page', 'a:0:{}'),
(26, 1, 'metaboxhidden_page', 'a:6:{i:0;s:12:"revisionsdiv";i:1;s:16:"commentstatusdiv";i:2;s:11:"commentsdiv";i:3;s:7:"slugdiv";i:4;s:9:"authordiv";i:5;s:29:"qodef-meta-box-page_left_menu";}');
-- --------------------------------------------------------
--
-- Table structure for table `wp_users`
--
CREATE TABLE IF NOT EXISTS `wp_users` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_login` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_pass` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_nicename` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_activation_key` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_status` int(11) NOT NULL DEFAULT '0',
`display_name` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`ID`),
KEY `user_login_key` (`user_login`),
KEY `user_nicename` (`user_nicename`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=2 ;
--
-- Dumping data for table `wp_users`
--
INSERT INTO `wp_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES
(1, 'admin', '$P$BFWWWJUvQcuMPRBYcijm.EqO5fQv2G/', 'admin', '[email protected]', '', '2015-09-03 05:25:51', '', 0, 'admin');
-- --------------------------------------------------------
--
-- Table structure for table `wp_wpanything_content`
--
CREATE TABLE IF NOT EXISTS `wp_wpanything_content` (
`wpanything_cid` int(11) NOT NULL AUTO_INCREMENT,
`wpanything_ctitle` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`wpanything_cstartdate` datetime NOT NULL DEFAULT '2012-01-01 00:00:00',
`wpanything_cenddate` datetime NOT NULL DEFAULT '2020-12-30 00:00:00',