-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtravel2.sql
1512 lines (1437 loc) · 795 KB
/
travel2.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.2.7.1
-- http://www.phpmyadmin.net
--
-- Host: 127.0.0.1
-- Generation Time: Mar 28, 2015 at 04:13 PM
-- Server version: 5.6.20
-- PHP Version: 5.5.15
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: `travel2`
--
-- --------------------------------------------------------
--
-- Table structure for table `travel2_commentmeta`
--
CREATE TABLE IF NOT EXISTS `travel2_commentmeta` (
`meta_id` bigint(20) unsigned NOT NULL,
`comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `travel2_comments`
--
CREATE TABLE IF NOT EXISTS `travel2_comments` (
`comment_ID` bigint(20) unsigned NOT NULL,
`comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
`comment_author` tinytext NOT NULL,
`comment_author_email` varchar(100) NOT NULL DEFAULT '',
`comment_author_url` varchar(200) NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) NOT NULL DEFAULT '',
`comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_content` text NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT '0',
`comment_approved` varchar(20) NOT NULL DEFAULT '1',
`comment_agent` varchar(255) NOT NULL DEFAULT '',
`comment_type` varchar(20) NOT NULL DEFAULT '',
`comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=6 ;
--
-- Dumping data for table `travel2_comments`
--
INSERT INTO `travel2_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-02-08 09:28:29', '2015-02-08 09:28:29', '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, '1', '', '', 0, 0),
(2, 112, 'Themex', '[email protected]', '', '127.0.0.1', '2012-11-27 16:19:33', '2012-11-27 16:19:33', 'Proin in nibh dolor. Aliquam erat volutpat. Nunc rutrum leo quis ligula fermentum eget porta sapien pharetra. Donec consequat adipiscing quam, in semper enim tempor et. Suspendisse vitae risus tristique risus cursus venenatis. Etiam vitae vestibulum lectus!', 0, '1', '', '', 0, 1),
(3, 112, 'John Doe', '[email protected]', '', '127.0.0.1', '2012-11-27 16:38:12', '2012-11-27 16:38:12', 'Suspendisse nulla urna, bibendum ut commodo non, sagittis venenatis risus. Vivamus molestie dolor in enim pretium non consequat ante lacinia. Sed massa quam, ultrices ultricies sodales.', 0, '1', '', '', 2, 0),
(4, 112, 'Mary Templeton', '[email protected]', '', '127.0.0.1', '2012-11-27 16:48:07', '2012-11-27 16:48:07', 'Nullam mauris ligula, tincidunt ac placerat sit amet, pulvinar ut quam. Donec varius ultricies ligula. Sed id eros quis eros pharetra varius. Nunc dictum, odio in faucibus ullamcorper, arcu nisi euismod ligula, sed imperdiet. Proin nec odio vitae arcu pretium adipiscing nec quis enim.', 0, '1', '', '', 0, 0),
(5, 205, 'Themex', '[email protected]', '', '127.0.0.1', '2012-11-28 20:11:05', '2012-11-28 20:11:05', 'Nullam mauris ligula, tincidunt ac placerat sit amet, pulvinar ut quam. Donec varius ultricies ligula. Sed id eros quis eros pharetra varius. Nunc dictum, odio in faucibus ullamcorper, arcu nisi euismod ligula, sed imperdiet. Proin nec odio vitae arcu pretium adipiscing nec quis enim.', 0, '1', '', '', 0, 1);
-- --------------------------------------------------------
--
-- Table structure for table `travel2_layerslider`
--
CREATE TABLE IF NOT EXISTS `travel2_layerslider` (
`id` int(10) NOT NULL,
`author` int(10) NOT NULL DEFAULT '0',
`name` varchar(100) NOT NULL,
`slug` varchar(100) NOT NULL,
`data` mediumtext 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'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=10 ;
--
-- Dumping data for table `travel2_layerslider`
--
INSERT INTO `travel2_layerslider` (`id`, `author`, `name`, `slug`, `data`, `date_c`, `date_m`, `flag_hidden`, `flag_deleted`) VALUES
(2, 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":488,"background":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":495,"image":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":497,"image":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":496,"image":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":494,"image":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":492,"image":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":493,"image":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":488,"background":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":489,"image":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":490,"image":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":491,"image":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":492,"image":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":493,"image":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":488,"background":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":486,"image":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":487,"image":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":492,"image":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":493,"image":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":""}]}]}', 1424008946, 1424008946, 0, 0),
(3, 1, 'home-test', '', '{"properties":{"post_taxonomy":"0","post_orderby":"date","post_order":"DESC","post_offset":"-1","title":"home-test","slug":"","width":"600","height":"300","responsive":"on","maxwidth":"","forceresponsive":"on","responsiveunder":"0","sublayercontainer":"40","hideunder":"0","hideover":"100000","autostart":"on","startinviewport":"on","pauseonhover":"on","firstlayer":"1","animatefirstlayer":"on","keybnav":"on","touchnav":"on","loops":"0","forceloopnum":"on","skin":"fullwidth","backgroundcolor":"rgba(0, 0, 0, 0.04)","backgroundimageId":"","backgroundimage":"","sliderfadeinduration":"350","sliderstyle":"margin-bottom: 0px;","ls_data[properties":{"undefined":""},"navprevnext":"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","autoplayvideos":"on","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":""}}]}', 1424009021, 1424011381, 0, 1);
INSERT INTO `travel2_layerslider` (`id`, `author`, `name`, `slug`, `data`, `date_c`, `date_m`, `flag_hidden`, `flag_deleted`) VALUES
(4, 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":501,"background":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":508,"image":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":510,"image":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":509,"image":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":507,"image":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":505,"image":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":506,"image":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":501,"background":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":502,"image":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":503,"image":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":504,"image":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":505,"image":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":506,"image":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":501,"background":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":499,"image":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":500,"image":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":505,"image":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":506,"image":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":""}]}]}', 1424011524, 1424011524, 0, 1);
INSERT INTO `travel2_layerslider` (`id`, `author`, `name`, `slug`, `data`, `date_c`, `date_m`, `flag_hidden`, `flag_deleted`) VALUES
(6, 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":520,"background":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":530,"image":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":534,"image":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":532,"image":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":529,"image":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":527,"image":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":528,"image":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":520,"background":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":522,"image":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":523,"image":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":525,"image":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":527,"image":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":528,"image":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":520,"background":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":517,"image":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":518,"image":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":527,"image":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":528,"image":"http:\\/\\/localhost:81\\/siaxe\\/travel2\\/wp-content\\/uploads\\/layerslider\\/Full-width-demo-slider\\/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":""}]}]}', 1424013179, 1424013179, 0, 0),
(9, 1, 'test', '', '{"properties":{"title":"test"},"layers":[[]]}', 1424013815, 1424013815, 0, 0);
-- --------------------------------------------------------
--
-- Table structure for table `travel2_links`
--
CREATE TABLE IF NOT EXISTS `travel2_links` (
`link_id` bigint(20) unsigned NOT NULL,
`link_url` varchar(255) NOT NULL DEFAULT '',
`link_name` varchar(255) NOT NULL DEFAULT '',
`link_image` varchar(255) NOT NULL DEFAULT '',
`link_target` varchar(25) NOT NULL DEFAULT '',
`link_description` varchar(255) NOT NULL DEFAULT '',
`link_visible` varchar(20) NOT NULL DEFAULT 'Y',
`link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
`link_rating` int(11) NOT NULL DEFAULT '0',
`link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`link_rel` varchar(255) NOT NULL DEFAULT '',
`link_notes` mediumtext NOT NULL,
`link_rss` varchar(255) NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `travel2_options`
--
CREATE TABLE IF NOT EXISTS `travel2_options` (
`option_id` bigint(20) unsigned NOT NULL,
`option_name` varchar(64) NOT NULL DEFAULT '',
`option_value` longtext NOT NULL,
`autoload` varchar(20) NOT NULL DEFAULT 'yes'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=363 ;
--
-- Dumping data for table `travel2_options`
--
INSERT INTO `travel2_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1, 'siteurl', 'http://localhost:81/siaxe/travel2', 'yes'),
(2, 'home', 'http://localhost:81/siaxe/travel2', 'yes'),
(3, 'blogname', 'Travel Two', 'yes'),
(4, 'blogdescription', 'Explore Sri Lanka', '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', '0', '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', '', 'yes'),
(29, 'gzipcompression', '0', 'yes'),
(30, 'hack_file', '0', 'yes'),
(31, 'blog_charset', 'UTF-8', 'yes'),
(32, 'moderation_keys', '', 'no'),
(33, 'active_plugins', 'a:2:{i:0;s:27:"LayerSlider/layerslider.php";i:1;s:41:"wordpress-importer/wordpress-importer.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', '', 'no'),
(41, 'template', 'midway', 'yes'),
(42, 'stylesheet', 'midway', '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', '30133', 'yes'),
(50, 'uploads_use_yearmonth_folders', '1', 'yes'),
(51, 'upload_path', '', 'yes'),
(52, 'blog_public', '0', '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:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(80, 'widget_text', 'a:0:{}', 'yes'),
(81, 'widget_rss', 'a:0:{}', 'yes'),
(82, 'uninstall_plugins', 'a:1:{s:27:"LayerSlider/layerslider.php";s:29:"layerslider_uninstall_scripts";}', 'no'),
(83, 'timezone_string', '', 'yes'),
(84, 'page_for_posts', '0', 'yes'),
(85, 'page_on_front', '446', 'yes'),
(86, 'default_post_format', '0', 'yes'),
(87, 'link_manager_enabled', '0', 'yes'),
(88, 'initial_db_version', '30133', 'yes'),
(89, 'travel2_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'),
(90, 'widget_search', 'a:2:{i:2;a:1:{s:5:"title";s:6:"Search";}s:12:"_multiwidget";i:1;}', 'yes'),
(91, 'widget_recent-posts', 'a:2:{i:2;a:3:{s:5:"title";s:0:"";s:6:"number";i:2;s:9:"show_date";b:0;}s:12:"_multiwidget";i:1;}', 'yes'),
(92, 'widget_recent-comments', 'a:2:{i:2;a:2:{s:5:"title";s:12:"Testimonials";s:6:"number";i:2;}s:12:"_multiwidget";i:1;}', 'yes'),
(93, 'widget_archives', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(94, 'widget_meta', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(95, 'sidebars_widgets', 'a:4:{s:19:"wp_inactive_widgets";a:0:{}s:15:"default_sidebar";a:3:{i:0;s:8:"search-2";i:1;s:14:"recent-posts-2";i:2;s:17:"recent-comments-2";}s:14:"footer_sidebar";a:0:{}s:13:"array_version";i:3;}', 'yes'),
(96, 'cron', 'a:5:{i:1427571780;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:1427580361;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:1427617304;a:1:{s:30:"wp_scheduled_auto_draft_delete";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1427623593;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;}}}s:7:"version";i:2;}', 'yes'),
(99, '_transient_random_seed', '8a48b30ec9d24cc8c932b515242b4d6b', 'yes'),
(104, '_site_transient_update_themes', 'O:8:"stdClass":4:{s:12:"last_checked";i:1427539927;s:7:"checked";a:4:{s:6:"midway";s:3:"1.9";s:13:"twentyfifteen";s:3:"1.0";s:14:"twentyfourteen";s:3:"1.3";s:14:"twentythirteen";s:3:"1.4";}s:8:"response";a:0:{}s:12:"translations";a:0:{}}', 'yes'),
(107, 'can_compress_scripts', '1', 'yes'),
(121, 'theme_mods_twentyfifteen', 'a:1:{s:16:"sidebars_widgets";a:2:{s:4:"time";i:1423390001;s:4:"data";a:2:{s:19:"wp_inactive_widgets";a:0:{}s:9:"sidebar-1";a:6:{i:0;s:8:"search-2";i:1;s:14:"recent-posts-2";i:2;s:17:"recent-comments-2";i:3;s:10:"archives-2";i:4;s:12:"categories-2";i:5;s:6:"meta-2";}}}}', 'yes'),
(122, 'current_theme', 'Midway (shared on wplocker.com)', 'yes'),
(123, 'theme_mods_midway', 'a:2:{i:0;b:0;s:18:"nav_menu_locations";a:2:{s:11:"footer_menu";i:35;s:9:"main_menu";i:34;}}', 'yes'),
(124, 'theme_switched', '', 'yes'),
(125, 'themex_ThemexForm', 'a:3:{s:12:"booking_form";a:3:{s:11:"description";s:20:"Book your Tour Now! ";s:7:"message";s:66:"You have successfully booked your Tour!!\r\nWe will back to you soon";s:6:"fields";a:10:{s:13:"54d735325da1a";a:3:{s:4:"type";s:4:"text";s:5:"label";s:10:"First Name";s:7:"options";s:0:"";}s:13:"54e05dfb0fbb5";a:3:{s:4:"type";s:4:"text";s:5:"label";s:9:"Last Name";s:7:"options";s:0:"";}s:13:"54e05e04f3084";a:3:{s:4:"type";s:5:"email";s:5:"label";s:13:"Email Address";s:7:"options";s:0:"";}s:13:"54e05e2c8a27e";a:3:{s:4:"type";s:4:"text";s:5:"label";s:7:"Address";s:7:"options";s:0:"";}s:13:"54e05e37708a7";a:3:{s:4:"type";s:6:"number";s:5:"label";s:14:"Contact Number";s:7:"options";s:0:"";}s:13:"54e05e4a07d7f";a:3:{s:4:"type";s:4:"date";s:5:"label";s:12:"Arrival Date";s:7:"options";s:0:"";}s:13:"54e05e5a0bf3f";a:3:{s:4:"type";s:4:"date";s:5:"label";s:15:"Departure Date ";s:7:"options";s:0:"";}s:13:"54e05e6ab0bbe";a:3:{s:4:"type";s:6:"number";s:5:"label";s:16:"Number of Adults";s:7:"options";s:0:"";}s:13:"54e05e7a7ff9e";a:3:{s:4:"type";s:6:"number";s:5:"label";s:19:"Number of Childrens";s:7:"options";s:0:"";}s:13:"54e05e8cd3834";a:3:{s:4:"type";s:7:"message";s:5:"label";s:7:"Message";s:7:"options";s:0:"";}}}s:13:"question_form";a:3:{s:11:"description";s:116:"Clear your doubts !!\r\nHere you can ask any question related to this tour and you can customize you tour as you wish ";s:7:"message";s:37:"Thank you!!\r\nWe will back to you soon";s:6:"fields";a:5:{s:13:"54d735326da0d";a:3:{s:4:"type";s:4:"text";s:5:"label";s:10:"First Name";s:7:"options";s:0:"";}s:13:"54e05f57f33b8";a:3:{s:4:"type";s:4:"text";s:5:"label";s:9:"Last Name";s:7:"options";s:0:"";}s:13:"54e05f6d29598";a:3:{s:4:"type";s:5:"email";s:5:"label";s:13:"Email Address";s:7:"options";s:0:"";}s:13:"54e05f7972fcb";a:3:{s:4:"type";s:4:"text";s:5:"label";s:7:"Subject";s:7:"options";s:0:"";}s:13:"54e05f87dd4ed";a:3:{s:4:"type";s:7:"message";s:5:"label";s:7:"Message";s:7:"options";s:0:"";}}}s:12:"contact_form";a:3:{s:11:"description";s:26:"Ask any question you have ";s:7:"message";s:38:"Thank you !!\r\nWe will back to you soon";s:6:"fields";a:5:{s:13:"54d735327719c";a:3:{s:4:"type";s:4:"text";s:5:"label";s:10:"First Name";s:7:"options";s:0:"";}s:13:"54e05ff465674";a:3:{s:4:"type";s:4:"text";s:5:"label";s:9:"Last Name";s:7:"options";s:0:"";}s:13:"54e05ffd72bc8";a:3:{s:4:"type";s:5:"email";s:5:"label";s:13:"Email Address";s:7:"options";s:0:"";}s:13:"54e05ffc91618";a:3:{s:4:"type";s:4:"text";s:5:"label";s:7:"Subject";s:7:"options";s:0:"";}s:13:"54e0601299ecf";a:3:{s:4:"type";s:7:"message";s:5:"label";s:7:"Message";s:7:"options";s:0:"";}}}}', 'yes'),
(147, 'recently_activated', 'a:0:{}', 'yes'),
(178, '_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a', '1423999371', 'yes'),
(179, '_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:"4916";}s:4:"post";a:3:{s:4:"name";s:4:"Post";s:4:"slug";s:4:"post";s:5:"count";s:4:"3078";}s:6:"plugin";a:3:{s:4:"name";s:6:"plugin";s:4:"slug";s:6:"plugin";s:5:"count";s:4:"3022";}s:5:"admin";a:3:{s:4:"name";s:5:"admin";s:4:"slug";s:5:"admin";s:5:"count";s:4:"2529";}s:5:"posts";a:3:{s:4:"name";s:5:"posts";s:4:"slug";s:5:"posts";s:5:"count";s:4:"2346";}s:7:"sidebar";a:3:{s:4:"name";s:7:"sidebar";s:4:"slug";s:7:"sidebar";s:5:"count";s:4:"1892";}s:6:"google";a:3:{s:4:"name";s:6:"google";s:4:"slug";s:6:"google";s:5:"count";s:4:"1729";}s:7:"twitter";a:3:{s:4:"name";s:7:"twitter";s:4:"slug";s:7:"twitter";s:5:"count";s:4:"1680";}s:9:"shortcode";a:3:{s:4:"name";s:9:"shortcode";s:4:"slug";s:9:"shortcode";s:5:"count";s:4:"1678";}s:6:"images";a:3:{s:4:"name";s:6:"images";s:4:"slug";s:6:"images";s:5:"count";s:4:"1676";}s:8:"comments";a:3:{s:4:"name";s:8:"comments";s:4:"slug";s:8:"comments";s:5:"count";s:4:"1612";}s:4:"page";a:3:{s:4:"name";s:4:"page";s:4:"slug";s:4:"page";s:5:"count";s:4:"1609";}s:5:"image";a:3:{s:4:"name";s:5:"image";s:4:"slug";s:5:"image";s:5:"count";s:4:"1505";}s:8:"facebook";a:3:{s:4:"name";s:8:"Facebook";s:4:"slug";s:8:"facebook";s:5:"count";s:4:"1322";}s:3:"seo";a:3:{s:4:"name";s:3:"seo";s:4:"slug";s:3:"seo";s:5:"count";s:4:"1276";}s:9:"wordpress";a:3:{s:4:"name";s:9:"wordpress";s:4:"slug";s:9:"wordpress";s:5:"count";s:4:"1175";}s:5:"links";a:3:{s:4:"name";s:5:"links";s:4:"slug";s:5:"links";s:5:"count";s:4:"1171";}s:7:"gallery";a:3:{s:4:"name";s:7:"gallery";s:4:"slug";s:7:"gallery";s:5:"count";s:4:"1083";}s:6:"social";a:3:{s:4:"name";s:6:"social";s:4:"slug";s:6:"social";s:5:"count";s:4:"1079";}s:5:"email";a:3:{s:4:"name";s:5:"email";s:4:"slug";s:5:"email";s:5:"count";s:3:"918";}s:7:"widgets";a:3:{s:4:"name";s:7:"widgets";s:4:"slug";s:7:"widgets";s:5:"count";s:3:"905";}s:5:"pages";a:3:{s:4:"name";s:5:"pages";s:4:"slug";s:5:"pages";s:5:"count";s:3:"874";}s:6:"jquery";a:3:{s:4:"name";s:6:"jquery";s:4:"slug";s:6:"jquery";s:5:"count";s:3:"843";}s:3:"rss";a:3:{s:4:"name";s:3:"rss";s:4:"slug";s:3:"rss";s:5:"count";s:3:"837";}s:5:"media";a:3:{s:4:"name";s:5:"media";s:4:"slug";s:5:"media";s:5:"count";s:3:"794";}s:5:"video";a:3:{s:4:"name";s:5:"video";s:4:"slug";s:5:"video";s:5:"count";s:3:"758";}s:4:"ajax";a:3:{s:4:"name";s:4:"AJAX";s:4:"slug";s:4:"ajax";s:5:"count";s:3:"748";}s:7:"content";a:3:{s:4:"name";s:7:"content";s:4:"slug";s:7:"content";s:5:"count";s:3:"709";}s:11:"woocommerce";a:3:{s:4:"name";s:11:"woocommerce";s:4:"slug";s:11:"woocommerce";s:5:"count";s:3:"700";}s:10:"javascript";a:3:{s:4:"name";s:10:"javascript";s:4:"slug";s:10:"javascript";s:5:"count";s:3:"692";}s:5:"login";a:3:{s:4:"name";s:5:"login";s:4:"slug";s:5:"login";s:5:"count";s:3:"682";}s:5:"photo";a:3:{s:4:"name";s:5:"photo";s:4:"slug";s:5:"photo";s:5:"count";s:3:"657";}s:10:"buddypress";a:3:{s:4:"name";s:10:"buddypress";s:4:"slug";s:10:"buddypress";s:5:"count";s:3:"649";}s:4:"feed";a:3:{s:4:"name";s:4:"feed";s:4:"slug";s:4:"feed";s:5:"count";s:3:"642";}s:4:"link";a:3:{s:4:"name";s:4:"link";s:4:"slug";s:4:"link";s:5:"count";s:3:"642";}s:9:"ecommerce";a:3:{s:4:"name";s:9:"ecommerce";s:4:"slug";s:9:"ecommerce";s:5:"count";s:3:"623";}s:6:"photos";a:3:{s:4:"name";s:6:"photos";s:4:"slug";s:6:"photos";s:5:"count";s:3:"620";}s:7:"youtube";a:3:{s:4:"name";s:7:"youtube";s:4:"slug";s:7:"youtube";s:5:"count";s:3:"605";}s:5:"share";a:3:{s:4:"name";s:5:"Share";s:4:"slug";s:5:"share";s:5:"count";s:3:"600";}s:4:"spam";a:3:{s:4:"name";s:4:"spam";s:4:"slug";s:4:"spam";s:5:"count";s:3:"593";}}', 'yes'),
(180, 'ls-plugin-version', '5.2.0', 'yes'),
(181, 'ls-db-version', '5.0.0', 'yes'),
(182, 'ls-installed', '1', 'yes'),
(183, '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'),
(184, 'ls-date-installed', '1423988604', 'yes'),
(186, 'nav_menu_options', 'a:2:{i:0;b:0;s:8:"auto_add";a:0:{}}', 'yes'),
(189, 'themex_logo_type', 'image', 'yes'),
(190, 'themex_date_format', 'd/m/Y', 'yes'),
(191, 'themex_copyright_text', '© SIAXE Technologies', 'yes'),
(192, 'themex_primary_color', '#FF9000', 'yes'),
(193, 'themex_secondary_color', '#FFFFFF', 'yes'),
(194, 'themex_background_type', 'default', 'yes'),
(195, 'themex_background_fullwidth', 'false', 'yes'),
(196, 'themex_heading_font', 'Signika', 'yes'),
(197, 'themex_content_font', 'Open Sans', 'yes'),
(198, 'themex_slider_type', 'fade', 'yes'),
(199, 'themex_slider_speed', '400', 'yes'),
(200, 'themex_tours_view', 'grid', 'yes'),
(201, 'themex_tours_limit', '12', 'yes'),
(202, 'themex_tours_currency', 'LKR', 'yes'),
(203, 'themex_tours_currency_position', 'left', 'yes'),
(204, 'themex_tours_related_order', 'type', 'yes'),
(205, 'themex_tours_related', 'false', 'yes'),
(206, 'themex_tours_booking', 'false', 'yes'),
(207, 'themex_tours_questions', 'false', 'yes'),
(208, 'themex_galleries_limit', '12', 'yes'),
(209, 'themex_galleries_caption', 'visible', 'yes'),
(210, 'themex_search_form_destination', 'false', 'yes'),
(211, 'themex_search_form_type', 'false', 'yes'),
(212, 'themex_search_form_date', 'false', 'yes'),
(213, 'themex_search_form_price', 'false', 'yes'),
(214, 'themex_booking_payment', 'false', 'yes'),
(216, 'themex_booking_language', 'AU', 'yes'),
(217, 'themex_booking_currency', 'AUD', 'yes'),
(219, 'themex_booking_form', 'false', 'yes'),
(220, 'themex_question_form', 'false', 'yes'),
(221, 'themex_contact_form', 'false', 'yes'),
(222, 'themex_themex_widgetiser', 'false', 'yes'),
(229, '_site_transient_timeout_popular_importers_en_US', '1424168098', 'yes'),
(230, '_site_transient_popular_importers_en_US', 'a:2:{s:9:"importers";a:8:{s:7:"blogger";a:4:{s:4:"name";s:7:"Blogger";s:11:"description";s:86:"Install the Blogger importer to import posts, comments, and users from a Blogger blog.";s:11:"plugin-slug";s:16:"blogger-importer";s:11:"importer-id";s:7:"blogger";}s:9:"wpcat2tag";a:4:{s:4:"name";s:29:"Categories and Tags Converter";s:11:"description";s:109:"Install the category/tag converter to convert existing categories to tags or tags to categories, selectively.";s:11:"plugin-slug";s:18:"wpcat2tag-importer";s:11:"importer-id";s:9:"wpcat2tag";}s:11:"livejournal";a:4:{s:4:"name";s:11:"LiveJournal";s:11:"description";s:82:"Install the LiveJournal importer to import posts from LiveJournal using their API.";s:11:"plugin-slug";s:20:"livejournal-importer";s:11:"importer-id";s:11:"livejournal";}s:11:"movabletype";a:4:{s:4:"name";s:24:"Movable Type and TypePad";s:11:"description";s:99:"Install the Movable Type importer to import posts and comments from a Movable Type or TypePad blog.";s:11:"plugin-slug";s:20:"movabletype-importer";s:11:"importer-id";s:2:"mt";}s:4:"opml";a:4:{s:4:"name";s:8:"Blogroll";s:11:"description";s:61:"Install the blogroll importer to import links in OPML format.";s:11:"plugin-slug";s:13:"opml-importer";s:11:"importer-id";s:4:"opml";}s:3:"rss";a:4:{s:4:"name";s:3:"RSS";s:11:"description";s:58:"Install the RSS importer to import posts from an RSS feed.";s:11:"plugin-slug";s:12:"rss-importer";s:11:"importer-id";s:3:"rss";}s:6:"tumblr";a:4:{s:4:"name";s:6:"Tumblr";s:11:"description";s:84:"Install the Tumblr importer to import posts & media from Tumblr using their API.";s:11:"plugin-slug";s:15:"tumblr-importer";s:11:"importer-id";s:6:"tumblr";}s:9:"wordpress";a:4:{s:4:"name";s:9:"WordPress";s:11:"description";s:130:"Install the WordPress importer to import posts, pages, comments, custom fields, categories, and tags from a WordPress export file.";s:11:"plugin-slug";s:18:"wordpress-importer";s:11:"importer-id";s:9:"wordpress";}}s:10:"translated";b:0;}', 'yes'),
(239, 'category_children', 'a:0:{}', 'yes'),
(241, 'tour_type_children', 'a:0:{}', 'yes'),
(242, 'gallery_category_children', 'a:0:{}', 'yes'),
(271, '_site_transient_timeout_browser_f7f054dd901dc948700e5ee4079db0f7', '1424607498', 'yes'),
(273, '_site_transient_browser_f7f054dd901dc948700e5ee4079db0f7', 'a:9:{s:8:"platform";s:7:"Windows";s:4:"name";s:6:"Chrome";s:7:"version";s:13:"40.0.2214.111";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'),
(275, '_site_transient_timeout_available_translations', '1424013505', 'yes'),
(276, '_site_transient_available_translations', 'a:49:{s:2:"ar";a:8:{s:8:"language";s:2:"ar";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-17 19:01:24";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.1/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:2:"az";a:8:{s:8:"language";s:2:"az";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-27 15:23:28";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.1/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.1";s:7:"updated";s:19:"2015-01-17 19:05:14";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.1/bg_BG.zip";s:3:"iso";a:2:{i:1;s:2:"bg";i:2;s:3:"bul";}s:7:"strings";a:1:{s:8:"continue";s:22:"Продължение";}}s:5:"bs_BA";a:8:{s:8:"language";s:5:"bs_BA";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-08 17:39:56";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.1/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.1";s:7:"updated";s:19:"2015-01-19 03:45:15";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.1/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.1";s:7:"updated";s:19:"2015-01-09 11:12:57";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.1/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.1";s:7:"updated";s:19:"2015-01-29 08:44:51";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.1/da_DK.zip";s:3:"iso";a:2:{i:1;s:2:"da";i:2;s:3:"dan";}s:7:"strings";a:1:{s:8:"continue";s:12:"Fortsæt";}}s:5:"de_CH";a:8:{s:8:"language";s:5:"de_CH";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-02-04 12:59:40";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.1/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:5:"de_DE";a:8:{s:8:"language";s:5:"de_DE";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-02-13 12:45:29";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.1/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:2:"el";a:8:{s:8:"language";s:2:"el";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-29 22:16:49";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.1/el.zip";s:3:"iso";a:2:{i:1;s:2:"el";i:2;s:3:"ell";}s:7:"strings";a:1:{s:8:"continue";s:16:"Συνέχεια";}}s:5:"en_GB";a:8:{s:8:"language";s:5:"en_GB";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-17 20:53:36";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.1/en_GB.zip";s:3:"iso";a:3:{i:1;s:2:"en";i:2;s:3:"eng";i:3;s:3:"eng";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continue";}}s:5:"en_AU";a:8:{s:8:"language";s:5:"en_AU";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-02-05 09:59:30";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.1/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_CA";a:8:{s:8:"language";s:5:"en_CA";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-28 01:01:02";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.1/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.1";s:7:"updated";s:19:"2015-01-08 22:46:58";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.1/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_PE";a:8:{s:8:"language";s:5:"es_PE";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2014-12-19 08:14:32";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.1/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:5:"es_ES";a:8:{s:8:"language";s:5:"es_ES";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-17 21:05:39";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.1/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_MX";a:8:{s:8:"language";s:5:"es_MX";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-02-05 15:18:10";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.1/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_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:2:"eu";a:8:{s:8:"language";s:2:"eu";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-09 12:20:08";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.1/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.1";s:7:"updated";s:19:"2015-01-23 14:29:09";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.1/fa_IR.zip";s:3:"iso";a:2:{i:1;s:2:"fa";i:2;s:3:"fas";}s:7:"strings";a:1:{s:8:"continue";s:10:"ادامه";}}s:2:"fi";a:8:{s:8:"language";s:2:"fi";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2014-12-17 07:01:16";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.1/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.1";s:7:"updated";s:19:"2015-01-17 19:01:48";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.1/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:2:"gd";a:8:{s:8:"language";s:2:"gd";s:7:"version";s:3:"4.0";s:7:"updated";s:19:"2014-09-05 17:37:43";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.0/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.1";s:7:"updated";s:19:"2015-01-17 18:37:43";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.1/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:3:"4.1";s:7:"updated";s:19:"2015-02-12 01:05:09";s:12:"english_name";s:8:"Hazaragi";s:11:"native_name";s:15:"هزاره گی";s:7:"package";s:60:"https://downloads.wordpress.org/translation/core/4.1/haz.zip";s:3:"iso";a:1:{i:2;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.1";s:7:"updated";s:19:"2015-01-29 14:11:31";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.1/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.1";s:7:"updated";s:19:"2014-12-19 14:39:57";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.1/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.1";s:7:"updated";s:19:"2015-01-07 11:10:15";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.1/hu_HU.zip";s:3:"iso";a:2:{i:1;s:2:"hu";i:2;s:3:"hun";}s:7:"strings";a:1:{s:8:"continue";s:7:"Tovább";}}s:5:"id_ID";a:8:{s:8:"language";s:5:"id_ID";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-31 07:30:24";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.1/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:"it_IT";a:8:{s:8:"language";s:5:"it_IT";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-02-12 09:29:09";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.1/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.1";s:7:"updated";s:19:"2015-01-29 10:53:40";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.1/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.1";s:7:"updated";s:19:"2015-01-21 03:05:42";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.1/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.1";s:7:"updated";s:19:"2015-02-08 00:36:50";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.1/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:3:"4.1";s:7:"updated";s:19:"2014-12-21 19:07:31";s:12:"english_name";s:7:"Burmese";s:11:"native_name";s:15:"ဗမာစာ";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/4.1/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.1";s:7:"updated";s:19:"2015-01-10 16:35:13";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.1/nb_NO.zip";s:3:"iso";a:2:{i:1;s:2:"nb";i:2;s:3:"nob";}s:7:"strings";a:1:{s:8:"continue";s:8:"Fortsett";}}s:5:"nl_NL";a:8:{s:8:"language";s:5:"nl_NL";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-23 08:38:00";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.1/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:"pl_PL";a:8:{s:8:"language";s:5:"pl_PL";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-02-08 21:24:15";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.1/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:5:"pt_PT";a:8:{s:8:"language";s:5:"pt_PT";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-02-02 11:59:53";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.1/pt_PT.zip";s:3:"iso";a:1:{i:1;s:2:"pt";}s:7:"strings";a:1:{s:8:"continue";s:9:"Continuar";}}s:5:"pt_BR";a:8:{s:8:"language";s:5:"pt_BR";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-21 11:05:23";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.1/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:"ro_RO";a:8:{s:8:"language";s:5:"ro_RO";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-02-11 09:08:03";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.1/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.1";s:7:"updated";s:19:"2015-01-17 18:16:58";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.1/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.1";s:7:"updated";s:19:"2015-01-12 19:18:28";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.1/sk_SK.zip";s:3:"iso";a:2:{i:1;s:2:"sk";i:2;s:3:"slk";}s:7:"strings";a:1:{s:8:"continue";s:12:"Pokračovať";}}s:5:"sl_SI";a:8:{s:8:"language";s:5:"sl_SI";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-13 22:38:48";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.1/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:5:"sr_RS";a:8:{s:8:"language";s:5:"sr_RS";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2014-12-18 19:08:01";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.1/sr_RS.zip";s:3:"iso";a:2:{i:1;s:2:"sr";i:2;s:3:"srp";}s:7:"strings";a:1:{s:8:"continue";s:14:"Настави";}}s:5:"sv_SE";a:8:{s:8:"language";s:5:"sv_SE";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-29 09:41:07";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.1/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.1";s:7:"updated";s:19:"2015-02-11 11:46:46";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.1/th.zip";s:3:"iso";a:2:{i:1;s:2:"th";i:2;s:3:"tha";}s:7:"strings";a:1:{s:8:"continue";s:15:"ต่อไป";}}s:5:"tr_TR";a:8:{s:8:"language";s:5:"tr_TR";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2015-01-19 08:42:08";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.1/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:"zh_CN";a:8:{s:8:"language";s:5:"zh_CN";s:7:"version";s:3:"4.1";s:7:"updated";s:19:"2014-12-26 02:21:02";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.1/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.1";s:7:"updated";s:19:"2015-01-08 03:46:32";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.1/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'),
(314, 'tour_destination_children', 'a:0:{}', 'yes'),
(337, '_site_transient_timeout_theme_roots', '1427541703', 'yes'),
(338, '_site_transient_theme_roots', 'a:5:{s:6:"images";s:7:"/themes";s:6:"midway";s:7:"/themes";s:13:"twentyfifteen";s:7:"/themes";s:14:"twentyfourteen";s:7:"/themes";s:14:"twentythirteen";s:7:"/themes";}', 'yes'),
(339, '_site_transient_update_core', 'O:8:"stdClass":4:{s:7:"updates";a:1:{i:0;O:8:"stdClass":10:{s:8:"response";s:6:"latest";s:8:"download";s:59:"https://downloads.wordpress.org/release/wordpress-4.1.1.zip";s:6:"locale";s:5:"en_US";s:8:"packages";O:8:"stdClass":5:{s:4:"full";s:59:"https://downloads.wordpress.org/release/wordpress-4.1.1.zip";s:10:"no_content";s:70:"https://downloads.wordpress.org/release/wordpress-4.1.1-no-content.zip";s:11:"new_bundled";s:71:"https://downloads.wordpress.org/release/wordpress-4.1.1-new-bundled.zip";s:7:"partial";b:0;s:8:"rollback";b:0;}s:7:"current";s:5:"4.1.1";s:7:"version";s:5:"4.1.1";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:1427539920;s:15:"version_checked";s:5:"4.1.1";s:12:"translations";a:0:{}}', 'yes'),
(340, '_site_transient_update_plugins', 'O:8:"stdClass":4:{s:12:"last_checked";i:1427539924;s:8:"response";a:1:{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.1";s:3:"url";s:38:"https://wordpress.org/plugins/akismet/";s:7:"package";s:56:"https://downloads.wordpress.org/plugin/akismet.3.1.1.zip";}}s:12:"translations";a:0:{}s:9:"no_update";a:2:{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:41:"wordpress-importer/wordpress-importer.php";O:8:"stdClass":6:{s:2:"id";s:5:"14975";s:4:"slug";s:18:"wordpress-importer";s:6:"plugin";s:41:"wordpress-importer/wordpress-importer.php";s:11:"new_version";s:5:"0.6.1";s:3:"url";s:49:"https://wordpress.org/plugins/wordpress-importer/";s:7:"package";s:67:"https://downloads.wordpress.org/plugin/wordpress-importer.0.6.1.zip";}}}', 'yes'),
(341, 'auto_core_update_notified', 'a:4:{s:4:"type";s:7:"success";s:5:"email";s:24:"[email protected]";s:7:"version";s:5:"4.1.1";s:9:"timestamp";i:1427539923;}', 'yes'),
(342, '_site_transient_timeout_browser_fdd25044fa201803066b63f120cd21ed', '1428144955', 'yes'),
(343, '_site_transient_browser_fdd25044fa201803066b63f120cd21ed', 'a:9:{s:8:"platform";s:7:"Windows";s:4:"name";s:6:"Chrome";s:7:"version";s:13:"41.0.2272.101";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'),
(344, '_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1427583361', 'no');
INSERT INTO `travel2_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(345, '_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:"Thu, 26 Mar 2015 19:24:19 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s: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.2-beta3-31915";s:7:"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 ";s:7:"attribs";a: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.2 Beta 3";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:56:"https://wordpress.org/news/2015/03/wordpress-4-2-beta-3/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:65:"https://wordpress.org/news/2015/03/wordpress-4-2-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:"Thu, 26 Mar 2015 18:32: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: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.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=3522";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.2 Beta 3 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.2, 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:11:"Drew Jaynes";s: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:2986:"<p>WordPress 4.2 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.2, 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.2-beta3.zip">download the beta here</a> (zip).</p>\n<p>For more information about what’s new in version 4.2, check out the <a href="https://wordpress.org/news/2015/03/wordpress-4-2-beta-1/">Beta 1</a> and <a href="https://wordpress.org/news/2015/03/wordpress-4-2-beta-2/">Beta 2</a> blog posts. Some of the changes in Beta 3 include:</p>\n<ul>\n<li>Removed <strong>Shiny Installs</strong> functionality due to concerns about the activation workflow. Please test the remaining “Shiny Updates” functionality from both the Plugins > Add New and Plugins screens to ensure in-line updating still works as well as before.</li>\n<li>Fixed an issue with the <strong>Comments Quick Edit</strong> layout breaking on smaller screens. Please test on your mobile devices.</li>\n<li>Improved <strong>accessibility of login screen errors</strong>. Screen reader users: please let us know if you encounter any issues.</li>\n<li>Refined the <strong>emoji compatibility</strong> script to only load on the front- and back-end if the browser requires it. If you’re using a legacy web browser, please test.</li>\n<li>Fixed several issues in <strong>Press This</strong> with inserted images being improperly linked to locations other than the source site. Go ahead, “press” a site with images on the page and tell us if the image links aren’t working as you’d expect.</li>\n<li>Standardized the <strong>time display format</strong> in a variety of admin screens, switching to 24-hour notation where a.m. or p.m. are not specified. Please let us know if you notice you notice anything amiss!</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=31901&stop_rev=31835&limit=100">more than 65 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.2">everything we’ve fixed</a>.</p>\n<p><em>Emoji loader</em><br />\n<em>“Shiny Updates” still stand firm</em><br />\n<em>Beta 3, please 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/03/wordpress-4-2-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: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:20:"WordPress 4.2 Beta 2";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:56:"https://wordpress.org/news/2015/03/wordpress-4-2-beta-2/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:65:"https://wordpress.org/news/2015/03/wordpress-4-2-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:"Thu, 19 Mar 2015 19:30:08 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a: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.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=3498";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.2 Beta 2 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.2, 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:11:"Drew Jaynes";s: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:2326:"<p>WordPress 4.2 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.2, 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.2-beta2.zip">download the beta here</a> (zip).</p>\n<p>For more information about what’s new in version 4.2, <a href="https://wordpress.org/news/2015/03/wordpress-4-2-beta-1/">check out the Beta 1 blog post</a>. Some of the changes in Beta 2 include:</p>\n<ul>\n<li>Added support for entering FTP and SSH credentials when <strong>updating plugins in-place</strong>. FTP and SSH users, please test!</li>\n<li><strong>Improved cross-browser support for emoji</strong> throughout WordPress. If you’re using an older web browser, please tell us if you have problems using emoji.</li>\n<li>Further <strong>refined Press This authoring</strong> with auto-embedded media and better content scanning. We’d love to know how auto-embeds work for you.</li>\n<li>Added a constructor and improved method consistency in <code>WP_Comment_Query</code>. Developers: if you’re extending <code>WP_Comment_Query</code>, 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=31834&stop_rev=31763&limit=100">more than 70 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.2">everything we’ve fixed</a>.</p>\n<p><em>Test some emoji</em><br />\n<em>FTP and SSH</em><br />\n<em>Let’s “Press” some embeds!</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/03/wordpress-4-2-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: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:20:"WordPress 4.2 Beta 1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:56:"https://wordpress.org/news/2015/03/wordpress-4-2-beta-1/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:65:"https://wordpress.org/news/2015/03/wordpress-4-2-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, 12 Mar 2015 23:22: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: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.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=3446";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.2 Beta 1 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.2, 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:11:"Drew Jaynes";s: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:4293:"<p>WordPress 4.2 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.2, 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.2-beta1.zip">download the beta here</a> (zip).</p>\n<p>4.2 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>Press This</strong> has been completely revamped to make sharing content from around the web easier than ever. The new workflow is mobile friendly, and we’d love for you to try it out on all of your devices. Navigate to the Tools screen in your WordPress backend to get started (<a href="https://core.trac.wordpress.org/ticket/31373">#31373</a>). </li>\n<li><strong>Browsing and switching installed themes</strong> has been added to the Customizer to make switching faster and more convenient. 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/31303">#31303</a>).</li>\n<li>The workflow for <strong>updating and installing plugins</strong> just got more intuitive with the ability to install or update in-place from the Plugins screens. Try it out and let us know what you think! (<a href="https://core.trac.wordpress.org/ticket/29820">#29820</a>)</li>\n<li>If you felt like <strong>emoji</strong> were starkly missing from your content toolbox, worry no more. We’ve added emoji support nearly everywhere, even post slugs <img src="https://s0.wp.com/wp-content/mu-plugins/emoji/twemoji/72x72/1f44d.png" class="wp-smiley" style="height: 1em; max-height: 1em;" /> (<a href="https://core.trac.wordpress.org/ticket/31242">#31242</a>).</li>\n</ul>\n<p><strong>Developers</strong>: There have been a lot 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/02/16/taxonomy-term-splitting-in-4-2-a-developer-guide/">now be split</a> into separate terms when one of them is updated. Please let us know if you hit any snags (<a href="https://core.trac.wordpress.org/ticket/5809/">#5809</a>).</li>\n<li>New <code>wp.a11y.speak()</code> functionality helps your JavaScript talk to screen readers to better inform impaired users what’s happening on-screen. Try it out in your plugin or theme and let us know if you notice any adverse affects (<a href="https://core.trac.wordpress.org/ticket/31368/">#31368</a>).</li>\n<li>Named clause support has been added to <code>WP_Query</code>, <code>WP_Comment_Query</code>, and <code>WP_User_Query</code>, allowing specific <code>meta_query</code> clauses to be used with <code>orderby</code>. If you have any complex queries, please test them (<a href="https://core.trac.wordpress.org/ticket/31045/">#31045</a>, <a href="https://core.trac.wordpress.org/ticket/31265/">#31265</a>).</li>\n</ul>\n<p>If you want a more in-depth view of what changes have made it into 4.2, <a href="https://make.wordpress.org/core/tag/week-in-core/">check out the weekly review 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.2">everything we’ve fixed</a> so far.</p>\n<p>Happy testing!</p>\n<p><em>Press This: switch a theme</em><br />\n<em>Save time installing plugins</em><br />\n<em>Testing makes us</em> <img src="https://s0.wp.com/wp-content/mu-plugins/emoji/twemoji/72x72/1f603.png" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s: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/03/wordpress-4-2-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:3;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:35:"WordPress 4.1.1 Maintenance Release";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:51:"https://wordpress.org/news/2015/02/wordpress-4-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:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:60:"https://wordpress.org/news/2015/02/wordpress-4-1-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:"Wed, 18 Feb 2015 23:40: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: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.1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3436";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:345:"WordPress 4.1.1 is now available. This maintenance release fixes 21 bugs in version 4.1. Some of you may have been waiting to update to the latest version until now, but there just wasn’t much to address. WordPress 4.1 was a smooth-sailing release and has seen more than 14 million downloads in the last two months. For a full […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"Andrew Nacin";s: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:3086:"<p>WordPress 4.1.1 is now available. This maintenance release fixes 21 bugs in version 4.1.</p>\n<p>Some of you may have been waiting to update to the latest version until now, but there just wasn’t much to address. WordPress 4.1 was a smooth-sailing release and has seen more than 14 million downloads in the last two months.</p>\n<p class="p1"><span class="s1">For a full list of changes, consult the <a href="https://core.trac.wordpress.org/query?milestone=4.1.1&group=severity&order=component">list of tickets</a> and the <a href="https://core.trac.wordpress.org/log/branches/4.1?stop_rev=30974&rev=31474">changelog</a>. We fixed one annoying issue where a tag and a category with the same name could get muddled and prevent each other from being updated.</span></p>\n<p>If you are one of the millions already running WordPress 4.1 and your site, we’ve started rolling out automatic background updates for 4.1.1 for sites <a href="https://wordpress.org/plugins/background-update-tester/">that support them</a>. Otherwise, <a href="https://wordpress.org/download/">download WordPress 4.1.1</a> or visit <strong>Dashboard → Updates</strong> and simply click “Update Now.”</p>\n<p>Thanks to everyone who contributed to 4.1.1: <a href="https://profiles.wordpress.org/afercia">Andrea Fercia</a>, <a href="https://profiles.wordpress.org/boonebgorges">Boone Gorges</a>, <a href="https://profiles.wordpress.org/chrico">ChriCo</a>, <a href="https://profiles.wordpress.org/dd32">Dion Hulse</a>, <a href="https://profiles.wordpress.org/dlh">David Herrera</a>, <a href="https://profiles.wordpress.org/drewapicture">Drew Jaynes</a>, <a href="https://profiles.wordpress.org/hissy">Takuro Hishikawa</a>, <a href="https://profiles.wordpress.org/ipm-frommen">Thorsten Frommen</a>, <a href="https://profiles.wordpress.org/iseulde">Iseulde</a>, <a href="https://profiles.wordpress.org/johnbillion">John Blackbourn</a>, <a href="https://profiles.wordpress.org/jorbin">Aaron Jorbin</a>, <a href="https://profiles.wordpress.org/mattyrob">mattyrob</a>, <a href="https://profiles.wordpress.org/obenland">Konstantin Obenland</a>, <a href="https://profiles.wordpress.org/ocean90">Dominik Schilling</a>, <a href="https://profiles.wordpress.org/sergeybiryukov">Sergey Biryukov</a>, <a href="https://profiles.wordpress.org/sippis">sippis</a>, <a href="https://profiles.wordpress.org/tmatsuur">tmatsuur</a>, <a href="https://profiles.wordpress.org/tyxla">Marin Atanasov</a>, <a href="https://profiles.wordpress.org/valendesigns">Derek Herman</a>, and <a href="https://profiles.wordpress.org/westonruter">Weston Ruter</a>.</p>\n<p>It is with both great honor and sadness we also recognize Kim Parsell as a contributor to this release and a <a href="https://make.wordpress.org/docs/2015/01/05/rip-kim-parsell/">truly beloved member of the community</a> until her untimely passing in December. The project is working to establish a conference travel <a href="https://make.wordpress.org/community/2015/01/15/remembering-kim-parsell/">scholarship</a> in her memory. We miss you, Kim.</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/02/wordpress-4-1-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:4;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:25:"WordPress 4.1 “Dinah”";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:41:"https://wordpress.org/news/2014/12/dinah/";s: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:50:"https://wordpress.org/news/2014/12/dinah/#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, 18 Dec 2014 18:35:05 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:3:"4.1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3386";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:360:"Version 4.1 of WordPress, named “Dinah” in honor of jazz singer Dinah Washington, is available for download or update in your WordPress dashboard. New features in WordPress 4.1 help you focus on your writing, and the new default theme lets you show it off in style. Introducing Twenty Fifteen Our newest default theme, Twenty Fifteen, is […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:24561:"<p>Version 4.1 of WordPress, named “Dinah” in honor of jazz singer <a href="http://wikipedia.org/wiki/Dinah_Washington">Dinah Washington</a>, is available for download or update in your WordPress dashboard. New features in WordPress 4.1 help you focus on your writing, and the new default theme lets you show it off in style.</p>\n<hr />\n<h2 style="text-align: center">Introducing Twenty Fifteen</h2>\n<p><img class="aligncenter size-large wp-image-3389" src="https://wordpress.org/news/files/2014/12/2015-laptop-1024x533.png" alt="2015-laptop" width="692" height="360" /></p>\n<h3>Our newest default theme, Twenty Fifteen, is a blog-focused theme designed for clarity.</h3>\n<p><img class="alignright wp-image-3426 size-medium" src="https://wordpress.org/news/files/2014/12/2015-phones-languages-small-300x250.png" alt="" width="300" height="250" />Twenty Fifteen has flawless language support, with help from <a href="https://www.google.com/get/noto/">Google’s Noto font family</a>.</p>\n<p>The straightforward typography is readable on any screen size.</p>\n<p>Your content always takes center stage, whether viewed on a phone, tablet, laptop, or desktop computer.</p>\n<hr />\n<h2 style="text-align: center">Distraction-free writing</h2>\n<p><img class="aligncenter size-large wp-image-3392" src="https://wordpress.org/news/files/2014/12/dfw-screen-1024x614.png" alt="dfw-screen" width="692" height="415" /></p>\n<h3 style="text-align: center"><em>Just write.</em></h3>\n<p>Sometimes, you just need to concentrate on putting your thoughts into words. Try turning on <strong>distraction-free writing mode</strong>. When you start typing, all the distractions will fade away, letting you focus solely on your writing. All your editing tools instantly return when you need them.</p>\n<hr />\n<h2 style="text-align: center">The Finer Points</h2>\n<h5><strong><img class="alignleft wp-image-3405" src="https://wordpress.org/news/files/2014/12/icon-language2.png" alt="" width="80" height="80" /></strong>Choose a language</h5>\n<p>Right now, WordPress 4.1 is already translated into over forty languages, with more always in progress. You can switch to any translation on the General Settings screen.</p>\n<h5><strong><img class="alignleft wp-image-3406" src="https://wordpress.org/news/files/2014/12/icon-logout1.png" alt="" width="80" height="80" /></strong>Log out everywhere</h5>\n<p>If you’ve ever worried you forgot to sign out from a shared computer, you can now go to your profile and log out everywhere.</p>\n<h5><strong><img class="alignleft wp-image-3407" src="https://wordpress.org/news/files/2014/12/icon-vine1.png" alt="" width="80" height="80" /></strong>Vine embeds</h5>\n<p>Embedding videos from Vine is as simple as pasting a URL onto its own line in a post. See the <a href="https://codex.wordpress.org/Embeds">full list</a> of supported embeds.</p>\n<h5><strong><img class="alignleft wp-image-3408" src="https://wordpress.org/news/files/2014/12/icon-recommended1.png" alt="" width="80" height="80" /></strong>Plugin recommendations</h5>\n<p>The plugin installer suggests plugins for you to try. Recommendations are based on the plugins you and other users have installed.</p>\n<hr />\n<h2 style="text-align: center">Under the Hood</h2>\n<h5>Complex Queries</h5>\n<p>Metadata, date, and term queries now support advanced conditional logic, like nested clauses and multiple operators — <code>A AND ( B OR C )</code>.</p>\n<h5>Customizer API</h5>\n<p>The customizer now supports conditionally showing panels and sections based on the page being previewed.</p>\n<h5><code><title></code> tags in themes</h5>\n<p><code>add_theme_support( ''title-tag'' )</code> tells WordPress to handle the complexities of document titles.</p>\n<h5>Developer Reference</h5>\n<p>Continued improvements to inline code documentation have made the <a href="https://developer.wordpress.org/reference/">developer reference</a> more complete than ever.</p>\n<hr />\n<h2 style="text-align: center">The Choir</h2>\n<p>This release was led by <a href="https://profiles.wordpress.org/johnbillion">John Blackbourn</a>, with the help of these awesome folks. Check out some of their profiles while listening to Dinah Washington on the music service of your choice:</p>\n<a href="https://profiles.wordpress.org/aaroncampbell">Aaron D. Campbell</a>, <a href="https://profiles.wordpress.org/jorbin">Aaron Jorbin</a>, <a href="https://profiles.wordpress.org/adamsilverstein">Adam Silverstein</a>, <a href="https://profiles.wordpress.org/akumria">akumria</a>, <a href="https://profiles.wordpress.org/xknown">Alex Concha</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/collinsinternet">Allan Collins</a>, <a href="https://profiles.wordpress.org/momo360modena">Amaury Balmer</a>, <a href="https://profiles.wordpress.org/amruta123b">Amruta Bhosale</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/sumobi">Andrew Munro (sumobi)</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/andrewryno">Andrew Ryno</a>, <a href="https://profiles.wordpress.org/rarst">Andrey "Rarst" Savchenko</a>, <a href="https://profiles.wordpress.org/ankitgadertcampcom">Ankit Gade</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/arippberger">arippberger</a>, <a href="https://profiles.wordpress.org/filosofo">Austin Matzko</a>, <a href="https://profiles.wordpress.org/bainternet">Bainternet</a>, <a href="https://profiles.wordpress.org/barrykooij">Barry Kooij</a>, <a href="https://profiles.wordpress.org/empireoflight">Ben Dunkle</a>, <a href="https://profiles.wordpress.org/benjmay">Ben May</a>, <a href="https://profiles.wordpress.org/neoxx">Bernhard Riedl</a>, <a href="https://profiles.wordpress.org/birgire">Birgir Erlendsson (birgire)</a>, <a href="https://profiles.wordpress.org/bobbingwide">bobbingwide</a>, <a href="https://profiles.wordpress.org/boonebgorges">Boone B. Gorges</a>, <a href="https://profiles.wordpress.org/bradyvercher">Brady Vercher</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/briandichiara">Brian DiChiara</a>, <a href="https://profiles.wordpress.org/rzen">Brian Richards</a>, <a href="https://profiles.wordpress.org/bswatson">Brian Watson</a>, <a href="https://profiles.wordpress.org/camdensegal">Camden Segal</a>, <a href="https://profiles.wordpress.org/captaintheme">Captain Theme</a>, <a href="https://profiles.wordpress.org/hiwhatsup">Carlos</a>, <a href="https://profiles.wordpress.org/caspie">Caspie</a>, <a href="https://profiles.wordpress.org/ccprice">ccprice</a>, <a href="https://profiles.wordpress.org/mackensen">Charles Fulton</a>, <a href="https://profiles.wordpress.org/chrico">ChriCo</a>, <a href="https://profiles.wordpress.org/aprea">Chris Aprea</a>, <a href="https://profiles.wordpress.org/chrisbliss18">Chris Jean</a>, <a href="https://profiles.wordpress.org/cmmarslender">Chris Marslender</a>, <a href="https://profiles.wordpress.org/jazzs3quence">Chris Reynolds</a>, <a href="https://profiles.wordpress.org/chriscct7">chriscct7</a>, <a href="https://profiles.wordpress.org/chrisl27">chrisl27</a>, <a href="https://profiles.wordpress.org/cfoellmann">Christian Foellmann</a>, <a href="https://profiles.wordpress.org/cfinke">Christopher Finke</a>, <a href="https://profiles.wordpress.org/cyclometh">Corey Snow</a>, <a href="https://profiles.wordpress.org/corphi">Corphi</a>, <a href="https://profiles.wordpress.org/curtjen">curtjen</a>, <a href="https://profiles.wordpress.org/colorful-tones">Damon Cook</a>, <a href="https://profiles.wordpress.org/dancameron">Dan Cameron</a>, <a href="https://profiles.wordpress.org/danielbachhuber">Daniel Bachhuber</a>, <a href="https://profiles.wordpress.org/convissor">Daniel Convissor</a>, <a href="https://profiles.wordpress.org/nerrad">Darren Ethier (nerrad)</a>, <a href="https://profiles.wordpress.org/koop">Daryl Koopersmith</a>, <a href="https://profiles.wordpress.org/dmchale">Dave McHale</a>, <a href="https://profiles.wordpress.org/davidakennedy">David A. Kennedy</a>, <a href="https://profiles.wordpress.org/dcavins">David Cavins</a>, <a href="https://profiles.wordpress.org/dlh">David Herrera</a>, <a href="https://profiles.wordpress.org/davidjlaietta">David Laietta</a>, <a href="https://profiles.wordpress.org/technical_mastermind">David Wood</a>, <a href="https://profiles.wordpress.org/davidthemachine">DavidTheMachine</a>, <a href="https://profiles.wordpress.org/realloc">Dennis Ploetner</a>, <a href="https://profiles.wordpress.org/dd32">Dion Hulse</a>, <a href="https://profiles.wordpress.org/wedi">Dirk Weise</a>, <a href="https://profiles.wordpress.org/ocean90">Dominik Schilling</a>, <a href="https://profiles.wordpress.org/dominikschwind-1">Dominik Schwind</a>, <a href="https://profiles.wordpress.org/drewapicture">Drew Jaynes</a>, <a href="https://profiles.wordpress.org/dustyf">Dustin Filippini</a>, <a href="https://profiles.wordpress.org/dustinhartzler">Dustin Hartzler</a>, <a href="https://profiles.wordpress.org/eliorivero">Elio Rivero</a>, <a href="https://profiles.wordpress.org/ebinnion">Eric Binnion</a>, <a href="https://profiles.wordpress.org/ew_holmes">Eric Holmes</a>, <a href="https://profiles.wordpress.org/ericlewis">Eric Lewis</a>, <a href="https://profiles.wordpress.org/fab1en">Fabien Quatravaux</a>, <a href="https://profiles.wordpress.org/florianziegler">florianziegler</a>, <a href="https://profiles.wordpress.org/hereswhatidid">Gabe Shackle</a>, <a href="https://profiles.wordpress.org/garyc40">Gary Cao</a>, <a href="https://profiles.wordpress.org/pento">Gary Pendergast</a>, <a href="https://profiles.wordpress.org/soulseekah">Gennady Kovshenin</a>, <a href="https://profiles.wordpress.org/babbardel">George Olaru</a>, <a href="https://profiles.wordpress.org/georgestephanis">George Stephanis</a>, <a href="https://profiles.wordpress.org/gregrickaby">Greg Rickaby</a>, <a href="https://profiles.wordpress.org/gcorne">Gregory Cornelius</a>, <a href="https://profiles.wordpress.org/tivnet">Gregory Karpinsky (@tivnet)</a>, <a href="https://profiles.wordpress.org/bordoni">Gustavo Bordoni</a>, <a href="https://profiles.wordpress.org/hardy101">hardy101</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/heshiming">heshiming</a>, <a href="https://profiles.wordpress.org/honeysilvas">honeysilvas</a>, <a href="https://profiles.wordpress.org/hugodelgado">hugodelgado</a>, <a href="https://profiles.wordpress.org/iandstewart">Ian Stewart</a>, <a href="https://profiles.wordpress.org/ianmjones">ianmjones</a>, <a href="https://profiles.wordpress.org/igmoweb">Ignacio Cruz Moreno</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/ivankristianto">Ivan Kristianto</a>, <a href="https://profiles.wordpress.org/jdgrimes">J.D. Grimes</a>, <a href="https://profiles.wordpress.org/jaimieolmstead">jaimieolmstead</a>, <a href="https://profiles.wordpress.org/jakubtyrcha">jakub.tyrcha</a>, <a href="https://profiles.wordpress.org/janhenckens">janhenckens</a>, <a href="https://profiles.wordpress.org/avryl">Janneke Van Dorpe</a>, <a href="https://profiles.wordpress.org/japh">Japh</a>, <a href="https://profiles.wordpress.org/jwenerd">Jared Wenerd</a>, <a href="https://profiles.wordpress.org/jarednova">jarednova</a>, <a href="https://profiles.wordpress.org/jeanyoungkim">jeanyoungkim</a>, <a href="https://profiles.wordpress.org/jfarthing84">Jeff Farthing</a>, <a href="https://profiles.wordpress.org/jeffstieler">Jeff Stieler</a>, <a href="https://profiles.wordpress.org/jeremyfelt">Jeremy Felt</a>, <a href="https://profiles.wordpress.org/jeherve">Jeremy Herve</a>, <a href="https://profiles.wordpress.org/jesin">Jesin A</a>, <a href="https://profiles.wordpress.org/jayjdk">Jesper Johansen (jayjdk)</a>, <a href="https://profiles.wordpress.org/engelen">Jesper van Engelen</a>, <a href="https://profiles.wordpress.org/jessepollak">Jesse Pollak</a>, <a href="https://profiles.wordpress.org/jipmoors">jipmoors</a>, <a href="https://profiles.wordpress.org/joedolson">Joe Dolson</a>, <a href="https://profiles.wordpress.org/joemcgill">Joe McGill</a>, <a href="https://profiles.wordpress.org/johneckman">John Eckman</a>, <a href="https://profiles.wordpress.org/johnrom">johnrom</a>, <a href="https://profiles.wordpress.org/johnstonphilip">johnstonphilip</a>, <a href="https://profiles.wordpress.org/jb510">Jon Brown</a>, <a href="https://profiles.wordpress.org/duck_">Jon Cave</a>, <a href="https://profiles.wordpress.org/jbrinley">Jonathan Brinley</a>, <a href="https://profiles.wordpress.org/desrosj">Jonathan Desrosiers</a>, <a href="https://profiles.wordpress.org/joostdevalk">Joost de Valk</a>, <a href="https://profiles.wordpress.org/softmodeling">Jordi Cabot</a>, <a href="https://profiles.wordpress.org/joshuaabenazer">Joshua Abenazer</a>, <a href="https://profiles.wordpress.org/tai">JOTAKI Taisuke</a>, <a href="https://profiles.wordpress.org/jrf">jrf</a>, <a href="https://profiles.wordpress.org/julien731">Julien Liabeuf</a>, <a href="https://profiles.wordpress.org/justinsainton">Justin Sainton</a>, <a href="https://profiles.wordpress.org/jtsternberg">Justin Sternberg</a>, <a href="https://profiles.wordpress.org/kadamwhite">K.Adam White</a>, <a href="https://profiles.wordpress.org/trepmal">Kailey (trepmal)</a>, <a href="https://profiles.wordpress.org/kamelkev">kamelkev</a>, <a href="https://profiles.wordpress.org/karpstrucking">karpstrucking</a>, <a href="https://profiles.wordpress.org/keesiemeijer">keesiemeijer</a>, <a href="https://profiles.wordpress.org/ryelle">Kelly Dwan</a>, <a href="https://profiles.wordpress.org/kevinlangleyjr">Kevin Langley</a>, <a href="https://profiles.wordpress.org/kdoran">Kiko Doran</a>, <a href="https://profiles.wordpress.org/kpdesign">Kim Parsell</a>, <a href="https://profiles.wordpress.org/kwight">Kirk Wight</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/knutsp">Knut Sparhell</a>, <a href="https://profiles.wordpress.org/kovshenin">Konstantin Kovshenin</a>, <a href="https://profiles.wordpress.org/obenland">Konstantin Obenland</a>, <a href="https://profiles.wordpress.org/kosvrouvas">Kostas Vrouvas</a>, <a href="https://profiles.wordpress.org/kristastevens">kristastevens</a>, <a href="https://profiles.wordpress.org/kurtpayne">Kurt Payne</a>, <a href="https://profiles.wordpress.org/lancewillett">Lance Willett</a>, <a href="https://profiles.wordpress.org/offereins">Laurens Offereins</a>, <a href="https://profiles.wordpress.org/linuxologos">linuxologos</a>, <a href="https://profiles.wordpress.org/ideag">Liuiza Arunas</a>, <a href="https://profiles.wordpress.org/loushou">loushou</a>, <a href="https://profiles.wordpress.org/latz">Lutz Schroer</a>, <a href="https://profiles.wordpress.org/manoz69">Manoz69</a>, <a href="https://profiles.wordpress.org/mantismamita">mantismamita</a>, <a href="https://profiles.wordpress.org/marcosf">Marco Schmoecker</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/landakram">Mark Hudnall</a>, <a href="https://profiles.wordpress.org/markjaquith">Mark Jaquith</a>, <a href="https://profiles.wordpress.org/senff">Mark Senff</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/matveb">Matias Ventura</a>, <a href="https://profiles.wordpress.org/matt">Matt Mullenweg</a>, <a href="https://profiles.wordpress.org/mattwiebe">Matt Wiebe</a>, <a href="https://profiles.wordpress.org/mboynes">Matthew Boynes</a>, <a href="https://profiles.wordpress.org/mattheu">Matthew Haines-Young</a>, <a href="https://profiles.wordpress.org/mattkeys">mattkeys</a>, <a href="https://profiles.wordpress.org/mlteal">Maura Teal</a>, <a href="https://profiles.wordpress.org/melchoyce">Mel Choyce</a>, <a href="https://profiles.wordpress.org/merty">Mert Yazicioglu</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/tw2113">Michael Beckwith</a>, <a href="https://profiles.wordpress.org/cainm">Michael Cain</a>, <a href="https://profiles.wordpress.org/smashcut">Michael Pick</a>, <a href="https://profiles.wordpress.org/michalzuber">michalzuber</a>, <a href="https://profiles.wordpress.org/chellycat">Michelle Langston</a>, <a href="https://profiles.wordpress.org/mcsf">Miguel Fonseca</a>, <a href="https://profiles.wordpress.org/mikehansenme">Mike Hansen</a>, <a href="https://profiles.wordpress.org/mikejolley">Mike Jolley</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/mikeyarce">Mikey Arce</a>, <a href="https://profiles.wordpress.org/studionashvegas">Mitch Canter (studionashvegas)</a>, <a href="https://profiles.wordpress.org/morganestes">Morgan Estes</a>, <a href="https://profiles.wordpress.org/mor10">Morten Rand-Hendriksen</a>, <a href="https://profiles.wordpress.org/mvd7793">mvd7793</a>, <a href="https://profiles.wordpress.org/alex-ye">Nashwan Doaqan</a>, <a href="https://profiles.wordpress.org/niallkennedy">Niall Kennedy</a>, <a href="https://profiles.wordpress.org/celloexpressions">Nick Halsey</a>, <a href="https://profiles.wordpress.org/nikv">Nikhil Vimal</a>, <a href="https://profiles.wordpress.org/nikolovtmw">Nikola Nikolov</a>, <a href="https://profiles.wordpress.org/nobleclem">nobleclem</a>, <a href="https://profiles.wordpress.org/noplanman">noplanman</a>, <a href="https://profiles.wordpress.org/nvwd">Nowell VanHoesen</a>, <a href="https://profiles.wordpress.org/originalexe">OriginalEXE</a>, <a href="https://profiles.wordpress.org/p_enrique">p_enrique</a>, <a href="https://profiles.wordpress.org/pushplaybang">Paul</a>, <a href="https://profiles.wordpress.org/pauldewouters">Paul de Wouters</a>, <a href="https://profiles.wordpress.org/paulschreiber">Paul Schreiber</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/peterchester">Peter Chester</a>, <a href="https://profiles.wordpress.org/donutz">Peter J. Herrel</a>, <a href="https://profiles.wordpress.org/westi">Peter Westwood</a>, <a href="https://profiles.wordpress.org/peterwilsoncc">Peter Wilson</a>, <a href="https://profiles.wordpress.org/philiparthurmoore">Philip Arthur Moore</a>, <a href="https://profiles.wordpress.org/phpmypython">phpmypython</a>, <a href="https://profiles.wordpress.org/mordauk">Pippin Williamson</a>, <a href="https://profiles.wordpress.org/nprasath002">Prasath Nadarajah</a>, <a href="https://profiles.wordpress.org/psycleuk">psycleuk</a>, <a href="https://profiles.wordpress.org/ptahdunbar">Ptah Dunbar</a>, <a href="https://profiles.wordpress.org/quietnic">quietnic</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/ramiabraham">ramiabraham</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/richardmtl">Richard Archambault</a>, <a href="https://profiles.wordpress.org/rickalee">Ricky Lee Whittemore</a>, <a href="https://profiles.wordpress.org/miqrogroove">Robert Chapin</a>, <a href="https://profiles.wordpress.org/rodrigosprimo">Rodrigo Primo</a>, <a href="https://profiles.wordpress.org/ryan">Ryan Boren</a>, <a href="https://profiles.wordpress.org/ryankienstra">Ryan Kienstra</a>, <a href="https://profiles.wordpress.org/rmccue">Ryan McCue</a>, <a href="https://profiles.wordpress.org/sakinshrestha">Sakin Shrestha</a>, <a href="https://profiles.wordpress.org/samhotchkiss">Sam Hotchkiss</a>, <a href="https://profiles.wordpress.org/otto42">Samuel Wood (Otto)</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/sergeybiryukov">Sergey Biryukov</a>, <a href="https://profiles.wordpress.org/shooper">Shawn Hooper</a>, <a href="https://profiles.wordpress.org/simonp303">Simon Pollard</a>, <a href="https://profiles.wordpress.org/simonwheatley">Simon Wheatley</a>, <a href="https://profiles.wordpress.org/skaeser">skaeser</a>, <a href="https://profiles.wordpress.org/slobodanmanic">Slobodan Manic</a>, <a href="https://profiles.wordpress.org/socki03">socki03</a>, <a href="https://profiles.wordpress.org/solarissmoke">solarissmoke</a>, <a href="https://profiles.wordpress.org/stephdau">Stephane Daury</a>, <a href="https://profiles.wordpress.org/netweb">Stephen Edgar</a>, <a href="https://profiles.wordpress.org/stephenharris">Stephen Harris</a>, <a href="https://profiles.wordpress.org/stevegrunwell">Steve Grunwell</a>, <a href="https://profiles.wordpress.org/5um17">Sumit Singh</a>, <a href="https://profiles.wordpress.org/tacoverdo">TacoVerdo</a>, <a href="https://profiles.wordpress.org/iamtakashi">Takashi Irie</a>, <a href="https://profiles.wordpress.org/miyauchi">Takayuki Miyauchi</a>, <a href="https://profiles.wordpress.org/karmatosed">Tammie</a>, <a href="https://profiles.wordpress.org/tareq1988">Tareq Hasan</a>, <a href="https://profiles.wordpress.org/tlovett1">Taylor Lovett</a>, <a href="https://profiles.wordpress.org/kraftner">Thomas Kraftner</a>, <a href="https://profiles.wordpress.org/ipm-frommen">Thorsten Frommen</a>, <a href="https://profiles.wordpress.org/tillkruess">Till</a>, <a href="https://profiles.wordpress.org/tschutter">Tobias Schutter</a>, <a href="https://profiles.wordpress.org/tobiasbg">TobiasBg</a>, <a href="https://profiles.wordpress.org/tmtrademark">Toby McKes</a>, <a href="https://profiles.wordpress.org/tjnowell">Tom J Nowell</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/topher1kenobe">Topher</a>, <a href="https://profiles.wordpress.org/zodiac1978">Torsten Landsiedel</a>, <a href="https://profiles.wordpress.org/liljimmi">Tracy Levesque</a>, <a href="https://profiles.wordpress.org/transom">transom</a>, <a href="https://profiles.wordpress.org/wpsmith">Travis Smith</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/umeshsingla">Umesh Kumar</a>, <a href="https://profiles.wordpress.org/vinod-dalvi">Vinod Dalvi</a>, <a href="https://profiles.wordpress.org/vlajos">vlajos</a>, <a href="https://profiles.wordpress.org/voldemortensen">voldemortensen</a>, <a href="https://profiles.wordpress.org/westonruter">Weston Ruter</a>, <a href="https://profiles.wordpress.org/yoavf">Yoav Farhi</a>, <a href="https://profiles.wordpress.org/nobinobi">Yuta Sekine</a>, <a href="https://profiles.wordpress.org/zrothauser">Zack Rothauser</a>, and <a href="https://profiles.wordpress.org/tollmanz">Zack Tollman</a>.\n<p>There were 283 contributors to this release, again a new high.</p>\n<p>If you want to help out or follow along, check out <a href="https://make.wordpress.org/">Make WordPress</a> and our <a href="https://make.wordpress.org/core/">core development blog</a>.</p>\n<p>Thanks for choosing WordPress. Happy holidays and see you next year for version 4.2!</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:46:"https://wordpress.org/news/2014/12/dinah/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:33:"WordPress 4.1 Release Candidate 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:69:"https://wordpress.org/news/2014/12/wordpress-4-1-release-candidate-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:78:"https://wordpress.org/news/2014/12/wordpress-4-1-release-candidate-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, 18 Dec 2014 02:22:15 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a: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.1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3411";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:429:"The next release candidate for WordPress 4.1 is now available for testing. Seventy changes have gone in since the first release candidate. With no known issues left, we plan to release 4.1 tomorrow, December 18. To test, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the release candidate here (zip). If you’d like to learn more about […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"John Blackbourn";s: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:1465:"<p>The next release candidate for WordPress 4.1 is now available for testing.</p>\n<p><a href="https://core.trac.wordpress.org/log/trunk?rev=30961&stop_rev=30827">Seventy changes</a> have gone in since the <a href="https://wordpress.org/news/2014/12/wordpress-4-1-release-candidate/">first release candidate</a>. With no known issues left, we plan to release 4.1 tomorrow, December 18.</p>\n<p>To test, 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.1-RC3.zip">download the release candidate here</a> (zip). If you’d like to learn more about what’s new in WordPress 4.1, visit the updated About screen in your dashboard (<strong><img src="https://i0.wp.com/core.svn.wordpress.org/branches/3.6/wp-content/themes/twentyten/images/wordpress.png" alt="" width="16" height="16" /> → About</strong> in the toolbar) and also check out <a href="https://wordpress.org/news/2014/11/wordpress-4-1-beta-1/">the Beta 1 post</a>.</p>\n<p><strong>Plugin authors:</strong> Remember to test your plugins against 4.1, and if they’re compatible, make sure they are marked as tested up to 4.1. Be sure to follow along the core development blog; we’ve been posting <a href="https://make.wordpress.org/core/tag/4-1-dev-notes/">notes for developers for 4.1</a> as always.</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:74:"https://wordpress.org/news/2014/12/wordpress-4-1-release-candidate-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: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:31:"WordPress 4.1 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/2014/12/wordpress-4-1-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/2014/12/wordpress-4-1-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:"Thu, 11 Dec 2014 11:52: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: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.1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3375";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:341:"The release candidate for WordPress 4.1 is now available. We’ve made a lot of refinements over the last few weeks. 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.1 on Tuesday, December 16, but we need your […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"John Blackbourn";s: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:2301:"<p>The release candidate for WordPress 4.1 is now available.</p>\n<p>We’ve made a lot of refinements over the last few weeks. 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.1 on Tuesday, December 16, but we need your help to get there. If you haven’t tested 4.1 yet, now is the time! (Please though, not on your live site unless you’re adventurous.)</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.1 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.1-RC1.zip">download the release candidate here</a> (zip). If you’d like to learn more about what’s new in WordPress 4.1, visit the About screen in your dashboard (<strong><img src="https://i0.wp.com/core.svn.wordpress.org/branches/3.6/wp-content/themes/twentyten/images/wordpress.png" alt="" width="16" height="16" /> → About</strong> in the toolbar) or check out the <a href="https://wordpress.org/news/2014/11/wordpress-4-1-beta-1/">beta announcement</a>.</p>\n<p><strong>Developers</strong>, please test your plugins and themes against WordPress 4.1 and update your plugin’s <em>Tested up to</em> version in the readme to 4.1 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/4-1-dev-notes/">notes for developers</a> for 4.1. (For example: if you’ve written a child theme for Twenty Fifteen, some of the new pagination functions have been renamed for clarity.)</p>\n<p><em>Testing four point one</em><br />\n<em>Why are we up at this hour?</em><br />\n<em>Code is poetry</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/2014/12/wordpress-4-1-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: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:32:"WordPress 4.0.1 Security Release";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:51:"https://wordpress.org/news/2014/11/wordpress-4-0-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:60:"https://wordpress.org/news/2014/11/wordpress-4-0-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, 20 Nov 2014 18:55:18 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"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.0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3363";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:345:"WordPress 4.0.1 is now available. This is a critical security release for all previous versions and we strongly encourage you to update your sites immediately. Sites that support automatic background updates will be updated to WordPress 4.0.1 within the next few hours. If you are still on WordPress 3.9.2, 3.8.4, or 3.7.4, you will be […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"Andrew Nacin";s: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:3395:"<p>WordPress 4.0.1 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>Sites that support automatic background updates will be updated to WordPress 4.0.1 within the next few hours. If you are still on WordPress 3.9.2, 3.8.4, or 3.7.4, you will be updated to 3.9.3, 3.8.5, or 3.7.5 to keep everything secure. (We don’t support older versions, so please update to 4.0.1 for the latest and greatest.)</p>\n<p>WordPress versions 3.9.2 and earlier are affected by a critical cross-site scripting vulnerability, which could enable anonymous users to compromise a site. This was reported by <a href="http://klikki.fi/">Jouko Pynnonen</a>. This issue does not affect version 4.0, but version 4.0.1 does address these eight security issues:</p>\n<ul>\n<li>Three cross-site scripting issues that a contributor or author could use to compromise a site. Discovered by <a href="http://joncave.co.uk/">Jon Cave</a>, <a href="http://www.miqrogroove.com/">Robert Chapin</a>, and <a href="https://johnblackbourn.com/">John Blackbourn</a> of the WordPress security team.</li>\n<li>A cross-site request forgery that could be used to trick a user into changing their password.</li>\n<li>An issue that could lead to a denial of service when passwords are checked. Reported by <a href="http://www.behindthefirewalls.com/">Javier Nieto Arevalo</a> and <a href="http://www.devconsole.info/">Andres Rojas Guerrero</a>.</li>\n<li>Additional protections for server-side request forgery attacks when WordPress makes HTTP requests. Reported by Ben Bidner (vortfu).</li>\n<li>An extremely unlikely hash collision could allow a user’s account to be compromised, that also required that they haven’t logged in since 2008 (I wish I were kidding). Reported by <a href="http://david.dw-perspective.org.uk">David Anderson</a>.</li>\n<li>WordPress now invalidates the links in a password reset email if the user remembers their password, logs in, and changes their email address. Reported separately by <a href="https://twitter.com/MomenBassel">Momen Bassel</a>, <a href="http://c0dehouse.blogspot.in/">Tanoy Bose</a>, and <a href="https://managewp.com/">Bojan Slavković of ManageWP</a>.</li>\n</ul>\n<p>Version 4.0.1 also fixes 23 bugs with 4.0, and we’ve made two hardening changes, including better validation of EXIF data we are extracting from uploaded photos. Reported by <a href="http://www.securesolutions.no/">Chris Andrè Dale</a>.</p>\n<p>We appreciated the <a href="https://codex.wordpress.org/FAQ_Security">responsible disclosure</a> of these issues directly to our security team. For more information, see the <a href="https://codex.wordpress.org/Version_4.0.1">release notes</a> or consult the <a href="https://core.trac.wordpress.org/log/branches/4.0?rev=30475&stop_rev=29710">list of changes</a>.</p>\n<p><a href="https://wordpress.org/download/">Download WordPress 4.0.1</a> or venture over to <strong>Dashboard → Updates</strong> and simply click “Update Now”.</p>\n<p><em>Already testing WordPress 4.1? The second beta is now available (<a href="https://wordpress.org/wordpress-4.1-beta2.zip">zip</a>) and it contains these security fixes. For more on 4.1, see <a href="https://wordpress.org/news/2014/11/wordpress-4-1-beta-1/">the beta 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:56:"https://wordpress.org/news/2014/11/wordpress-4-0-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: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.1 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/2014/11/wordpress-4-1-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/2014/11/wordpress-4-1-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:"Fri, 14 Nov 2014 22:35: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: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.1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3352";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:346:"Welcome, everyone, to WordPress 4.1 Beta 1! 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.1, 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:15:"John Blackbourn";s: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:3409:"<p>Welcome, everyone, to WordPress 4.1 Beta 1!</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.1, 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="//wordpress.org/wordpress-4.1-beta1.zip">download the beta here</a> (zip).</p>\n<p>WordPress 4.1 is due for release next month, so we need your help with testing. Here are some highlights of what to test:</p>\n<ul>\n<li>Our beautiful new default theme, <a href="https://make.wordpress.org/core/2014/09/09/twenty-fifteen/">Twenty Fifteen</a>. It’s a clean, mobile-first, blog-focused theme designed through simplicity.</li>\n<li>A new <a href="https://make.wordpress.org/core/2014/11/11/focus-v2-demo-video/">distraction-free writing mode for the editor</a>. It’s enabled by default for beta, and we’d love feedback on it.</li>\n<li>The ability to automatically install new language packs right from the General Settings screen (available as long as your site’s filesystem is writable).</li>\n<li>A new inline formatting toolbar for images embedded into posts.</li>\n</ul>\n<p>There have been a lot of changes for developers to test as well:</p>\n<ul>\n<li><a href="https://make.wordpress.org/core/2014/10/20/update-on-query-improvements-in-4-1/">Improvements to meta, date, comment, and taxonomy queries</a>, including complex (nested, multiple relation) queries; and querying comment types (<a href="https://core.trac.wordpress.org/ticket/12668">#12668</a>).</li>\n<li>A single term shared across multiple taxonomies is now split into two when updated. For more, <a href="https://make.wordpress.org/core/2014/11/12/an-update-on-the-taxonomy-roadmap/">see this post</a>, <a href="https://core.trac.wordpress.org/ticket/5809">#5809</a>, and <a href="https://core.trac.wordpress.org/ticket/30335">#30335</a>.</li>\n<li>A new and better way for <a href="https://make.wordpress.org/core/2014/10/29/title-tags-in-4-1/">themes to handle title tags</a>.</li>\n<li>Several <a href="https://make.wordpress.org/core/2014/10/27/toward-a-complete-javascript-api-for-the-customizer/">improvements to the Customizer API</a>, including contextual panels and sections, and JavaScript templates for controls.</li>\n</ul>\n<p>If you want a more in-depth view of what changes have made it into 4.1, <a href="https://make.wordpress.org/core/tag/week-in-core/">check out the weekly review 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.1">everything we’ve fixed</a> so far.</p>\n<p>Happy testing!</p>\n<p><em>Twenty Fifteen theme</em><br />\n<em> The beautiful face which hides</em><br />\n<em> Many improvements</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/2014/11/wordpress-4-1-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: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:39:"Watch WordCamp San Francisco Livestream";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/2014/10/wcsf-livestream/";s: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/2014/10/wcsf-livestream/#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:"Fri, 24 Oct 2014 20:18:43 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:9:"Community";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"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=3341";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:381:"WordCamp San Francisco is the official annual WordPress conference, gathering the community every year since 2006. This is the time when Matt Mullenweg addresses the community in his annual State of the Word presentation – a recap of the year in WordPress and giving us a glimpse into its future. This year the speaker lineup is stellar. There will be talks by […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:17:"Nikolay Bachiyski";s: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:1975:"<p><a title="2014 edition" href="http://2014.sf.wordcamp.org">WordCamp San Francisco</a> is the official annual WordPress conference, gathering the community every year <a title="An old website for a WordPress long time ago" href="http://2006.sf.wordcamp.org">since 2006</a>. This is the time when Matt Mullenweg addresses the community in his annual <a href="http://wordpress.tv/?s=state+of+the+word">State of the Word</a> presentation – a recap of the year in WordPress and giving us a glimpse into its future.</p>\n<p>This year the speaker lineup is stellar. There will be talks by three of the lead WordPress developers: <a href="http://2014.sf.wordcamp.org/speakers/#wcorg-speaker-andrew-nacin">Andrew Nacin</a>, <a href="http://2014.sf.wordcamp.org/speakers/#wcorg-speaker-helen-hou-sandi">Helen Hou-Sandí</a>, and <a href="http://2014.sf.wordcamp.org/speakers/#wcorg-speaker-mark-jaquith">Mark Jaquith</a>. We’re also looking forward to speakers like <a href="http://2014.sf.wordcamp.org/speakers/#wcorg-speaker-jenny-lawson">Jenny Lawson</a>, also known as The Bloggess, and <a href="http://2014.sf.wordcamp.org/speaker/chris-lema/">Chris Lema</a>. If you’re at all interested in the web, you will appreciate the appearance of <a href="http://2014.sf.wordcamp.org/speakers/#wcorg-speaker-jeff-veen">Jeff Veen</a> – one of the creators of Google Analytics and co-founder of Typekit.</p>\n<p>Even though San Francisco is far far away for most of you, you can still be part of the fun and watch all presentations in real-time via livestream:</p>\n<p><a href="http://2014.sf.wordcamp.org/tickets/">Get a livestream ticket and watch all talks from WordCamp San Francisco live</a></p>\n<p>If you hurry, you can get one of the special livestream tickets, including a WordCamp San Francisco 2104 t-shirt. You can find all the technical details and start times <a href="http://2014.sf.wordcamp.org/live-stream/">at the WordCamp San Francisco website</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/2014/10/wcsf-livestream/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:10:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Sat, 28 Mar 2015 10:56:01 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:10:"x-pingback";s:37:"https://wordpress.org/news/xmlrpc.php";s:13:"last-modified";s:29:"Thu, 26 Mar 2015 19:24:19 GMT";s:15:"x-frame-options";s:10:"SAMEORIGIN";s:4:"x-nc";s:11:"HIT lax 250";}s:5:"build";s:14:"20130910223210";}', 'no');
INSERT INTO `travel2_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(346, '_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1427583361', 'no'),
(347, '_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1427540161', 'no'),
(348, '_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9', '1427583364', 'no');
INSERT INTO `travel2_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(349, '_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:32:"Matt: GNU Manifesto Turns Thirty";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=44879";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/03/gnu-manifesto-turns-thirty/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:182:"<p>The New Yorker has a great overview as <a href="http://www.newyorker.com/business/currency/the-gnu-manifesto-turns-thirty">Richard Stallman’s GNU Manifesto Turns Thirty</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, 28 Mar 2015 04:32: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: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:83:"WPTavern: Slack Adds Two-Factor Authentication Support After Recent Security Breach";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=41197";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:93:"http://wptavern.com/slack-adds-two-factor-authentication-support-after-recent-security-breach";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2859:"<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/slack-logo.jpg" rel="prettyphoto[41197]"><img class="aligncenter size-full wp-image-33466" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/slack-logo.jpg?resize=700%2C314" alt="slack-logo" /></a><a title="https://slack.com/" href="https://slack.com/">Slack</a>, which is used by thousands of people world-wide to communicate, recently <a title="http://slackhq.com/post/114696167740/march-2015-security-incident-and-launch-of-2fa" href="http://slackhq.com/post/114696167740/march-2015-security-incident-and-launch-of-2fa">suffered a security breach</a>. According to Slack, the breach occurred during a four-day period in February.</p>\n<p>Hackers gained access to a central database used to store user names, email addresses, and one-way encrypted (“hashed”) passwords. In addition, the database contains information that users may have optionally added to their profiles such as phone number and Skype ID.</p>\n<p>Slack uses <a title="http://en.wikipedia.org/wiki/Bcrypt" href="http://en.wikipedia.org/wiki/Bcrypt">bcrypt</a> with a randomly generated salt per-password that according to Slack, “makes it computationally infeasible that your password could be recreated from the hashed form.” No financial data was compromised and so far, the company hasn’t found any evidence that the hackers were able to decrypt the stored passwords.</p>\n<h2>Two New Security Options</h2>\n<p>Slack has launched two new features for individuals and team owners to help increase security. The first is <a title="http://en.wikipedia.org/wiki/Two_factor_authentication" href="http://en.wikipedia.org/wiki/Two_factor_authentication">Two-Factor authentication</a>. Slack has a <a title="https://slack.zendesk.com/hc/en-us/articles/204509068" href="https://slack.zendesk.com/hc/en-us/articles/204509068">detailed guide</a> that explains how to configure 2FA for your account. When you enable 2FA, you’ll be prompted to enter a verification code in addition to your normal password whenever you sign in.</p>\n<p>The second is a “<a title="https://my.slack.com/admin/auth#password_reset" href="https://my.slack.com/admin/auth#password_reset">Password Kill Switch</a>” for team owners. The kill switch allows for instantaneous team-wide resetting of passwords and forced termination of all user sessions for all team members. This means that everyone is signed out of your Slack team, in all apps and on all devices.</p>\n<h2>Enable 2FA Where Possible</h2>\n<p>Users are highly encouraged to enable 2FA on Slack and on any other service that supports it. To learn more about Slack’s security principles, including how to report security vulnerabilities, check out their <a title="https://slack.com/security" href="https://slack.com/security">security page</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, 27 Mar 2015 18:51: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: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:70:"Post Status: The Excerpt Episode 2 — WordPress news with Julie Kuehl";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=12067";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:77:"https://poststatus.com/the-excerpt-episode-2-wordpress-news-with-julie-kuehl/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2367:"<p>Welcome to <a href="https://poststatus.com/category/draft/the-excerpt/">The Excerpt</a>, part of the <a href="https://poststatus.com/category/draft/">Post Status Draft podcast</a>, which you can also find <a href="https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008">on iTunes</a>. Draft consists of two formats: long form interviews like I’ve done for a long time, and The Excerpt for a summary of news around the WordPress ecosystem.</p>\n<p>With The Excerpt, we cover a few of our favorite stories from the <a title="Post Status Membership Club" href="https://poststatus.com/club/">Post Status Club</a> over the last week or two. The primary goal is to keep it short and informational: we keep the podcast to 15 minutes.</p>\n<p>Content covered in The Excerpt will largely be samples from the members only content, but may also cover free articles and resources. You don’t have to be a member to enjoy The Excerpt, but it is a nice way to preview what members get every day.</p>\n<p>Here’s Episode 2, which <a href="https://poststatus.com/profiles/julie-kuehl/">Julie Kuehl</a> hosted with me:</p>\n<!--[if lt IE 9]><script>document.createElement(''audio'');</script><![endif]-->\n<a href="http://audio.simplecast.fm/9511.mp3">http://audio.simplecast.fm/9511.mp3</a>\n<p><a href="http://audio.simplecast.fm/9511.mp3">Direct Download</a></p>\n<ul>\n<li>Shiny Installs removed from 4.2, in Beta 3 release, (<a href="https://wordpress.org/news/2015/03/wordpress-4-2-beta-3/">Beta release</a> and <a href="http://aaron.jorb.in/blog/2015/03/auto-activating-wordpress-plugins-is-the-right-choice/">Aaron’s post</a>).</li>\n<li><a href="https://poststatus.com/notes/wp-engine-and-pagely-taking-different-routes-but-both-are-growing/">Pagely and WP Engine are growing.</a></li>\n<li><a href="https://poststatus.com/notes/finding-your-place/ ">Finding your place</a>, by <a href="http://heropress.com/essays/finding-your-place/">Rarst on HeroPress</a></li>\n<li><a href="https://poststatus.com/notes/version-1-2-of-the-wordpress-rest-api-released/">1.2 of the REST API</a> (<a href="https://make.wordpress.org/core/2015/03/24/wp-rest-api-version-1-2/">Original release post</a>).</li>\n<li>Partner feature: <a href="https://genesisdesignpro.com/?utm_source=post_status&utm_medium=banner&utm_campaign=ps_ads">Design Palette Pro</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, 27 Mar 2015 15:27: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:3;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:58:"WPTavern: Enhanced Plugin Installs Axed From WordPress 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:28:"http://wptavern.com/?p=41191";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:68:"http://wptavern.com/enhanced-plugin-installs-axed-from-wordpress-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:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2966:"<p>A few days ago, <a title="http://wptavern.com/wordpress-4-2-radically-improves-the-plugin-install-and-update-process" href="http://wptavern.com/wordpress-4-2-radically-improves-the-plugin-install-and-update-process">we highlighted</a> how WordPress 4.2 radically improves the installation and update process for plugins. Several readers <a title="http://wptavern.com/wordpress-4-2-radically-improves-the-plugin-install-and-update-process#comments" href="http://wptavern.com/wordpress-4-2-radically-improves-the-plugin-install-and-update-process#comments">commented on the article</a> expressing that automatically activating plugins after installation is a bad idea. A decision was made during the March 25th, WordPress core developer chat to remove enhanced plugin installs from WordPress 4.2 and punt it to a future release. However, enhanced plugin updates will remain in WordPress 4.2.</p>\n<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/03/NewPluginUpdateRoutine.gif" rel="prettyphoto[41191]"><img class="size-full wp-image-41064" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/03/NewPluginUpdateRoutine.gif?resize=837%2C688" alt="New Plugin Update Routine" /></a>New Plugin Update Routine\n<p>It’s uncommon for functionality to be removed from WordPress this late in the development cycle. Drew Jaynes, who is <a title="http://wptavern.com/drew-jaynes-to-lead-wordpress-4-2" href="http://wptavern.com/drew-jaynes-to-lead-wordpress-4-2">leading the 4.2 release cycle,</a> explains that the feature just isn’t ready.</p>\n<blockquote><p>Prudence demands that we decide whether to do things now vs do things right. In this case, we want to make sure we handle the user experience of activating plugins after installation the right way for most use cases. So we still have ‘Shiny Updates’, but we’re going to have to fall back and regroup on ‘Shiny Installs’.</p></blockquote>\n<p>On the Make WordPress core blog, <a title="https://make.wordpress.org/core/2015/03/25/dev-chat-agenda-march-25-2015/#comment-25391" href="https://make.wordpress.org/core/2015/03/25/dev-chat-agenda-march-25-2015/#comment-25391">Aaron Jorbin outlined three issues</a> caused by auto activating plugins.</p>\n<ol>\n<li>Plugins that require after activation steps (such as connecting to Jetpack or Google Analytics, updating permalinks for BuddyPress, etc) aren’t obvious. We need a way for plugins to provide a notice upon activation that shows what to do next.</li>\n<li>Since the menu isn’t updated, users still need to do a page refresh in order for the changes to actually go in effect and for them to use the features of many plugins.</li>\n<li>There are plugins such as maintenance mode ones that users will not want to be activated right away.</li>\n</ol>\n<p>The idea of installing plugins inline is sound, but until the user experience issues are addressed, the plugin install process will remain the same.</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, 26 Mar 2015 20:50:28 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"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:71:"WPTavern: WPWeekly Episode 185 – Turning The Page With Joshua Strebel";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=41184&preview_id=41184";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/wpweekly-episode-185-turning-the-page-with-joshua-strebel";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2714:"<p>In this episode of WordPress Weekly, <a title="http://marcuscouch.com/" href="http://marcuscouch.com/">Marcus Couch</a> and I are joined by Joshua Strebel, CEO of <a title="https://pagely.com/" href="https://pagely.com/">Pagely</a>. We learn how Pagely was founded and the advantages of being an independently owned company. Strebel explains how he’s managed <a title="https://pagely.com/blog/2015/03/pagely-is-scaling-up/" href="https://pagely.com/blog/2015/03/pagely-is-scaling-up/">Pagely’s rapid growth</a> while maintaining exceptional service. Last but not least, we discuss the competitive nature and lack of integrity throughout the webhosting industry.</p>\n<h2>Stories Discussed:</h2>\n<p><a title="http://wptavern.com/pods-lead-developer-scott-kingsley-clark-launches-friends-of-pods-funding-campaign" href="http://wptavern.com/pods-lead-developer-scott-kingsley-clark-launches-friends-of-pods-funding-campaign">Pods Lead Developer Scott Kingsley Clark Launches “Friends of Pods” Funding Campaign</a><br />\n<a title="http://wptavern.com/heropress-publishes-its-first-essay-finding-your-place-by-andrey-savchenko" href="http://wptavern.com/heropress-publishes-its-first-essay-finding-your-place-by-andrey-savchenko">HeroPress Publishes its First Essay “Finding Your Place” by Andrey Savchenko</a></p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a title="https://wordpress.org/plugins/plugins-speed-test/" href="https://wordpress.org/plugins/plugins-speed-test/">Plugins Speed Test</a> shows the impact installed plugins have on your site’s speed.</p>\n<p><a title="https://wordpress.org/plugins/disable-emojis/" href="https://wordpress.org/plugins/disable-emojis/">Disable Emojis</a> disables the new emoji functionality in WordPress 4.2.</p>\n<p><a title="https://wordpress.org/plugins/auto-post-fb-comment/" href="https://wordpress.org/plugins/auto-post-fb-comment/">Auto Post FB Comment</a> embeds a Facebook comment form on your blog and automatically inserts a user’s comment to the WordPress database.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, April 1st 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 #185:</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, 26 Mar 2015 19:46:43 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s: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:18:"Matt: Tokyo Meetup";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=44887";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:34:"http://ma.tt/2015/03/tokyo-meetup/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:361:"<p>Are you in or near Tokyo? I’m going to be in town and doing a meetup this Sunday, and I’m looking forward to hanging out with the local community. I’m told you can read about it on this link: <a href="https://wbtokyo.doorkeeper.jp/events/22595">WordBench東京 3月スペシャル『春のマット祭り』 – WordBench東京</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, 26 Mar 2015 16:51: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: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:21:"Matt: DNS Performance";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=44867";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/03/dns-performance/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:167:"<p><a href="http://www.dnsperf.com/">DNSPerf is a cool service that measures the speed of different DNS providers</a>, Cloudflare and WordPress.com rank very well.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 26 Mar 2015 03:23: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:7;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:99:"WPTavern: How to Get Your WordPress Site Ready for Google’s New Mobile-Friendly Ranking Algorithm";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=40825";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:106:"http://wptavern.com/how-to-get-your-wordpress-site-ready-for-googles-new-mobile-friendly-ranking-algorithm";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4679:"<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/03/mobile.jpg" rel="prettyphoto[40825]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/03/mobile.jpg?resize=1025%2C498" alt="mobile" class="aligncenter size-full wp-image-41171" /></a></p>\n<p>The <a href="https://make.wordpress.org/themes/2015/03/18/mobile-friendly-themes/" target="_blank">WordPress Theme Review team</a> is encouraging all theme authors to take notice of <a href="http://googlewebmastercentral.blogspot.co.uk/2015/02/finding-more-mobile-friendly-search.html" target="_blank">Google’s upcoming change to its ranking algorithm</a>, which will be put in place at the end of April:</p>\n<blockquote><p>Starting April 21, we will be expanding our use of mobile-friendliness as a ranking signal. This change will affect mobile searches in all languages worldwide and will have a significant impact in our search results. Consequently, users will find it easier to get relevant, high quality search results that are optimized for their devices.</p></blockquote>\n<p>You can find out if your site is ready by testing it with the <a href="https://www.google.com/webmasters/tools/mobile-friendly/" target="_blank">mobile-friendly testing tool</a> created by Google. It will give you a rough idea of how the Googlebot views your pages.</p>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/mobile-friendly-test.png" rel="prettyphoto[40825]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/mobile-friendly-test.png?resize=1025%2C495" alt="mobile-friendly-test" class="aligncenter size-full wp-image-41152" /></a></p>\n<p>Google Webmaster Tools has a new Mobile Usability Report that will also give you a more detailed breakdown of any mobile usability issues with your site.</p>\n<p>Although Google hasn’t published an exact guide to how the new ranking algorithm will work, it provides a <a href="https://developers.google.com/webmasters/mobile-sites/mobile-seo/" target="_blank">guide for mobile SEO</a>. The documentation for the <a href="https://developers.google.com/web/fundamentals/principles/" target="_blank">Principles of Site Design on Web Fundamentals</a> is also a great resource with practical suggestions for making your site better for mobile users.</p>\n<p>Google also created a mobile-friendliness <a href="https://developers.google.com/webmasters/mobile-sites/website-software/wordpress" target="_blank">guide specifically for WordPress users</a>. It encourages site admins to update to the latest version of WordPress and to use a theme that that is mobile-friendly.</p>\n<p>If you want to test your site on various mobile devices, the Google Chrome browser has a “<a href="https://developer.chrome.com/devtools/docs/device-mode" target="_blank">mobile device emulation</a>” feature that can be found under the “Developer Tools” menu.</p>\n<h3>Find a Responsive WordPress Theme</h3>\n<p>Out of the 3,000+ themes listed on in the official directory, filtering by “<a href="https://wordpress.org/themes/tags/responsive-layout/" target="_blank">Responsive Layout</a>” under “Features” currently returns only 947 themes. This doesn’t necessarily mean that 2/3 of themes hosted on WordPress.org are not responsive. These are simply the ones that have been tagged with “Responsive Layout.”</p>\n<p>The Theme Review Team <a href="https://make.wordpress.org/themes/2015/03/18/mobile-friendly-themes/" target="_blank">posted a notice</a> about the update to encourage developers to examine their themes for mobile-readiness ahead of time. If your theme is not responsive, Emil Uzelac suggests adding responsive media queries:</p>\n<blockquote><p>Mobile-Friendly can be a Responsive design, but also an App that turns your theme into a “mobile version”.</p>\n<p>Since we don’t accept themes with mobile Apps because that would fall into a plugin territory, our choice is Responsive and media queries instead of browser sniffing tools.</p>\n<p>Now, for the mobile-friendliness, responsive media queries will be enough and that is the very basic to be qualified as “mobile-friendly”.</p></blockquote>\n<p>Not all WordPress.org theme developers will be willing to update their themes with a responsive layout, as some of them are abandoned and no longer maintained. If your theme is failing Google’s mobile friendly test, the most important change you can make is to update to a theme with a responsive layout. Even if site ranking and SEO are not important to your objectives, improving the experience for mobile users should be enough motivation to make the change.</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, 26 Mar 2015 01:16:57 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:90:"WPTavern: HeroPress Publishes its First Essay “Finding Your Place” by Andrey Savchenko";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=41151";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/heropress-publishes-its-first-essay-finding-your-place-by-andrey-savchenko";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1889:"<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/heropress.jpg" rel="prettyphoto[41151]"><img class="aligncenter size-full wp-image-37733" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/01/heropress.jpg?resize=956%2C423" alt="heropress" /></a>Despite not hitting his <a title="http://wptavern.com/heropress-fails-to-attract-backers-cancels-kickstarter-campaign-ahead-of-deadline" href="http://wptavern.com/heropress-fails-to-attract-backers-cancels-kickstarter-campaign-ahead-of-deadline">funding goal of $60k</a>, Topher DeRosia took the feedback and support he received and <a title="http://heropress.com/heropress-rising/" href="http://heropress.com/heropress-rising/">moved forward</a> with the <a title="http://heropress.com/" href="http://heropress.com/">HeroPress project</a>. HeroPress now focuses on delivering information through text and images instead of video which significantly decreases costs. It also provides more translation opportunities as it’s easier to translate text versus video.</p>\n<p>Although the project has new life, its mission remains the same: T<em>o develop the WordPress heroes of the world by sharing the accumulated wisdom of the community</em>.</p>\n<p>HeroPress has taken its first step in accomplishing this mission by publishing an essay by <a title="http://rarst.net/" href="http://rarst.net/">Andrey “Rarst” Savchenko</a> entitled, “<a title="Finding Your Place" href="http://heropress.com/essays/finding-your-place/">Finding Your Place</a>”. The essay describes Savchenko’s journey in finding his place within the WordPress community.</p>\n<p>It’s an inspiring read filled with peaks, valleys, and sound advice. If the first essay is any indication of what to expect out of HeroPress, I think the WordPress community is in for a treat. I for one can’t wait to read the next one.</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, 25 Mar 2015 21:31: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:9;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:72:"WPTavern: ThemeReview.co Earns Recommendations by StudioPress and Envato";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=41136";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/themereview-co-inks-strategic-deal-with-studiopress-and-envato";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1413:"<p><a title="http://themereview.co/" href="http://themereview.co/">ThemeReview.co</a>, the theme review service <a title="http://wptavern.com/emil-uzelac-launches-new-wordpress-theme-review-service" href="http://wptavern.com/emil-uzelac-launches-new-wordpress-theme-review-service">started by Emil Uzelac</a> and Justin Tadlock earlier this year, <a title="http://justintadlock.com/archives/2015/03/18/now-offering-professional-theme-reviews" href="http://justintadlock.com/archives/2015/03/18/now-offering-professional-theme-reviews">announced</a> StudioPress and Envato both recommend using its service. Those who create themes for Genesis or ThemeForest can now have them reviewed by both before selling them in the marketplace.</p>\n<p>Themes developed for ThemeForest that are reviewed by Uzelac and Tadlock will receive a secondary review by the ThemeForest theme review team. Since both Uzelac and Tadlock are senior reviewers for the <a title="https://wordpress.org/themes/" href="https://wordpress.org/themes/">WordPress.org theme directory</a>, reviewed themes are more likely to do things the WordPress way instead of locking users in.</p>\n<p>ThemeReview.co is only three months old, but partnering with the largest WordPress theme marketplace ought to provide an unlimited amount of business. The question is, will ThemeForest authors spend the money to have their themes reviewed by a third-party?</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, 25 Mar 2015 20:48: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: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:58:"WPTavern: Take The “How Do You Learn WordPress” Survey";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=41127";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wptavern.com/take-the-how-do-you-learn-wordpress-survey";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2204:"<p>WordPress trainer and coach, Bob Dunn, <a title="http://bobwp.com/how-do-you-learn-wordpress-a-survey/" href="http://bobwp.com/how-do-you-learn-wordpress-a-survey/">wants to know</a> how you learn WordPress. Once the survey concludes, Dunn will publish the results in an infographic.</p>\n<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/LearnWordPressSurveyQuestions.png" rel="prettyphoto[41127]"><img class="size-full wp-image-41128" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/LearnWordPressSurveyQuestions.png?resize=814%2C429" alt="Survey Questions" /></a>Survey Questions\n<p>With so many options available to learn WordPress, I’m interested to see which method comes out on top. I learned WordPress by trial and error and using tutorials I found through Google. I also used the <a title="http://codex.wordpress.org/Main_Page" href="http://codex.wordpress.org/Main_Page">WordPress Codex</a> as my go-to resource since there weren’t many educational resources in 2006-2007. These days, users have plenty of options to learn WordPress through trainers like Dunn, <a title="http://wordpress.tv" href="http://wordpress.tv">WordPress.tv</a>, <a title="http://central.wordcamp.org/" href="http://central.wordcamp.org/">WordCamps</a>, and hundreds of free tutorials.</p>\n<p>If you learn best by reading, I highly encourage you to check out the following handbooks, which are condensed guides focused on a specific subject. Keep in mind that they’re works in progress.</p>\n<ul>\n<li><a title="https://developer.wordpress.org/plugins/intro/" href="https://developer.wordpress.org/plugins/intro/">Plugin Handbook</a></li>\n<li><a title="https://developer.wordpress.org/themes/getting-started/" href="https://developer.wordpress.org/themes/getting-started/">Theme Handbook</a></li>\n<li><a title="https://make.wordpress.org/core/handbook/" href="https://make.wordpress.org/core/handbook/">WordPress Core Handbook</a></li>\n<li><a title="https://make.wordpress.org/support/handbook/" href="https://make.wordpress.org/support/handbook/">Support Handbook </a></li>\n</ul>\n<p>Share your guides, techniques, and resources for learning WordPress 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, 25 Mar 2015 18:25:41 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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:11;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:53:"WPTavern: Shortcake Is Now a WordPress Feature 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=40867";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/shortcake-is-now-a-wordpress-feature-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:5145:"<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/shortcake.jpg" rel="prettyphoto[40867]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/11/shortcake.jpg?resize=1024%2C502" alt="photo credit: kendiala - cc" class="size-full wp-image-33434" /></a>photo credit: <a href="https://www.flickr.com/photos/kendiala/97929388/">kendiala</a> – <a href="http://creativecommons.org/licenses/by-nc/2.0/">cc</a>\n<p>Shortcake, a <a href="http://wptavern.com/shortcake-a-ui-for-wordpress-shortcodes" target="_blank">plugin that adds a UI to make shortcodes more user friendly</a>, is now an official <a href="https://make.wordpress.org/core/features-as-plugins/" target="_blank">WordPress feature plugin</a>. The project is led by <a href="https://twitter.com/danielbachhuber" target="_blank">Daniel Bachhuber</a>, currently the interim director of engineering at <a href="http://fusion.net/" target="_blank">Fusion</a>, the company where Shortcake originated. Contributors include <a href="https://twitter.com/matth_eu" target="_blank">Matthew Haines-Young</a> and the folks at <a href="http://hmn.md" target="_blank">Human Made</a>.</p>\n<p>The plugin is being developed on <a href="https://github.com/fusioneng/Shortcake/" target="_blank">GitHub</a> but is also now available for <a href="https://wordpress.org/plugins/shortcode-ui/" target="_blank">download</a> on WordPress.org. Developers who want to utilize Shortcake can register a UI for their shortcodes alongside add_shortcode, which will expose Shortcake’s user-friendly interface.</p>\n<p>Shortcake transforms your ordinary shortcode to render a preview in a TinyMCE view:</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/03/shortcake-demo.png" rel="prettyphoto[40867]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/03/shortcake-demo.png?resize=1025%2C538" alt="shortcake-demo" class="aligncenter size-full wp-image-41115" /></a></p>\n<p>It also supplies a user-friendly UI to add shortcodes via the “Add Media” button. After selecting your shortcode, you’ll have the ability to edit its content and attributes.</p>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/insert-post-element.png" rel="prettyphoto[40867]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/insert-post-element.png?resize=1018%2C700" alt="insert-post-element" class="aligncenter size-full wp-image-41117" /></a></p>\n<p><a href="http://fusion.net/story/105889/shortcake-v0-2-0-js-abstraction-add-post-element-enhancements-inner-content-field/" target="_blank">Version 0.2.0</a> enhances the post element interface in the following ways:</p>\n<ul>\n<li>Shortcodes are sorted alphabetically, making it easier to skim and find shortcodes.</li>\n<li>Shortcodes can be filtered by name using the “Search” field, reducing complexity when a site has many dozens of shortcodes.</li>\n<li>The “Insert Element” button is disabled until a post element is selected, providing a visual cue to the user.</li>\n</ul>\n<p>This release also makes a number of significant changes to the structure of the plugin. It has been retooled using an MVC architecture that relies on Browserify. Shortcake contributor <a href="https://twitter.com/jeetu_58" target="_blank">Jitendra Harpalani</a> explains the reasons behind the changes:</p>\n<blockquote><p>Specifically, we decided to use Browserify. It’s much easier to compartmentalize models, views, and controllers into different directories and then simply “require” them into your main JavaScript file, rather than having to create a self-contained and fully-fledged Backbone app.</p></blockquote>\n<p>Fortunately, WordPress core already uses Browserify to split apart the media library JavaScript, so it doesn’t introduce a new dependency.</p>\n<h3>Does Shortcake have a chance to make it into WordPress core?</h3>\n<p>Although shortcodes make it easy to insert and structure complex content, they’re an eyesore in the post editor. Including multiple shortcodes the old fashioned way can quickly become messy.</p>\n<p>Shortcake is a well-conceived solution that brings new life to shortcodes and makes them significantly less confusing to implement. Contributors on the project believe in it enough to start working on the steps necessary to make the feature plugin ready to be proposed for core.</p>\n<p>If it does land in core someday, it will be interesting to see how well the feature is adopted. If some developers register a UI for their shortcodes and others don’t, it could be confusing to know which shortcodes are available if they don’t show up on the “Insert Element” screen. Then again, that problem already exists without Shortcake. Without the help of an additional plugin, there’s no easy way to know which shortcodes are available.</p>\n<p>If you think Shortcake has potential and want to get involved, follow the updates on <a href="https://make.wordpress.org/core/tag/shortcode-ui/" target="_blank">make.wordpress.org/core</a> and join the development team for a meeting on WordPress.org Slack.</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, 25 Mar 2015 10:59: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:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:12;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:75:"Matt: Why Remote Work Thrives in Some Companies and Fails in Others – HBR";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=44883";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:87:"http://ma.tt/2015/03/why-remote-work-thrives-in-some-companies-and-fails-in-others-hbr/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:854:"<p><a href="https://hbr.org/2015/03/why-remote-work-thrives-in-some-companies-and-fails-in-others">Why Remote Work Thrives in Some Companies and Fails in Others</a>, by Sean Graber in the Harvard Business Review.</p>\n<blockquote><p>Why are some organizations reaping benefits but others not? Conditions are seemingly ideal: More and more people are choosing to work remotely. By one estimate, the number of remote workers in the U.S. grew by nearly 80% between 2005 and 2012. Advances in technology are keeping pace. About 94% of U.S. households have access to broadband Internet — one of the most important enablers of remote work. Workers also have access to an array of tools that allow them to videoconference, collaborate on shared documents, and manage complex workflows with colleagues around the world. So what’s the problem?</p></blockquote>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 24 Mar 2015 20:50: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: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:98:"WPTavern: Pods Lead Developer Scott Kingsley Clark Launches “Friends of Pods” Funding Campaign";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=41076";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/pods-lead-developer-scott-kingsley-clark-launches-friends-of-pods-funding-campaign";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3146:"<p><img class="alignright size-full wp-image-41081" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/03/FriendsofPodsLogo.png?resize=198%2C91" alt="Friends of Pods Logo" />Between support costs, website maintenance, and development time, managing a WordPress plugin can be expensive. Despite the costs associated with maintaining <a title="https://wordpress.org/plugins/pods/" href="https://wordpress.org/plugins/pods/">Pods</a>, it’s remained free of charge since the day it was created. In September 2011, Pods lead developer, Scott Kingsley Clark, created a <a title="https://www.kickstarter.com/projects/sc0ttkclark/pods-development-framework-20" href="https://www.kickstarter.com/projects/sc0ttkclark/pods-development-framework-20">Kickstarter campaign</a> asking for $1,500 to help fund Pods 2.0 development. By the time it ended, he received $4,177 with 91 backers.</p>\n<p><a title="http://pods.io/2015/03/24/help-us-grow-introducing-friends-of-pods/" href="http://pods.io/2015/03/24/help-us-grow-introducing-friends-of-pods/">According to Clark</a>, sponsorship money from Automattic and donations from users are just enough to keep the support team going with little left over to put towards website and plugin development. In what may be a first for a WordPress plugin, Clark has launched a “<a title="https://pods.io/friends-of-pods/" href="https://pods.io/friends-of-pods/">Friends of Pods</a>” funding campaign that works similar to public television.</p>\n<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/03/PodsCampaignMissionStatement.png" rel="prettyphoto[41076]"><img class="size-full wp-image-41084" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/03/PodsCampaignMissionStatement.png?resize=1025%2C444" alt="Friends of Pods Mission Statement" /></a>Friends of Pods Mission Statement\n<p>There are <a title="https://pods.io/friends-of-pods/membership-levels/" href="https://pods.io/friends-of-pods/membership-levels/">four tiers</a> to choose ranging from $5-$300 per month. Each tier has perks and benefits including, shirts, stickers, tweets, and placement on the Pods website. You can also donate a one time amount or become a pillar sponsor. Those who donate $25 a month or more are eligible to choose rewards every six months, which are provided by reward partners.</p>\n<p>The funding will be used to decrease private development of Pods and focus more on Pods core, related plugins, and integrations. It will also free up time to work on Pods 3.0 and improve its documentation. “Through Friends of Pods, we will grow both in terms of improving the code and strengthening our community. We also plan on adding “Pods Development Partners” to the Friends of Pods site soon as well as other cool tools to help our friends grow with Pods,” Clark said.</p>\n<p>It’s unclear whether this model will work, but it gives Clark and his team an opportunity to receive recurring income without charging for Pods. If the experiment is successful, it would give plugin developers another option to earn recurring income while keeping their plugins free.</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, 24 Mar 2015 19:07:49 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"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:49:"WPTavern: WP REST API Plugin Version 1.2 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:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=40934";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/wp-rest-api-plugin-version-1-2-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:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3651:"<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/08/wp-rest-api-resources.png" rel="prettyphoto[40934]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/08/wp-rest-api-resources.png?resize=1025%2C486" alt="wp-rest-api-resources" class="aligncenter size-full wp-image-27743" /></a></p>\n<p>The <a href="https://wordpress.org/plugins/json-rest-api/" target="_blank">WordPress REST API</a> plugin <a href="https://make.wordpress.org/core/2015/03/24/wp-rest-api-version-1-2/" target="_blank">version 1.2</a> was released today after roughly nine months of development. <a href="http://wptavern.com/wordpress-json-rest-api-version-1-1-released-with-new-authentication-documentation" target="_blank">Version 1.1</a> was released in June 2014 with the addition of taxonomies and terms routes and a focus on increasing test coverage for all endpoints.</p>\n<p>Version 1.2 has test coverage for taxonomies and terms at 98%. Meta is 87% and all others are above 50% (Comments: 67%, Users: 60%, Posts: 54%). According to <a href="https://twitter.com/rachelbaker" target="_blank">Rachel Baker</a>, one of the lead developers on the project, said the team is shooting for >80% on the ‘develop’ branch.</p>\n<p>Version 1.2 adds handling for Cross-Origin Resource Sharing (CORS) OPTIONS requests, request hijacking, better errors, and a slew of bug fixes. This release received contributions from 29 people, and the full <a href="https://github.com/WP-API/WP-API/releases/tag/1.2" target="_blank">changelog for 1.2</a> is available on GitHub.</p>\n<p>If you’re a developer who is currently using the WP REST API in one of your projects, you may be wondering about compatibility for updating to 1.2.</p>\n<p>“Some internal functions were deprecated, but compatibility impact is really minor,” Baker said. All of these changes are noted in the <a href="https://github.com/WP-API/WP-API/releases/tag/1.2" target="_blank">changelog</a> under “Deprecation warning” or “Compatibility warning.”</p>\n<h3>What’s Next for Version 2.0 of the WP REST API?</h3>\n<p>Version 1.2 is the last stop on the 1.x branch of the plugin. “We’ve been working hard over the past four months, with the aim of releasing a beta for version 2.0 next month,” Baker said in her release post.</p>\n<p>“For existing code written for version 1.x we will issue a final 1.x release as a compatibility shim to seamlessly connect existing code to version 2.0.”</p>\n<p>Developers are eager to find out when the WP REST API will land in WordPress core. There’s no set timeline, but the next release cycle of the plugin is geared toward polishing it up for prime time.</p>\n<p>“The #1 goal of v2.0 is to merge into WP core,” Baker told the Tavern. In <a href="http://wptavern.com/ https://make.wordpress.org/core/2015/03/24/wp-rest-api-version-1-2/#comment-25383" target="_blank">reply</a> to a commenter inquiring about the time table, she said, “The timeline for that is ‘sometime in 2015.’ Our goal is to make the WP REST API too impressive to refuse.”</p>\n<p>Version 2.0 development will focus on the following highlights:</p>\n<ul>\n<li>Route versioning and namespacing (for future core updates and plugins)</li>\n<li>Reducing the code to create custom endpoints</li>\n<li>Overall implementing feedback we received on version 1.0</li>\n</ul>\n<p>The WP REST API team has outlined a <a href="https://github.com/WP-API/WP-API/issues/571" target="_blank">Core Merging Plan for the API</a>. Follow the checklist on GitHub to stay informed on the progress.</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, 24 Mar 2015 18:45:41 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:15;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:80:"WPTavern: WordPress 4.2 Radically Improves The Plugin Install and Update Process";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=41058";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/wordpress-4-2-radically-improves-the-plugin-install-and-update-process";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3245:"<p>One of the features I’m looking forward to in WordPress 4.2 is the improved plugin install and update process. <span class="st">Gary Pendergast and a team of volunteers have spent the <a title="https://core.trac.wordpress.org/ticket/29820" href="https://core.trac.wordpress.org/ticket/29820">last six months</a> collaborating on shiny updates. </span></p>\n<p><span class="st">When you update or install a plugin in WordPress 4.1, you’re taken to a screen that shows its progress. When it’s done, you can either activate it or navigate back to the plugins screen.</span></p>\n<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/OldPluginUpdateRoutine.gif" rel="prettyphoto[41058]"><img class="wp-image-41061 size-full" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/OldPluginUpdateRoutine.gif?resize=837%2C688" alt="Old Plugin Update Routine" /></a>Old Plugin Update Routine\n<p>Here’s what it looks like when you update a plugin in WordPress 4.2.</p>\n<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/03/NewPluginUpdateRoutine.gif" rel="prettyphoto[41058]"><img class="size-full wp-image-41064" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/03/NewPluginUpdateRoutine.gif?resize=837%2C688" alt="New Plugin Update Routine" /></a>New Plugin Update Routine\n<p>Last but not least, here’s what it looks like when you install plugins in WordPress 4.2. It’s important to note that when a plugin is installed, it’s automatically activated.</p>\n<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/NewPluginInstallRoutine.gif" rel="prettyphoto[41058]"><img class="size-full wp-image-41065" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/NewPluginInstallRoutine.gif?resize=837%2C688" alt="New Plugin Install Routine" /></a>New Plugin Install Routine\n<p>At the March 11th developer chat, the team decided to scale back shiny updates to focus on plugins for 4.2. Fancy updates for themes will be added in a future release and will continue to use the classic update/install routine. You can follow the progress by watching tickets <a title="https://core.trac.wordpress.org/ticket/31529" href="https://core.trac.wordpress.org/ticket/31529">31529</a> and <a title="https://core.trac.wordpress.org/ticket/31530" href="https://core.trac.wordpress.org/ticket/31530">31530</a>.</p>\n<p>During testing, I was able to install 10 plugins in under a minute. Removing friction from the update and install process not only saves mouse clicks, but it’s a great user experience. In fact, the process is so quick, it might make sense to add a visual indicator that tells the user a plugin is installed. For instance, when a plugin is installed, a notification model window would pop up and fade away.</p>\n<p>If you’d like to try shiny updates for yourself, install <a title="https://wordpress.org/news/2015/03/wordpress-4-2-beta-2/" href="https://wordpress.org/news/2015/03/wordpress-4-2-beta-2/">WordPress 4.2 beta 2</a> on a test site. If you encounter any bugs with shiny updates or a different part of WordPress, post them to the <a href="https://wordpress.org/support/forum/alphabeta">Alpha/Beta area</a> in the support forums.</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, 24 Mar 2015 17:31:09 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"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: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:109:"Post Status: Happytables 3 is taking on Squarespace and Wix for restaurant websites with a brand new platform";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=12009";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:120:"https://poststatus.com/happytables-3-is-taking-on-squarespace-and-wix-for-restaurant-websites-with-a-brand-new-platform/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:6348:"<p>The <a href="http://hmn.md/">Human Made</a> team has been hard at work <a href="http://www.happytables.com/guide/kicking-off-with-happytables-3/">preparing Happytables 3</a>, an all new platform for the restaurant website builder.</p>\n<p>Happytables was one of the first major hosted initiatives after WordPress.com, and launched in early 2012. You can see the post <a href="http://wpcandy.com/reports/happytables-exits-beta-wants-restaurant-websites-to-quit-sucking/#.VRGJ-xDF-3g">I wrote about them</a> then. They’ve matured a lot since that time, investing more into products, finding their footing from a sales perspective, and expanding their team.</p>\n<p>Human Made has a products team of six people, including some WordPress back-end development heavyweights. The new Happytables 3 is built using a custom REST API to make it unrecognizable from WordPress, though it’s built completely on WordPress. Ryan McCue, who is leading the official <a title="The WordPress REST API" href="https://poststatus.com/wordpress-json-rest-api/">WordPress REST API project</a>, is lead on the Happytables API as well.</p>\n<p>The new Happytables dashboard is catered directly to restaurant owners. It simplifies much of the decision making for theming, utilizing a single standard template and offering customization options through a front-end editor and available content blocks.</p>\n<p><img class="aligncenter size-large wp-image-12014" src="https://poststatus.com/wp-content/uploads/2015/03/ht-customize-752x498.jpg" alt="ht-customize" width="752" height="498" /></p>\n<p>The end result of the customizer is a mobile-centric website that’s catered quite well to common restaurant tasks. They cite that over 50% of their current traffic is mobile, and they have made every effort to make the mobile experience on Happytables websites good.</p>\n<p><img class="aligncenter size-large wp-image-12015" src="https://poststatus.com/wp-content/uploads/2015/03/ht-mobile-752x376.png" alt="ht-mobile" width="752" height="376" /></p>\n<p>Editing restaurant-centric content like menus is straightforward.</p>\n<p><img class="aligncenter size-large wp-image-12012" src="https://poststatus.com/wp-content/uploads/2015/03/ht3-752x466.jpg" alt="ht3" width="752" height="466" /></p>\n<p>I spent about half an hour on the Happytables site yesterday, exploring the platform and starting a restaurant website for a friend of mine. I was impressed with how far the product has come from a usability standpoint, answering the questions I had, as I encountered them.</p>\n<p>Noel Tock, who is a partner at Human Made and runs products, has spent a lot of time talking to and pitching restaurant owners. <span class="pullquote alignright">They’ve invested years into research and the first iterations of the platform, and they were able to build Happytables 3 with more real customer insights than ever before.</span> The research shows, both in the UX and the impressive integration options; they offer integrations with menu, reservation, and reviews services that cater to Europe and the United States.</p>\n<p>They also make it as simple as possible to sign up. The first question is to type your restaurant name or address, and they auto-import as many details as they can.</p>\n<p><img class="aligncenter size-full wp-image-12021" src="https://poststatus.com/wp-content/uploads/2015/03/signup-ht1.gif" alt="signup-ht" width="600" height="256" /></p>\n<h3>Goals and milestones for Happytables</h3>\n<p>Happytables has been successful so far, but in ways different than you may first assume.</p>\n<p>Human Made has two deals for white-labeled versions of Happytables currently. They are an exclusive partner with <a href="http://www.iens.nl/">IENS</a>, a directory platform in the Netherlands that was acquired by TripAdvisor. Also, they provide US-based online ordering service <a href="https://www.chownow.com/">ChowNow</a> with a white-labeled version of Happytables.</p>\n<p>Current and past deals like these have been both profitable and educational for Human Made.</p>\n<p>Restaurant growth is a different beast than partnerships. Individual restaurants also often require 1:1 sales, a service the Happytables team offers up. The hard part isn’t convincing them Happytables is a good option, it’s assuring them that there is, “someone on the other end of the line,” as Noel Tock once put it to me. These restaurant owners can’t get very good (human) support with more mainstream providers like Wix or Squarespace.</p>\n<p><span class="pullquote alignright">Human Made would like to see 5,000 new paying customers on the Happytables platform between now and the end of the year.</span> They are pouring most of their product resources into the project, making a big bet on Happytables and its potential in the restaurant website market.</p>\n<p>As for current websites they host, I don’t know the exact numbers and they aren’t sharing them publicly. But they do state that they are serving close to 1 million pageviews per month from the restaurants they already host.</p>\n<h3>Targeting Squarespace and Wix</h3>\n<p>Happytables isn’t targeting other WordPress centric solutions, or even other restaurant website builders. When they talk to restaurant owners on sales calls, they discover that their competition is most often the likes of Squarespace and Wix — other hosted options, but not restaurant specific.</p>\n<p>Restaurants, while not the only market for such hosted options, is a big niche for them. Happytables wants to take it away, and they know they can only do that by offering a far superior product. With <a href="http://www.happytables.com">Happytables</a>, they hope to <em>wow</em> restaurant owners with something they’ve never seen before.</p>\n<p>I know when I used it yesterday — despite some minor quirks (that they were already working on) — I came away incredibly impressed. <a href="http://www.happytables.com/pricing/">At $39 a month</a>, I went ahead and sent the demo URL to my friend who is opening a restaurant. We’re having lunch on Thursday, when he’ll sign up for his account. It’s exactly the kind of thing he was hoping for, so he can get back to working on his restaurant and not worry about his website.</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:"Tue, 24 Mar 2015 17:09: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: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: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:64:"Joseph: WordPress Upgrades > MySQL Upgrades > PHP Upgrades";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:32:"https://josephscott.org/?p=11646";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:88:"https://josephscott.org/archives/2015/03/wordpress-upgrades-mysql-upgrades-php-upgrades/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2521:"<p>I was pleasantly surprised to see that the <a href="https://make.wordpress.org/meta/2015/03/01/major-update-to-our-version-stats-for-php-mysql-and-wordpress/">updated</a> <a href="https://wordpress.org/about/stats/">WordPress.org stats page</a> shows more than 50% of active sites are on version 4.0 or newer:</p>\n<p><a href="https://josephscott.org/wp-content/uploads/2015/03/wp-versions.png"><img src="https://josephscott.org/wp-content/uploads/2015/03/wp-versions-300x292.png" alt="wp-versions" width="300" height="292" class="aligncenter size-medium wp-image-11880" /></a></p>\n<p>That is really good for a piece of software released less than <a href="https://wordpress.org/news/2014/09/benny/">seven months ago</a>. The years long effort into making upgrades easier and more reliable are paying off nicely.</p>\n<p>When I looked at PHP and MySQL version usage that is where things got strange. I know that PHP upgrades at some hosting providers happen at a very slow pace, but I didn’t fully appreciate how slow.</p>\n<p><a href="https://josephscott.org/wp-content/uploads/2015/03/wp-mysql-versions.png"><img src="https://josephscott.org/wp-content/uploads/2015/03/wp-mysql-versions-300x274.png" alt="wp-mysql-versions" width="300" height="274" class="aligncenter size-medium wp-image-11887" /></a></p>\n<p>The most reported MySQL version for active WordPress sites is 5.5, at nearly 60%. The first <a href="http://dev.mysql.com/doc/relnotes/mysql/5.6/en/news-5-6-10.html">MySQL 5.5 General Availability</a> release was two years ago ( February 2013 ). Considering how sensitive data storage is I’d consider that a good upgrade rate.</p>\n<p>Turns out to be significantly faster than PHP.</p>\n<p><a href="https://josephscott.org/wp-content/uploads/2015/03/wp-php-versions.png"><img src="https://josephscott.org/wp-content/uploads/2015/03/wp-php-versions-300x249.png" alt="wp-php-versions" width="300" height="249" class="aligncenter size-medium wp-image-11877" /></a></p>\n<p>Less than 47% of active WordPress sites report using PHP version 5.4 or newer.</p>\n<p>The first release of PHP 5.4 was <a href="http://php.net/releases/5_4_0.php">three years ago</a> ( March 2012 ). I could see not wanting to upgrade on the initial release, so I’ll discount that to two years with PHP 5.4.13 in <a href="http://php.net/releases/">March 2013</a>. That still leaves PHP 5.4+ at 47% compared to MySQL 5.5+ at 66%.</p>\n<p>I didn’t expect to see hosting providers upgrading MySQL faster than PHP.</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, 24 Mar 2015 15:41: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:12:"Joseph Scott";s: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:64:"WPTavern: Introducing Lasso, a New Frontend Editor For WordPress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=40987";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/introducing-lasso-a-new-frontend-editor-for-wordpress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:7301:"<p>Lasso is a <a title="https://lasso.is/pricing" href="https://lasso.is/pricing">new commercial plugin</a> developed by Nick Haskins, founder of <a title="http://aesopstoryengine.com/" href="http://aesopstoryengine.com/">AESOP Story Engine</a>, that adds a front-end editor to WordPress.</p>\n<p>After activating Lasso, users are greeted with an introduction that explains an article CSS class is needed. This class is typically used to house the content within a WordPress theme. This is a technical step that may prevent some users from properly configuring Lasso, but since the article class varies between themes, it’s a mandatory step in the setup process.</p>\n<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/LassoIntroductionScreen.png" rel="prettyphoto[40987]"><img class="size-full wp-image-40988" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/LassoIntroductionScreen.png?resize=711%2C762" alt="Introduction Screen" /></a>Introduction Screen\n<p>Lasso has built-in support for several WordPress themes. If you’re using a supported theme, it will automatically display the correct CSS class to use.</p>\n<p>If you’re a theme developer and your theme’s post container is dedicated to content without using any other markup, you should <a title="[email protected]" href="mailto:[email protected]">send an email</a> to Haskins with your theme’s text domain and CSS class. He’ll include support for it within Lasso’s opening status wizard.</p>\n<p>While trying to locate the article class, I discovered that I couldn’t close the animated walk through making it impossible to find.</p>\n<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/03/ImStuck.png" rel="prettyphoto[40987]"><img class="size-full wp-image-40990" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/03/ImStuck.png?resize=1025%2C686" alt="Stuck in Lasso" /></a>Stuck in Lasso\n<p>While troubleshooting the problem, I deactivated all plugins and determined that one of Jetpack’s modules was causing the issue. I reactivated each module individually, but was unable to determine which one caused the problem.</p>\n<p>Once I was able to close the walk through, I used Firebug’s element inspection tool to locate my theme’s article class. The theme I used to test Lasso is a child theme of Stargazer and its CSS class for content is <strong>.entry-content</strong>. After configuring the article class, I was able to use Lasso on the frontend of WordPress.</p>\n<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/03/ArticleclassSettings.png" rel="prettyphoto[40987]"><img class="size-full wp-image-40991" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/03/ArticleclassSettings.png?resize=716%2C358" alt="Article Class" /></a>Article Class\n<p> </p>\n<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/03/EditorButtonCSSTrouble.png" rel="prettyphoto[40987]"><img class="size-full wp-image-40994" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/03/EditorButtonCSSTrouble.png?resize=268%2C82" alt="Missing Two Buttons" /></a>Missing Two Buttons\n<p>Although Lasso is compatible with many of the most popular themes, I encountered a CSS conflict in my child theme. As you can see from the screenshot, two of the buttons in the editor are displayed at the bottom. I notified Haskins of the issue and after some troubleshooting, we discovered a CSS conflict between my child theme and Lasso.</p>\n<p>The solution is to add <strong>!important</strong> to a specific CSS class, but as Haskins explains, it’s not an ideal solution:</p>\n<blockquote><p>Ensuring that markup styles in Lasso are consistent across all themes is a challenge, especially when it comes to unordered lists. The editor uses semantic markup, with its own margins and paddings. Theme styles will sometimes override this causing un-desired visual issues.</p>\n<p>We can combat this by declaring !important, but this is a bad practice and will just upset developers who want to theme Lasso. In the end, we’re left with dealing with these issues as they come up through our support channels.</p></blockquote>\n<p>Lasso only shows up when viewing the single page view of a post or page. You can edit content already published or use it as the primary editor to create content when previewing a draft post. Lasso’s main menu has three buttons, edit post, post settings, and add post.</p>\n<ul>\n<li>Post settings gives you the option to switch the status of a post from draft to publish. You can also change the URL slug.</li>\n<li>Add new post allows you to create a new post.</li>\n<li>Edit post activates the editor.</li>\n</ul>\n<p>When Lasso creates a new post, it automatically displays it on the frontend of WordPress. However, you can’t change the category or tags of a post using Lasso. This is something I’d like to see added to the post settings as it would come in handy, especially when creating new posts.</p>\n<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/03/CreateNewPostInLasso.png" rel="prettyphoto[40987]"><img class="size-full wp-image-40992" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/03/CreateNewPostInLasso.png?resize=752%2C650" alt="A New Post Created by Lasso" /></a>A New Post Created by Lasso\n<p>To edit content, you can either highlight words and click a formatting button or use keyboard shortcuts. One major drawback is that you can’t add images or media to posts. However, you can edit and manipulate media from the frontend if it’s already in a post. When I tried to edit an image, the buttons turned into unrecognizable codes.</p>\n<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/03/LassoEditImageWeirdButtons.png" rel="prettyphoto[40987]"><img class="size-full wp-image-41049" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/03/LassoEditImageWeirdButtons.png?resize=690%2C195" alt="Weird Buttons" /></a>Weird Buttons\n<p>When editing a post, there are two buttons on the bottom right portion of the screen. Depending on whether it’s a draft or published post, you’ll see a save and publish icon. I think these icons are too far away and should be integrated into the editor.</p>\n<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/03/LassoSaveButton.png" rel="prettyphoto[40987]"><img class="size-full wp-image-41042" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/03/LassoSaveButton.png?resize=1025%2C590" alt="Can You Find The Save Button?" /></a>Can You Find The Save Button?\n<h2>Wait For Lasso 1.0</h2>\n<p>Lasso is a beta product with plenty of things that need to be addressed before hitting 1.0. Haskins is aware of the issues I encountered and assures me they’ll be fixed in future versions. Now that it’s available for purchase, he plans to iterate quickly and release updates as they’re fixed.</p>\n<p>Lasso is <a title="https://lasso.is/pricing/" href="https://lasso.is/pricing/">$129 for one site</a> and includes 12 months of updates and support. I expect plugins at this price point to be polished and nearly bug free. Although none of the bugs I encountered prevented me from using the editor, I recommend waiting on 1.0 or later.</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, 24 Mar 2015 14:40: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: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:74:"WPTavern: Scott Evans on Designing the Punk Wapuu for WordCamp London 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=41000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"http://wptavern.com/scott-evans-on-designing-the-punk-wapuu-for-wordcamp-london-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:6695:"<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/03/punk-wapuu.jpg" rel="prettyphoto[41000]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/03/punk-wapuu.jpg?resize=1025%2C514" alt="punk-wapuu" class="aligncenter size-full wp-image-41004" /></a></p>\n<p>On the first day of <a href="http://wptavern.com/wordcamp-london-2015-highlights-the-energy-in-the-uk-wordpress-scene-with-punk-wapuu-and-a-focus-on-non-profits" target="_blank">WordCamp London 2015</a>, I was meandering around the Happiness Bar when I first noticed the punk wapuu stickers covering the swag table.</p>\n<p><em>“These are so damn cute!”</em> I muttered out loud. Admittedly, I can’t get enough of wapuu, and every new variation inspires shrieks of delight. <a href="https://twitter.com/scottsweb" target="_blank">Scott Evans</a>, an organizer for the event, happened to be within earshot. I asked him if he knew more about how the punk wapuu was created. It turns out that he helped to design the creature’s punk persona for the event.</p>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/scott-evans.png" rel="prettyphoto[41000]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/scott-evans.png?resize=256%2C256" alt="scott-evans" class="alignright size-full wp-image-41002" /></a>Evans is a WordPress designer and engineer working at Automattic with the WordPress.com VIP team. Prior to that he was part of Code for the People, a company that was <a href="http://wptavern.com/automattic-acquires-code-for-the-people-expands-wordpress-com-vips-reach-into-european-markets" target="_blank">acquired by Automattic last November</a> in order to expand its reach into European markets.</p>\n<p>As part of the WordCamp London organization team, Evans was tasked with managing the event’s print and design projects.</p>\n<p>“It’s quite nice to volunteer at WordCamp, because you get to do print, which I hardly ever get to do,” he said. “You get to see lanyards and your t-shirts come to life when you send them off to print.”</p>\n<p>Evans’ colleague Simon Dickson suggested doing something with the wapuu. The core organizing team gave Evans feedback on different iterations of the punk wapuu, making it a collaborative effort.</p>\n<h3>The Process of Theming WordCamp London</h3>\n<p>Coming up with a new theme for a WordCamp every year is no easy task, which is why events often maintain the same logo and design concepts. Evans and the other organizers were committed to keeping the design fresh.</p>\n<blockquote><p>Last time we did WordCamp London, we had kind of a tube theme going on, the sights of London, using symbolism from the tube maps. This time we wanted something different, a bit of a change. We could have kept with the same logo we had before, but it was time for something new. We latched onto the punk 1970’s kind of feel – bright colors, mohicans, and grungy textures.</p></blockquote>\n<p>Although the punk scene in the UK has long since died out, WordCamp London was prepared to revive it. Once organizers nailed down the theme, the creative process started to gain momentum. Evans cranked the punk tunes and got to work</p>\n<p>“I spent a few weeks cutting out WordPress logos, scenes of London, photocopying them and making collages, which we then used to create the t-shirts and banners,” Evans said.</p>\n<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/03/wcldn-design.jpg" rel="prettyphoto[41000]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/03/wcldn-design.jpg?resize=600%2C600" alt="photo credit: Shayda Torabi" class="size-full wp-image-40960" /></a>photo credit: <a href="https://twitter.com/shaptora/status/579346108155109376" target="_blank">Shayda Torabi</a>\n<p>In addition to the commemorative stickers, each attendee went home with a scarf embroidered with the punk wapuu.</p>\n<h3>Customizing Wapuu</h3>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/03/original-wapuu.png" rel="prettyphoto[41000]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/03/original-wapuu.png?resize=273%2C300" alt="original-wapuu" class="alignright size-medium wp-image-41027" /></a>The <a href="http://jawordpressorg.github.io/wapuu/" target="_blank">wapuu</a> mascot was created by the Japanese WordPress community and released under the GPL v2 or later. The original wapuu lives on <a href="https://github.com/jawordpressorg/wapuu" target="_blank">GitHub</a> and is available as an SVG file.</p>\n<p>“Anyone can take it, download it, and then modify it, which is kind of in the WordPress spirit,” Evans said.</p>\n<p>While working with the file, he discovered that some of the paths needed fixing, which was the trickiest part. Evans plans to fix those and submit them back to the wapuu repository.</p>\n<p>“Working with wapuu is actually really easy – it will open in most graphics programs,” he said. “I just dropped it into illustrator, added a mohican, pierced his ears, and put some Dr. Marten’s boots on him.”</p>\n<p>Japanese WordCamps generally have a custom wapuu designed for the event, and other WordCamp organizers are starting to get inspired to do the same. WordCamp Philly is actually <a href="https://twitter.com/LilJimmi/status/579666510945214464" target="_blank">preparing an entire collection of custom wapuu</a>, including one that bears a strong resemblance to Rocky.</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/03/rocky-wapuu.png" rel="prettyphoto[41000]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/03/rocky-wapuu.png?resize=599%2C201" alt="rocky-wapuu" class="aligncenter size-full wp-image-41032" /></a></p>\n<p>“Designing WordCamps is actually a hell of a lot of work,” Evans said. “There’s so many things to consider – t-shirts, printing lanyards with everyone’s names on them, scarves, volunteer t-shirts, posters, stickers. Producing those assets and sending them to print is an undertaking.”</p>\n<p>In the end, the efforts put into the design pay off when a unified theme emerges to tie the event together. “My top tip would be to find a theme, something you can have fun with, and then just push that out to all of the things you need to design,” Evans said.</p>\n<p>Organizers can never overestimate the power of design when it comes to event branding and WordCamp swag. It’s one of the most important efforts that, when done well, brings delight to attendees and helps to make the event unforgettable.</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, 24 Mar 2015 08:50:05 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:20;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:23:"Matt: Lil Wayne and 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:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=44870";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/03/lil-wayne-and-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:11:"description";a:1:{i:0;a:5:{s:4:"data";s:840:"<p>One of my favorite essays of all time is <a href="http://www.oxfordamerican.org/magazine/item/171-i-will-forever-remain-faithful">by David Ramsey in Oxford American on Lil Wayne, called <em>I Will Forever Remain Faithful</em></a>. I’m used to movies, books, even songs making me tear up occasionally, but not essays, but this one does every time. It’s worth Googling the songs mentioned and quoted in the headings, it gives an interesting soundtrack to the writing and after listening the essay is worth re-reading. I miss that old Lil Wayne, too.</p>\n<p>I don’t think I’ve said it publicly before, but Ramsey’s essay was actually the inspiration for my <a href="http://ma.tt/2010/11/one-point-oh/">1.0 Is the Loneliest Number</a> which is one of the most popular pieces of writing I’ve published.</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, 24 Mar 2015 01:26:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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: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:26:"Jen Mylo: Defending Drupal";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:26:"http://jenmylo.com/?p=4910";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:47:"http://jenmylo.com/2015/03/23/defending-drupal/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:7351:"<p>The last 7 years of my life have been all WordPress, all the time. In that time we went from powering around 2 million sites to many tens of millions. Today, W3Techs says:</p>\n<blockquote><p>WordPress is used by 23.6% of all the websites, that is a content management system market share of 60.8%.</p></blockquote>\n<p>I wish that sentence had a semicolon instead of a comma, but wow. Drupal, by comparison:</p>\n<blockquote><p>Drupal is used by 2.0% of all websites, that is 5.1% of all the websites whose content management system we know.</p></blockquote>\n<p>Sometimes, people like to pit WordPress and Drupal against each other, as if we are fighting each other, rather than fighting proprietary software. At WordCamps, meetups, or any professional gathering where someone asks a question (or makes a snarky comment) about Drupal, I point out that we are far more similar than we are different. “Open source CMS built with PHP” describes us both, as does any description of the contributor model, or even the economic models — how many times have I heard Acquia is to Drupal as Automattic is to WordPress? (A lot.) We’ve even shared booth space at the OSCON expo.</p>\n<p>To drive the point home I often say that if you were stuck in an elevator/sitting next to someone on a plane, how psyched would you be to be sitting next to a Drupal person, who would totally get all your references and be able to have a conversation you’d enjoy? That usually gets a nod or two. Because, yeah, we’re a bunch of open source geeks who care way too much about things like software licenses and commit status and number of props. We are, in short, <em>both</em> ridiculous in the grand scheme of things — we’re not curing cancer or ending world hunger. At best we are powering the websites of those who are, and if we ceased to exist tomorrow, it wouldn’t be the end of the world (just of us). But free software is awesome, so yay! Let’s all be friends!</p>\n<p>At conferences, people sometimes have been confused if I’m hanging around with <a href="http://www.amye.org/">Amye</a> or other Drupal women I know and like. They ask, “Aren’t you rivals?” And then we laugh at them. Cue the more-alike-than-different stuff.</p>\n<p>So I was kind of bummed today after all those years of defending Drupal and claiming kinship to see it pissing* all over WordPress today. But I should backtrack.</p>\n<p>For years, people in the WP community have wished there was a way to pay the more advanced contributors to work on core full-time. Sure, Automattic, 10Up, Human Made, and other companies have been contributing some people, but there are only so many donated employees a company can float. We all get that. For a while people talked about the WordPress Foundation as a way to pay people to work on stuff, but that didn’t wind up being possible. So when people started doing things like <a href="https://www.indiegogo.com/projects/buddypress-bbpress-glotpress-development">Jtrip’s Indiegogo</a>, it was a natural evolution, though it seemed not very scalable.</p>\n<p>So when I saw <a href="https://rubytogether.org/">Ruby Together</a> a few weeks ago, I thought it was amazing.</p>\n<p><a href="https://rubytogether.org/"><img class="aligncenter wp-image-4914 size-full" src="https://jenmylo.files.wordpress.com/2015/03/screen-shot-2015-03-23-at-10-19-27-am.png?w=520&h=485" alt="screenshot of rubytogether.org" width="520" height="485" /></a></p>\n<p>Then came the Drupal 8 fundraiser, and I thought that was pretty cool too. Matching donations and whatnot!</p>\n<p>And then I saw this:</p>\n<p><a href="https://jenmylo.files.wordpress.com/2015/03/screen-shot-2015-03-23-at-9-49-35-am.png"><img class="aligncenter size-full wp-image-4912" src="https://jenmylo.files.wordpress.com/2015/03/screen-shot-2015-03-23-at-9-49-35-am.png?w=520&h=499" alt="Screen Shot 2015-03-23 at 9.49.35 AM" width="520" height="499" /></a></p>\n<p>I smiled, recognizing several people I quite like. But that one in the lower left, what?? I clicked through and saw this:</p>\n<p><img class="aligncenter size-full wp-image-4911" src="https://jenmylo.files.wordpress.com/2015/03/screen-shot-2015-03-23-at-9-56-37-am.png?w=520&h=333" alt="fundraising website for drupal 8 featuring a graphic of the Drupal logo peeing on the Joomla and WordPress logos" width="520" height="333" /></p>\n<p>I was like, “What?”</p>\n<p>Then I was like, “No, really, what?!”</p>\n<p>I get it, this person thought this shirt from a previous Drupal event was funny and would fire people up to donate. But really?</p>\n<p>That shirt is so completely tasteless I am horrified that the Drupal community endorses it.</p>\n<p>And now we’re back to <em>Drupal is pissing on WordPress</em>.</p>\n<p>I’ve given so many talks at WordCamps with a component about how it’s important to be nice, respectful, and welcoming — including the use of appropriate language and imagery — to the point that some people would really like to tell me to shut the fuck** up (or have!). I have extended that “let’s be nice” spiel to talking about Drupal multiple times. I would never design a tshirt that showed the W pissing on the Drupal (and I’ve designed <a title="WCSF Shirt" href="http://jenmylo.com/2011/08/03/wcsf-shirt/">a controversial WordCamp shirt</a> or two in my time) because it’s not funny, it’s just tasteless and disrespectful. So that Drupal shirt makes me sad. I know that probably none of the people I know and like had a hand in making it. But it bums me out that as a community they seem to think it is okay, good even, if they’re willing to put it on the front page of the fundraiser.</p>\n<p>“You can feel good about our project without putting down other projects, so let’s keep it clean.” I said something similar (s/our project/yourself) to my nieces and their friends when they were in 9th grade and had a habit of putting down other girls to feel better about themselves (as so many adolescents do). I hope more people will remember this in the future, and just because you can think of a snarky/sarcastic/mean/tasteless joke that elevates your side and pushes down the other <em>doesn’t mean you should</em>.</p>\n<p>In any case, one person’s misstep shouldn’t be cause to demonize a whole project community. Assume good intentions. Reach out when something is awry instead of devolving into one-upmanship. Competition is healthy but there’s no reason to be jerks to each other. And also? Thinking there are sides is <strong>really</strong> silly. We’re <em>all</em> ridiculous open source CMS geeks. We’re all one side. Let’s stand together, y’all.</p>\n<hr />\n<p><small><strong>* </strong>I’ve always hated the Calvin peeing stickers, and <a href="https://triviahappy.com/articles/the-tasteless-history-of-the-peeing-calvin-decal">so has Bill Watterson</a>.</small></p>\n<p><small>** Profanity used intentionally to illustrate that it’s not appropriate language in a welcoming community.</small></p><img alt="" border="0" src="http://pixel.wp.com/b.gif?host=jenmylo.com&blog=45389656&post=4910&subd=jenmylo&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:"Mon, 23 Mar 2015 17:30:03 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:8:"Jen Mylo";s: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:73:"Post Status: The Excerpt episode 1 — WordPress news with Brian 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:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"https://poststatus.com/?p=11981";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:80:"https://poststatus.com/the-excerpt-episode-1-wordpress-news-with-brian-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:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2225:"<p>Welcome to <a href="https://poststatus.com/category/draft/the-excerpt/">The Excerpt</a>, part of the <a href="https://poststatus.com/category/draft/">Post Status Draft podcast</a>, which was <a href="https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008">submitted to iTunes recently</a>. Draft will consist of two formats: long form interviews like I’ve done for a long time, and The Excerpt for a summary of news around the WordPress ecosystem.</p>\n<p>With The Excerpt, we’ll cover a few of our favorite stories from the <a title="Post Status Membership Club" href="https://poststatus.com/club/">Post Status Club</a> over the last week or two. The primary goal is to keep it short and informational: we set a hard stop at 15 minutes.</p>\n<p>Content covered in The Excerpt will largely be samples from the members only content, but may also cover free articles and resources. You don’t have to be a member to enjoy The Excerpt, but it is a nice way to preview what members get every day.</p>\n<p>Here’s Episode 1, which <a href="https://twitter.com/rzen">Brian Richards</a> hosted with me:</p>\n<p><a href="https://audio.simplecast.fm/9434.mp3">https://audio.simplecast.fm/9434.mp3</a><br />\n<a href="https://audio.simplecast.fm/9434.mp3">Direct Download</a></p>\n<p>Stories discussed:</p>\n<ul>\n<li>WordPress <a title="WordPress 4.2 Beta 1 is available for testing" href="https://poststatus.com/notes/wordpress-4-2-beta-1-is-available-for-testing/">Beta 1</a> & <a title="WordPress 4.2 Beta 2 released" href="https://poststatus.com/notes/wordpress-4-2-beta-2-released/">Beta 2</a> — April 22nd live date</li>\n<li>Yoast, WooCommerce, AffiliateWP, and others’ <a href="https://poststatus.com/notes/understanding-wordpress-security-vulnerabilities/">security updates</a>.</li>\n<li>Growth <a href="https://poststatus.com/notes/codeinwp-sees-huge-growth-from-free-theme-exposure/">from free themes</a>.</li>\n</ul>\n<p>I will try and have guest hosts as much as possible. They may rotate or it might just be a few people that are relatively consistent. We’ll see how it goes, and your feedback will always be welcome. Let me know what you think about the new show.</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, 23 Mar 2015 17:10: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: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: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:121:"WPTavern: WordCamp London 2015 Highlights the Energy in the UK WordPress Scene with Punk Wapuu and a Focus on Non-Profits";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=40953";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:131:"http://wptavern.com/wordcamp-london-2015-highlights-the-energy-in-the-uk-wordpress-scene-with-punk-wapuu-and-a-focus-on-non-profits";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4625:"<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/wcldn.jpg" rel="prettyphoto[40953]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/wcldn.jpg?resize=1025%2C539" alt="wcldn" class="aligncenter size-full wp-image-40978" /></a></p>\n<p><a href="http://london.wordcamp.org/2015/" target="_blank">WordCamp London 2015</a> was held at the London Metropolitan University this weekend. The sold-out event attracted 600 attendees from the local UK WordPress communities and beyond.</p>\n<p>In selecting a theme for the event, organizers drew inspiration from London’s punk subculture, which emerged in the mid-1970’s. The posters, lanyards, t-shirts, and custom wapuu designs all exemplified punk style (minus the angst and anarchy).</p>\n<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/03/wcldn-design.jpg" rel="prettyphoto[40953]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/03/wcldn-design.jpg?resize=600%2C600" alt="photo credit: Shayda Torabi" class="size-full wp-image-40960" /></a>photo credit: <a href="https://twitter.com/shaptora/status/579346108155109376" target="_blank">Shayda Torabi</a>\n<p>The <a href="http://wptavern.com/wordcamp-london-2015-contributor-day-in-photos" target="_blank">contributor day</a> was held on Friday morning with 100 participants, roughly 1/6 of all attendees. Contributors spent time investing in WordPress, BuddyPress, GlotPress, and other projects.</p>\n<p>Both Saturday and Sunday were packed with high quality sessions on topics ranging from development and design to business, in addition to a unique non-profit track highlighting WordPress use in the non-profit sector. Interest around certain sessions was so high that attendees opted to sit on the floor when all the seats in the room had been filled. When the rooms were over capacity, attendees were turned away at the door.</p>\n<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/building-themes-with-the-wp-rest-api.jpg" rel="prettyphoto[40953]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/building-themes-with-the-wp-rest-api.jpg?resize=600%2C599" alt="Building Themes with the WP REST API session from Jack Lenox" class="size-full wp-image-40968" /></a>Building Themes with the WP REST API session from Jack Lenox\n<p>Sunday afternoon included a Q&A session with the WordPress core developers Helen Hou-Sandí, Mark Jaquith, and John Blackbourn. Attendees came ready with questions regarding leading a release, recommended development tools, how to stay on top of core development news, and the status of contributing via GitHub. The reasoning behind why WordPress’ minimum PHP version still lingers at 5.2 was of particular interest.</p>\n<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/core-devs.jpg" rel="prettyphoto[40953]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/core-devs.jpg?resize=599%2C449" alt="photo credit: Petya Raykovska" class="size-full wp-image-40971" /></a>photo credit: <a href="https://twitter.com/petyeah/status/579664424325242881" target="_blank">Petya Raykovska</a>\n<p>WordCamp London provided an excellent opportunity for attendees to connect with core developers and contributors on various open source projects surrounding WordPress. The event also brought together local agencies and user groups from around the UK.</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/03/user-groups.jpeg" rel="prettyphoto[40953]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/03/user-groups.jpeg?resize=1024%2C586" alt="user-groups" class="aligncenter size-full wp-image-41044" /></a></p>\n<p>“I am bowled over by the energy in the UK WordPress scene,” Brighton resident Elliot Taylor <a href="http://raison.co/wordcamp-london-2015/" target="_blank">said</a> of the event.</p>\n<p>“So many forward thinking and innovative companies are based in the UK. It’s great to meet those I’ve been following on twitter and discover new people.”</p>\n<p>Attendee <a href="https://twitter.com/reyhan/status/579755544451383298" target="_blank">Rey Dhuny</a> concurred, remarking that the WordCamp brought together a “great community of WordPress folk who are super passionate about what they’re building and nurturing.”</p>\n<p>The organizers did an excellent job representing the local flavor and highlighting some of the UK’s finest WordPress speakers. Overall, attendees left WordCamp London better connected, refreshed, and inspired to tackle their upcoming projects.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 23 Mar 2015 12:30:24 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:38:"Matt: So This Climate Walks Into a 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:21:"http://ma.tt/?p=44855";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"http://ma.tt/2015/03/so-this-climate-walks-into-a-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:131:"<p></p>\n<p>Great talk introducing Grist.org and the state of the environment, including a number of things to be excited about.</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, 23 Mar 2015 03:46: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: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:60:"WPTavern: Pakistan is Blocking Sites Hosted on 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:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=40936";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:70:"http://wptavern.com/pakistan-is-blocking-sites-hosted-on-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:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3106:"<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/flag-pakistan.jpg" rel="prettyphoto[40936]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/flag-pakistan.jpg?resize=600%2C308" alt="photo credit: funnfun.in" class="size-full wp-image-40946" /></a>photo credit: <a href="http://www.funnfun.in/flag-pakistan-picture/" target="_blank">funnfun.in</a>\n<p>Local Pakistani news <a href="http://propakistani.pk/2015/03/22/pta-blocks-wordpress-com-in-pakistan/" target="_blank">sources</a> are reporting that the <a href="http://www.pta.gov.pk/" target="_blank">Pakistan Telecommunication Authority</a> (PTA) has demanded that local internet service providers block access to <a href="http://wordpress.com" target="_blank">WordPress.com</a>. Traffic originating from all major Pakistani ISPs will not be able to view sites hosted on WordPress.com. Self-hosted WordPress sites currently remain unaffected.</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/03/wordpressdotcom-blocked-pakistan.jpg" rel="prettyphoto[40936]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/03/wordpressdotcom-blocked-pakistan.jpg?resize=556%2C370" alt="wordpressdotcom-blocked-pakistan" class="aligncenter size-full wp-image-40940" /></a></p>\n<p>An anonymous source told <a href="http://propakistani.pk/2015/03/22/pta-blocks-wordpress-com-in-pakistan/" target="_blank">ProPakistani.pk</a> that the content causing the block is a matter of Pakistani national security but that WordPress.com should be unblocked within 48 hours:</p>\n<blockquote><p>A source at Pakistan Telecommunication Authority has confirmed ProPakistani that WordPress.com is temporarily blocked in Pakistan due to severe issues related to national security. It appears now that blocking decision is somewhat related to Pakistan Day.</p></blockquote>\n<p>Pakistan Day is a public holiday celebrated every year on March 23, marking the country’s independence from British India. Public businesses are generally closed. The holiday typically includes a parade, festivals, parties, and a national awards ceremony for military personnel and civilians.</p>\n<p>At this time, the reason for the block has not been officially confirmed but ProPakistani.pk’s sources indicate that it is not due to outright censorship. However, Pakistan has a <a href="http://en.wikipedia.org/wiki/Websites_blocked_in_Pakistan" target="_blank">history of blocking sites</a>, such as YouTube, Facebook, and Flickr, citing “blasphemous material” as the reason.</p>\n<p>According to <a href="http://12mars.rsf.org/2014-en/2014/03/10/pakistan-upgraded-censorship/" target="_blank">Reporters Without Borders</a>, the PTA blocked 20,000 to 40,000 websites in 2014 for content that authorities deemed inappropriate. Since the PTA also issues licenses to ISPs, any company that fails to comply is at risk of losing its operating license.</p>\n<p>As there is no official announcement from the PTA at this time, it is yet to be determined whether WordPress.com is under a temporary block or a permanent one.</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, 22 Mar 2015 22:14: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:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:31:"Matt: Meyer Sound Constellation";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=44751";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:47:"http://ma.tt/2015/03/meyer-sound-constellation/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"<p>The Appel Room at Jazz at Lincoln Center has an <cite><a href="http://www.cnet.com/news/meyer-sounds-advanced-tech-takes-concert-sound-into-the-21st-century/">awesome ambient sound system that sounds acoustic and full from every point in the 500-seat room.</a>. <cite>Hat tip: <a href="http://www.niallkennedy.com/">Niall</a></cite>.</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, 22 Mar 2015 04:54: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: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:56:"WPTavern: WordCamp London 2015 Contributor Day in Photos";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=40899";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/wordcamp-london-2015-contributor-day-in-photos";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3387:"<p><a href="http://london.wordcamp.org/2015/" target="_blank">WordCamp London 2015</a> kicked off this morning with Contributor Day. 100 attendees convened at the graduate center on Holloway Road for a full day of giving back to WordPress, BuddyPress, and GlotPress. Contributors wrote and tested patches, created documentation, answered support questions, and collaborated on marketing materials.</p>\n\n<a href="http://wptavern.com/wordcamp-london-2015-contributor-day-in-photos/attachment/135"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/03/135.jpg?resize=150%2C150" class="attachment-thumbnail" alt="135" /></a>\n<a href="http://wptavern.com/wordcamp-london-2015-contributor-day-in-photos/attachment/141"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/141.jpg?resize=150%2C150" class="attachment-thumbnail" alt="141" /></a>\n<a href="http://wptavern.com/wordcamp-london-2015-contributor-day-in-photos/attachment/142"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/142.jpg?resize=150%2C150" class="attachment-thumbnail" alt="142" /></a>\n<a href="http://wptavern.com/wordcamp-london-2015-contributor-day-in-photos/attachment/147"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/03/147.jpg?resize=150%2C150" class="attachment-thumbnail" alt="147" /></a>\n<a href="http://wptavern.com/wordcamp-london-2015-contributor-day-in-photos/attachment/151"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/151.jpg?resize=150%2C150" class="attachment-thumbnail" alt="151" /></a>\n<a href="http://wptavern.com/wordcamp-london-2015-contributor-day-in-photos/155-2"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/03/155.jpg?resize=150%2C150" class="attachment-thumbnail" alt="155" /></a>\n<a href="http://wptavern.com/wordcamp-london-2015-contributor-day-in-photos/157-2"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/03/157.jpg?resize=150%2C150" class="attachment-thumbnail" alt="157" /></a>\n<a href="http://wptavern.com/wordcamp-london-2015-contributor-day-in-photos/attachment/158"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/158.jpg?resize=150%2C150" class="attachment-thumbnail" alt="158" /></a>\n<a href="http://wptavern.com/wordcamp-london-2015-contributor-day-in-photos/attachment/159"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/03/159.jpg?resize=150%2C150" class="attachment-thumbnail" alt="159" /></a>\n<a href="http://wptavern.com/wordcamp-london-2015-contributor-day-in-photos/attachment/162"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/03/162.jpg?resize=150%2C150" class="attachment-thumbnail" alt="162" /></a>\n<a href="http://wptavern.com/wordcamp-london-2015-contributor-day-in-photos/attachment/174"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/174.jpg?resize=150%2C150" class="attachment-thumbnail" alt="174" /></a>\n<a href="http://wptavern.com/wordcamp-london-2015-contributor-day-in-photos/attachment/176"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/03/176.jpg?resize=150%2C150" class="attachment-thumbnail" alt="176" /></a>\n<a href="http://wptavern.com/wordcamp-london-2015-contributor-day-in-photos/attachment/177"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/177.jpg?resize=150%2C150" class="attachment-thumbnail" alt="177" /></a>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 20 Mar 2015 17:47: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:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:28;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:51:"WPTavern: Slack Releases Standalone App For Windows";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=40918";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:61:"http://wptavern.com/slack-releases-standalone-app-for-windows";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1944:"<p>After months of requests, <a title="https://slack.com/" href="https://slack.com/">Slack</a> has released a <a title="http://slackhq.com/post/113969353750/slack-for-windows" href="http://slackhq.com/post/113969353750/slack-for-windows">standalone app for Windows</a>. Until now, those on Windows machines could only use Slack through a browser. The app is fast and provides a similar user experience to its <a title="https://itunes.apple.com/us/app/slack/id803453959?mt=12" href="https://itunes.apple.com/us/app/slack/id803453959?mt=12">Mac counterpart</a>. It works on Windows 7 and above, including the Windows 10 preview.</p>\n<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/03/SlackWindowsApp.png" rel="prettyphoto[40918]"><img class="size-full wp-image-40919" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/03/SlackWindowsApp.png?resize=1025%2C730" alt="Slack on Windows" /></a>Slack on Windows\n<p>Instead of using a browser tab for each team you’re connected to, the app has a team switcher on the left sidebar. Each team has its own notification count and you can easily switch between them using <a title="https://slack.zendesk.com/hc/en-us/articles/201374536-Slack-keyboard-shortcuts" href="https://slack.zendesk.com/hc/en-us/articles/201374536-Slack-keyboard-shortcuts">keyboard shortcuts</a>.</p>\n<p>There’s a few other features as well, but the most important one for me is its performance. When I used Slack in FireFox, it routinely bogged down the browser to the point of having to close it. Now that Slack is a standalone app on Windows, I don’t have to worry about my browser slowing to a crawl. It’s also nice to be able to run Slack in the background without it using a lot of resources.</p>\n<p>With more than 30% of Slack’s users running Windows, it’s nice to finally have an option that’s on par with the experience Mac users have enjoyed for months.</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, 20 Mar 2015 16:41: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: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:36:"Matt: The Billionaire’s Typewriter";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=44875";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:32:"http://ma.tt/2015/03/typewriter/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1365:"<blockquote><p>In truth, Medium’s main product is not a publishing platform, but the promotion of a publishing platform. This promotion brings readers and writers onto the site. This, in turn, generates the usage data that’s valuable to advertisers. Boiled down, Medium is simply marketing in the service of more marketing. It is not a “place for ideas.” It is a place for advertisers. It is, therefore, utterly superfluous.</p></blockquote>\n<p>and</p>\n<blockquote><p>As a fan of minimalism, however, I think that term is misapplied here. Minimalism doesn’t foreclose either expressive breadth or conceptual depth.</p></blockquote>\n<p>and </p>\n<blockquote><p>To get his fracking permit on your territory, Mr. Williams (the multibillionaire) needs to persuade you (the writer) that a key consideration in your work (namely, how & where you offer it to readers) is a “waste of time.”</p></blockquote>\n<p>Matthew Butterick’s essay <a href="http://practicaltypography.com/billionaires-typewriter.html"><cite>The billionaire’s typewriter</cite> has a fairly complete and scathing takedown of Medium’s rhetoric, promise for writers, and product offering</a>. Hat tip: <a href="http://aten.co/">Edward Aten</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, 20 Mar 2015 16:15: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:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:30;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:99:"WPTavern: How to Add a WordPress Site’s Pageview and Visitor Count to The iOS Notification Center";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=40879";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:106:"http://wptavern.com/how-to-add-a-wordpress-sites-pageview-and-visitor-count-to-the-ios-notification-center";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3015:"<p>If you use the <a title="https://itunes.apple.com/us/app/wordpress/id335703880?mt=8" href="https://itunes.apple.com/us/app/wordpress/id335703880?mt=8">WordPress for iOS mobile app</a>, you can easily add a site’s pageviews and visitor stats to the iOS notification center. To add WordPress to the notification center, perform a top to bottom swipe on the iPhone’s home screen. Scroll to the bottom and tap the Edit button.</p>\n<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/332.png" rel="prettyphoto[40879]"><img class="wp-image-40882 size-large" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/332.png?resize=282%2C500" alt="Notification Center Edit Button" /></a>Click the edit button\n<p>You should see the WordPress app in the Do Not Include section. Click the green plus symbol next to WordPress to add it to the Today summary. When viewing the Today summary, you’ll see visitor and pageview statistics.</p>\n\n<a href="http://wptavern.com/how-to-add-a-wordpress-sites-pageview-and-visitor-count-to-the-ios-notification-center/attachment/331"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/03/331.png?fit=500%2C500" class="attachment-large" alt="Adding WordPress to The Notifcation Center" /></a>\n<a href="http://wptavern.com/how-to-add-a-wordpress-sites-pageview-and-visitor-count-to-the-ios-notification-center/attachment/335"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/335.png?fit=500%2C500" class="attachment-large" alt="Website stats in the notification center" /></a>\n\n<p>If you manage multiple sites through the app and want to display a different site’s statistics, open the WordPress mobile app and select the site you want to display.</p>\n<p>Tap the stats link, then tap on the Today link in to the top right portion of the screen where an alert explains that statistics will display in the notification center. Keep in mind that you can only display statistics of one site.</p>\n\n<a href="http://wptavern.com/how-to-add-a-wordpress-sites-pageview-and-visitor-count-to-the-ios-notification-center/attachment/333"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/333.png?fit=500%2C500" class="attachment-large" alt="WP Tavern''s statistics" /></a>\n<a href="http://wptavern.com/how-to-add-a-wordpress-sites-pageview-and-visitor-count-to-the-ios-notification-center/attachment/334"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/334.png?fit=500%2C500" class="attachment-large" alt="Selecting Use This Site will add its stats to the Notification center" /></a>\n\n<p>I’d like to see this feature expanded so that I can add multiple sites to the notification center where I can view stats for different sites by swiping left or right. I’d also like to configure which two statistics are displayed. Despite these caveats, it’s a quick and convenient way to view a site’s visitor and pageview count without having to load the WordPress mobile app.</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, 20 Mar 2015 07:23: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: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:85:"WPTavern: WPWeekly Episode 184 – Inside Envato With Stephen Cronin and Will Herring";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=40874&preview_id=40874";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:91:"http://wptavern.com/wpweekly-episode-184-inside-envato-with-stephen-cronin-and-will-herring";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3008:"<p><a title="http://marcuscouch.com/" href="http://marcuscouch.com/">Marcus Couch</a> and I are joined by <a title="https://twitter.com/stephencronin" href="https://twitter.com/stephencronin">Stephen Cronin</a> and <a title="https://twitter.com/williamherring" href="https://twitter.com/williamherring">William Herring</a> of Envato to discuss ThemeForest, Envato, WordPress themes, and several other topics. We discover how ThemeForest reviews themes and discuss what the company is doing to improve the quality of themes sold on its marketplace. After the interview, we cover the news and wrap up the show with the plugin picks of the week.</p>\n<h2>Stories Discussed:</h2>\n<p><a title="http://wptavern.com/wordpress-4-2-beta-1-now-available-for-testing" href="http://wptavern.com/wordpress-4-2-beta-1-now-available-for-testing">WordPress 4.2 Beta 1 Now Available for Testing</a><br />\n<a title="http://wptavern.com/pods-framework-security-release-fixes-severe-vulnerability" href="http://wptavern.com/pods-framework-security-release-fixes-severe-vulnerability">Pods Framework Security Release Fixes Severe Vulnerability</a><br />\n<a title="http://wptavern.com/tidy-repo-launches-wordpress-plugin-recommendation-service" href="http://wptavern.com/tidy-repo-launches-wordpress-plugin-recommendation-service">Tidy Repo Launches WordPress Plugin Recommendation Service</a><br />\n<a title="http://wptavern.com/jetpack-3-4-adds-protection-against-brute-force-attacks" href="http://wptavern.com/jetpack-3-4-adds-protection-against-brute-force-attacks">Jetpack 3.4 Adds Protection Against Brute Force Attacks</a></p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a title="https://wordpress.org/plugins/text-2-speech/" href="https://wordpress.org/plugins/text-2-speech/">TEXT2SPEECH</a> allows you to automatically transform any text to an HTML5 MP3 player where Google voice will read it.</p>\n<p><a title="https://wordpress.org/plugins/equal-height-columns/" href="https://wordpress.org/plugins/equal-height-columns/">Equal Height Columns</a> lets you easily equalize the height of various columns and elements.</p>\n<p><a title="https://wordpress.org/plugins/latest-video-post-widget/" href="https://wordpress.org/plugins/latest-video-post-widget/">Latest Video</a> is a widget that shows the latest post that contains video embedded with an iFrame.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, March 25th 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 #184:</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:"Fri, 20 Mar 2015 05:38:27 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"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:27:"Matt: Prada Revolutionaries";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=44770";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:43:"http://ma.tt/2015/03/prada-revolutionaries/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:656:"<blockquote><p>“For every McDonald’s you blow up, ‘they’ will build two. Instead of slapping a wad of Semtex between the Happy Meals and the plastic tray, work your way up through the ranks, take over the board of Directors and turn the company into an international laughing stock.”</p>\n<p>Sounds nice in theory. But I knew corporations were more resilient than that. Sabotaging the system from inside was as much a pipe dream as changing it through politics and protest.</p></blockquote>\n<p>From <a href="http://technoccult.net/archives/2013/11/18/prada-revolutionaries/">Prada Revolutionaries: Confessions of a Recovering Solutionist</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, 20 Mar 2015 02:48: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: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:94:"WPTavern: How to Add a Featured Image Column to The Post Listing Page in The WordPress Backend";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=40857";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/how-to-add-a-featured-image-column-to-the-post-listing-page-in-the-wordpress-backend";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2800:"<p>Featured images usually serve as the main image for a post or page. However, one of the problems with featured images is that you can’t see which posts they’re assigned to unless you edit an individual post or page.</p>\n<p><a title="https://wordpress.org/plugins/post-list-featured-image/" href="https://wordpress.org/plugins/post-list-featured-image/">Post List Featured Image,</a> developed by <a title="http://jaggededgemedia.com/" href="http://jaggededgemedia.com/">Jagged Edge Media</a>, solves this problem by adding a featured image column to the post listing in the backend of WordPress.</p>\n<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/FeaturedImagePostColumn.png" rel="prettyphoto[40857]"><img class="size-full wp-image-40859" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/FeaturedImagePostColumn.png?resize=1025%2C417" alt="Featured Image Column" /></a>Featured Image Column\n<p>The plugin also comes with a set of filters that allow you to sort through posts with and without a featured image.</p>\n<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/FeaturedImagePostFiltering.png" rel="prettyphoto[40857]"><img class="size-full wp-image-40860" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/FeaturedImagePostFiltering.png?resize=396%2C108" alt="Featured Image Filtering Options" /></a>Featured Image Filtering Options\n<p>Unlike some of the other plugins I tested, this one has three different thumbnail sizes to choose from, 50×50, 100×100, and 150×150. I recommend using the largest size since it’s hard to make out details in smaller images.</p>\n<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/03/FeaturedImagePostColumnSettings.png" rel="prettyphoto[40857]"><img class="size-full wp-image-40861" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/03/FeaturedImagePostColumnSettings.png?resize=697%2C453" alt="Post List Featured Image Settings" /></a>Post List Featured Image Settings\n<p>Although 150×150 is a decent size, I’d like to be able to click on an image and see the full size in a model window. This would make it convenient to see the full size instead of having to right-click and select view image.</p>\n<p>Out of the box, the image size is the only thing to configure. Post List Featured Image works without any issues on WordPress 4.1 and is <a title="https://wordpress.org/plugins/post-list-featured-image/" href="https://wordpress.org/plugins/post-list-featured-image/">available for free</a> on the WordPress plugin directory. If you’re looking for more features, there’s a <a title="http://jaggededgemedia.com/pro-plugins-shop/" href="http://jaggededgemedia.com/pro-plugins-shop/">pro version</a> available as well.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 18 Mar 2015 21:28:27 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"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:65:"WPTavern: Jetpack 3.4 Adds Protection Against Brute Force Attacks";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=40830";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/jetpack-3-4-adds-protection-against-brute-force-attacks";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2470:"<p>Last August, <a href="http://wptavern.com/automattic-acquires-parka-llc-the-creators-of-bruteprotect" target="_blank">Automattic acquired Parka, LLC</a>, the makers of the <a href="https://bruteprotect.com/" target="_blank">BruteProtect</a> security tool for WordPress, with the goal of integrating its features into Jetpack. The services provided in BruteProtect Pro were subsequently offered for free.</p>\n<p><a href="http://jetpack.me/2015/03/17/jetpack-3-4-protect-secure-and-simplify/" target="_blank">Jetpack 3.4</a> was released today with brute force protection available to users via a new module called Protect. You can find it under the Jetpack settings page or within your centralized dashboard on WordPress.com.</p>\n<p>Enabling protection against botnet attacks is as simple as checking a box:</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/03/security.png" rel="prettyphoto[40830]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/03/security.png?resize=666%2C590" alt="security" class="aligncenter size-full wp-image-40834" /></a></p>\n<p>The new module protects your login form from brute force attempts and allows you to scan your site for malicious code in Jetpack. It also allows you to manage a whitelist of IP addresses if you ever need to prevent Jetpack from blocking one.</p>\n<p>At the bottom of your Jetpack stats summary, where you find the number of spam comments blocked by Akismet, you’ll also now see the number of blocked malicious login attempts.</p>\n<p>As of February 2015, the BruteProtect plugin has defended over 225,000 sites from more than 350 million botnet attacks. The plan is to phase out the independent plugin by the end of 2015 in favor of maintaining its features via Jetpack.</p>\n<p>Jetpack Protect is a truly compelling new addition to the plugin. Its inclusion means that millions of WordPress sites will now have free access to protection against brute force attacks, making a large portion of the web more secure.</p>\n<p>With the addition of Protect, the plugin has grown to include 36 modules, which can be a bit overwhelming for new users. Jetpack 3.4 introduces a new “Jump Start” feature that will activate a curated set of modules to get you started. This release also includes a list of 43 enhancements and 11 bug fixes, which you can view on the plugin’s <a href="https://wordpress.org/plugins/jetpack/changelog/" target="_blank">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, 18 Mar 2015 17:23:11 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:35;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:75:"WPTavern: Frito-Lay’s Custom Project Management App Is Built on 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=40423";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/frito-lays-custom-project-management-app-is-built-on-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:6597:"<p>Every year <a href="http://www.fritolay.com/" target="_blank">Frito-Lay</a> pulls in billions of dollars from sales of its flagship assortment of potato chips, including Fritos, Cheetos, Doritos, Tostitos, and Ruffles. Behind all of these crunchy snacks is a busy hive of designers and project managers who require a robust system for working together on creative projects.</p>\n<p>Last year, Frito-Lay approached <a href="http://liftux.com/" target="_blank">Lift</a>, a WordPress design and development agency, to create a custom project management/proofing app for its creative team. Lift opted to <a href="http://liftux.com/portfolio/frito-lay-creative-project-management-app/" target="_blank">build the app using WordPress as a base</a>. The result is a completely customized admin experience tailored to fit Frito-Lay’s workflow like a glove.</p>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/frito-lay-showcase.jpg" rel="prettyphoto[40423]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/frito-lay-showcase.jpg?resize=1025%2C918" alt="frito-lay-showcase" class="aligncenter size-full wp-image-40787" /></a></p>\n<h3>Under the Hood of the App</h3>\n<p>The project management app melds a collection of plugins with an accompanying theme to deliver the necessary user roles, custom fields, notifications/updates, and upload management.</p>\n<p>“We created a custom theme that includes modifications to the WordPress admin and force redirects users to sign in if they attempt to visit a page that typically would appear on the front-end,” Lift Partner <a href="https://twitter.com/chriswallace" target="_blank">Chris Wallace</a> said. His team used a number of plugins to customize the admin, including:</p>\n<ul>\n<li><a href="https://wordpress.org/plugins/advanced-custom-fields/" target="_blank">Advanced Custom Fields</a> by Elliot Condon</li>\n<li><a href="https://wordpress.org/plugins/members/" target="_blank">Members</a> by Justin Tadlock</li>\n<li><a href="https://wordpress.org/plugins/stream/" target="_blank">Stream</a> (the pre-cloud based version) by X-Team</li>\n<li><a href="https://wordpress.org/plugins/amazon-s3-and-cloudfront/" target="_blank">Amazon S3 and Cloudfront</a> by Brad Touesnard</li>\n</ul>\n<p>Lift implemented the custom admin design as part of the theme. They built it in such a way that the client will be able to keep pace with WordPress core and plugin updates without breaking the app.</p>\n<p>“We tried to keep major UI changes to a minimum and focus on building the UI with Advanced Custom Fields wherever we needed that level of customization,” Wallace said.</p>\n<p>“There are a few custom UI elements but they are styled and managed through our custom theme, so updated plugins and WordPress Core shouldn’t ever really break those things as long as major actions and filters remain in place.”</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/03/frito-lay-ui-elements.png" rel="prettyphoto[40423]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/03/frito-lay-ui-elements.png?resize=1020%2C495" alt="frito-lay-ui-elements" class="aligncenter size-full wp-image-40807" /></a></p>\n<p>Lift customized the project workflow for Frito-Lay using new workflows based on post statuses, modeled after the way <a href="https://wordpress.org/plugins/edit-flow/" target="_blank">Edit Flow</a> manages the editorial process.</p>\n<p>“When projects are updated, we check for a certain status and send out update emails to whoever needs to be notified for certain stages of the project,” Wallace said. “Additionally, we swapped the ‘publish’ metabox out for a custom one based on our status updates, allowing us to easily show the state of the project and change the UI as necessary.”</p>\n<h3>Why Use WordPress Instead of Basecamp?</h3>\n<p>You might be wondering why Frito-Lay would opt to build its own project management app when something like Basecamp already exists with similar features.</p>\n<p>Basecamp’s top pricing tier is $3K per year and has a maximum storage limit of 500GB. That limit could be used up fairly quickly while managing design projects, which often require passing large files back and forth between team members.</p>\n<p>Instead, Frito-Lay stores all of its data on Amazon, which allows the team to organize files exactly how it needs them. Building a custom project management app preserves the team’s established workflow. They never have to worry about running out of space and can always modify the app’s behavior if necessary in the future.</p>\n<p>Wallace said that it’s not uncommon for Lift to receive requests from companies that prefer to build their own custom software, instead of going with a SaaS provider. In many cases, building a custom solution is more cost effective for the client in the long run.</p>\n<p>“Most of the projects we’ve done recently have been for television networks and news organizations but we do receive frequent requests to modify workflows in the WordPress admin,” he said. “I would say most of our work involves theme design but there are definitely clients who need plugins that add or modify the admin one way or another.”</p>\n<p>Although WordPress proved to be a strong option for Frito-Lay, Wallace and the Lift team don’t always pitch the platform for their projects.</p>\n<p>“It just so happens that it is a good fit for many of the projects we are presented with,” he said. “I think for most website projects nowadays, clients just need something familiar, fast, and easy to use and WordPress typically fits in with that.”</p>\n<p>Lift is currently building more projects with AngularJS using the WordPress REST API to create more customized app-like solutions.</p>\n<p>“I think the ability to create WordPress-powered apps in Javascript is a big step forward for WordPress,” Wallace said. “It allows you to create and manage a number of apps that can interact with a single WordPress site.”</p>\n<p>Building custom apps for clients doesn’t always mean starting from scratch. “I think we’ve gotten to the point where WordPress has proven to be highly stable, scalable, fast, and easy-to-use,” he said.</p>\n<p>“If you need advice, there are a bunch of local meetups and online groups dedicated to WP, an advantage which is lacking in some of the smaller CMS tools out there. Community is everything.”</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, 18 Mar 2015 16:27:40 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:35:"Matt: Chosen as Young Global Leader";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=44864";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"http://ma.tt/2015/03/chosen-as-young-global-leader/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:457:"<p>I’m very honored to be chosen as part of the<br />\nWorld Economic Forum’s <a href="http://widgets.weforum.org/ygl-2015/04.html">Young Global Leaders class of 2015</a> alongside some really amazing folks. I spoke at Davos a few years ago and it was a very interesting experience — I think they snuck me in on a media badge, which is <a href="http://ma.tt/2013/02/fifth-estate/">why I wrote a post about the fifth estate for them</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, 18 Mar 2015 15:10: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: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: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:47:"WPTavern: Recap of WordCamp St. Louis, MO, 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=40776";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"http://wptavern.com/recap-of-wordcamp-st-louis-mo-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:8306:"<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/03/WordCampStLouis2015FeaturedImage.png" rel="prettyphoto[40776]"><img class="aligncenter size-full wp-image-39884" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/03/WordCampStLouis2015FeaturedImage.png?resize=754%2C218" alt="WordCamp St Louis 2015 Featured Image" /></a>This past weekend, more than 300 people attended <a title="http://stlouis.wordcamp.org/2015/" href="http://stlouis.wordcamp.org/2015/">WordCamp St. Louis, MO, 2015</a> on the campus of <a title="http://wustl.edu/" href="http://wustl.edu/">Washington University</a>. For more than half of the attendees, this was their first WordCamp. With <a title="http://stlouis.wordcamp.org/2015/schedule/" href="http://stlouis.wordcamp.org/2015/schedule/">four tracks</a> going on at the same time, attendees had plenty of opportunities to learn.</p>\n<h2>Great WiFi</h2>\n<p>As to be expected, WiFi coverage was great throughout the event. I didn’t hear anyone complain about connection problems or speed. In my experience, WordCamps held on college campuses usually have great speed and are built to handle a large number of concurrent connections. WordCamp St. Louis was no exception.</p>\n<h2>Crowded Classrooms</h2>\n<p>Outside of a few sessions and keynotes in the main auditorium, sessions were held in classrooms that can fit 20-30 people comfortably. Some sessions were more popular than others where there was standing and sitting room only. Not only did some attendees have to sit on the floor or stand up during the session, it caused the room’s temperature to significantly increase.</p>\n<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/WCStLouisWPSecuritySession.jpg" rel="prettyphoto[40776]"><img class="size-full wp-image-40777" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/WCStLouisWPSecuritySession.jpg?resize=1024%2C768" alt="Standing and Sitting Room Only to Learn WP Security" /></a>Standing and Sitting Room Only to Learn WP Security\n<p>It’s hard to predict how popular a given session is going to be without some sort of survey before hand. I hope the organizing team sends out a post event survey to find out which sessions were the most popular so they can assign them to larger rooms next year.</p>\n<h2>My Favorite Session</h2>\n<p>My favorite session was by <a title="http://sara-cannon.com/" href="http://sara-cannon.com/">Sara Cannon</a> on the <a title="stlouis.wordcamp.org/2015/session/wordpress-and-user-experience/" href="http://wptavern.com/stlouis.wordcamp.org/2015/session/wordpress-and-user-experience/">WordPress User Experience</a> and how it can be improved. She shared a number of plugins to improve the user experience for publishers, site owners, and content creators.</p>\n<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/SaraCannonWCStLouis.jpg" rel="prettyphoto[40776]"><img class="size-full wp-image-40780" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/SaraCannonWCStLouis.jpg?resize=1024%2C768" alt="Sara Cannon at WordCamp St. Louis" /></a>Sara Cannon at WordCamp St. Louis\n<p>Some of the plugins mentioned include <a title="https://wordpress.org/plugins/simple-page-ordering/" href="https://wordpress.org/plugins/simple-page-ordering/">Simple Page Ordering</a>, <a title="https://wordpress.org/plugins/featured-image-column/" href="https://wordpress.org/plugins/featured-image-column/">Featured Image Column</a>, and <a title="https://wordpress.org/plugins/drag-drop-featured-image/" href="https://wordpress.org/plugins/drag-drop-featured-image/">Drag and Drop Featured Image</a>. Here <a title="http://www.slideshare.net/saracannon/wordpress-user-experience-wordcamp-st-louis" href="http://www.slideshare.net/saracannon/wordpress-user-experience-wordcamp-st-louis">are the slides</a> from her presentation and expect reviews of these plugins in future posts on the Tavern.</p>\n<h2>KidsCamp</h2>\n<p>KidsCamp featured children between the ages of 9-13 years old learning WordPress inside and out. Russell Fair, Chris Koerner, Lucas Lima, and Eric Juden taught them the following:</p>\n<ul>\n<li>What is WordPress?</li>\n<li>How is it being used?</li>\n<li>Let’s create our blog! (using a free account on wordpress.com)</li>\n<li>How to add new posts and pages</li>\n<li>How to add multimedia (photos, video)</li>\n<li>Talk about privacy and security</li>\n<li>Copyright and fair use</li>\n<li>Free and open source software (like WordPress!)</li>\n<li>Talk about the public nature of the web.</li>\n</ul>\n<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/KidsCampStLouis.jpg" rel="prettyphoto[40776]"><img class="size-full wp-image-40781" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/KidsCampStLouis.jpg?resize=1024%2C768" alt="KidsCamp St. Louis 2015" /></a>KidsCamp St. Louis 2015\n<p>Based on my observations, the children did well. One child in particular noticed that the admin bar looked similar to the top navigation bar provided by the theme and asked how to remove it. There were few questions asked as the children picked up on WordPress rather quickly.</p>\n<p>To my surprise, KidsCamp touched on copyright law and explained the public nature of the web. I didn’t interview any of the children to find out what they thought about the class, but I’m happy to see these subjects taught at an early age. I hope other WordCamps adopt a similar strategy.</p>\n<p>I spoke to a woman who was with her husband and son who has a business built on WordPress. Not only was she thrilled with KidsCamp, but she loved that there was time to learn WordPress as a family.</p>\n<h2>Contributor Day</h2>\n<p>On the second day of WordCamp, one of the day long sessions focused on <a title="http://stlouis.wordcamp.org/2015/session/give-back-to-core-2/" href="http://stlouis.wordcamp.org/2015/session/give-back-to-core-2/">contributing back to WordPress</a>. There were sessions on <a href="https://make.wordpress.org/docs/">updating documentation</a>, <a href="https://make.wordpress.org/themes/">helping the theme review team</a>, <a href="https://make.wordpress.org/support/">answering questions</a>, <a href="https://make.wordpress.org/design/">providing new designs</a>, <a href="https://make.wordpress.org/community/">hosting a local WordPress-related event</a>, and <a href="https://make.wordpress.org/core/">contributing code to WordPress</a>.</p>\n<a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/03/KonstantinObenlandWCStLouis2015.jpg" rel="prettyphoto[40776]"><img class="size-full wp-image-40782" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/03/KonstantinObenlandWCStLouis2015.jpg?resize=1024%2C768" alt="Q&A With Konstantin Obenland" /></a>Q&A With Konstantin Obenland\n<p><a title="https://twitter.com/obenland" href="https://twitter.com/obenland">Konstantin Obenland</a> did a 45 minute session where anyone in the room could ask him a question on topics related to WordPress core. <a title="https://pippinsplugins.com/" href="https://pippinsplugins.com/">Pippin Williamson</a> gave a demonstration on <a title="http://wptavern.com/how-to-adopt-a-plugin-or-put-it-up-for-adoption" href="http://wptavern.com/how-to-adopt-a-plugin-or-put-it-up-for-adoption">how to put a plugin up for adoption</a> and showed the audience how he reviews plugins before they’re approved to be on the <a title="https://wordpress.org/plugins/" href="https://wordpress.org/plugins/">official plugin directory</a>.</p>\n<h2>Incredible Value</h2>\n<p>Overall, WordCamp St. Louis was a great event. There were plenty of volunteers to help guide people around, something that is a necessity when multiple tracks, floors, and classrooms are involved. The catered food was excellent and the after party held at <a title="http://www.citymuseum.org/" href="http://www.citymuseum.org/">City Museum</a> was a blast. One person I talked to described WordCamp St. Louis as an incredible value and several other first-time WordCamper’s shared the same sentiment.</p>\n<p>The organizers did a great job putting this event together. However, if WordCamp St. Louis wants to cater to a larger audience next year, it’s going to have to find a venue with rooms that hold 30-50 people comfortably.</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, 18 Mar 2015 06:44:55 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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: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:65:"WPTavern: An Inside Look at VersionPress’ Crowdfunding Campaign";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=40758";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/an-inside-look-at-versionpress-crowdfunding-campaign";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4416:"<a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/06/VersionPressFeaturedImage.png" rel="prettyphoto[40758]"><img class="size-full wp-image-24643" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/06/VersionPressFeaturedImage.png?resize=650%2C200" alt="Version Control Featured Image" /></a>Version Control Featured Image\n<p>When <a title="http://wptavern.com/versionpress-misses-crowdfunding-goal-by-14-5k" href="http://wptavern.com/versionpress-misses-crowdfunding-goal-by-14-5k">VersionPress missed its crowdfunding goal</a> by raising only 45% of $30K, I cited several contributing factors, including lack of trust, licensing confusion, and the campaign’s short length. The lead developer of VersionPress, Borek Bernard, shared the <a title="http://blog.versionpress.net/2015/03/crowdfunding-campaign-lessons-learned/" href="http://blog.versionpress.net/2015/03/crowdfunding-campaign-lessons-learned/">lessons he learned</a> from running the campaign on the company’s blog.</p>\n<p>Bernard explains that despite the campaign being a single page site, a lot of work went into it:</p>\n<blockquote><p>In our case, the website took over 250 commits and hundreds of hours to get prepared. And it was a seemingly simple, single-page site! This was partly related to the fact that the campaign was self-hosted, but still, some tasks just can’t be skipped. For example, writing copy alone is a huge task should it be any good and easily takes weeks of effort. There are more things like that so be prepared to spend considerable amount of time and effort on the campaign page.</p></blockquote>\n<p>After I <a title="http://wptavern.com/versionpress-hopes-to-bring-version-control-to-the-masses" href="http://wptavern.com/versionpress-hopes-to-bring-version-control-to-the-masses">introduced readers to the VersionPress project,</a> several people <a title="http://wptavern.com/versionpress-hopes-to-bring-version-control-to-the-masses#comments" href="http://wptavern.com/versionpress-hopes-to-bring-version-control-to-the-masses#comments">voiced their concern</a> over the lack of licensing details. I got in touch with Bernard and explained why so many people were concerned. I explained what the GPL means to the project and the WordPress community in general. I cited examples of successful WordPress product businesses that use the license. I also told him that he’s likely receive more financial support by being 100% GPL.</p>\n<p>Although it took a few days, <a title="http://wptavern.com/versionpress-adopts-the-gpl-software-license" href="http://wptavern.com/versionpress-adopts-the-gpl-software-license">Bernard announced</a> VersionPress would be 100% GPL licensed. According to Bernard, the announcement didn’t translate into more backers.</p>\n<blockquote><p>By the way, it was interesting to see what the GPL announcement did to the actual contributions. We were told how the GPL was important and that it would bring us many more supporters, but in actuality, it didn’t have any measurable effect. During the whole campaign, the only factor that strongly correlated with the contributed sum was the number of visitors on the versionpress.net website.</p></blockquote>\n<p>It’s not clear why adopting the GPL license didn’t have an effect on the number of backers. However, I think that being licensed 100% GPL eliminates potential roadblocks that may have resulted in using a license not compatible with the GPL.</p>\n<p>One of the lessons I learned from VersionsPress’ campaign is that despite not reaching its goal, the amount of feedback from media coverage and backers was enough to verify the idea. The team continues to move forward with development and is <a title="http://blog.versionpress.net/2015/02/1-0-rc2-released/" href="http://blog.versionpress.net/2015/02/1-0-rc2-released/">nearing a 1.0 release</a>.</p>\n<p>If you’re thinking about launching a crowdfunding campaign, I highly recommend listening to <a title="http://wptavern.com/wpweekly-episode-156-a-crowdfunding-roundtable" href="http://wptavern.com/wpweekly-episode-156-a-crowdfunding-roundtable">episode 156 of WordPress Weekly</a> where Marcus Couch and I interview Scott Kingsley Clark, John Saddington, and Nick Haskins. All three describe their experience managing a crowdfunding campaign and share important tips and lessons to help reach funding goals.</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, 17 Mar 2015 21:56:48 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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:68:"WPTavern: Tidy Repo Launches WordPress Plugin Recommendation Service";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=40715";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/tidy-repo-launches-wordpress-plugin-recommendation-service";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4633:"<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/03/coffee-laptop.jpg" rel="prettyphoto[40715]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/03/coffee-laptop.jpg?resize=1025%2C505" alt="coffee-laptop" class="aligncenter size-full wp-image-40753" /></a></p>\n<p><a href="http://tidyrepo.com/" target="_blank">Tidy Repo</a> has been pumping out WordPress plugin reviews since 2013. Today co-owners <a href="https://twitter.com/jay_hoffmann" target="_blank">Jay Hoffman</a> and and <a href="https://twitter.com/jackmcconnell" target="_blank">Jack McConnell</a> are branching out to launch a new service that helps customers find a plugin for a $35 fee.</p>\n<p>The Tidy Repo <a href="http://tidyrepo.com/find-plugin-service/" target="_blank">plugin recommendation service</a> is the first of its kind. With more than 36,000 plugins listed in the WordPress.org directory, and thousands more hosted elsewhere, WordPress users can get overwhelmed when trying to pinpoint the right plugin to solve a problem. Without experience or WordPress development knowledge, the process boils down to trial and error.</p>\n<p>Tidy Repo is aiming to eliminate the need for exhaustive research. After testing thousands of plugins, with 250+ published reviews, Hoffman and McConnell believe they can save customers quite a bit of time in selecting the perfect plugin. Both are developers who have written plugins and worked with WordPress for years.</p>\n<p>“I have a good sense of where conflicts can come up and what is potentially harmful,” Hoffman said. “It does become a lot of intuition too. Anyone on the WP Plugin Review team, or the great plugin developers I know, can kind of feel through things and you start being able to spot the weak points very quickly- be that with a conflict in the code, or just a problem with its general user experience.”</p>\n<p>Hoffman has a range of criteria that he measures a plugin’s code against before recommending it to a customer:</p>\n<blockquote><p>The most important thing to me is that a plugin makes proper use of the WordPress API. If a plugin sticks to WordPress functions and hooks, that can get us a lot of the way there. It at least goes a long way in ensuring that a plugin won’t bump up against other plugins or themes. </p>\n<p>I’m also looking to make sure that if a plugin is adding something to the front-end, it is doing so in a performant way. Is it minifying CSS / JS files? Taking steps to only include external files on pages where they are necessary? You sometimes hear people complain that WordPress is slow, and I think poor front-end performance in a plugin is often the culprit. </p>\n<p>Code structure also comes into play a bit, but only as it relates to actual function. What I mean is that I don’t necessarily have a preference for structure, as long as it remains consistent. That’s just a sign of a good developer.</p></blockquote>\n<p>The basic plugin recommendation package comes with a full report, including the environment it was tested in, and a few secondary recommendations (if warranted). Additional services, such as multiple recommendations, installation, and video walkthroughs can be added to the basic package.</p>\n<p>Hoffman and McConnell hope to grow the database of Tidy Repo reviews alongside the new plugin recommendation service, but neither constitute a full-time endeavor at the moment.</p>\n<p>“It’s been a labor of love from the beginning, and this is the first time that we’re offering a premium service to our readers,” Hoffman said. “Jack and I have a ton of ideas for making the plugin discovery process a lot easier, like more elegant faceted search, in-depth guides, and a ton more, but it’s incredibly difficult to do on top of everything else that life demands.</p>\n<p>“To be frank, this is a total experiment for me. There are times when it is incredibly difficult to keep Tidy Repo going, but enough people appear to find it useful that I want to keep it around. Maybe that’s just a long way of saying Tidy Repo would be a dream full-time gig for me, if I ever had the opportunity to do so,” he said.</p>\n<p>It’s not uncommon for those who have created a helpful tool or community resource, such as <a href="http://tidyrepo.com/" target="_blank">Tidy Repo</a> or <a href="http://generatewp.com/" target="_blank">GenerateWP</a>, to try to find a way to monetize their efforts. Is there a market for the Tidy Repo co-owners’ experiment? Or will WordPress users continue to stumble on the best plugins through trial and error?</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, 17 Mar 2015 21:25:36 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:28:"Matt: Remote Work Popularity";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=44796";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/03/remote-work-popularity/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"<p>Scott Berkun asks <cite><a href="http://scottberkun.com/2015/why-isnt-remote-work-more-popular/">Why Isn’t Remote Work More Popular?</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, 17 Mar 2015 21:17: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:39:"Akismet: Akismet WordPress Plugin 3.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:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"http://blog.akismet.com/?p=1797";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://blog.akismet.com/2015/03/17/akismet-3-1-1-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:938:"<p>Version 3.1.1 of <a href="http://wordpress.org/plugins/akismet/">the Akismet plugin for WordPress</a> is now available.</p>\n<p>This update includes an improvement to the “Remove comment author URL” feature and merges the pingback DDOS protection from Akismet 2.x into the 3.x plugin line.</p>\n<p>To upgrade, visit the Updates page of your WordPress dashboard and follow the instructions. If you need to download the plugin zip file directly, links to all versions are available in <a href="http://wordpress.org/plugins/akismet/">the WordPress plugins directory</a>.</p><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/akismet.wordpress.com/1797/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/akismet.wordpress.com/1797/" /></a> <img alt="" border="0" src="http://pixel.wp.com/b.gif?host=blog.akismet.com&blog=116920&post=1797&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:"Tue, 17 Mar 2015 20:00:22 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:17:"Christopher Finke";s: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:87:"WPTavern: Hackers Hijack Fancybox Plugin to Deface WordPress Sites with ISIS Propaganda";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=40719";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:97:"http://wptavern.com/hackers-hijack-fancybox-plugin-to-deface-wordpress-sites-with-isis-propaganda";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3485:"<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/03/isis-hack.png" rel="prettyphoto[40719]"><img class="aligncenter size-full wp-image-40730" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2015/03/isis-hack.png?resize=945%2C552" alt="isis-hack" /></a></p>\n<p>Last month a vulnerability was discovered in the <a href="http://wptavern.com/zero-day-vulnerability-discovered-in-fancybox-for-wordpress-plugin" target="_blank">Fancybox for WordPress</a> plugin, making it possible for a hacker to inject an iframe into the website without needing administrator access. Although the issue was promptly patched, a string of seemingly random WordPress websites were recently compromised using this vulnerability.</p>\n<p>Hackers claiming to be acting on behalf of ISIS exploited Fancybox to deface the websites with propaganda for the terrorist group. <a href="http://www.cujournal.com/news/isis-update-hacking-of-montana-cu-provides-vital-lesson-to-community-1024100-1.html" target="_blank">Credit Union Journal</a> reports that a Montana credit union website was attacked using the Fancybox plugin as the entry point.</p>\n<p><a href="http://area43.net/2015/03/isis-vs-nascar-the-tech-behind-the-hacking-of-eldoraspeedway-com/" target="_blank">Area43.net</a> examined the cached Google source code for several other hacked sites and reported that both <a href="http://Eldoraspeedway.com" target="_blank">Eldoraspeedway.com</a> and <a href="http://Montgomeryinn.com" target="_blank">Montgomeryinn.com</a> have since removed the Fancybox for WordPress plugin.</p>\n<p>In order to deface the websites, the suspected ISIS hackers likely scanned for sites that have not updated the Fancybox for WordPress plugin, as the sites bear no other commonalities apart from using WordPress. Many <a href="http://www.independent.ie/irish-news/dublin-rape-crisis-center-website-hacked-by-isis-31051435.html" target="_blank">major</a> <a href="http://www.newsweek.com/isis-hacker-targets-websites-folk-singer-hotels-nascar-driver-312636" target="_blank">news</a> <a href="http://www.nbcnews.com/news/us-news/isis-hackers-almost-certainly-not-isis-hackers-n320296" target="_blank">outlets</a> with no understanding of WordPress’ plugin system have wrongly attributed the security flaw to WordPress itself.</p>\n<p><a href="https://wordpress.org/plugins/fancybox-for-wordpress/" target="_blank">Fancybox for WordPress</a> is currently active on more than 100,000 sites, but stats on WordPress.org do not break down how many of those are using a version older than the patched update issued in February. According to Samuel “Otto” Wood, WordPress.org pushed out a forced update for the Fancybox plugin vulnerability, although it wasn’t widely reported.</p>\n<p>What is it going to take for WordPress site administrators to keep their plugins updated? If you’re not comfortable updating WordPress plugins yourself, then you need to be on a maintenance plan with a development company to keep your software updated and secure.</p>\n<p>While many developers are not too keen on the possibility of WordPress someday <a href="http://wptavern.com/its-time-for-wordpress-to-automatically-update-themes-plugins-and-core-by-default" target="_blank">adopting automatic updates for core, plugins, and themes by default</a>, your average website owner would probably prefer it over would-be ISIS hackers exploiting the simplest of vulnerabilities to deface their websites.</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, 17 Mar 2015 17:02:36 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:30:"Matt: Meetups Around the World";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=44783";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"http://ma.tt/2015/03/meetups-around-the-world/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"<p><a href="https://kinsta.com/learn/wordpress-communities-around-the-world/">Here’s a great article about WordPress meetup communities around the world</a>, including Singapore, Argentina, France, Croatia, India, Serbia, Malta, Norway, South Africa, Canada, Switzerland, Ireland, Estonia, Egypt, Poland, Belgium, and Slovakia.</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, 17 Mar 2015 05:00:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:44;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:85:"WPTavern: Ultimate Member: A New Free Community and User Profile Plugin for WordPress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=40639";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/ultimate-member-a-new-free-community-and-user-profile-plugin-for-wordpress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:5310:"<p><a href="https://ultimatemember.com/" target="_blank">Ultimate Member</a> is the newest plugin to join the ranks of WordPress membership solutions after seven months in development. One month after landing in the WordPress.org directory, the <a href="https://wordpress.org/plugins/ultimate-member/" target="_blank">plugin</a> is already active on more than 2,000 WordPress sites and has received a 5-star rating from 73/75 reviewers.</p>\n<p>The WordPress ecosystem is flush with both free and commercial membership plugins, but Ultimate Member takes a unique approach with its heavy emphasis on frontend community features. The plugin goes beyond content restriction to provide beautifully-designed user profiles and directories out of the box.</p>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/ultimate-member.png" rel="prettyphoto[40639]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/ultimate-member.png?resize=949%2C457" alt="ultimate-member" class="aligncenter size-full wp-image-40641" /></a></p>\n<p>It includes searchable member directories and frontend user registration, login, and profiles. Administrators can create custom form fields with conditional logic. The membership features include custom user roles, content restriction, conditional menus, and more. Ultimate Member is compatible with multisite and Mandrill. It was also designed to be developer friendly with dozens of actions and filters for further customization.</p>\n<p><a href="http://ultimatememberdemo.com/" target="_blank">Live demos</a> are available for the user profiles, member directory, and user account pages.</p>\n<h3>Ultimate Member Extensions Sales Hit $1500 in the First 5 Days</h3>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/03/ultimate-member-extensions.jpg" rel="prettyphoto[40639]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/03/ultimate-member-extensions.jpg?resize=1019%2C174" alt="ultimate-member-extensions" class="aligncenter size-full wp-image-40701" /></a></p>\n<p>Co-founders <a href="https://twitter.com/calumallison" target="_blank">Calum Allison</a> and Ahmed Elmahd opted to keep the base plugin free and offer additional commercial <a href="https://ultimatemember.com/extensions/" target="_blank">extensions</a>.</p>\n<p>“We decided to use the free core + paid extensions model as we’ve seen how successful plugins such as WooCommerce, Ninja Forms, and Easy Digital Downloads have been with this model,” Allison said. “We want to try replicate this success in the community/user space.”</p>\n<p>Initial extension sales indicate that the team has identified a competitive niche. “We’ve had sales of just under $1,500 from our first five days and we hope this will grow as more extensions are built and more people learn about the plugin,” Allison told the Tavern.</p>\n<p>Ultimate Member is not quite a BuddyPress alternative, but its founding duo entered the market to provide basic social features on top of membership functionality.</p>\n<p>“The plugin is useful for people looking to build a site where users can sign up and become members but are not necessarily looking to create a full-blown social network which is offered by plugins such as BuddyPress or WP Symposium,” Allison said.</p>\n<p>Currently, the most popular extensions in terms of sales are the bbPress integration and Social Login extensions. More modular social features, such as private messaging and paid membership upgrades, are currently in the works.</p>\n<p>“Longer term we are considering building themes which are designed specifically for the community niche,” Allison said.</p>\n<p>In the meantime, the duo is focusing on providing support for all users and have answered more than 400 topics on their community forum and the WordPress.org plugin support forum.</p>\n<p>“We made a decision from the beginning that we would provide support for all users of the plugin, regardless of whether they purchased an extension or not,” Allison said. “We feel that providing at least some support to free users means they are more likely to want to purchase an extension or two.”</p>\n<p>Ultimate Member is open source and available on <a href="https://github.com/ultimatemember/ultimatemember" target="_blank">GitHub</a> for contribution from developers. Co-founders Allison and Elmahd also maintain a <a href="https://trello.com/b/30quaczv/ultimate-member" target="_blank">Trello board</a> for mapping the future of the plugin and managing current issues.</p>\n<p>With a strong set of <a href="https://ultimatemember.com/features/" target="_blank">core features</a> and solid extensions sales numbers right out of the gate, <a href="https://ultimatemember.com/" target="_blank">Ultimate Member</a> is already demonstrating success with the free core plus commercial extensions business model. Even in a seemingly saturated WordPress membership plugin market, a quality product that can zero in on a specific niche has a decent chance of becoming competitive within a short time after launching. The challenge will be keeping up with the level of support they intend to offer for both commercial and free users, while growing the library of extensions.</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, 16 Mar 2015 22:55:51 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:68:"WPTavern: Pods Framework Security Release Fixes Severe 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=40651";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/pods-framework-security-release-fixes-severe-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:3704:"<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/pods.jpg" rel="prettyphoto[40651]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2015/03/pods.jpg?resize=628%2C290" alt="pods" class="aligncenter size-full wp-image-40653" /></a></p>\n<p>Last week <a href="http://wptavern.com/blind-sql-injection-vulnerability-discovered-in-wordpress-seo-plugin-by-yoast-immediate-update-recommended">a blind SQL injection vulnerability</a> was discovered in Yoast’s popular WordPress SEO plugin. Given the severity of the vulnerability and the fact that the plugin is installed on more than one million WordPress sites, the security team at WordPress.org pushed <a href="http://wptavern.com/how-to-stay-in-the-loop-if-you-turn-off-wordpress-automatic-updates" target="_blank">a forced update</a> to mitigate the possibility of mass exploitation.</p>\n<p>Following this incident, the <a href="http://pods.io/" target="_blank">Pods framework</a> team proactively performed a security review of their <a href="https://wordpress.org/plugins/pods/" target="_blank">plugin</a> and found an issue similar to the one discovered and disclosed last week in the WordPress SEO plugin. Contributor Josh Pollock describes the issue in the <a href="http://pods.io/2015/03/16/important-security-disclosure/" target="_blank">release announcement</a>:</p>\n<blockquote><p>We believe this is an especially severe issue as this issue occurred in the PodsUI class, which is not only used for the Pods admin, but is also employed by many end-users to create front-end and back-end content management interfaces for non-admin users.</p>\n<p>The issue occurred in approximately Line 859 of the PodsUI class. The orderby parameter, which is passed from the browser in a GET variable was subsequently used in an SQL query without being properly sanitized.</p>\n<p>As a result malicious or other unintended SQL queries could be sent to the database by manipulating the GET request.</p></blockquote>\n<p>Pods 2.5.1.2, released today, is a security update that patches this vulnerability. If you require an earlier version of the plugin, patched versions of older versions are available the <a href="https://wordpress.org/plugins/pods/developers/" target="_blank">releases page</a>. All users are advised to update immediately.</p>\n<p>The Pods framework is used for creating, managing, and deploying customized content types and fields. It’s active on more than 30,000 WordPress installations. Contributors on the project credit Yoast’s transparency on the recent security issue as having inspired their team to proactively examine Pods.</p>\n<p>“Reading the details of their issue led us to search for similar security issues in Pods,” Pollock said. “We applaud their responsible disclosure to the community. Publishing the details helps other developers work to improve security in their own codebase.”</p>\n<h3>More Security Updates on the Way for Popular WordPress Plugins</h3>\n<p>All relatively complex plugins will have security issues pop up from time to time that will require immediate patching. Fortunately, the plugin authors in these scenarios have been quick to respond.</p>\n<p>This particular vulnerability is not limited to Pods and the WordPress SEO plugin by Yoast. Pollock advises that WordPress users should be on the lookout for more security updates to follow for other popular plugins.</p>\n<p>“Our team has done a search in several other plugins for similar issues and has reported our findings to their authors,” he said. “At this time we can not share specifics about theses issues, but will as soon as it is responsible to do so.”</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, 16 Mar 2015 18:17:37 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:35:"Alex King: In Praise of BackupBuddy";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=21405";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:47:"http://alexking.org/blog/2015/03/15/backupbuddy";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1571:"<p>I’m thrilled with my <a href="https://alexking.org/blog/2015/02/25/hosted-on-webfaction">new hosting set-up</a> for this site, however WebFaction doesn’t offer daily backups. I knew could spend the time to write a little script to export my database and pass it along to another storage location, but then I thought of <a href="https://ithemes.com/purchase/backupbuddy/">BackupBuddy from iThemes</a>.</p>\n<p>5 minutes later I had BackupBuddy installed, with a nightly job configured to do a full export of my database and store the last 10 days of backups in my Dropbox account.</p>\n<p>Sure, I could have written the code to do this myself. It’s always tempting to do-it-yourself when you know you <em>can</em> do something. The key is to ask yourself if you <em>should</em> do something. It would have taken much more than 5 minutes to get even a simple backup script written and configured; and I definitely wouldn’t have had the storage and and automation options that BackupBuddy provides out of the box.</p>\n<p>If you need hassle-free backups for your self-hosted WordPress site<sup id="fnref:1"><a href="http://alexking.org/blog/topic/wordpress/feed#fn:1" rel="footnote">1</a></sup>, give BackupBuddy a try.</p>\n<div class="footnotes">\n<hr />\n<ol>\n<li id="fn:1">\nIf you have a website, <em>please</em> make sure you have an automated backup system, and that you’ve tested your backups to make sure they actually work. <a href="http://alexking.org/blog/topic/wordpress/feed#fnref:1" rev="footnote">↩</a>\n</li>\n</ol>\n</div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 15 Mar 2015 20:05:14 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"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: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:24:"Matt: Live in the Moment";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=44759";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:40:"http://ma.tt/2015/03/live-in-the-moment/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:369:"<p>Jenna Wortham writes on <a href="http://bits.blogs.nytimes.com/2014/10/18/trying-to-live-in-the-moment-and-not-on-the-phone/">Trying to Live in the Moment (and Not on the Phone)</a>. I’ve been using the Moment app recently too, <a href="https://cloudup.com/cSfRDLJHDiv">here’s my past week of usage</a>. (I think it might count phone calls as usage.)</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, 15 Mar 2015 18:45:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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: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:23:"Matt: Series A Struggle";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=44853";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/03/raising-series-a/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:312:"<p><a href="http://firstround.com/review/what-the-seed-funding-boom-means-for-raising-a-series-a/">Josh Kopelman on why raising a Series A is harder than ever, and how startups can adapt to survive the changing investment landscape</a>. Fantastic essay, relevant for every company raising money at any stage.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 14 Mar 2015 20:45:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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: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:81:"WPTavern: BuddyPress Live Notification 2.0 Adds Real-Time Notifications for 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=40500";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:91:"http://wptavern.com/buddypress-live-notification-2-0-adds-real-time-notifications-for-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:3787:"<a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/megaphone.jpg" rel="prettyphoto[40500]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/megaphone.jpg?resize=1024%2C484" alt="photo credit: MACSwriter - cc" class="size-full wp-image-28480" /></a>photo credit: <a href="https://www.flickr.com/photos/88758069@N08/8445004895/">MACSwriter</a> – <a href="http://creativecommons.org/licenses/by-sa/2.0/">cc</a>\n<p>The <a href="https://wordpress.org/plugins/bp-live-notification/">BuddyPress Live Notification</a> plugin was originally released in 2011. Brajesh Singh, prolific plugin author and founder of <a href="http://buddydev.com/" target="_blank">BuddyDev</a>, created the plugin to provide Facebook-style real-time notifications for users. Over the past four years, a number of significant changes in both WordPress and BuddyPress have necessitated a complete rewrite of the extension.</p>\n<p>The <a href="http://buddydev.com/buddypress/introducing-buddypress-live-notification-2-0/" target="_blank">2.0 version</a> of the plugin adds support for BuddyPress’ new <a href="http://wptavern.com/buddypress-1-9-sammy-released-with-new-notifications-component" target="_blank">notifications component</a>, as well as the <a href="http://codex.wordpress.org/Function_Reference/wp_heartbeat_settings" target="_blank">Heartbeat API</a>, which is now used to fetch the notifications.</p>\n<p>The updated version includes the following:</p>\n<ul>\n<li>Complete rewrite of the code to include support for BP notifications component (introduced in BuddyPress 1.9.0)</li>\n<li>Uses WordPress Heartbeat API instead of long AJAX polling for greatly improved performance</li>\n<li>Allows theme authors to change the notifying mechanism by overriding the notify method of the bpln object</li>\n<li>Fires custom JavaScript event bpln:new_notifications when new notifications are received on the client side. A theme author can hook into it to make modifications.</li>\n</ul>\n<p>Because BP Live Notification was designed to be easy to theme and extend, Singh created an <a href="https://github.com/sbrajesh/bp-live-notification-example-module" target="_blank">example plugin</a> to demonstrate how to replace the notify window UI with your own customization.</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/03/jquery-notice-style.png" rel="prettyphoto[40500]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2015/03/jquery-notice-style.png?resize=449%2C250" alt="jquery-notice-style" class="aligncenter size-full wp-image-40617" /></a></p>\n<p>The sample plugin repackages the notification window with the <a href="https://github.com/sbrajesh/bp-live-notification-example-module/tree/master/assets/notify" target="_blank">jQuery notice plugin</a>. Check out a <a href="http://creativedream.net/plugins/jquery.notify/" target="_blank">live demo</a> to see how that style of notice is presented.</p>\n<p>If you don’t like how BP Live Notification styles its alerts by default, you can easily integrate a different jQuery notice plugin using the example Singh posted on GitHub. Searching the web will turn up a <a href="http://jqueryhouse.com/best-jquery-notification-plugins/" target="_blank">wide variety</a> of beautiful notification styles that you can adapt for use with BuddyPress.</p>\n<p>Both Twitter and Facebook use live notifications to keep users interacting on their social networks. When you receive a live notice, it confirms, in an almost tangible way, that you are at the center of where the social activity is happening. If you think this would benefit your BuddyPress network, download <a href="https://wordpress.org/plugins/bp-live-notification/">BP Live Notification</a> 2.0 for free from WordPress.org.</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, 14 Mar 2015 02:07:41 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}}}}}}}}}}s:4:"type";i:128;s:7:"headers";a:10:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Sat, 28 Mar 2015 10:56:03 GMT";s:12:"content-type";s:8:"text/xml";s:14:"content-length";s:6:"181329";s:10:"connection";s:5:"close";s:4:"vary";s:15:"Accept-Encoding";s:13:"last-modified";s:29:"Sat, 28 Mar 2015 10:45:14 GMT";s:15:"x-frame-options";s:10:"SAMEORIGIN";s:4:"x-nc";s:11:"HIT lax 250";s:13:"accept-ranges";s:5:"bytes";}s:5:"build";s:14:"20130910223210";}', 'no');
INSERT INTO `travel2_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(350, '_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1427583364', 'no'),
(351, '_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1427540164', 'no'),
(352, '_transient_timeout_feed_b9388c83948825c1edaef0d856b7b109', '1427583366', 'no'),
(353, '_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:39:"WordPress Plugins » View: Most 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:39:"WordPress Plugins » View: Most 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:"Sat, 28 Mar 2015 10:33: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: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: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:33:"15@https://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: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: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:35:"2141@https://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: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:36:"23862@https://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: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:36:"29832@https://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:137:"Wordfence Security is a free enterprise class security and performance plugin that makes your site up to 50 times faster and more secure.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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: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:"WordPress SEO 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: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:35:"8321@https://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:131:"Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using Yoast's WordPress 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: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: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:36:"29860@https://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: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:"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:34:"753@https://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: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: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:35:"2316@https://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: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: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:35:"1169@https://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 12 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: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: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:36:"18101@https://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: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: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:36:"25254@https://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: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: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:36:"21738@https://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:63:"The easiest, most effective way to secure WordPress in seconds.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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: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: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:36:"50539@https://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:148:"Displays Google Analytics reports and real-time statistics in your WordPress Dashboard. Inserts the latest tracking code in every page of your 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: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: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:11:"WP-Optimize";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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-optimize/#post-8691";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 21 Jan 2009 04:28:48 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"8691@https://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:"Simple but effective plugin allows you to extensively clean up your WordPress database and optimize it without doing manual queries.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"ruhanirabin";s: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:"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:34:"132@https://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: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:"WPtouch Mobile 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:"link";a:1:{i:0;a:5:{s:4:"data";s:48:"https://wordpress.org/plugins/wptouch/#post-5468";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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 May 2008 04:58:09 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"5468@https://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:67:"Make your WordPress website mobile-friendly with just a few clicks.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:17:"BraveNewCode Inc.";s: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: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:36:"49521@https://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: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:11:"WP Smush.it";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:51:"https://wordpress.org/plugins/wp-smushit/#post-7936";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 04 Dec 2008 00:00:37 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"7936@https://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:148:"Improve performance and get faster load times by optimizing image files with Smush.it for WordPress – “It's the best plugin of its kind.”";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"Alex Dunae";s: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:7:"bbPress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/bbpress/#post-14709";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 13 Dec 2009 00:05: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:36:"14709@https://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:50:"bbPress is forum software, made the WordPress way.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:17:"John James Jacoby";s: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:23:"MailChimp 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:58:"https://wordpress.org/plugins/mailchimp-for-wp/#post-54377";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 10 Jun 2013 17:32: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:36:"54377@https://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 best MailChimp plugin to get more email subscribers. Easily add MailChimp sign-up forms and sign-up checkboxes to your WordPress 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:16:"Danny van Kooten";s: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:15:"BackUpWordPress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/backupwordpress/#post-2236";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 02 Sep 2007 21:15:07 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"2236@https://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:59:"Simple automated backups of your WordPress powered website.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"Tom Willmot";s: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:7:"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:49:"https://wordpress.org/plugins/captcha/#post-26129";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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 Apr 2011 05:53:50 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:36:"26129@https://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:79:"This plugin allows you to implement super security captcha form into web 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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:11:"bestwebsoft";s: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:13:"WP Statistics";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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-statistics/#post-25318";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 20 Mar 2011 09:03: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:36:"25318@https://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:"Complete statistics for your WordPress 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:"Mostafa Soufi";s: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: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:35:"2572@https://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: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: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:35:"2082@https://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: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:30:"Smart Website Tools by AddThis";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:48:"https://wordpress.org/plugins/addthis/#post-8124";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 17 Dec 2008 16:03:39 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"8124@https://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:"AddThis provides the best sharing, social, recommended content, and conversion tools to help you make \nyour website smarter.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:5:"_mjk_";s: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:19:"Shortcodes Ultimate";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:61:"https://wordpress.org/plugins/shortcodes-ultimate/#post-25618";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 04 Apr 2011 13:08: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:36:"25618@https://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:61:"Supercharge your WordPress theme with mega pack of shortcodes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"Vladimir Anokhin";s: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: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:36:"12073@https://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: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:25:"Share Buttons by AddToAny";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:50:"https://wordpress.org/plugins/add-to-any/#post-498";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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 23:08: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:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"498@https://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:142:"Share buttons for WordPress including AddToAny's universal sharing button, Facebook, Twitter, Google+, Pinterest, WhatsApp and many more.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"micropat";s: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 Retina 2x";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/wp-retina-2x/#post-39551";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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 Jun 2012 11:25: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:36:"39551@https://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:"Make your website look beautiful and crisp on Retina / High DPI displays.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"Jordy Meow";s: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:12:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Sat, 28 Mar 2015 10:56:07 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:7:"expires";s:29:"Sat, 28 Mar 2015 11:08:11 GMT";s:13:"cache-control";s:0:"";s:6:"pragma";s:0:"";s:13:"last-modified";s:31:"Sat, 28 Mar 2015 10:33:11 +0000";s:15:"x-frame-options";s:10:"SAMEORIGIN";s:4:"x-nc";s:11:"HIT lax 250";}s:5:"build";s:14:"20130910223210";}', 'no'),
(354, '_transient_timeout_feed_mod_b9388c83948825c1edaef0d856b7b109', '1427583366', 'no'),
(355, '_transient_feed_mod_b9388c83948825c1edaef0d856b7b109', '1427540166', 'no'),
(356, '_transient_timeout_plugin_slugs', '1427626566', 'no'),
(357, '_transient_plugin_slugs', 'a:4:{i:0;s:19:"akismet/akismet.php";i:1;s:9:"hello.php";i:2;s:27:"LayerSlider/layerslider.php";i:3;s:41:"wordpress-importer/wordpress-importer.php";}', 'no'),
(358, '_transient_timeout_dash_4077549d03da2e451c8b5f002294ff51', '1427583366', 'no'),
(359, '_transient_dash_4077549d03da2e451c8b5f002294ff51', '<div class="rss-widget"><ul><li><a class=''rsswidget'' href=''https://wordpress.org/news/2015/03/wordpress-4-2-beta-3/''>WordPress 4.2 Beta 3</a> <span class="rss-date">March 26, 2015</span><div class="rssSummary">WordPress 4.2 Beta 3 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.2, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]</div></li></ul></div><div class="rss-widget"><ul><li><a class=''rsswidget'' href=''http://ma.tt/2015/03/gnu-manifesto-turns-thirty/''>Matt: GNU Manifesto Turns Thirty</a></li><li><a class=''rsswidget'' href=''http://wptavern.com/slack-adds-two-factor-authentication-support-after-recent-security-breach''>WPTavern: Slack Adds Two-Factor Authentication Support After Recent Security Breach</a></li><li><a class=''rsswidget'' href=''https://poststatus.com/the-excerpt-episode-2-wordpress-news-with-julie-kuehl/''>Post Status: The Excerpt Episode 2 — WordPress news with Julie Kuehl</a></li></ul></div><div class="rss-widget"><ul><li class=''dashboard-news-plugin''><span>Popular Plugin:</span> <a href=''https://wordpress.org/plugins/wp-retina-2x/'' class=''dashboard-news-plugin-link''>WP Retina 2x</a> <span>(<a href=''plugin-install.php?tab=plugin-information&plugin=wp-retina-2x&_wpnonce=e97d354cc1&TB_iframe=true&width=600&height=800'' class=''thickbox'' title=''WP Retina 2x''>Install</a>)</span></li></ul></div>', 'no'),
(360, 'themex_logo_image', 'http://localhost:81/siaxe/travel2/wp-content/uploads/2015/03/miracle-island-logo2.png', 'yes'),
(361, 'themex_login_logo', 'http://localhost:81/siaxe/travel2/wp-content/uploads/2015/03/final-logo.png', 'yes'),
(362, 'themex_favicon', 'http://localhost:81/siaxe/travel2/wp-content/uploads/2015/03/favicon.ico', 'yes');
-- --------------------------------------------------------
--
-- Table structure for table `travel2_postmeta`
--
CREATE TABLE IF NOT EXISTS `travel2_postmeta` (
`meta_id` bigint(20) unsigned NOT NULL,
`post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=711 ;
--
-- Dumping data for table `travel2_postmeta`
--
INSERT INTO `travel2_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1, 2, '_wp_page_template', 'default'),
(4, 131, '_wp_attached_file', '2012/11/background_1.jpg'),
(5, 131, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:521;s:6:"height";i:342;s:4:"file";s:24:"2012/11/background_1.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:24:"background_1-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:24:"background_1-300x197.jpg";s:5:"width";i:300;s:6:"height";i:197;s:9:"mime-type";s:10:"image/jpeg";}s:6:"normal";a:4:{s:4:"file";s:24:"background_1-440x289.jpg";s:5:"width";i:440;s:6:"height";i:289;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:1;}}'),
(6, 132, '_wp_attached_file', '2012/11/image_1.jpg'),
(7, 132, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:461;s:6:"height";i:227;s:4:"file";s:19:"2012/11/image_1.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:19:"image_1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:19:"image_1-300x148.jpg";s:5:"width";i:300;s:6:"height";i:148;s:9:"mime-type";s:10:"image/jpeg";}s:6:"normal";a:4:{s:4:"file";s:19:"image_1-440x217.jpg";s:5:"width";i:440;s:6:"height";i:217;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:1;}}'),
(8, 133, '_wp_attached_file', '2012/11/image_2.jpg'),
(9, 133, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:550;s:6:"height";i:413;s:4:"file";s:19:"2012/11/image_2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:19:"image_2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:19:"image_2-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:6:"normal";a:4:{s:4:"file";s:19:"image_2-440x330.jpg";s:5:"width";i:440;s:6:"height";i:330;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;}}'),
(10, 134, '_wp_attached_file', '2012/11/image_3.jpg'),
(11, 134, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:550;s:6:"height";i:413;s:4:"file";s:19:"2012/11/image_3.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:19:"image_3-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:19:"image_3-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:6:"normal";a:4:{s:4:"file";s:19:"image_3-440x330.jpg";s:5:"width";i:440;s:6:"height";i:330;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;}}'),
(12, 135, '_wp_attached_file', '2012/11/image_4.jpg'),
(13, 135, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:824;s:6:"height";i:370;s:4:"file";s:19:"2012/11/image_4.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:19:"image_4-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:19:"image_4-300x135.jpg";s:5:"width";i:300;s:6:"height";i:135;s:9:"mime-type";s:10:"image/jpeg";}s:6:"normal";a:4:{s:4:"file";s:19:"image_4-440x198.jpg";s:5:"width";i:440;s:6:"height";i:198;s:9:"mime-type";s:10:"image/jpeg";}s:8:"extended";a:4:{s:4:"file";s:19:"image_4-600x269.jpg";s:5:"width";i:600;s:6:"height";i:269;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;}}'),
(14, 136, '_wp_attached_file', '2012/11/image_5.jpg'),
(15, 136, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:824;s:6:"height";i:370;s:4:"file";s:19:"2012/11/image_5.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:19:"image_5-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:19:"image_5-300x135.jpg";s:5:"width";i:300;s:6:"height";i:135;s:9:"mime-type";s:10:"image/jpeg";}s:6:"normal";a:4:{s:4:"file";s:19:"image_5-440x198.jpg";s:5:"width";i:440;s:6:"height";i:198;s:9:"mime-type";s:10:"image/jpeg";}s:8:"extended";a:4:{s:4:"file";s:19:"image_5-600x269.jpg";s:5:"width";i:600;s:6:"height";i:269;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;}}'),
(16, 137, '_wp_attached_file', '2012/11/image_6.jpg'),
(17, 137, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:824;s:6:"height";i:370;s:4:"file";s:19:"2012/11/image_6.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:19:"image_6-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:19:"image_6-300x135.jpg";s:5:"width";i:300;s:6:"height";i:135;s:9:"mime-type";s:10:"image/jpeg";}s:6:"normal";a:4:{s:4:"file";s:19:"image_6-440x198.jpg";s:5:"width";i:440;s:6:"height";i:198;s:9:"mime-type";s:10:"image/jpeg";}s:8:"extended";a:4:{s:4:"file";s:19:"image_6-600x269.jpg";s:5:"width";i:600;s:6:"height";i:269;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;}}'),
(18, 138, '_wp_attached_file', '2012/11/image_7.jpg'),
(19, 138, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1022;s:6:"height";i:695;s:4:"file";s:19:"2012/11/image_7.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:19:"image_7-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:19:"image_7-300x204.jpg";s:5:"width";i:300;s:6:"height";i:204;s:9:"mime-type";s:10:"image/jpeg";}s:6:"normal";a:4:{s:4:"file";s:19:"image_7-440x299.jpg";s:5:"width";i:440;s:6:"height";i:299;s:9:"mime-type";s:10:"image/jpeg";}s:8:"extended";a:4:{s:4:"file";s:19:"image_7-600x408.jpg";s:5:"width";i:600;s:6:"height";i:408;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;}}'),
(20, 139, '_wp_attached_file', '2012/11/image_8.jpg'),
(21, 139, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:550;s:6:"height";i:413;s:4:"file";s:19:"2012/11/image_8.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:19:"image_8-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:19:"image_8-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:6:"normal";a:4:{s:4:"file";s:19:"image_8-440x330.jpg";s:5:"width";i:440;s:6:"height";i:330;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;}}'),
(22, 140, '_wp_attached_file', '2012/11/image_9.jpg'),
(23, 140, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:550;s:6:"height";i:413;s:4:"file";s:19:"2012/11/image_9.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:19:"image_9-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:19:"image_9-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:6:"normal";a:4:{s:4:"file";s:19:"image_9-440x330.jpg";s:5:"width";i:440;s:6:"height";i:330;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;}}'),
(24, 141, '_wp_attached_file', '2012/11/image_10.jpg'),
(25, 141, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:550;s:6:"height";i:413;s:4:"file";s:20:"2012/11/image_10.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"image_10-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:20:"image_10-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:6:"normal";a:4:{s:4:"file";s:20:"image_10-440x330.jpg";s:5:"width";i:440;s:6:"height";i:330;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;}}'),
(26, 142, '_wp_attached_file', '2012/11/image_11.jpg'),
(27, 142, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:550;s:6:"height";i:413;s:4:"file";s:20:"2012/11/image_11.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"image_11-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:20:"image_11-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:6:"normal";a:4:{s:4:"file";s:20:"image_11-440x330.jpg";s:5:"width";i:440;s:6:"height";i:330;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;}}'),
(28, 143, '_wp_attached_file', '2012/11/image_12.jpg'),
(29, 143, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:550;s:6:"height";i:413;s:4:"file";s:20:"2012/11/image_12.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"image_12-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:20:"image_12-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:6:"normal";a:4:{s:4:"file";s:20:"image_12-440x330.jpg";s:5:"width";i:440;s:6:"height";i:330;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;}}'),
(30, 144, '_wp_attached_file', '2012/11/image_13.jpg'),
(31, 144, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:550;s:6:"height";i:413;s:4:"file";s:20:"2012/11/image_13.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"image_13-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:20:"image_13-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:6:"normal";a:4:{s:4:"file";s:20:"image_13-440x330.jpg";s:5:"width";i:440;s:6:"height";i:330;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;}}'),
(32, 145, '_wp_attached_file', '2012/11/image_14.jpg'),
(33, 145, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:550;s:6:"height";i:413;s:4:"file";s:20:"2012/11/image_14.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"image_14-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:20:"image_14-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:6:"normal";a:4:{s:4:"file";s:20:"image_14-440x330.jpg";s:5:"width";i:440;s:6:"height";i:330;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;}}'),
(34, 146, '_wp_attached_file', '2012/11/image_15.jpg'),
(35, 146, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:550;s:6:"height";i:413;s:4:"file";s:20:"2012/11/image_15.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"image_15-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:20:"image_15-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:6:"normal";a:4:{s:4:"file";s:20:"image_15-440x330.jpg";s:5:"width";i:440;s:6:"height";i:330;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;}}'),
(36, 147, '_wp_attached_file', '2012/11/image_16.jpg'),
(37, 147, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:550;s:6:"height";i:413;s:4:"file";s:20:"2012/11/image_16.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"image_16-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:20:"image_16-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:6:"normal";a:4:{s:4:"file";s:20:"image_16-440x330.jpg";s:5:"width";i:440;s:6:"height";i:330;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;}}'),
(38, 148, '_wp_attached_file', '2012/11/image_17.jpg'),
(39, 148, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:550;s:6:"height";i:413;s:4:"file";s:20:"2012/11/image_17.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"image_17-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:20:"image_17-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:6:"normal";a:4:{s:4:"file";s:20:"image_17-440x330.jpg";s:5:"width";i:440;s:6:"height";i:330;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;}}'),
(40, 264, '_wp_attached_file', '2012/11/image_18.jpg'),
(41, 264, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:460;s:6:"height";i:752;s:4:"file";s:20:"2012/11/image_18.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"image_18-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:20:"image_18-184x300.jpg";s:5:"width";i:184;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:6:"normal";a:4:{s:4:"file";s:20:"image_18-269x440.jpg";s:5:"width";i:269;s:6:"height";i:440;s:9:"mime-type";s:10:"image/jpeg";}s:8:"extended";a:4:{s:4:"file";s:20:"image_18-367x600.jpg";s:5:"width";i:367;s:6:"height";i:600;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;}}'),
(77, 111, '_edit_last', '1'),
(78, 111, '_thumbnail_id', '145'),
(79, 111, '_gallery_images', '0=http%3A%2F%2Fthemextemplates.com%2Fdemo%2Fmidway%2Fupdates%2Fimages%2F2012%2F11%2Fimage_12.jpg&1=http%3A%2F%2Fthemextemplates.com%2Fdemo%2Fmidway%2Fupdates%2Fimages%2F2012%2F11%2Fimage_11.jpg&2=http%3A%2F%2Fthemextemplates.com%2Fdemo%2Fmidway%2Fupdates%2Fimages%2F2012%2F11%2Fimage_14.jpg'),
(80, 433, '_wp_attached_file', '2012/12/image_24.jpg'),
(81, 433, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:231;s:6:"height";i:276;s:4:"file";s:20:"2012/12/image_24.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"image_24-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;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;}}'),
(82, 84, '_edit_last', '1'),
(83, 84, '_wp_page_template', 'default'),
(84, 84, '_page_tours_destination', '0'),
(85, 84, '_page_tours_type', '0'),
(86, 96, '_wp_page_template', 'default'),
(87, 96, '_edit_last', '1'),
(88, 113, '_edit_last', '1'),
(89, 113, '_wp_page_template', 'template-tours.php'),
(90, 113, '_page_tours_destination', '0'),
(91, 113, '_page_tours_type', '0'),
(92, 113, '_page_background', ''),
(93, 115, '_edit_last', '1'),
(94, 115, '_wp_page_template', 'template-gallery.php'),
(95, 115, '_page_tours_destination', '0'),
(96, 115, '_page_tours_type', '0'),
(97, 115, '_page_galleries_category', '0'),
(98, 119, '_edit_last', '1'),
(99, 119, '_wp_page_template', 'template-blog.php'),
(100, 170, '_edit_last', '1'),
(101, 170, '_thumbnail_id', '140'),
(102, 180, '_edit_last', '1'),
(103, 180, '_thumbnail_id', '142'),
(104, 185, '_edit_last', '1'),
(105, 185, '_thumbnail_id', '148'),
(122, 436, '_menu_item_type', 'post_type'),
(123, 436, '_menu_item_menu_item_parent', '0'),
(124, 436, '_menu_item_object_id', '84'),
(125, 436, '_menu_item_object', 'page'),
(126, 436, '_menu_item_target', ''),
(127, 436, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(128, 436, '_menu_item_xfn', ''),
(129, 436, '_menu_item_url', ''),
(130, 437, '_menu_item_type', 'post_type'),
(131, 437, '_menu_item_menu_item_parent', '0'),
(132, 437, '_menu_item_object_id', '84'),
(133, 437, '_menu_item_object', 'page'),
(134, 437, '_menu_item_target', ''),
(135, 437, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(136, 437, '_menu_item_xfn', ''),
(137, 437, '_menu_item_url', ''),
(138, 438, '_menu_item_type', 'post_type'),
(139, 438, '_menu_item_menu_item_parent', '0'),
(140, 438, '_menu_item_object_id', '119'),
(141, 438, '_menu_item_object', 'page'),
(142, 438, '_menu_item_target', ''),
(143, 438, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(144, 438, '_menu_item_xfn', ''),
(145, 438, '_menu_item_url', ''),
(146, 439, '_menu_item_type', 'post_type'),
(147, 439, '_menu_item_menu_item_parent', '0'),
(148, 439, '_menu_item_object_id', '115'),
(149, 439, '_menu_item_object', 'page'),
(150, 439, '_menu_item_target', ''),
(151, 439, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(152, 439, '_menu_item_xfn', ''),
(153, 439, '_menu_item_url', ''),
(154, 440, '_menu_item_type', 'post_type'),
(155, 440, '_menu_item_menu_item_parent', '0'),
(156, 440, '_menu_item_object_id', '113'),
(157, 440, '_menu_item_object', 'page'),
(158, 440, '_menu_item_target', ''),
(159, 440, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(160, 440, '_menu_item_xfn', ''),
(161, 440, '_menu_item_url', ''),
(162, 441, '_menu_item_type', 'post_type'),
(163, 441, '_menu_item_menu_item_parent', '0'),
(164, 441, '_menu_item_object_id', '115'),
(165, 441, '_menu_item_object', 'page'),
(166, 441, '_menu_item_target', ''),
(167, 441, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(168, 441, '_menu_item_xfn', ''),
(169, 441, '_menu_item_url', ''),
(170, 442, '_menu_item_type', 'post_type'),
(171, 442, '_menu_item_menu_item_parent', '0'),
(172, 442, '_menu_item_object_id', '113'),
(173, 442, '_menu_item_object', 'page'),
(174, 442, '_menu_item_target', ''),
(175, 442, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(176, 442, '_menu_item_xfn', ''),
(177, 442, '_menu_item_url', ''),
(198, 45, '_edit_last', '1'),
(199, 45, '_thumbnail_id', '137'),
(200, 50, '_edit_last', '1'),
(201, 50, '_thumbnail_id', '135'),
(202, 51, '_edit_last', '1'),
(203, 51, '_thumbnail_id', '136'),
(204, 55, '_edit_last', '1'),
(205, 56, '_edit_last', '1'),
(206, 57, '_edit_last', '1'),
(235, 112, '_edit_last', '1'),
(236, 112, '_thumbnail_id', '138'),
(237, 112, '_wp_old_slug', 'hello-world-2'),
(238, 189, '_edit_last', '1'),
(239, 189, '_thumbnail_id', '141'),
(240, 192, '_edit_last', '1'),
(241, 192, '_thumbnail_id', '148'),
(242, 194, '_edit_last', '1'),
(243, 194, '_thumbnail_id', '141'),
(244, 197, '_edit_last', '1'),
(245, 197, '_thumbnail_id', '142'),
(246, 199, '_edit_last', '1'),
(247, 199, '_thumbnail_id', '140'),
(248, 201, '_edit_last', '1'),
(249, 201, '_thumbnail_id', '140'),
(250, 203, '_edit_last', '1'),
(251, 203, '_thumbnail_id', '142'),
(252, 205, '_edit_last', '1'),
(253, 205, '_thumbnail_id', '148'),
(284, 82, '_edit_last', '1'),
(285, 82, '_tour_price', ''),
(286, 82, '_tour_duration', ''),
(287, 82, '_tour_images', ''),
(288, 82, '_thumbnail_id', '143'),
(297, 446, '_edit_last', '1'),
(298, 446, '_edit_lock', '1424014143:1'),
(299, 96, '_edit_lock', '1423988632:1'),
(300, 446, '_wp_page_template', 'default'),
(301, 446, '_page_tours_destination', ''),
(302, 446, '_page_tours_type', '0'),
(305, 449, '_wp_attached_file', 'layerslider/Full-width-demo-slider/d1.png'),
(306, 449, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:366;s:6:"height";i:183;s:4:"file";s:41:"layerslider/Full-width-demo-slider/d1.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"d1-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:14:"d1-300x150.png";s:5:"width";i:300;s:6:"height";i:150;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;}}'),
(307, 450, '_wp_attached_file', 'layerslider/Full-width-demo-slider/d2.png'),
(308, 450, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:577;s:6:"height";i:404;s:4:"file";s:41:"layerslider/Full-width-demo-slider/d2.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"d2-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:14:"d2-300x210.png";s:5:"width";i:300;s:6:"height";i:210;s:9:"mime-type";s:9:"image/png";}s:6:"normal";a:4:{s:4:"file";s:14:"d2-440x308.png";s:5:"width";i:440;s:6:"height";i:308;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;}}'),
(309, 451, '_wp_attached_file', 'layerslider/Full-width-demo-slider/fw-1.jpg'),
(310, 451, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:2560;s:6:"height";i:600;s:4:"file";s:43:"layerslider/Full-width-demo-slider/fw-1.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:16:"fw-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:15:"fw-1-300x70.jpg";s:5:"width";i:300;s:6:"height";i:70;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:17:"fw-1-1024x240.jpg";s:5:"width";i:1024;s:6:"height";i:240;s:9:"mime-type";s:10:"image/jpeg";}s:6:"normal";a:4:{s:4:"file";s:16:"fw-1-440x103.jpg";s:5:"width";i:440;s:6:"height";i:103;s:9:"mime-type";s:10:"image/jpeg";}s:8:"extended";a:4:{s:4:"file";s:16:"fw-1-600x141.jpg";s:5:"width";i:600;s:6:"height";i:141;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;}}'),
(311, 452, '_wp_attached_file', 'layerslider/Full-width-demo-slider/l1.png'),
(312, 452, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:368;s:6:"height";i:223;s:4:"file";s:41:"layerslider/Full-width-demo-slider/l1.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"l1-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:14:"l1-300x182.png";s:5:"width";i:300;s:6:"height";i:182;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;}}'),
(313, 453, '_wp_attached_file', 'layerslider/Full-width-demo-slider/l2.png'),
(314, 453, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:651;s:6:"height";i:481;s:4:"file";s:41:"layerslider/Full-width-demo-slider/l2.png";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"l2-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:14:"l2-300x222.png";s:5:"width";i:300;s:6:"height";i:222;s:9:"mime-type";s:9:"image/png";}s:6:"normal";a:4:{s:4:"file";s:14:"l2-440x325.png";s:5:"width";i:440;s:6:"height";i:325;s:9:"mime-type";s:9:"image/png";}s:8:"extended";a:4:{s:4:"file";s:14:"l2-600x443.png";s:5:"width";i:600;s:6:"height";i:443;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;}}'),
(315, 454, '_wp_attached_file', 'layerslider/Full-width-demo-slider/l3.png'),
(316, 454, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:717;s:6:"height";i:481;s:4:"file";s:41:"layerslider/Full-width-demo-slider/l3.png";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"l3-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:14:"l3-300x201.png";s:5:"width";i:300;s:6:"height";i:201;s:9:"mime-type";s:9:"image/png";}s:6:"normal";a:4:{s:4:"file";s:14:"l3-440x295.png";s:5:"width";i:440;s:6:"height";i:295;s:9:"mime-type";s:9:"image/png";}s:8:"extended";a:4:{s:4:"file";s:14:"l3-600x403.png";s:5:"width";i:600;s:6:"height";i:403;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;}}'),
(317, 455, '_wp_attached_file', 'layerslider/Full-width-demo-slider/left.png'),
(318, 455, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:20;s:6:"height";i:20;s:4:"file";s:43:"layerslider/Full-width-demo-slider/left.png";s:5:"sizes";a:0:{}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;}}'),
(319, 456, '_wp_attached_file', 'layerslider/Full-width-demo-slider/right.png'),
(320, 456, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:20;s:6:"height";i:20;s:4:"file";s:44:"layerslider/Full-width-demo-slider/right.png";s:5:"sizes";a:0:{}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;}}'),
(321, 457, '_wp_attached_file', 'layerslider/Full-width-demo-slider/s1.jpg'),
(322, 457, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:388;s:6:"height";i:258;s:4:"file";s:41:"layerslider/Full-width-demo-slider/s1.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"s1-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:14:"s1-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;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;}}'),
(323, 458, '_wp_attached_file', 'layerslider/Full-width-demo-slider/s1.png'),
(324, 458, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:2144;s:6:"height";i:227;s:4:"file";s:41:"layerslider/Full-width-demo-slider/s1.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"s1-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:13:"s1-300x32.png";s:5:"width";i:300;s:6:"height";i:32;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:15:"s1-1024x108.png";s:5:"width";i:1024;s:6:"height";i:108;s:9:"mime-type";s:9:"image/png";}s:6:"normal";a:4:{s:4:"file";s:13:"s1-440x47.png";s:5:"width";i:440;s:6:"height";i:47;s:9:"mime-type";s:9:"image/png";}s:8:"extended";a:4:{s:4:"file";s:13:"s1-600x64.png";s:5:"width";i:600;s:6:"height";i:64;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;}}'),
(325, 459, '_wp_attached_file', 'layerslider/Full-width-demo-slider/s2.jpg'),
(326, 459, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:296;s:6:"height";i:206;s:4:"file";s:41:"layerslider/Full-width-demo-slider/s2.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"s2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;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;}}'),
(327, 460, '_wp_attached_file', 'layerslider/Full-width-demo-slider/s2.png'),
(328, 460, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:2498;s:6:"height";i:272;s:4:"file";s:41:"layerslider/Full-width-demo-slider/s2.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"s2-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:13:"s2-300x33.png";s:5:"width";i:300;s:6:"height";i:33;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:15:"s2-1024x112.png";s:5:"width";i:1024;s:6:"height";i:112;s:9:"mime-type";s:9:"image/png";}s:6:"normal";a:4:{s:4:"file";s:13:"s2-440x48.png";s:5:"width";i:440;s:6:"height";i:48;s:9:"mime-type";s:9:"image/png";}s:8:"extended";a:4:{s:4:"file";s:13:"s2-600x65.png";s:5:"width";i:600;s:6:"height";i:65;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;}}'),
(329, 463, '_menu_item_type', 'post_type'),
(330, 463, '_menu_item_menu_item_parent', '0'),
(331, 463, '_menu_item_object_id', '446'),
(332, 463, '_menu_item_object', 'page'),
(333, 463, '_menu_item_target', ''),
(334, 463, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(335, 463, '_menu_item_xfn', ''),
(336, 463, '_menu_item_url', ''),
(338, 464, '_menu_item_type', 'post_type'),
(339, 464, '_menu_item_menu_item_parent', '0'),
(340, 464, '_menu_item_object_id', '446'),
(341, 464, '_menu_item_object', 'page'),
(342, 464, '_menu_item_target', ''),
(343, 464, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(344, 464, '_menu_item_xfn', ''),
(345, 464, '_menu_item_url', ''),
(366, 280, '_edit_last', '1'),
(367, 280, '_wp_page_template', 'default'),
(368, 280, '_page_tours_destination', '0'),
(369, 280, '_page_tours_type', '0'),
(370, 280, '_edit_lock', '1423996008:1'),
(382, 484, '_wp_attached_file', '2015/02/sri_lanka.png'),
(383, 484, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:150;s:6:"height";i:181;s:4:"file";s:21:"2015/02/sri_lanka.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"sri_lanka-150x150.png";s:5:"width";i:150;s:6:"height";i:150;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;}}'),
(384, 484, '_wp_attachment_image_alt', 'sri_lanka'),
(385, 485, '_wp_attached_file', '2015/02/blur_sri_lanka.png'),
(386, 485, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:296;s:6:"height";i:355;s:4:"file";s:26:"2015/02/blur_sri_lanka.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:26:"blur_sri_lanka-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:26:"blur_sri_lanka-250x300.png";s:5:"width";i:250;s:6:"height";i:300;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;}}'),
(387, 486, '_wp_attached_file', 'layerslider/Full-width-demo-slider/d1.png'),
(388, 486, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:366;s:6:"height";i:183;s:4:"file";s:41:"layerslider/Full-width-demo-slider/d1.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"d1-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:14:"d1-300x150.png";s:5:"width";i:300;s:6:"height";i:150;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;}}'),
(389, 487, '_wp_attached_file', 'layerslider/Full-width-demo-slider/d2.png'),
(390, 487, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:577;s:6:"height";i:404;s:4:"file";s:41:"layerslider/Full-width-demo-slider/d2.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"d2-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:14:"d2-300x210.png";s:5:"width";i:300;s:6:"height";i:210;s:9:"mime-type";s:9:"image/png";}s:6:"normal";a:4:{s:4:"file";s:14:"d2-440x308.png";s:5:"width";i:440;s:6:"height";i:308;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;}}'),
(391, 488, '_wp_attached_file', 'layerslider/Full-width-demo-slider/fw-1.jpg'),
(392, 488, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:2560;s:6:"height";i:600;s:4:"file";s:43:"layerslider/Full-width-demo-slider/fw-1.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:16:"fw-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:15:"fw-1-300x70.jpg";s:5:"width";i:300;s:6:"height";i:70;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:17:"fw-1-1024x240.jpg";s:5:"width";i:1024;s:6:"height";i:240;s:9:"mime-type";s:10:"image/jpeg";}s:6:"normal";a:4:{s:4:"file";s:16:"fw-1-440x103.jpg";s:5:"width";i:440;s:6:"height";i:103;s:9:"mime-type";s:10:"image/jpeg";}s:8:"extended";a:4:{s:4:"file";s:16:"fw-1-600x141.jpg";s:5:"width";i:600;s:6:"height";i:141;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;}}'),
(393, 489, '_wp_attached_file', 'layerslider/Full-width-demo-slider/l1.png'),
(394, 489, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:368;s:6:"height";i:223;s:4:"file";s:41:"layerslider/Full-width-demo-slider/l1.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"l1-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:14:"l1-300x182.png";s:5:"width";i:300;s:6:"height";i:182;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;}}'),
(395, 490, '_wp_attached_file', 'layerslider/Full-width-demo-slider/l2.png'),
(396, 490, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:651;s:6:"height";i:481;s:4:"file";s:41:"layerslider/Full-width-demo-slider/l2.png";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"l2-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:14:"l2-300x222.png";s:5:"width";i:300;s:6:"height";i:222;s:9:"mime-type";s:9:"image/png";}s:6:"normal";a:4:{s:4:"file";s:14:"l2-440x325.png";s:5:"width";i:440;s:6:"height";i:325;s:9:"mime-type";s:9:"image/png";}s:8:"extended";a:4:{s:4:"file";s:14:"l2-600x443.png";s:5:"width";i:600;s:6:"height";i:443;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;}}'),
(397, 491, '_wp_attached_file', 'layerslider/Full-width-demo-slider/l3.png'),
(398, 491, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:717;s:6:"height";i:481;s:4:"file";s:41:"layerslider/Full-width-demo-slider/l3.png";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"l3-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:14:"l3-300x201.png";s:5:"width";i:300;s:6:"height";i:201;s:9:"mime-type";s:9:"image/png";}s:6:"normal";a:4:{s:4:"file";s:14:"l3-440x295.png";s:5:"width";i:440;s:6:"height";i:295;s:9:"mime-type";s:9:"image/png";}s:8:"extended";a:4:{s:4:"file";s:14:"l3-600x403.png";s:5:"width";i:600;s:6:"height";i:403;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;}}'),
(399, 492, '_wp_attached_file', 'layerslider/Full-width-demo-slider/left.png'),
(400, 492, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:20;s:6:"height";i:20;s:4:"file";s:43:"layerslider/Full-width-demo-slider/left.png";s:5:"sizes";a:0:{}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;}}'),
(401, 493, '_wp_attached_file', 'layerslider/Full-width-demo-slider/right.png'),
(402, 493, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:20;s:6:"height";i:20;s:4:"file";s:44:"layerslider/Full-width-demo-slider/right.png";s:5:"sizes";a:0:{}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;}}'),
(403, 494, '_wp_attached_file', 'layerslider/Full-width-demo-slider/s1.jpg'),
(404, 494, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:388;s:6:"height";i:258;s:4:"file";s:41:"layerslider/Full-width-demo-slider/s1.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"s1-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:14:"s1-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;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;}}'),
(405, 495, '_wp_attached_file', 'layerslider/Full-width-demo-slider/s1.png'),
(406, 495, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:2144;s:6:"height";i:227;s:4:"file";s:41:"layerslider/Full-width-demo-slider/s1.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"s1-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:13:"s1-300x32.png";s:5:"width";i:300;s:6:"height";i:32;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:15:"s1-1024x108.png";s:5:"width";i:1024;s:6:"height";i:108;s:9:"mime-type";s:9:"image/png";}s:6:"normal";a:4:{s:4:"file";s:13:"s1-440x47.png";s:5:"width";i:440;s:6:"height";i:47;s:9:"mime-type";s:9:"image/png";}s:8:"extended";a:4:{s:4:"file";s:13:"s1-600x64.png";s:5:"width";i:600;s:6:"height";i:64;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;}}'),
(407, 496, '_wp_attached_file', 'layerslider/Full-width-demo-slider/s2.jpg'),
(408, 496, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:296;s:6:"height";i:206;s:4:"file";s:41:"layerslider/Full-width-demo-slider/s2.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"s2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;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;}}'),
(409, 497, '_wp_attached_file', 'layerslider/Full-width-demo-slider/s2.png'),
(410, 497, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:2498;s:6:"height";i:272;s:4:"file";s:41:"layerslider/Full-width-demo-slider/s2.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"s2-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:13:"s2-300x33.png";s:5:"width";i:300;s:6:"height";i:33;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:15:"s2-1024x112.png";s:5:"width";i:1024;s:6:"height";i:112;s:9:"mime-type";s:9:"image/png";}s:6:"normal";a:4:{s:4:"file";s:13:"s2-440x48.png";s:5:"width";i:440;s:6:"height";i:48;s:9:"mime-type";s:9:"image/png";}s:8:"extended";a:4:{s:4:"file";s:13:"s2-600x65.png";s:5:"width";i:600;s:6:"height";i:65;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;}}'),
(411, 499, '_wp_attached_file', 'layerslider/Full-width-demo-slider/d1.png'),
(412, 499, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:366;s:6:"height";i:183;s:4:"file";s:41:"layerslider/Full-width-demo-slider/d1.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"d1-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:14:"d1-300x150.png";s:5:"width";i:300;s:6:"height";i:150;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;}}'),
(413, 500, '_wp_attached_file', 'layerslider/Full-width-demo-slider/d2.png'),
(414, 500, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:577;s:6:"height";i:404;s:4:"file";s:41:"layerslider/Full-width-demo-slider/d2.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"d2-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:14:"d2-300x210.png";s:5:"width";i:300;s:6:"height";i:210;s:9:"mime-type";s:9:"image/png";}s:6:"normal";a:4:{s:4:"file";s:14:"d2-440x308.png";s:5:"width";i:440;s:6:"height";i:308;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;}}'),
(415, 501, '_wp_attached_file', 'layerslider/Full-width-demo-slider/fw-1.jpg'),
(416, 501, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:2560;s:6:"height";i:600;s:4:"file";s:43:"layerslider/Full-width-demo-slider/fw-1.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:16:"fw-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:15:"fw-1-300x70.jpg";s:5:"width";i:300;s:6:"height";i:70;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:17:"fw-1-1024x240.jpg";s:5:"width";i:1024;s:6:"height";i:240;s:9:"mime-type";s:10:"image/jpeg";}s:6:"normal";a:4:{s:4:"file";s:16:"fw-1-440x103.jpg";s:5:"width";i:440;s:6:"height";i:103;s:9:"mime-type";s:10:"image/jpeg";}s:8:"extended";a:4:{s:4:"file";s:16:"fw-1-600x141.jpg";s:5:"width";i:600;s:6:"height";i:141;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;}}'),
(417, 502, '_wp_attached_file', 'layerslider/Full-width-demo-slider/l1.png'),
(418, 502, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:368;s:6:"height";i:223;s:4:"file";s:41:"layerslider/Full-width-demo-slider/l1.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"l1-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:14:"l1-300x182.png";s:5:"width";i:300;s:6:"height";i:182;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;}}'),
(419, 503, '_wp_attached_file', 'layerslider/Full-width-demo-slider/l2.png'),
(420, 503, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:651;s:6:"height";i:481;s:4:"file";s:41:"layerslider/Full-width-demo-slider/l2.png";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"l2-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:14:"l2-300x222.png";s:5:"width";i:300;s:6:"height";i:222;s:9:"mime-type";s:9:"image/png";}s:6:"normal";a:4:{s:4:"file";s:14:"l2-440x325.png";s:5:"width";i:440;s:6:"height";i:325;s:9:"mime-type";s:9:"image/png";}s:8:"extended";a:4:{s:4:"file";s:14:"l2-600x443.png";s:5:"width";i:600;s:6:"height";i:443;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;}}'),
(421, 504, '_wp_attached_file', 'layerslider/Full-width-demo-slider/l3.png'),
(422, 504, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:717;s:6:"height";i:481;s:4:"file";s:41:"layerslider/Full-width-demo-slider/l3.png";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"l3-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:14:"l3-300x201.png";s:5:"width";i:300;s:6:"height";i:201;s:9:"mime-type";s:9:"image/png";}s:6:"normal";a:4:{s:4:"file";s:14:"l3-440x295.png";s:5:"width";i:440;s:6:"height";i:295;s:9:"mime-type";s:9:"image/png";}s:8:"extended";a:4:{s:4:"file";s:14:"l3-600x403.png";s:5:"width";i:600;s:6:"height";i:403;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;}}');
INSERT INTO `travel2_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(423, 505, '_wp_attached_file', 'layerslider/Full-width-demo-slider/left.png'),
(424, 505, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:20;s:6:"height";i:20;s:4:"file";s:43:"layerslider/Full-width-demo-slider/left.png";s:5:"sizes";a:0:{}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;}}'),
(425, 506, '_wp_attached_file', 'layerslider/Full-width-demo-slider/right.png'),
(426, 506, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:20;s:6:"height";i:20;s:4:"file";s:44:"layerslider/Full-width-demo-slider/right.png";s:5:"sizes";a:0:{}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;}}'),
(427, 507, '_wp_attached_file', 'layerslider/Full-width-demo-slider/s1.jpg'),
(428, 507, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:388;s:6:"height";i:258;s:4:"file";s:41:"layerslider/Full-width-demo-slider/s1.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"s1-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:14:"s1-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;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;}}'),
(429, 508, '_wp_attached_file', 'layerslider/Full-width-demo-slider/s1.png'),
(430, 508, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:2144;s:6:"height";i:227;s:4:"file";s:41:"layerslider/Full-width-demo-slider/s1.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"s1-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:13:"s1-300x32.png";s:5:"width";i:300;s:6:"height";i:32;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:15:"s1-1024x108.png";s:5:"width";i:1024;s:6:"height";i:108;s:9:"mime-type";s:9:"image/png";}s:6:"normal";a:4:{s:4:"file";s:13:"s1-440x47.png";s:5:"width";i:440;s:6:"height";i:47;s:9:"mime-type";s:9:"image/png";}s:8:"extended";a:4:{s:4:"file";s:13:"s1-600x64.png";s:5:"width";i:600;s:6:"height";i:64;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;}}'),
(431, 509, '_wp_attached_file', 'layerslider/Full-width-demo-slider/s2.jpg'),
(432, 509, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:296;s:6:"height";i:206;s:4:"file";s:41:"layerslider/Full-width-demo-slider/s2.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"s2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;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;}}'),
(433, 510, '_wp_attached_file', 'layerslider/Full-width-demo-slider/s2.png'),
(434, 510, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:2498;s:6:"height";i:272;s:4:"file";s:41:"layerslider/Full-width-demo-slider/s2.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"s2-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:13:"s2-300x33.png";s:5:"width";i:300;s:6:"height";i:33;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:15:"s2-1024x112.png";s:5:"width";i:1024;s:6:"height";i:112;s:9:"mime-type";s:9:"image/png";}s:6:"normal";a:4:{s:4:"file";s:13:"s2-440x48.png";s:5:"width";i:440;s:6:"height";i:48;s:9:"mime-type";s:9:"image/png";}s:8:"extended";a:4:{s:4:"file";s:13:"s2-600x65.png";s:5:"width";i:600;s:6:"height";i:65;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;}}'),
(435, 511, '_wp_attached_file', '2015/02/sri_lanka1.png'),
(436, 511, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:388;s:6:"height";i:468;s:4:"file";s:22:"2015/02/sri_lanka1.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:22:"sri_lanka1-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:22:"sri_lanka1-249x300.png";s:5:"width";i:249;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:6:"normal";a:4:{s:4:"file";s:22:"sri_lanka1-365x440.png";s:5:"width";i:365;s:6:"height";i:440;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;}}'),
(437, 512, '_wp_attached_file', '2015/02/blur_sri_lanka1.png'),
(438, 512, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:296;s:6:"height";i:355;s:4:"file";s:27:"2015/02/blur_sri_lanka1.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:27:"blur_sri_lanka1-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:27:"blur_sri_lanka1-250x300.png";s:5:"width";i:250;s:6:"height";i:300;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;}}'),
(439, 513, '_wp_attached_file', '2015/02/eliphant_to.png'),
(440, 513, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1000;s:6:"height";i:1197;s:4:"file";s:23:"2015/02/eliphant_to.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"eliphant_to-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:23:"eliphant_to-251x300.png";s:5:"width";i:251;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:24:"eliphant_to-855x1024.png";s:5:"width";i:855;s:6:"height";i:1024;s:9:"mime-type";s:9:"image/png";}s:6:"normal";a:4:{s:4:"file";s:23:"eliphant_to-368x440.png";s:5:"width";i:368;s:6:"height";i:440;s:9:"mime-type";s:9:"image/png";}s:8:"extended";a:4:{s:4:"file";s:23:"eliphant_to-501x600.png";s:5:"width";i:501;s:6:"height";i:600;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;}}'),
(441, 514, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/arrow-up.png'),
(442, 514, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:46;s:6:"height";i:41;s:4:"file";s:61:"layerslider/LayerSlider-5-responsive-demo-slider/arrow-up.png";s:5:"sizes";a:0:{}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;}}'),
(443, 515, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/bg.jpg'),
(444, 515, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1280;s:6:"height";i:720;s:4:"file";s:55:"layerslider/LayerSlider-5-responsive-demo-slider/bg.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"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:14:"bg-300x169.jpg";s:5:"width";i:300;s:6:"height";i:169;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:15:"bg-1024x576.jpg";s:5:"width";i:1024;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:6:"normal";a:4:{s:4:"file";s:14:"bg-440x248.jpg";s:5:"width";i:440;s:6:"height";i:248;s:9:"mime-type";s:10:"image/jpeg";}s:8:"extended";a:4:{s:4:"file";s:14:"bg-600x338.jpg";s:5:"width";i:600;s:6:"height";i:338;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;}}'),
(445, 516, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/bg21.jpg'),
(446, 517, '_wp_attached_file', 'layerslider/Full-width-demo-slider/d1.png'),
(447, 517, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:366;s:6:"height";i:183;s:4:"file";s:41:"layerslider/Full-width-demo-slider/d1.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"d1-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:14:"d1-300x150.png";s:5:"width";i:300;s:6:"height";i:150;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;}}'),
(448, 516, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1280;s:6:"height";i:720;s:4:"file";s:57:"layerslider/LayerSlider-5-responsive-demo-slider/bg21.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:16:"bg21-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:16:"bg21-300x169.jpg";s:5:"width";i:300;s:6:"height";i:169;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:17:"bg21-1024x576.jpg";s:5:"width";i:1024;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:6:"normal";a:4:{s:4:"file";s:16:"bg21-440x248.jpg";s:5:"width";i:440;s:6:"height";i:248;s:9:"mime-type";s:10:"image/jpeg";}s:8:"extended";a:4:{s:4:"file";s:16:"bg21-600x338.jpg";s:5:"width";i:600;s:6:"height";i:338;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;}}'),
(449, 518, '_wp_attached_file', 'layerslider/Full-width-demo-slider/d2.png'),
(450, 519, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/bg31.jpg'),
(451, 518, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:577;s:6:"height";i:404;s:4:"file";s:41:"layerslider/Full-width-demo-slider/d2.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"d2-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:14:"d2-300x210.png";s:5:"width";i:300;s:6:"height";i:210;s:9:"mime-type";s:9:"image/png";}s:6:"normal";a:4:{s:4:"file";s:14:"d2-440x308.png";s:5:"width";i:440;s:6:"height";i:308;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;}}'),
(452, 520, '_wp_attached_file', 'layerslider/Full-width-demo-slider/fw-1.jpg'),
(453, 519, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1280;s:6:"height";i:720;s:4:"file";s:57:"layerslider/LayerSlider-5-responsive-demo-slider/bg31.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:16:"bg31-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:16:"bg31-300x169.jpg";s:5:"width";i:300;s:6:"height";i:169;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:17:"bg31-1024x576.jpg";s:5:"width";i:1024;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:6:"normal";a:4:{s:4:"file";s:16:"bg31-440x248.jpg";s:5:"width";i:440;s:6:"height";i:248;s:9:"mime-type";s:10:"image/jpeg";}s:8:"extended";a:4:{s:4:"file";s:16:"bg31-600x338.jpg";s:5:"width";i:600;s:6:"height";i:338;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;}}'),
(454, 521, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/bg4.jpg'),
(455, 520, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:2560;s:6:"height";i:600;s:4:"file";s:43:"layerslider/Full-width-demo-slider/fw-1.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:16:"fw-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:15:"fw-1-300x70.jpg";s:5:"width";i:300;s:6:"height";i:70;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:17:"fw-1-1024x240.jpg";s:5:"width";i:1024;s:6:"height";i:240;s:9:"mime-type";s:10:"image/jpeg";}s:6:"normal";a:4:{s:4:"file";s:16:"fw-1-440x103.jpg";s:5:"width";i:440;s:6:"height";i:103;s:9:"mime-type";s:10:"image/jpeg";}s:8:"extended";a:4:{s:4:"file";s:16:"fw-1-600x141.jpg";s:5:"width";i:600;s:6:"height";i:141;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;}}'),
(456, 522, '_wp_attached_file', 'layerslider/Full-width-demo-slider/l1.png'),
(457, 522, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:368;s:6:"height";i:223;s:4:"file";s:41:"layerslider/Full-width-demo-slider/l1.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"l1-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:14:"l1-300x182.png";s:5:"width";i:300;s:6:"height";i:182;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;}}'),
(458, 523, '_wp_attached_file', 'layerslider/Full-width-demo-slider/l2.png'),
(459, 521, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1280;s:6:"height";i:720;s:4:"file";s:56:"layerslider/LayerSlider-5-responsive-demo-slider/bg4.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:15:"bg4-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:15:"bg4-300x169.jpg";s:5:"width";i:300;s:6:"height";i:169;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:16:"bg4-1024x576.jpg";s:5:"width";i:1024;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:6:"normal";a:4:{s:4:"file";s:15:"bg4-440x248.jpg";s:5:"width";i:440;s:6:"height";i:248;s:9:"mime-type";s:10:"image/jpeg";}s:8:"extended";a:4:{s:4:"file";s:15:"bg4-600x338.jpg";s:5:"width";i:600;s:6:"height";i:338;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;}}'),
(460, 524, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/bg51.jpg'),
(461, 523, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:651;s:6:"height";i:481;s:4:"file";s:41:"layerslider/Full-width-demo-slider/l2.png";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"l2-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:14:"l2-300x222.png";s:5:"width";i:300;s:6:"height";i:222;s:9:"mime-type";s:9:"image/png";}s:6:"normal";a:4:{s:4:"file";s:14:"l2-440x325.png";s:5:"width";i:440;s:6:"height";i:325;s:9:"mime-type";s:9:"image/png";}s:8:"extended";a:4:{s:4:"file";s:14:"l2-600x443.png";s:5:"width";i:600;s:6:"height";i:443;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;}}'),
(462, 525, '_wp_attached_file', 'layerslider/Full-width-demo-slider/l3.png'),
(463, 524, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1280;s:6:"height";i:720;s:4:"file";s:57:"layerslider/LayerSlider-5-responsive-demo-slider/bg51.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:16:"bg51-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:16:"bg51-300x169.jpg";s:5:"width";i:300;s:6:"height";i:169;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:17:"bg51-1024x576.jpg";s:5:"width";i:1024;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:6:"normal";a:4:{s:4:"file";s:16:"bg51-440x248.jpg";s:5:"width";i:440;s:6:"height";i:248;s:9:"mime-type";s:10:"image/jpeg";}s:8:"extended";a:4:{s:4:"file";s:16:"bg51-600x338.jpg";s:5:"width";i:600;s:6:"height";i:338;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;}}'),
(464, 526, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/bg6b.jpg'),
(465, 525, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:717;s:6:"height";i:481;s:4:"file";s:41:"layerslider/Full-width-demo-slider/l3.png";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"l3-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:14:"l3-300x201.png";s:5:"width";i:300;s:6:"height";i:201;s:9:"mime-type";s:9:"image/png";}s:6:"normal";a:4:{s:4:"file";s:14:"l3-440x295.png";s:5:"width";i:440;s:6:"height";i:295;s:9:"mime-type";s:9:"image/png";}s:8:"extended";a:4:{s:4:"file";s:14:"l3-600x403.png";s:5:"width";i:600;s:6:"height";i:403;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;}}'),
(466, 527, '_wp_attached_file', 'layerslider/Full-width-demo-slider/left.png'),
(467, 527, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:20;s:6:"height";i:20;s:4:"file";s:43:"layerslider/Full-width-demo-slider/left.png";s:5:"sizes";a:0:{}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;}}'),
(468, 528, '_wp_attached_file', 'layerslider/Full-width-demo-slider/right.png'),
(469, 528, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:20;s:6:"height";i:20;s:4:"file";s:44:"layerslider/Full-width-demo-slider/right.png";s:5:"sizes";a:0:{}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;}}'),
(470, 529, '_wp_attached_file', 'layerslider/Full-width-demo-slider/s1.jpg'),
(471, 529, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:388;s:6:"height";i:258;s:4:"file";s:41:"layerslider/Full-width-demo-slider/s1.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"s1-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:14:"s1-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;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;}}'),
(472, 530, '_wp_attached_file', 'layerslider/Full-width-demo-slider/s1.png'),
(473, 526, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1280;s:6:"height";i:720;s:4:"file";s:57:"layerslider/LayerSlider-5-responsive-demo-slider/bg6b.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:16:"bg6b-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:16:"bg6b-300x169.jpg";s:5:"width";i:300;s:6:"height";i:169;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:17:"bg6b-1024x576.jpg";s:5:"width";i:1024;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:6:"normal";a:4:{s:4:"file";s:16:"bg6b-440x248.jpg";s:5:"width";i:440;s:6:"height";i:248;s:9:"mime-type";s:10:"image/jpeg";}s:8:"extended";a:4:{s:4:"file";s:16:"bg6b-600x338.jpg";s:5:"width";i:600;s:6:"height";i:338;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;}}'),
(474, 531, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/circle.png'),
(475, 530, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:2144;s:6:"height";i:227;s:4:"file";s:41:"layerslider/Full-width-demo-slider/s1.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"s1-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:13:"s1-300x32.png";s:5:"width";i:300;s:6:"height";i:32;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:15:"s1-1024x108.png";s:5:"width";i:1024;s:6:"height";i:108;s:9:"mime-type";s:9:"image/png";}s:6:"normal";a:4:{s:4:"file";s:13:"s1-440x47.png";s:5:"width";i:440;s:6:"height";i:47;s:9:"mime-type";s:9:"image/png";}s:8:"extended";a:4:{s:4:"file";s:13:"s1-600x64.png";s:5:"width";i:600;s:6:"height";i:64;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;}}'),
(476, 531, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:423;s:6:"height";i:422;s:4:"file";s:59:"layerslider/LayerSlider-5-responsive-demo-slider/circle.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"circle-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:"circle-300x300.png";s:5:"width";i:300;s:6:"height";i:300;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;}}'),
(477, 532, '_wp_attached_file', 'layerslider/Full-width-demo-slider/s2.jpg'),
(478, 533, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/feature-android.png'),
(479, 532, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:296;s:6:"height";i:206;s:4:"file";s:41:"layerslider/Full-width-demo-slider/s2.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"s2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;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;}}'),
(480, 533, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:80;s:6:"height";i:81;s:4:"file";s:68:"layerslider/LayerSlider-5-responsive-demo-slider/feature-android.png";s:5:"sizes";a:0:{}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;}}'),
(481, 535, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/feature-html5.png'),
(482, 534, '_wp_attached_file', 'layerslider/Full-width-demo-slider/s2.png'),
(483, 535, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:80;s:6:"height";i:80;s:4:"file";s:66:"layerslider/LayerSlider-5-responsive-demo-slider/feature-html5.png";s:5:"sizes";a:0:{}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;}}'),
(484, 536, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/feature-ios.png'),
(485, 536, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:80;s:6:"height";i:81;s:4:"file";s:64:"layerslider/LayerSlider-5-responsive-demo-slider/feature-ios.png";s:5:"sizes";a:0:{}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;}}'),
(486, 537, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/feature-layers.png'),
(487, 537, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:80;s:6:"height";i:80;s:4:"file";s:67:"layerslider/LayerSlider-5-responsive-demo-slider/feature-layers.png";s:5:"sizes";a:0:{}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;}}'),
(488, 538, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/feature-mobile.png'),
(489, 538, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:80;s:6:"height";i:80;s:4:"file";s:67:"layerslider/LayerSlider-5-responsive-demo-slider/feature-mobile.png";s:5:"sizes";a:0:{}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;}}'),
(490, 534, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:2498;s:6:"height";i:272;s:4:"file";s:41:"layerslider/Full-width-demo-slider/s2.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"s2-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:13:"s2-300x33.png";s:5:"width";i:300;s:6:"height";i:33;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:15:"s2-1024x112.png";s:5:"width";i:1024;s:6:"height";i:112;s:9:"mime-type";s:9:"image/png";}s:6:"normal";a:4:{s:4:"file";s:13:"s2-440x48.png";s:5:"width";i:440;s:6:"height";i:48;s:9:"mime-type";s:9:"image/png";}s:8:"extended";a:4:{s:4:"file";s:13:"s2-600x65.png";s:5:"width";i:600;s:6:"height";i:65;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;}}'),
(491, 539, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/feature-options.png'),
(492, 539, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:80;s:6:"height";i:80;s:4:"file";s:68:"layerslider/LayerSlider-5-responsive-demo-slider/feature-options.png";s:5:"sizes";a:0:{}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;}}'),
(493, 540, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/feature-performance.png'),
(494, 541, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/feature-responsive.png'),
(495, 540, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:80;s:6:"height";i:80;s:4:"file";s:72:"layerslider/LayerSlider-5-responsive-demo-slider/feature-performance.png";s:5:"sizes";a:0:{}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;}}'),
(496, 541, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:80;s:6:"height";i:80;s:4:"file";s:71:"layerslider/LayerSlider-5-responsive-demo-slider/feature-responsive.png";s:5:"sizes";a:0:{}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;}}'),
(497, 542, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/feature-slideshow.png'),
(498, 542, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:80;s:6:"height";i:80;s:4:"file";s:70:"layerslider/LayerSlider-5-responsive-demo-slider/feature-slideshow.png";s:5:"sizes";a:0:{}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;}}'),
(499, 543, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/feature-vimeo.png'),
(500, 544, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/feature-responsive.png'),
(501, 543, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:80;s:6:"height";i:81;s:4:"file";s:66:"layerslider/LayerSlider-5-responsive-demo-slider/feature-vimeo.png";s:5:"sizes";a:0:{}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;}}'),
(502, 544, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:80;s:6:"height";i:80;s:4:"file";s:71:"layerslider/LayerSlider-5-responsive-demo-slider/feature-responsive.png";s:5:"sizes";a:0:{}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;}}'),
(503, 545, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/feature-wordpress.png'),
(504, 546, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/feature-slideshow.png'),
(505, 545, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:80;s:6:"height";i:80;s:4:"file";s:70:"layerslider/LayerSlider-5-responsive-demo-slider/feature-wordpress.png";s:5:"sizes";a:0:{}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;}}'),
(506, 546, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:80;s:6:"height";i:80;s:4:"file";s:70:"layerslider/LayerSlider-5-responsive-demo-slider/feature-slideshow.png";s:5:"sizes";a:0:{}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;}}'),
(507, 548, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/feature-vimeo.png'),
(508, 547, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/feature-youtube.png'),
(509, 548, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:80;s:6:"height";i:81;s:4:"file";s:66:"layerslider/LayerSlider-5-responsive-demo-slider/feature-vimeo.png";s:5:"sizes";a:0:{}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;}}'),
(510, 547, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:80;s:6:"height";i:80;s:4:"file";s:68:"layerslider/LayerSlider-5-responsive-demo-slider/feature-youtube.png";s:5:"sizes";a:0:{}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;}}'),
(511, 549, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/feature-wordpress.png'),
(512, 549, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:80;s:6:"height";i:80;s:4:"file";s:70:"layerslider/LayerSlider-5-responsive-demo-slider/feature-wordpress.png";s:5:"sizes";a:0:{}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;}}'),
(513, 550, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/html5-color.png'),
(514, 550, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:90;s:6:"height";i:90;s:4:"file";s:64:"layerslider/LayerSlider-5-responsive-demo-slider/html5-color.png";s:5:"sizes";a:0:{}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;}}'),
(515, 551, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/feature-youtube.png'),
(516, 551, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:80;s:6:"height";i:80;s:4:"file";s:68:"layerslider/LayerSlider-5-responsive-demo-slider/feature-youtube.png";s:5:"sizes";a:0:{}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;}}'),
(517, 552, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/ls5box.png'),
(518, 553, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/html5-color.png'),
(519, 553, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:90;s:6:"height";i:90;s:4:"file";s:64:"layerslider/LayerSlider-5-responsive-demo-slider/html5-color.png";s:5:"sizes";a:0:{}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;}}'),
(520, 554, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/ls5box.png'),
(521, 552, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:254;s:6:"height";i:452;s:4:"file";s:59:"layerslider/LayerSlider-5-responsive-demo-slider/ls5box.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"ls5box-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:"ls5box-169x300.png";s:5:"width";i:169;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:6:"normal";a:4:{s:4:"file";s:18:"ls5box-247x440.png";s:5:"width";i:247;s:6:"height";i:440;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;}}'),
(522, 555, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/mouse.png'),
(523, 555, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:70;s:6:"height";i:163;s:4:"file";s:58:"layerslider/LayerSlider-5-responsive-demo-slider/mouse.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:16:"mouse-70x150.png";s:5:"width";i:70;s:6:"height";i:150;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;}}'),
(524, 554, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:254;s:6:"height";i:452;s:4:"file";s:59:"layerslider/LayerSlider-5-responsive-demo-slider/ls5box.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"ls5box-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:"ls5box-169x300.png";s:5:"width";i:169;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:6:"normal";a:4:{s:4:"file";s:18:"ls5box-247x440.png";s:5:"width";i:247;s:6:"height";i:440;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;}}'),
(525, 556, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/slide-a-1.png'),
(526, 557, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/mouse.png'),
(527, 556, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:875;s:6:"height";i:628;s:4:"file";s:62:"layerslider/LayerSlider-5-responsive-demo-slider/slide-a-1.png";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"slide-a-1-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:"slide-a-1-300x215.png";s:5:"width";i:300;s:6:"height";i:215;s:9:"mime-type";s:9:"image/png";}s:6:"normal";a:4:{s:4:"file";s:21:"slide-a-1-440x316.png";s:5:"width";i:440;s:6:"height";i:316;s:9:"mime-type";s:9:"image/png";}s:8:"extended";a:4:{s:4:"file";s:21:"slide-a-1-600x431.png";s:5:"width";i:600;s:6:"height";i:431;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;}}'),
(528, 557, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:70;s:6:"height";i:163;s:4:"file";s:58:"layerslider/LayerSlider-5-responsive-demo-slider/mouse.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:16:"mouse-70x150.png";s:5:"width";i:70;s:6:"height";i:150;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;}}'),
(529, 558, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/slide-a-2.png'),
(530, 559, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/slide-a-1.png'),
(531, 558, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:426;s:6:"height";i:55;s:4:"file";s:62:"layerslider/LayerSlider-5-responsive-demo-slider/slide-a-2.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"slide-a-2-150x55.png";s:5:"width";i:150;s:6:"height";i:55;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:20:"slide-a-2-300x39.png";s:5:"width";i:300;s:6:"height";i:39;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;}}'),
(532, 560, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/slide-a-3.png'),
(533, 559, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:875;s:6:"height";i:628;s:4:"file";s:62:"layerslider/LayerSlider-5-responsive-demo-slider/slide-a-1.png";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"slide-a-1-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:"slide-a-1-300x215.png";s:5:"width";i:300;s:6:"height";i:215;s:9:"mime-type";s:9:"image/png";}s:6:"normal";a:4:{s:4:"file";s:21:"slide-a-1-440x316.png";s:5:"width";i:440;s:6:"height";i:316;s:9:"mime-type";s:9:"image/png";}s:8:"extended";a:4:{s:4:"file";s:21:"slide-a-1-600x431.png";s:5:"width";i:600;s:6:"height";i:431;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;}}'),
(534, 561, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/slide-a-2.png'),
(535, 561, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:426;s:6:"height";i:55;s:4:"file";s:62:"layerslider/LayerSlider-5-responsive-demo-slider/slide-a-2.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"slide-a-2-150x55.png";s:5:"width";i:150;s:6:"height";i:55;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:20:"slide-a-2-300x39.png";s:5:"width";i:300;s:6:"height";i:39;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;}}'),
(536, 562, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/slide-a-3.png'),
(537, 560, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:459;s:6:"height";i:260;s:4:"file";s:62:"layerslider/LayerSlider-5-responsive-demo-slider/slide-a-3.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"slide-a-3-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:"slide-a-3-300x170.png";s:5:"width";i:300;s:6:"height";i:170;s:9:"mime-type";s:9:"image/png";}s:6:"normal";a:4:{s:4:"file";s:21:"slide-a-3-440x249.png";s:5:"width";i:440;s:6:"height";i:249;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;}}'),
(538, 563, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/slide-a-4.png'),
(539, 562, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:459;s:6:"height";i:260;s:4:"file";s:62:"layerslider/LayerSlider-5-responsive-demo-slider/slide-a-3.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"slide-a-3-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:"slide-a-3-300x170.png";s:5:"width";i:300;s:6:"height";i:170;s:9:"mime-type";s:9:"image/png";}s:6:"normal";a:4:{s:4:"file";s:21:"slide-a-3-440x249.png";s:5:"width";i:440;s:6:"height";i:249;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;}}'),
(540, 563, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:459;s:6:"height";i:260;s:4:"file";s:62:"layerslider/LayerSlider-5-responsive-demo-slider/slide-a-4.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"slide-a-4-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:"slide-a-4-300x170.png";s:5:"width";i:300;s:6:"height";i:170;s:9:"mime-type";s:9:"image/png";}s:6:"normal";a:4:{s:4:"file";s:21:"slide-a-4-440x249.png";s:5:"width";i:440;s:6:"height";i:249;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;}}'),
(541, 564, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/slide-a-4.png'),
(542, 565, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/slide-a-5.png'),
(543, 565, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:311;s:6:"height";i:354;s:4:"file";s:62:"layerslider/LayerSlider-5-responsive-demo-slider/slide-a-5.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"slide-a-5-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:"slide-a-5-264x300.png";s:5:"width";i:264;s:6:"height";i:300;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;}}'),
(544, 564, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:459;s:6:"height";i:260;s:4:"file";s:62:"layerslider/LayerSlider-5-responsive-demo-slider/slide-a-4.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"slide-a-4-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:"slide-a-4-300x170.png";s:5:"width";i:300;s:6:"height";i:170;s:9:"mime-type";s:9:"image/png";}s:6:"normal";a:4:{s:4:"file";s:21:"slide-a-4-440x249.png";s:5:"width";i:440;s:6:"height";i:249;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;}}'),
(545, 566, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/slide-a-6.png'),
(546, 566, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:33;s:6:"height";i:33;s:4:"file";s:62:"layerslider/LayerSlider-5-responsive-demo-slider/slide-a-6.png";s:5:"sizes";a:0:{}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;}}'),
(547, 567, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/slide-a-5.png'),
(548, 568, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/slide-b-1.png'),
(549, 567, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:311;s:6:"height";i:354;s:4:"file";s:62:"layerslider/LayerSlider-5-responsive-demo-slider/slide-a-5.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"slide-a-5-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:"slide-a-5-264x300.png";s:5:"width";i:264;s:6:"height";i:300;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;}}'),
(550, 569, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/slide-a-6.png'),
(551, 569, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:33;s:6:"height";i:33;s:4:"file";s:62:"layerslider/LayerSlider-5-responsive-demo-slider/slide-a-6.png";s:5:"sizes";a:0:{}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;}}'),
(552, 570, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/slide-b-1.png');
INSERT INTO `travel2_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(553, 568, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1510;s:6:"height";i:1208;s:4:"file";s:62:"layerslider/LayerSlider-5-responsive-demo-slider/slide-b-1.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"slide-b-1-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:"slide-b-1-300x240.png";s:5:"width";i:300;s:6:"height";i:240;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:22:"slide-b-1-1024x819.png";s:5:"width";i:1024;s:6:"height";i:819;s:9:"mime-type";s:9:"image/png";}s:6:"normal";a:4:{s:4:"file";s:21:"slide-b-1-440x352.png";s:5:"width";i:440;s:6:"height";i:352;s:9:"mime-type";s:9:"image/png";}s:8:"extended";a:4:{s:4:"file";s:21:"slide-b-1-600x480.png";s:5:"width";i:600;s:6:"height";i:480;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;}}'),
(554, 571, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/slide-b-2.png'),
(555, 570, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1510;s:6:"height";i:1208;s:4:"file";s:62:"layerslider/LayerSlider-5-responsive-demo-slider/slide-b-1.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"slide-b-1-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:"slide-b-1-300x240.png";s:5:"width";i:300;s:6:"height";i:240;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:22:"slide-b-1-1024x819.png";s:5:"width";i:1024;s:6:"height";i:819;s:9:"mime-type";s:9:"image/png";}s:6:"normal";a:4:{s:4:"file";s:21:"slide-b-1-440x352.png";s:5:"width";i:440;s:6:"height";i:352;s:9:"mime-type";s:9:"image/png";}s:8:"extended";a:4:{s:4:"file";s:21:"slide-b-1-600x480.png";s:5:"width";i:600;s:6:"height";i:480;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;}}'),
(556, 572, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/slide-b-2.png'),
(557, 571, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1126;s:6:"height";i:549;s:4:"file";s:62:"layerslider/LayerSlider-5-responsive-demo-slider/slide-b-2.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"slide-b-2-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:"slide-b-2-300x146.png";s:5:"width";i:300;s:6:"height";i:146;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:22:"slide-b-2-1024x499.png";s:5:"width";i:1024;s:6:"height";i:499;s:9:"mime-type";s:9:"image/png";}s:6:"normal";a:4:{s:4:"file";s:21:"slide-b-2-440x215.png";s:5:"width";i:440;s:6:"height";i:215;s:9:"mime-type";s:9:"image/png";}s:8:"extended";a:4:{s:4:"file";s:21:"slide-b-2-600x293.png";s:5:"width";i:600;s:6:"height";i:293;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;}}'),
(558, 573, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/slide-b-3.png'),
(559, 572, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1126;s:6:"height";i:549;s:4:"file";s:62:"layerslider/LayerSlider-5-responsive-demo-slider/slide-b-2.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"slide-b-2-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:"slide-b-2-300x146.png";s:5:"width";i:300;s:6:"height";i:146;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:22:"slide-b-2-1024x499.png";s:5:"width";i:1024;s:6:"height";i:499;s:9:"mime-type";s:9:"image/png";}s:6:"normal";a:4:{s:4:"file";s:21:"slide-b-2-440x215.png";s:5:"width";i:440;s:6:"height";i:215;s:9:"mime-type";s:9:"image/png";}s:8:"extended";a:4:{s:4:"file";s:21:"slide-b-2-600x293.png";s:5:"width";i:600;s:6:"height";i:293;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;}}'),
(560, 574, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/slide-b-3.png'),
(561, 573, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:729;s:6:"height";i:476;s:4:"file";s:62:"layerslider/LayerSlider-5-responsive-demo-slider/slide-b-3.png";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"slide-b-3-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:"slide-b-3-300x196.png";s:5:"width";i:300;s:6:"height";i:196;s:9:"mime-type";s:9:"image/png";}s:6:"normal";a:4:{s:4:"file";s:21:"slide-b-3-440x287.png";s:5:"width";i:440;s:6:"height";i:287;s:9:"mime-type";s:9:"image/png";}s:8:"extended";a:4:{s:4:"file";s:21:"slide-b-3-600x392.png";s:5:"width";i:600;s:6:"height";i:392;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;}}'),
(562, 575, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/slide-b-4.png'),
(563, 574, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:729;s:6:"height";i:476;s:4:"file";s:62:"layerslider/LayerSlider-5-responsive-demo-slider/slide-b-3.png";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"slide-b-3-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:"slide-b-3-300x196.png";s:5:"width";i:300;s:6:"height";i:196;s:9:"mime-type";s:9:"image/png";}s:6:"normal";a:4:{s:4:"file";s:21:"slide-b-3-440x287.png";s:5:"width";i:440;s:6:"height";i:287;s:9:"mime-type";s:9:"image/png";}s:8:"extended";a:4:{s:4:"file";s:21:"slide-b-3-600x392.png";s:5:"width";i:600;s:6:"height";i:392;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;}}'),
(564, 576, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/slide-b-4.png'),
(565, 575, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:533;s:6:"height";i:455;s:4:"file";s:62:"layerslider/LayerSlider-5-responsive-demo-slider/slide-b-4.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"slide-b-4-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:"slide-b-4-300x256.png";s:5:"width";i:300;s:6:"height";i:256;s:9:"mime-type";s:9:"image/png";}s:6:"normal";a:4:{s:4:"file";s:21:"slide-b-4-440x376.png";s:5:"width";i:440;s:6:"height";i:376;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;}}'),
(566, 577, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/slide-b-5.png'),
(567, 576, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:533;s:6:"height";i:455;s:4:"file";s:62:"layerslider/LayerSlider-5-responsive-demo-slider/slide-b-4.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"slide-b-4-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:"slide-b-4-300x256.png";s:5:"width";i:300;s:6:"height";i:256;s:9:"mime-type";s:9:"image/png";}s:6:"normal";a:4:{s:4:"file";s:21:"slide-b-4-440x376.png";s:5:"width";i:440;s:6:"height";i:376;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;}}'),
(568, 577, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:369;s:6:"height";i:442;s:4:"file";s:62:"layerslider/LayerSlider-5-responsive-demo-slider/slide-b-5.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"slide-b-5-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:"slide-b-5-250x300.png";s:5:"width";i:250;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:6:"normal";a:4:{s:4:"file";s:21:"slide-b-5-367x440.png";s:5:"width";i:367;s:6:"height";i:440;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;}}'),
(569, 579, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/slide-b-bg.jpg'),
(570, 579, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1280;s:6:"height";i:720;s:4:"file";s:63:"layerslider/LayerSlider-5-responsive-demo-slider/slide-b-bg.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:22:"slide-b-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:22:"slide-b-bg-300x169.jpg";s:5:"width";i:300;s:6:"height";i:169;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:23:"slide-b-bg-1024x576.jpg";s:5:"width";i:1024;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:6:"normal";a:4:{s:4:"file";s:22:"slide-b-bg-440x248.jpg";s:5:"width";i:440;s:6:"height";i:248;s:9:"mime-type";s:10:"image/jpeg";}s:8:"extended";a:4:{s:4:"file";s:22:"slide-b-bg-600x338.jpg";s:5:"width";i:600;s:6:"height";i:338;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;}}'),
(571, 580, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/slide-d-5-1.png'),
(572, 580, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:150;s:6:"height";i:150;s:4:"file";s:64:"layerslider/LayerSlider-5-responsive-demo-slider/slide-d-5-1.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"slide-d-5-1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;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;}}'),
(573, 581, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/slide-d-5-2.png'),
(574, 581, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:150;s:6:"height";i:150;s:4:"file";s:64:"layerslider/LayerSlider-5-responsive-demo-slider/slide-d-5-2.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"slide-d-5-2-150x150.png";s:5:"width";i:150;s:6:"height";i:150;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;}}'),
(575, 582, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/slide-d-5-3.png'),
(576, 582, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:150;s:6:"height";i:150;s:4:"file";s:64:"layerslider/LayerSlider-5-responsive-demo-slider/slide-d-5-3.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"slide-d-5-3-150x150.png";s:5:"width";i:150;s:6:"height";i:150;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;}}'),
(577, 583, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/slide-d-5-4.png'),
(578, 583, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:150;s:6:"height";i:150;s:4:"file";s:64:"layerslider/LayerSlider-5-responsive-demo-slider/slide-d-5-4.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"slide-d-5-4-150x150.png";s:5:"width";i:150;s:6:"height";i:150;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;}}'),
(579, 584, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/slide-d-5-5.png'),
(580, 584, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:150;s:6:"height";i:150;s:4:"file";s:64:"layerslider/LayerSlider-5-responsive-demo-slider/slide-d-5-5.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"slide-d-5-5-150x150.png";s:5:"width";i:150;s:6:"height";i:150;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;}}'),
(581, 586, '_wp_attached_file', 'layerslider/Full-width-demo-slider/d1.png'),
(582, 586, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:366;s:6:"height";i:183;s:4:"file";s:41:"layerslider/Full-width-demo-slider/d1.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"d1-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:14:"d1-300x150.png";s:5:"width";i:300;s:6:"height";i:150;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;}}'),
(583, 587, '_wp_attached_file', 'layerslider/Full-width-demo-slider/d2.png'),
(584, 587, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:577;s:6:"height";i:404;s:4:"file";s:41:"layerslider/Full-width-demo-slider/d2.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"d2-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:14:"d2-300x210.png";s:5:"width";i:300;s:6:"height";i:210;s:9:"mime-type";s:9:"image/png";}s:6:"normal";a:4:{s:4:"file";s:14:"d2-440x308.png";s:5:"width";i:440;s:6:"height";i:308;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;}}'),
(585, 588, '_wp_attached_file', 'layerslider/Full-width-demo-slider/fw-1.jpg'),
(586, 588, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:2560;s:6:"height";i:600;s:4:"file";s:43:"layerslider/Full-width-demo-slider/fw-1.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:16:"fw-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:15:"fw-1-300x70.jpg";s:5:"width";i:300;s:6:"height";i:70;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:17:"fw-1-1024x240.jpg";s:5:"width";i:1024;s:6:"height";i:240;s:9:"mime-type";s:10:"image/jpeg";}s:6:"normal";a:4:{s:4:"file";s:16:"fw-1-440x103.jpg";s:5:"width";i:440;s:6:"height";i:103;s:9:"mime-type";s:10:"image/jpeg";}s:8:"extended";a:4:{s:4:"file";s:16:"fw-1-600x141.jpg";s:5:"width";i:600;s:6:"height";i:141;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;}}'),
(587, 589, '_wp_attached_file', 'layerslider/Full-width-demo-slider/l1.png'),
(588, 589, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:368;s:6:"height";i:223;s:4:"file";s:41:"layerslider/Full-width-demo-slider/l1.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"l1-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:14:"l1-300x182.png";s:5:"width";i:300;s:6:"height";i:182;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;}}'),
(589, 590, '_wp_attached_file', 'layerslider/Full-width-demo-slider/l2.png'),
(590, 590, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:651;s:6:"height";i:481;s:4:"file";s:41:"layerslider/Full-width-demo-slider/l2.png";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"l2-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:14:"l2-300x222.png";s:5:"width";i:300;s:6:"height";i:222;s:9:"mime-type";s:9:"image/png";}s:6:"normal";a:4:{s:4:"file";s:14:"l2-440x325.png";s:5:"width";i:440;s:6:"height";i:325;s:9:"mime-type";s:9:"image/png";}s:8:"extended";a:4:{s:4:"file";s:14:"l2-600x443.png";s:5:"width";i:600;s:6:"height";i:443;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;}}'),
(591, 591, '_wp_attached_file', 'layerslider/Full-width-demo-slider/l3.png'),
(592, 591, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:717;s:6:"height";i:481;s:4:"file";s:41:"layerslider/Full-width-demo-slider/l3.png";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"l3-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:14:"l3-300x201.png";s:5:"width";i:300;s:6:"height";i:201;s:9:"mime-type";s:9:"image/png";}s:6:"normal";a:4:{s:4:"file";s:14:"l3-440x295.png";s:5:"width";i:440;s:6:"height";i:295;s:9:"mime-type";s:9:"image/png";}s:8:"extended";a:4:{s:4:"file";s:14:"l3-600x403.png";s:5:"width";i:600;s:6:"height";i:403;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;}}'),
(593, 592, '_wp_attached_file', 'layerslider/Full-width-demo-slider/left.png'),
(594, 592, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:20;s:6:"height";i:20;s:4:"file";s:43:"layerslider/Full-width-demo-slider/left.png";s:5:"sizes";a:0:{}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;}}'),
(595, 593, '_wp_attached_file', 'layerslider/Full-width-demo-slider/right.png'),
(596, 593, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:20;s:6:"height";i:20;s:4:"file";s:44:"layerslider/Full-width-demo-slider/right.png";s:5:"sizes";a:0:{}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;}}'),
(597, 594, '_wp_attached_file', 'layerslider/Full-width-demo-slider/s1.jpg'),
(598, 594, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:388;s:6:"height";i:258;s:4:"file";s:41:"layerslider/Full-width-demo-slider/s1.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"s1-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:14:"s1-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;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;}}'),
(599, 595, '_wp_attached_file', 'layerslider/Full-width-demo-slider/s1.png'),
(600, 595, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:2144;s:6:"height";i:227;s:4:"file";s:41:"layerslider/Full-width-demo-slider/s1.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"s1-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:13:"s1-300x32.png";s:5:"width";i:300;s:6:"height";i:32;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:15:"s1-1024x108.png";s:5:"width";i:1024;s:6:"height";i:108;s:9:"mime-type";s:9:"image/png";}s:6:"normal";a:4:{s:4:"file";s:13:"s1-440x47.png";s:5:"width";i:440;s:6:"height";i:47;s:9:"mime-type";s:9:"image/png";}s:8:"extended";a:4:{s:4:"file";s:13:"s1-600x64.png";s:5:"width";i:600;s:6:"height";i:64;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;}}'),
(601, 596, '_wp_attached_file', 'layerslider/Full-width-demo-slider/s2.jpg'),
(602, 596, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:296;s:6:"height";i:206;s:4:"file";s:41:"layerslider/Full-width-demo-slider/s2.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"s2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;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;}}'),
(603, 597, '_wp_attached_file', 'layerslider/Full-width-demo-slider/s2.png'),
(604, 597, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:2498;s:6:"height";i:272;s:4:"file";s:41:"layerslider/Full-width-demo-slider/s2.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"s2-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:13:"s2-300x33.png";s:5:"width";i:300;s:6:"height";i:33;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:15:"s2-1024x112.png";s:5:"width";i:1024;s:6:"height";i:112;s:9:"mime-type";s:9:"image/png";}s:6:"normal";a:4:{s:4:"file";s:13:"s2-440x48.png";s:5:"width";i:440;s:6:"height";i:48;s:9:"mime-type";s:9:"image/png";}s:8:"extended";a:4:{s:4:"file";s:13:"s2-600x65.png";s:5:"width";i:600;s:6:"height";i:65;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;}}'),
(605, 598, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/vimeo-color.png'),
(606, 598, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:90;s:6:"height";i:90;s:4:"file";s:64:"layerslider/LayerSlider-5-responsive-demo-slider/vimeo-color.png";s:5:"sizes";a:0:{}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;}}'),
(607, 599, '_wp_attached_file', 'layerslider/LayerSlider-5-responsive-demo-slider/youtube-color.png'),
(608, 599, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:90;s:6:"height";i:90;s:4:"file";s:66:"layerslider/LayerSlider-5-responsive-demo-slider/youtube-color.png";s:5:"sizes";a:0:{}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;}}'),
(633, 612, '_edit_last', '1'),
(634, 612, '_edit_lock', '1424060381:1'),
(635, 82, '_edit_lock', '1424064554:1'),
(636, 613, '_wp_attached_file', '2015/02/sigiriya.jpg'),
(637, 613, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:455;s:6:"height";i:325;s:4:"file";s:20:"2015/02/sigiriya.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"sigiriya-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:20:"sigiriya-300x214.jpg";s:5:"width";i:300;s:6:"height";i:214;s:9:"mime-type";s:10:"image/jpeg";}s:6:"normal";a:4:{s:4:"file";s:20:"sigiriya-440x314.jpg";s:5:"width";i:440;s:6:"height";i:314;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:11:{s:8:"aperture";i:0;s:6:"credit";s:10:"Picasa 2.7";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;}}'),
(638, 612, '_thumbnail_id', '613'),
(641, 616, '_wp_attached_file', '2015/02/airport1.jpg'),
(642, 616, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:400;s:4:"file";s:20:"2015/02/airport1.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"airport1-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:20:"airport1-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:6:"normal";a:4:{s:4:"file";s:20:"airport1-440x293.jpg";s:5:"width";i:440;s:6:"height";i:293;s:9:"mime-type";s:10:"image/jpeg";}s:8:"extended";a:4:{s:4:"file";s:20:"airport1-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:11:{s:8:"aperture";d:5.5999999999999996447286321199499070644378662109375;s:6:"credit";s:6:"Picasa";s:6:"camera";s:14:"Canon EOS 550D";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1366666966;s:9:"copyright";s:0:"";s:12:"focal_length";s:2:"33";s:3:"iso";s:3:"250";s:13:"shutter_speed";s:4:"0.02";s:5:"title";s:0:"";s:11:"orientation";i:0;}}'),
(643, 612, '_tour_price', '150000'),
(644, 612, '_tour_days', '0=date'),
(645, 612, '_tour_images', '0=http%3A%2F%2Flocalhost%3A81%2Fsiaxe%2Ftravel2%2Fwp-content%2Fuploads%2F2015%2F02%2Fsigiriya.jpg&1=http%3A%2F%2Flocalhost%3A81%2Fsiaxe%2Ftravel2%2Fwp-content%2Fuploads%2F2015%2F02%2Fairport1.jpg&2=http%3A%2F%2Flocalhost%3A81%2Fsiaxe%2Ftravel2%2Fwp-content%2Fuploads%2F2015%2F02%2Fpinnawala.jpg&3=http%3A%2F%2Flocalhost%3A81%2Fsiaxe%2Ftravel2%2Fwp-content%2Fuploads%2F2015%2F02%2Fyala.jpg&4=http%3A%2F%2Flocalhost%3A81%2Fsiaxe%2Ftravel2%2Fwp-content%2Fuploads%2F2015%2F02%2Fgalle-fort.jpg&5=http%3A%2F%2Flocalhost%3A81%2Fsiaxe%2Ftravel2%2Fwp-content%2Fuploads%2F2015%2F02%2Fsri_lanka_kandy__the_temple_of_tooth_relic.jpg&6=http%3A%2F%2Flocalhost%3A81%2Fsiaxe%2Ftravel2%2Fwp-content%2Fuploads%2F2015%2F02%2Fcolombo.jpg'),
(646, 612, '_tour_duration', '14'),
(647, 619, '_wp_attached_file', '2015/02/colombo.jpg'),
(648, 619, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:500;s:6:"height";i:342;s:4:"file";s:19:"2015/02/colombo.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:19:"colombo-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:19:"colombo-300x205.jpg";s:5:"width";i:300;s:6:"height";i:205;s:9:"mime-type";s:10:"image/jpeg";}s:6:"normal";a:4:{s:4:"file";s:19:"colombo-440x301.jpg";s:5:"width";i:440;s:6:"height";i:301;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;}}'),
(649, 620, '_wp_attached_file', '2015/02/pinnawala.jpg'),
(650, 620, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:500;s:6:"height";i:333;s:4:"file";s:21:"2015/02/pinnawala.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"pinnawala-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:"pinnawala-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:6:"normal";a:4:{s:4:"file";s:21:"pinnawala-440x293.jpg";s:5:"width";i:440;s:6:"height";i:293;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;}}'),
(651, 621, '_wp_attached_file', '2015/02/polnnaruwa.jpg'),
(652, 621, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:406;s:4:"file";s:22:"2015/02/polnnaruwa.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:22:"polnnaruwa-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:22:"polnnaruwa-300x203.jpg";s:5:"width";i:300;s:6:"height";i:203;s:9:"mime-type";s:10:"image/jpeg";}s:6:"normal";a:4:{s:4:"file";s:22:"polnnaruwa-440x298.jpg";s:5:"width";i:440;s:6:"height";i:298;s:9:"mime-type";s:10:"image/jpeg";}s:8:"extended";a:4:{s:4:"file";s:22:"polnnaruwa-600x406.jpg";s:5:"width";i:600;s:6:"height";i:406;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;}}'),
(653, 623, '_wp_attached_file', '2015/02/sri_lanka_kandy__the_temple_of_tooth_relic.jpg'),
(654, 623, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:400;s:4:"file";s:54:"2015/02/sri_lanka_kandy__the_temple_of_tooth_relic.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:54:"sri_lanka_kandy__the_temple_of_tooth_relic-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:54:"sri_lanka_kandy__the_temple_of_tooth_relic-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:6:"normal";a:4:{s:4:"file";s:54:"sri_lanka_kandy__the_temple_of_tooth_relic-440x293.jpg";s:5:"width";i:440;s:6:"height";i:293;s:9:"mime-type";s:10:"image/jpeg";}s:8:"extended";a:4:{s:4:"file";s:54:"sri_lanka_kandy__the_temple_of_tooth_relic-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;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;}}'),
(655, 624, '_wp_attached_file', '2015/02/peradeniya.jpg'),
(656, 624, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:500;s:6:"height";i:375;s:4:"file";s:22:"2015/02/peradeniya.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:22:"peradeniya-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:22:"peradeniya-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:6:"normal";a:4:{s:4:"file";s:22:"peradeniya-440x330.jpg";s:5:"width";i:440;s:6:"height";i:330;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;}}'),
(657, 626, '_wp_attached_file', '2015/02/Nuwara-Eliya_6.jpg'),
(658, 626, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:400;s:4:"file";s:26:"2015/02/Nuwara-Eliya_6.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:26:"Nuwara-Eliya_6-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:26:"Nuwara-Eliya_6-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:6:"normal";a:4:{s:4:"file";s:26:"Nuwara-Eliya_6-440x293.jpg";s:5:"width";i:440;s:6:"height";i:293;s:9:"mime-type";s:10:"image/jpeg";}s:8:"extended";a:4:{s:4:"file";s:26:"Nuwara-Eliya_6-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;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;}}'),
(659, 627, '_wp_attached_file', '2015/02/horton-plains-national-park5.jpg'),
(660, 627, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:630;s:6:"height";i:420;s:4:"file";s:40:"2015/02/horton-plains-national-park5.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:40:"horton-plains-national-park5-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:40:"horton-plains-national-park5-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:6:"normal";a:4:{s:4:"file";s:40:"horton-plains-national-park5-440x293.jpg";s:5:"width";i:440;s:6:"height";i:293;s:9:"mime-type";s:10:"image/jpeg";}s:8:"extended";a:4:{s:4:"file";s:40:"horton-plains-national-park5-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;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;}}'),
(661, 628, '_wp_attached_file', '2015/02/yala.jpg'),
(662, 628, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:650;s:6:"height";i:366;s:4:"file";s:16:"2015/02/yala.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:16:"yala-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:16:"yala-300x169.jpg";s:5:"width";i:300;s:6:"height";i:169;s:9:"mime-type";s:10:"image/jpeg";}s:6:"normal";a:4:{s:4:"file";s:16:"yala-440x248.jpg";s:5:"width";i:440;s:6:"height";i:248;s:9:"mime-type";s:10:"image/jpeg";}s:8:"extended";a:4:{s:4:"file";s:16:"yala-600x338.jpg";s:5:"width";i:600;s:6:"height";i:338;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:11:{s:8:"aperture";i:0;s:6:"credit";s:22:"Getty Images/Flickr RF";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;}}'),
(663, 629, '_wp_attached_file', '2015/02/galle-fort.jpg'),
(664, 629, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:450;s:4:"file";s:22:"2015/02/galle-fort.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:22:"galle-fort-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:22:"galle-fort-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:6:"normal";a:4:{s:4:"file";s:22:"galle-fort-440x330.jpg";s:5:"width";i:440;s:6:"height";i:330;s:9:"mime-type";s:10:"image/jpeg";}s:8:"extended";a:4:{s:4:"file";s:22:"galle-fort-600x450.jpg";s:5:"width";i:600;s:6:"height";i:450;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:15:"COPYRIGHT, 2007";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;}}'),
(665, 630, '_wp_attached_file', '2015/02/the-fortress-galle-pool.jpg'),
(666, 630, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:532;s:6:"height";i:300;s:4:"file";s:35:"2015/02/the-fortress-galle-pool.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:35:"the-fortress-galle-pool-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:35:"the-fortress-galle-pool-300x169.jpg";s:5:"width";i:300;s:6:"height";i:169;s:9:"mime-type";s:10:"image/jpeg";}s:6:"normal";a:4:{s:4:"file";s:35:"the-fortress-galle-pool-440x248.jpg";s:5:"width";i:440;s:6:"height";i:248;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;}}'),
(667, 111, '_edit_lock', '1424060651:1'),
(668, 633, '_edit_last', '1'),
(669, 633, '_edit_lock', '1424060707:1'),
(670, 633, '_gallery_images', '0=http%3A%2F%2Flocalhost%3A81%2Fsiaxe%2Ftravel2%2Fwp-content%2Fuploads%2F2015%2F02%2Fsri_lanka_kandy__the_temple_of_tooth_relic.jpg&1=http%3A%2F%2Flocalhost%3A81%2Fsiaxe%2Ftravel2%2Fwp-content%2Fuploads%2F2015%2F02%2FNuwara-Eliya_6.jpg&2=http%3A%2F%2Flocalhost%3A81%2Fsiaxe%2Ftravel2%2Fwp-content%2Fuploads%2F2015%2F02%2Fyala.jpg&3=http%3A%2F%2Flocalhost%3A81%2Fsiaxe%2Ftravel2%2Fwp-content%2Fuploads%2F2015%2F02%2Fpolnnaruwa.jpg&4=http%3A%2F%2Flocalhost%3A81%2Fsiaxe%2Ftravel2%2Fwp-content%2Fuploads%2F2015%2F02%2Fcolombo.jpg&5=http%3A%2F%2Flocalhost%3A81%2Fsiaxe%2Ftravel2%2Fwp-content%2Fuploads%2F2015%2F02%2Fhorton-plains-national-park5.jpg&6=http%3A%2F%2Flocalhost%3A81%2Fsiaxe%2Ftravel2%2Fwp-content%2Fuploads%2F2015%2F02%2Fperadeniya.jpg&7=http%3A%2F%2Flocalhost%3A81%2Fsiaxe%2Ftravel2%2Fwp-content%2Fuploads%2F2015%2F02%2Fsigiriya.jpg&8=http%3A%2F%2Flocalhost%3A81%2Fsiaxe%2Ftravel2%2Fwp-content%2Fuploads%2F2015%2F02%2FNuwara-Eliya_6.jpg'),
(671, 633, '_thumbnail_id', '613'),
(694, 634, '_edit_last', '1'),
(695, 634, '_edit_lock', '1424064864:1'),
(696, 637, '_wp_attached_file', '2015/03/final-logo.png'),
(697, 637, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:5000;s:6:"height";i:5000;s:4:"file";s:22:"2015/03/final-logo.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:22:"final-logo-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:22:"final-logo-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:24:"final-logo-1024x1024.png";s:5:"width";i:1024;s:6:"height";i:1024;s:9:"mime-type";s:9:"image/png";}s:6:"normal";a:4:{s:4:"file";s:22:"final-logo-440x440.png";s:5:"width";i:440;s:6:"height";i:440;s:9:"mime-type";s:9:"image/png";}s:8:"extended";a:4:{s:4:"file";s:22:"final-logo-600x600.png";s:5:"width";i:600;s:6:"height";i:600;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;}}'),
(698, 638, '_wp_attached_file', '2015/03/miracle-island-logo.png'),
(699, 638, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:300;s:6:"height";i:300;s:4:"file";s:31:"2015/03/miracle-island-logo.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:31:"miracle-island-logo-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:31:"miracle-island-logo-300x300.png";s:5:"width";i:300;s:6:"height";i:300;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;}}'),
(700, 638, '_wp_attachment_image_alt', 'miracle-island-logo'),
(701, 639, '_wp_attached_file', '2015/03/final-logo1.png'),
(702, 639, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:5000;s:6:"height";i:5000;s:4:"file";s:23:"2015/03/final-logo1.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"final-logo1-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:23:"final-logo1-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:25:"final-logo1-1024x1024.png";s:5:"width";i:1024;s:6:"height";i:1024;s:9:"mime-type";s:9:"image/png";}s:6:"normal";a:4:{s:4:"file";s:23:"final-logo1-440x440.png";s:5:"width";i:440;s:6:"height";i:440;s:9:"mime-type";s:9:"image/png";}s:8:"extended";a:4:{s:4:"file";s:23:"final-logo1-600x600.png";s:5:"width";i:600;s:6:"height";i:600;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;}}'),
(703, 640, '_wp_attached_file', '2015/03/miracle-island-logo1.png'),
(704, 640, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:150;s:6:"height";i:150;s:4:"file";s:32:"2015/03/miracle-island-logo1.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:32:"miracle-island-logo1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;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;}}'),
(705, 640, '_wp_attachment_image_alt', 'miracle-island-logo'),
(706, 641, '_wp_attached_file', '2015/03/miracle-island-logo2.png'),
(707, 641, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:100;s:6:"height";i:100;s:4:"file";s:32:"2015/03/miracle-island-logo2.png";s:5:"sizes";a:0:{}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;}}'),
(708, 641, '_wp_attachment_image_alt', 'miracle-island-logo'),
(709, 642, '_wp_attached_file', '2015/03/favicon.ico'),
(710, 642, '_wp_attachment_image_alt', 'favicon-miracle-island');
-- --------------------------------------------------------
--
-- Table structure for table `travel2_posts`
--
CREATE TABLE IF NOT EXISTS `travel2_posts` (
`ID` bigint(20) unsigned NOT NULL,
`post_author` bigint(20) unsigned NOT NULL DEFAULT '0',
`post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content` longtext NOT NULL,
`post_title` text NOT NULL,
`post_excerpt` text NOT NULL,
`post_status` varchar(20) NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) NOT NULL DEFAULT 'open',
`ping_status` varchar(20) NOT NULL DEFAULT 'open',
`post_password` varchar(20) NOT NULL DEFAULT '',
`post_name` varchar(200) NOT NULL DEFAULT '',
`to_ping` text NOT NULL,
`pinged` text NOT NULL,
`post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content_filtered` longtext NOT NULL,
`post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`guid` varchar(255) NOT NULL DEFAULT '',
`menu_order` int(11) NOT NULL DEFAULT '0',
`post_type` varchar(20) NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) NOT NULL DEFAULT '',
`comment_count` bigint(20) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=643 ;
--
-- Dumping data for table `travel2_posts`
--
INSERT INTO `travel2_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-02-08 09:28:29', '2015-02-08 09:28:29', 'Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!', 'Hello world!', '', 'publish', 'open', 'open', '', 'hello-world', '', '', '2015-02-08 09:28:29', '2015-02-08 09:28:29', '', 0, 'http://localhost:81/siaxe/travel2/?p=1', 0, 'post', '', 1),
(2, 1, '2015-02-08 09:28:29', '2015-02-08 09:28:29', '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:\n\n<blockquote>Hi there! I''m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin'' caught in the rain.)</blockquote>\n\n...or something like this:\n\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>\n\nAs a new WordPress user, you should go to <a href="http://localhost:81/siaxe/travel2/wp-admin/">your dashboard</a> to delete this page and create new pages for your content. Have fun!', 'Sample Page', '', 'publish', 'open', 'open', '', 'sample-page', '', '', '2015-02-08 09:28:29', '2015-02-08 09:28:29', '', 0, 'http://localhost:81/siaxe/travel2/?page_id=2', 0, 'page', '', 0),
(45, 1, '2012-11-15 10:56:42', '2012-11-15 10:56:42', '', 'Slide Three', '', 'publish', 'closed', 'closed', '', 'slide-three', '', '', '2012-11-15 10:56:42', '2012-11-15 10:56:42', '', 0, 'http://themextemplates.com/demo/midway/?post_type=slide&p=45', 0, 'slide', '', 0),
(50, 1, '2012-11-15 11:03:36', '2012-11-15 11:03:36', '', 'Slide Two', '', 'publish', 'closed', 'closed', '', 'slide-two', '', '', '2012-11-15 11:03:36', '2012-11-15 11:03:36', '', 0, 'http://themextemplates.com/demo/midway/?post_type=slide&p=50', 0, 'slide', '', 0),
(51, 1, '2012-11-15 11:04:05', '2012-11-15 11:04:05', '', 'Slide One', '', 'publish', 'closed', 'closed', '', 'slide-one', '', '', '2012-11-15 11:04:05', '2012-11-15 11:04:05', '', 0, 'http://themextemplates.com/demo/midway/?post_type=slide&p=51', 0, 'slide', '', 0),
(55, 1, '2012-11-15 12:24:26', '2012-11-15 12:24:26', 'Thank you for the marvelous trip you arranged in India. We could never have put together such a well-planned visit by ourselves. Amazing!', 'Lisa Blackwood', '', 'publish', 'closed', 'closed', '', 'lisa-blackwood', '', '', '2012-11-15 12:24:26', '2012-11-15 12:24:26', '', 0, 'http://themextemplates.com/demo/midway/?post_type=testimonial&p=55', 0, 'testimonial', '', 0),
(56, 1, '2012-11-15 12:24:39', '2012-11-15 12:24:39', 'Everything was absolutely amazing and all of the details were just perfect. You made the entire trip just effortless! The best trip i''ve ever had.', 'John Peterson', '', 'publish', 'closed', 'closed', '', 'john-peterson', '', '', '2012-11-15 12:24:39', '2012-11-15 12:24:39', '', 0, 'http://themextemplates.com/demo/midway/?post_type=testimonial&p=56', 0, 'testimonial', '', 0),
(57, 1, '2012-11-15 12:24:54', '2012-11-15 12:24:54', 'We had the most amazing honeymoon trip in Thailand thanks to you. There is no question the trip far exceeded our expectation. Thank you!', 'Mary Templeton', '', 'publish', 'closed', 'closed', '', 'mary-templeton', '', '', '2012-11-15 12:24:54', '2012-11-15 12:24:54', '', 0, 'http://themextemplates.com/demo/midway/?post_type=testimonial&p=57', 0, 'testimonial', '', 0),
(82, 1, '2012-11-15 18:42:40', '2012-11-15 18:42:40', '[one_half][itinerary][day title="Day 1" image="http://localhost:81/siaxe/travel2/wp-content/uploads/2012/11/image_17.jpg"]\n<h5>Bangkok City Tour</h5>\nInteger congue pulvinar euismod. Aenean eget risus massa. Nunc urna metus, tincidunt et pellentesque ac, ultrices in eros. Nullam lacus neque, luctus eget posuere quis, luctus amet.[/day][day title="Day 2" image="http://localhost:81/siaxe/travel2/wp-content/uploads/2012/11/image_15.jpg"]\n<h5>Mountain Lakes</h5>\nMaecenas rutrum tristique magna. Sed arcu sapien, auctor nec id, aliquet nec odio. Phasellus eu erat justo. Aliquam erat volutpat. Morbi id mi purus, vitae imperdiet elit senectus et egestas.[/day][/itinerary][/one_half][one_half_last]\n<table>\n<thead>\n<tr>\n<td>Economy Accomodation</td>\n<td></td>\n<td>May - Sep.</td>\n<td>Oct. - April</td>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td rowspan="2">\n<ul class="styled-list list-4">\n <li>Winston Beach Resort</li>\n <li>Sunrise Family Hotel</li>\n</ul>\n</td>\n<td>Single</td>\n<td>$599</td>\n<td>$499</td>\n</tr>\n<tr>\n<td>Double</td>\n<td>$429</td>\n<td>$329</td>\n</tr>\n</tbody>\n</table>\n \n<table>\n<thead>\n<tr>\n<td>Standard Accomodation</td>\n<td></td>\n<td>May - Sep.</td>\n<td>Oct. - April</td>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td rowspan="2">\n<ul class="styled-list list-4">\n <li>Grand Pyramid Hotel</li>\n <li>Santa Monica Hotel</li>\n</ul>\n</td>\n<td>Single</td>\n<td>$619</td>\n<td>$519</td>\n</tr>\n<tr>\n<td>Double</td>\n<td>$449</td>\n<td>$349</td>\n</tr>\n</tbody>\n</table>\n \n<table>\n<thead>\n<tr>\n<td>Luxury Accomodation</td>\n<td></td>\n<td>May - Sep.</td>\n<td>Oct. - April</td>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td rowspan="2">\n<ul class="styled-list list-4">\n <li>Sonelly Beach Resort</li>\n <li>Sand Garden Hotel</li>\n</ul>\n</td>\n<td>Single</td>\n<td>$659</td>\n<td>$559</td>\n</tr>\n<tr>\n<td>Double</td>\n<td>$489</td>\n<td>$389</td>\n</tr>\n</tbody>\n</table>\n[/one_half_last]', 'Samui Holidays', '<p>Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Maecenas vehicula porttitor condimentum. Curabitur id lobortis lectus. Praesent tincidunt blandit feugiat. Donec sollicitudin vulputate orci eget commodo justo pulvinar rumus.</p><p>Nullam tempor, magna ac tempus rutrum, quam metus pharetra enim, at luctus tortor sapien eget eros. Morbi mattis, arcu nec semper aliquet, tortor augue eleifend tellus, at consequat magna sapien id metus. Nulla commodo vulputate feugiat. Nam vel ante massa, eget semper enim. Mauris fermentum ipsum eu lacus fringilla dignissim. Curabitur eget ante tellus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi tincidunt rutrum quam sed varius. In ut libero quis neque placerat egestas.</p>', 'publish', 'closed', 'closed', '', 'samui-holidays', '', '', '2015-02-16 03:22:42', '2015-02-16 03:22:42', '', 0, 'http://themextemplates.com/demo/midway/?post_type=tour&p=82', 0, 'tour', '', 0),
(84, 1, '2012-11-15 19:00:00', '2012-11-15 19:00:00', '[map latitude="40.7" longitude="-74" zoom="14" align="top"][two_thirds][title]Contact Form[/title][contact_form][/two_thirds][one_third_last][sidebar][/one_third_last]', 'Contact', '', 'publish', 'open', 'open', '', 'contact', '', '', '2012-11-15 19:00:00', '2012-11-15 19:00:00', '', 0, 'http://themextemplates.com/demo/midway/?page_id=84', 0, 'page', '', 0),
(96, 1, '2012-10-18 08:20:00', '2012-10-18 08:20:00', '[two_thirds][five_twelfths]<img class="alignnone size-medium wp-image-21" title="image_1" src="http://localhost:81/siaxe/travel2/wp-content/uploads/2012/11/image_1.jpg" alt="" />[/five_twelfths][seven_twelfths_last][title]Explore the World[/title]\n\nDuis molestie ultrices massa, non volutpat nibh auctor rhoncus. Aenean erat nunc, venenatis euismod quis, iaculis eu dolor. Sed purus neque, consequat at vulputate in, sagittis at dolor. Duis ut arcu libero. Ut quis neque nunc, eget suscipit nisl. Quisque orci neque, scelerisque!\n\n[/seven_twelfths_last][/two_thirds][one_third_last][testimonials][/one_third_last][block background="http://localhost:81/siaxe/travel2/wp-content/uploads/2012/11/background_1.jpg"][tours columns="4" number="4"][/block][one_fourth][title]Travel Guide[/title][posts number="1"][/one_fourth][one_half][title]Gallery[/title][galleries columns="3" number="6"][/one_half][one_fourth_last][sidebar][/one_fourth_last]', 'Home', '', 'publish', 'open', 'closed', '', 'home', '', '', '2012-10-18 08:20:00', '2012-10-18 08:20:00', '', 0, 'http://travel.loc/?page_id=2', 0, 'page', '', 0),
(111, 1, '2012-11-15 22:24:17', '2012-11-15 22:24:17', '', 'Waterfalls 2010', '', 'publish', 'closed', 'closed', '', 'detian-waterfall', '', '', '2012-11-15 22:24:17', '2012-11-15 22:24:17', '', 0, 'http://themextemplates.com/demo/midway/?post_type=gallery&p=110', 0, 'gallery', '', 0),
(112, 1, '2012-11-24 12:34:00', '2012-11-24 12:34:00', 'Aliquam metus felis, tempus vitae mollis quis, mollis sit amet purus. Suspendisse eget lorem elit. In non mi sed quam porta rutrum. Nunc suscipit rutrum neque, eu mattis ipsum convallis ut. Aliquam sed lacus dolor, sit amet pellentesque augue. Phasellus congue neque sed mauris aliquet vitae semper enim consectetur aliquam mauris ante sit amet ipsum.\n\nEtiam eget congue enim. Sed sit amet lobortis diam. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec risus orci, eleifend ut mattis non, dapibus at sem. Donec quis purus vitae ipsum consequat ornare in eget arcu. Proin adipiscing, nibh vel sodales iaculis, lacus nibh imperdiet dolor, at aliquam mauris ante sit amet ipsum. Cras vitae arcu sem. Pellentesque vehicula leo nec lectus tristique rhoncus. Donec varius pretium placerat.', 'How to Survive the Sahara', '<p>Donec vel ante neque. Morbi sit amet libero est, eget vehicula odio. Aliquam et tellus quam, vitae congue felis. In purus.</p>\n\n<p>Nullam fringilla lobortis dui blandit aliquet. Donec fringilla est nec tort condimentum quis facilisis felis condimentum. Praesent tellus sem, faucibus id scelerisque eu, tempus a ligula. Integer facilisis enim nec.</p>', 'publish', 'open', 'open', '', 'how-to-survive-the-sahara', '', '', '2012-11-24 12:34:00', '2012-11-24 12:34:00', '', 0, 'http://travel.loc/?p=1', 0, 'post', '', 3),
(113, 1, '2012-11-15 22:38:42', '2012-11-15 22:38:42', '', 'Tours', '', 'publish', 'open', 'open', '', 'tours', '', '', '2012-11-15 22:38:42', '2012-11-15 22:38:42', '', 0, 'http://themextemplates.com/demo/midway/?page_id=112', 0, 'page', '', 0),
(115, 1, '2012-11-15 22:40:09', '2012-11-15 22:40:09', '', 'Gallery', '', 'publish', 'open', 'closed', '', 'gallery', '', '', '2012-11-15 22:40:09', '2012-11-15 22:40:09', '', 0, 'http://themextemplates.com/demo/midway/?page_id=115', 0, 'page', '', 0),
(119, 1, '2012-11-15 22:41:39', '2012-11-15 22:41:39', '', 'Blog', '', 'publish', 'open', 'open', '', 'blog', '', '', '2012-11-15 22:41:39', '2012-11-15 22:41:39', '', 0, 'http://themextemplates.com/demo/midway/?page_id=119', 0, 'page', '', 0),
(131, 1, '2012-11-21 19:52:48', '2012-11-21 19:52:48', '', 'background_1', '', 'inherit', 'open', 'open', '', 'background_1-2', '', '', '2012-11-21 19:52:48', '2012-11-21 19:52:48', '', 0, 'http://localhost:81/siaxe/travel2/wp-content/uploads/2012/11/background_1.jpg', 0, 'attachment', 'image/jpeg', 0),
(132, 1, '2012-11-21 19:52:51', '2012-11-21 19:52:51', '', 'image_1', '', 'inherit', 'open', 'open', '', 'image_1-2', '', '', '2012-11-21 19:52:51', '2012-11-21 19:52:51', '', 0, 'http://localhost:81/siaxe/travel2/wp-content/uploads/2012/11/image_1.jpg', 0, 'attachment', 'image/jpeg', 0),
(133, 1, '2012-11-21 19:52:53', '2012-11-21 19:52:53', '', 'image_2', '', 'inherit', 'open', 'open', '', 'image_2-2', '', '', '2012-11-21 19:52:53', '2012-11-21 19:52:53', '', 0, 'http://localhost:81/siaxe/travel2/wp-content/uploads/2012/11/image_2.jpg', 0, 'attachment', 'image/jpeg', 0),
(134, 1, '2012-11-21 19:52:55', '2012-11-21 19:52:55', 'Ancient egyptian pyramid against blue sky', 'image_3', '', 'inherit', 'open', 'open', '', 'egyptian-pyramid-2', '', '', '2012-11-21 19:52:55', '2012-11-21 19:52:55', '', 0, 'http://localhost:81/siaxe/travel2/wp-content/uploads/2012/11/image_3.jpg', 0, 'attachment', 'image/jpeg', 0),
(135, 1, '2012-11-21 19:52:56', '2012-11-21 19:52:56', 'Overwater villas on the tropical lagoon', 'image_4', '', 'inherit', 'open', 'open', '', 'overwater-villas-on-the-lagoon-2', '', '', '2012-11-21 19:52:56', '2012-11-21 19:52:56', '', 0, 'http://localhost:81/siaxe/travel2/wp-content/uploads/2012/11/image_4.jpg', 0, 'attachment', 'image/jpeg', 0),
(136, 1, '2012-11-21 19:52:58', '2012-11-21 19:52:58', 'Tropical beach, traditional long tail boats, famous Maya Bay, Thailand', 'image_5', '', 'inherit', 'open', 'open', '', 'tropical-beach-maya-bay-thailand-2', '', '', '2012-11-21 19:52:58', '2012-11-21 19:52:58', '', 0, 'http://localhost:81/siaxe/travel2/wp-content/uploads/2012/11/image_5.jpg', 0, 'attachment', 'image/jpeg', 0),
(137, 1, '2012-11-21 19:53:00', '2012-11-21 19:53:00', 'Over water bungalows with steps into amazing green lagoon', 'image_6', '', 'inherit', 'open', 'open', '', 'over-water-bungalows-with-steps-into-amazing-lagoon-4', '', '', '2012-11-21 19:53:00', '2012-11-21 19:53:00', '', 0, 'http://localhost:81/siaxe/travel2/wp-content/uploads/2012/11/image_6.jpg', 0, 'attachment', 'image/jpeg', 0),
(138, 1, '2012-11-21 19:53:02', '2012-11-21 19:53:02', '', 'image_7', '', 'inherit', 'open', 'open', '', 'image_7-2', '', '', '2012-11-21 19:53:02', '2012-11-21 19:53:02', '', 0, 'http://localhost:81/siaxe/travel2/wp-content/uploads/2012/11/image_7.jpg', 0, 'attachment', 'image/jpeg', 0),
(139, 1, '2012-11-21 19:53:04', '2012-11-21 19:53:04', '', 'image_8', '', 'inherit', 'open', 'open', '', 'image_8-2', '', '', '2012-11-21 19:53:04', '2012-11-21 19:53:04', '', 0, 'http://localhost:81/siaxe/travel2/wp-content/uploads/2012/11/image_8.jpg', 0, 'attachment', 'image/jpeg', 0),
(140, 1, '2012-11-21 19:53:05', '2012-11-21 19:53:05', '', 'image_9', '', 'inherit', 'open', 'open', '', 'image_9-2', '', '', '2012-11-21 19:53:05', '2012-11-21 19:53:05', '', 0, 'http://localhost:81/siaxe/travel2/wp-content/uploads/2012/11/image_9.jpg', 0, 'attachment', 'image/jpeg', 0),
(141, 1, '2012-11-21 19:53:07', '2012-11-21 19:53:07', 'Parthenon in the Acropolis, Athens, Greece', 'image_10', '', 'inherit', 'open', 'open', '', 'parthenon-2', '', '', '2012-11-21 19:53:07', '2012-11-21 19:53:07', '', 0, 'http://localhost:81/siaxe/travel2/wp-content/uploads/2012/11/image_10.jpg', 0, 'attachment', 'image/jpeg', 0),
(142, 1, '2012-11-21 19:53:09', '2012-11-21 19:53:09', 'Traditional longtail boats at Maya bay. Thailand', 'image_11', '', 'inherit', 'open', 'open', '', 'longtail-boats-at-maya-bay-2', '', '', '2012-11-21 19:53:09', '2012-11-21 19:53:09', '', 0, 'http://localhost:81/siaxe/travel2/wp-content/uploads/2012/11/image_11.jpg', 0, 'attachment', 'image/jpeg', 0),
(143, 1, '2012-11-21 19:53:10', '2012-11-21 19:53:10', 'Overwater spa and bungalows in tropical blue lagoon', 'image_12', '', 'inherit', 'open', 'open', '', 'overwater-spa-and-bungalows-in-tropical-lagoon-2', '', '', '2012-11-21 19:53:10', '2012-11-21 19:53:10', '', 0, 'http://localhost:81/siaxe/travel2/wp-content/uploads/2012/11/image_12.jpg', 0, 'attachment', 'image/jpeg', 0),
(144, 1, '2012-11-21 19:53:12', '2012-11-21 19:53:12', 'Anicent mayan pyramid in Chichen-Itza, Mexico', 'image_13', '', 'inherit', 'open', 'open', '', 'mayan-pyramid-in-chichen-itza-mexico-2', '', '', '2012-11-21 19:53:12', '2012-11-21 19:53:12', '', 0, 'http://localhost:81/siaxe/travel2/wp-content/uploads/2012/11/image_13.jpg', 0, 'attachment', 'image/jpeg', 0),
(145, 1, '2012-11-21 19:53:14', '2012-11-21 19:53:14', 'Detian or Ban Gioc waterfall along Vietnamese and Chinese board.', 'image_14', '', 'inherit', 'open', 'open', '', 'detian-waterfall-2', '', '', '2012-11-21 19:53:14', '2012-11-21 19:53:14', '', 0, 'http://localhost:81/siaxe/travel2/wp-content/uploads/2012/11/image_14.jpg', 0, 'attachment', 'image/jpeg', 0),
(146, 1, '2012-11-21 19:53:15', '2012-11-21 19:53:15', 'Morning light on colorful canoes along the shore of Moraine Lake, Banff National Park, Alberta, Canada.', 'image_15', '', 'inherit', 'open', 'open', '', 'canoes-on-moraine-lake-2', '', '', '2012-11-21 19:53:15', '2012-11-21 19:53:15', '', 0, 'http://localhost:81/siaxe/travel2/wp-content/uploads/2012/11/image_15.jpg', 0, 'attachment', 'image/jpeg', 0),
(147, 1, '2012-11-21 19:53:17', '2012-11-21 19:53:17', 'Scenic winter mountain landscape in Canadian Rockies', 'image_16', '', 'inherit', 'open', 'open', '', 'mountain-landscape-2', '', '', '2012-11-21 19:53:17', '2012-11-21 19:53:17', '', 0, 'http://localhost:81/siaxe/travel2/wp-content/uploads/2012/11/image_16.jpg', 0, 'attachment', 'image/jpeg', 0),
(148, 1, '2012-11-21 19:53:19', '2012-11-21 19:53:19', 'Grand palace, the major tourism attraction in Bangkok, Thailand', 'image_17', '', 'inherit', 'open', 'open', '', 'grand-palace-bangkok-2', '', '', '2012-11-21 19:53:19', '2012-11-21 19:53:19', '', 0, 'http://localhost:81/siaxe/travel2/wp-content/uploads/2012/11/image_17.jpg', 0, 'attachment', 'image/jpeg', 0),
(170, 1, '2012-11-24 12:00:23', '2012-11-24 12:00:23', 'Aliquam metus felis, tempus vitae mollis quis, mollis sit amet purus. Suspendisse eget lorem elit. In non mi sed quam porta rutrum. Nunc suscipit rutrum neque, eu mattis ipsum convallis ut. Aliquam sed lacus dolor, sit amet pellentesque augue. Phasellus congue neque sed mauris aliquet vitae semper enim consectetur aliquam mauris ante sit amet ipsum.\n\nEtiam eget congue enim. Sed sit amet lobortis diam. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec risus orci, eleifend ut mattis non, dapibus at sem. Donec quis purus vitae ipsum consequat ornare in eget arcu. Proin adipiscing, nibh vel sodales iaculis, lacus nibh imperdiet dolor, at aliquam mauris ante sit amet ipsum. Cras vitae arcu sem. Pellentesque vehicula leo nec lectus tristique rhoncus. Donec varius pretium placerat.', 'Quisque Condimentum Sapien', '<p>Nunc aliquet eros nec mi consequat eget accumsan diam faucibus. Sed sit amet justo id turpis tempus vehicula eu non tellus. Quisque est.</p><p>Donec et scelerisque quam. Aliquam laoreet, orci vitae iaculis etna accumsan, dolor dolor condimentum arcu, ornare scelerisque magna quam ac ligula. Aliquam sit amet nibh lacus. Aenean lobortis congue varius. Nunc venenatis arcu et mi pellentesque dapibus.</p>', 'publish', 'open', 'open', '', 'quisque-condimentum-sapien', '', '', '2012-11-24 12:00:23', '2012-11-24 12:00:23', '', 0, 'http://themextemplates.com/demo/midway/?p=170', 0, 'post', '', 0),
(180, 1, '2012-11-24 12:13:55', '2012-11-24 12:13:55', 'Aliquam metus felis, tempus vitae mollis quis, mollis sit amet purus. Suspendisse eget lorem elit. In non mi sed quam porta rutrum. Nunc suscipit rutrum neque, eu mattis ipsum convallis ut. Aliquam sed lacus dolor, sit amet pellentesque augue. Phasellus congue neque sed mauris aliquet vitae semper enim consectetur aliquam mauris ante sit amet ipsum.\n\nEtiam eget congue enim. Sed sit amet lobortis diam. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec risus orci, eleifend ut mattis non, dapibus at sem. Donec quis purus vitae ipsum consequat ornare in eget arcu. Proin adipiscing, nibh vel sodales iaculis, lacus nibh imperdiet dolor, at aliquam mauris ante sit amet ipsum. Cras vitae arcu sem. Pellentesque vehicula leo nec lectus tristique rhoncus. Donec varius pretium placerat.', 'Vestibulum Semper Suscipit', '<p>Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Integer porta velit et metus rutrum ut faucibus.</p><p>Mauris magna orci, auctor id vestibulum vitae, vestibulum venenatis lectus. Praesent varius viverra sem consequat iaculis. Cras faucibus, diam ac consequat convallis, risus dui ultrices ipsum, molestie faucibus nibh massa non nibh. Morbi et metus libero condimentum quis.</p>', 'publish', 'open', 'open', '', 'vestibulum-semper-suscipit', '', '', '2012-11-24 12:13:55', '2012-11-24 12:13:55', '', 0, 'http://themextemplates.com/demo/midway/?p=180', 0, 'post', '', 0),
(185, 1, '2012-11-24 12:23:31', '2012-11-24 12:23:31', 'Aliquam metus felis, tempus vitae mollis quis, mollis sit amet purus. Suspendisse eget lorem elit. In non mi sed quam porta rutrum. Nunc suscipit rutrum neque, eu mattis ipsum convallis ut. Aliquam sed lacus dolor, sit amet pellentesque augue. Phasellus congue neque sed mauris aliquet vitae semper enim consectetur aliquam mauris ante sit amet ipsum.\n\nEtiam eget congue enim. Sed sit amet lobortis diam. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec risus orci, eleifend ut mattis non, dapibus at sem. Donec quis purus vitae ipsum consequat ornare in eget arcu. Proin adipiscing, nibh vel sodales iaculis, lacus nibh imperdiet dolor, at aliquam mauris ante sit amet ipsum. Cras vitae arcu sem. Pellentesque vehicula leo nec lectus tristique rhoncus. Donec varius pretium placerat.', 'Vestibulum Quis Purus', '<p>Praesent tincidunt, massa vitae ultricies dapibus, ligula mauris pulvinar arcu, ac aliquet nulla arcu id velit consequat quis accumsan dignissim.</p><p>Vestibulum ut dui sed sem congue tristique et eget leo. Praesent eget velit arcu. Vivamus sagittis luctus mauris, sed egestas mi auctor iniq. Proin lobortis, justo eu volutpat rhoncus, ipsum augue tempor felis, idis sagittis orci purus in enim metus condimentum.</p>', 'publish', 'open', 'open', '', 'vestibulum-quis-purus', '', '', '2012-11-24 12:23:31', '2012-11-24 12:23:31', '', 0, 'http://themextemplates.com/demo/midway/?p=185', 0, 'post', '', 0),
(189, 1, '2012-11-24 12:26:17', '2012-11-24 12:26:17', 'Aliquam metus felis, tempus vitae mollis quis, mollis sit amet purus. Suspendisse eget lorem elit. In non mi sed quam porta rutrum. Nunc suscipit rutrum neque, eu mattis ipsum convallis ut. Aliquam sed lacus dolor, sit amet pellentesque augue. Phasellus congue neque sed mauris aliquet vitae semper enim consectetur aliquam mauris ante sit amet ipsum.\n\nEtiam eget congue enim. Sed sit amet lobortis diam. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec risus orci, eleifend ut mattis non, dapibus at sem. Donec quis purus vitae ipsum consequat ornare in eget arcu. Proin adipiscing, nibh vel sodales iaculis, lacus nibh imperdiet dolor, at aliquam mauris ante sit amet ipsum. Cras vitae arcu sem. Pellentesque vehicula leo nec lectus tristique rhoncus. Donec varius pretium placerat.', 'Donec Tempor Quis', '<p>Nunc aliquet eros nec mi consequat eget accumsan diam faucibus. Sed sit amet justo id turpis tempus vehicula eu non tellus. Quisque est.</p><p>Donec et scelerisque quam. Aliquam laoreet, orci vitae iaculis etna accumsan, dolor dolor condimentum arcu, ornare scelerisque magna quam ac ligula. Aliquam sit amet nibh lacus. Aenean lobortis congue varius. Nunc venenatis arcu et mi pellentesque dapibus.</p>', 'publish', 'open', 'open', '', 'donec-tempor-quis', '', '', '2012-11-24 12:26:17', '2012-11-24 12:26:17', '', 0, 'http://themextemplates.com/demo/midway/?p=189', 0, 'post', '', 0),
(192, 1, '2012-11-24 12:27:39', '2012-11-24 12:27:39', 'Aliquam metus felis, tempus vitae mollis quis, mollis sit amet purus. Suspendisse eget lorem elit. In non mi sed quam porta rutrum. Nunc suscipit rutrum neque, eu mattis ipsum convallis ut. Aliquam sed lacus dolor, sit amet pellentesque augue. Phasellus congue neque sed mauris aliquet vitae semper enim consectetur aliquam mauris ante sit amet ipsum.\n\nEtiam eget congue enim. Sed sit amet lobortis diam. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec risus orci, eleifend ut mattis non, dapibus at sem. Donec quis purus vitae ipsum consequat ornare in eget arcu. Proin adipiscing, nibh vel sodales iaculis, lacus nibh imperdiet dolor, at aliquam mauris ante sit amet ipsum. Cras vitae arcu sem. Pellentesque vehicula leo nec lectus tristique rhoncus. Donec varius pretium placerat.', 'Vestibulum Quis Purus', '<p>Praesent tincidunt, massa vitae ultricies dapibus, ligula mauris pulvinar arcu, ac aliquet nulla arcu id velit consequat quis accumsan dignissim.</p><p>Vestibulum ut dui sed sem congue tristique et eget leo. Praesent eget velit arcu. Vivamus sagittis luctus mauris, sed egestas mi auctor iniq. Proin lobortis, justo eu volutpat rhoncus, ipsum augue tempor felis, idis sagittis orci purus in enim metus condimentum.</p>', 'publish', 'open', 'open', '', 'vestibulum-quis-purus-2', '', '', '2012-11-24 12:27:39', '2012-11-24 12:27:39', '', 0, 'http://themextemplates.com/demo/midway/?p=192', 0, 'post', '', 0),
(194, 1, '2012-11-24 12:28:18', '2012-11-24 12:28:18', 'Aliquam metus felis, tempus vitae mollis quis, mollis sit amet purus. Suspendisse eget lorem elit. In non mi sed quam porta rutrum. Nunc suscipit rutrum neque, eu mattis ipsum convallis ut. Aliquam sed lacus dolor, sit amet pellentesque augue. Phasellus congue neque sed mauris aliquet vitae semper enim consectetur aliquam mauris ante sit amet ipsum.\n\nEtiam eget congue enim. Sed sit amet lobortis diam. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec risus orci, eleifend ut mattis non, dapibus at sem. Donec quis purus vitae ipsum consequat ornare in eget arcu. Proin adipiscing, nibh vel sodales iaculis, lacus nibh imperdiet dolor, at aliquam mauris ante sit amet ipsum. Cras vitae arcu sem. Pellentesque vehicula leo nec lectus tristique rhoncus. Donec varius pretium placerat.', 'Donec Tempor Quis', '<p>Nunc aliquet eros nec mi consequat eget accumsan diam faucibus. Sed sit amet justo id turpis tempus vehicula eu non tellus. Quisque est.</p><p>Donec et scelerisque quam. Aliquam laoreet, orci vitae iaculis etna accumsan, dolor dolor condimentum arcu, ornare scelerisque magna quam ac ligula. Aliquam sit amet nibh lacus. Aenean lobortis congue varius. Nunc venenatis arcu et mi pellentesque dapibus.</p>', 'publish', 'open', 'open', '', 'donec-tempor-quis-2', '', '', '2012-11-24 12:28:18', '2012-11-24 12:28:18', '', 0, 'http://themextemplates.com/demo/midway/?p=194', 0, 'post', '', 0),
(197, 1, '2012-11-24 12:28:55', '2012-11-24 12:28:55', 'Aliquam metus felis, tempus vitae mollis quis, mollis sit amet purus. Suspendisse eget lorem elit. In non mi sed quam porta rutrum. Nunc suscipit rutrum neque, eu mattis ipsum convallis ut. Aliquam sed lacus dolor, sit amet pellentesque augue. Phasellus congue neque sed mauris aliquet vitae semper enim consectetur aliquam mauris ante sit amet ipsum.\n\nEtiam eget congue enim. Sed sit amet lobortis diam. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec risus orci, eleifend ut mattis non, dapibus at sem. Donec quis purus vitae ipsum consequat ornare in eget arcu. Proin adipiscing, nibh vel sodales iaculis, lacus nibh imperdiet dolor, at aliquam mauris ante sit amet ipsum. Cras vitae arcu sem. Pellentesque vehicula leo nec lectus tristique rhoncus. Donec varius pretium placerat.', 'Vestibulum Semper Suscipit', '<p>Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Integer porta velit et metus rutrum ut faucibus.</p><p>Mauris magna orci, auctor id vestibulum vitae, vestibulum venenatis lectus. Praesent varius viverra sem consequat iaculis. Cras faucibus, diam ac consequat convallis, risus dui ultrices ipsum, molestie faucibus nibh massa non nibh. Morbi et metus libero condimentum quis.</p>', 'publish', 'open', 'open', '', 'vestibulum-semper-suscipit-2', '', '', '2012-11-24 12:28:55', '2012-11-24 12:28:55', '', 0, 'http://themextemplates.com/demo/midway/?p=197', 0, 'post', '', 0),
(199, 1, '2012-11-24 12:30:13', '2012-11-24 12:30:13', 'Aliquam metus felis, tempus vitae mollis quis, mollis sit amet purus. Suspendisse eget lorem elit. In non mi sed quam porta rutrum. Nunc suscipit rutrum neque, eu mattis ipsum convallis ut. Aliquam sed lacus dolor, sit amet pellentesque augue. Phasellus congue neque sed mauris aliquet vitae semper enim consectetur aliquam mauris ante sit amet ipsum.\n\nEtiam eget congue enim. Sed sit amet lobortis diam. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec risus orci, eleifend ut mattis non, dapibus at sem. Donec quis purus vitae ipsum consequat ornare in eget arcu. Proin adipiscing, nibh vel sodales iaculis, lacus nibh imperdiet dolor, at aliquam mauris ante sit amet ipsum. Cras vitae arcu sem. Pellentesque vehicula leo nec lectus tristique rhoncus. Donec varius pretium placerat.', 'Quisque Condimentum Sapien', '<p>Nunc aliquet eros nec mi consequat eget accumsan diam faucibus. Sed sit amet justo id turpis tempus vehicula eu non tellus. Quisque est.</p><p>Donec et scelerisque quam. Aliquam laoreet, orci vitae iaculis etna accumsan, dolor dolor condimentum arcu, ornare scelerisque magna quam ac ligula. Aliquam sit amet nibh lacus. Aenean lobortis congue varius. Nunc venenatis arcu et mi pellentesque dapibus.</p>', 'publish', 'open', 'open', '', 'quisque-condimentum-sapien-2', '', '', '2012-11-24 12:30:13', '2012-11-24 12:30:13', '', 0, 'http://themextemplates.com/demo/midway/?p=199', 0, 'post', '', 0),
(201, 1, '2012-11-24 12:31:04', '2012-11-24 12:31:04', 'Aliquam metus felis, tempus vitae mollis quis, mollis sit amet purus. Suspendisse eget lorem elit. In non mi sed quam porta rutrum. Nunc suscipit rutrum neque, eu mattis ipsum convallis ut. Aliquam sed lacus dolor, sit amet pellentesque augue. Phasellus congue neque sed mauris aliquet vitae semper enim consectetur aliquam mauris ante sit amet ipsum.\n\nEtiam eget congue enim. Sed sit amet lobortis diam. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec risus orci, eleifend ut mattis non, dapibus at sem. Donec quis purus vitae ipsum consequat ornare in eget arcu. Proin adipiscing, nibh vel sodales iaculis, lacus nibh imperdiet dolor, at aliquam mauris ante sit amet ipsum. Cras vitae arcu sem. Pellentesque vehicula leo nec lectus tristique rhoncus. Donec varius pretium placerat.', 'The Mystery of Stonehenge', '<p>Nunc aliquet eros nec mi consequat eget accumsan diam faucibus. Sed sit amet justo id turpis tempus vehicula eu non tellus. Quisque est.</p><p>Donec et scelerisque quam. Aliquam laoreet, orci vitae iaculis etna accumsan, dolor dolor condimentum arcu, ornare scelerisque magna quam ac ligula. Aliquam sit amet nibh lacus. Aenean lobortis congue varius. Nunc venenatis arcu et mi pellentesque dapibus.</p>', 'publish', 'open', 'open', '', 'the-mystery-of-stonehenge', '', '', '2012-11-24 12:31:04', '2012-11-24 12:31:04', '', 0, 'http://themextemplates.com/demo/midway/?p=201', 0, 'post', '', 0),
(203, 1, '2012-11-24 12:32:36', '2012-11-24 12:32:36', 'Aliquam metus felis, tempus vitae mollis quis, mollis sit amet purus. Suspendisse eget lorem elit. In non mi sed quam porta rutrum. Nunc suscipit rutrum neque, eu mattis ipsum convallis ut. Aliquam sed lacus dolor, sit amet pellentesque augue. Phasellus congue neque sed mauris aliquet vitae semper enim consectetur aliquam mauris ante sit amet ipsum.\n\nEtiam eget congue enim. Sed sit amet lobortis diam. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec risus orci, eleifend ut mattis non, dapibus at sem. Donec quis purus vitae ipsum consequat ornare in eget arcu. Proin adipiscing, nibh vel sodales iaculis, lacus nibh imperdiet dolor, at aliquam mauris ante sit amet ipsum. Cras vitae arcu sem. Pellentesque vehicula leo nec lectus tristique rhoncus. Donec varius pretium placerat.', 'First Week in Indonesia', '<p>Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Integer porta velit et metus rutrum ut faucibus.</p><p>Mauris magna orci, auctor id vestibulum vitae, vestibulum venenatis lectus. Praesent varius viverra sem consequat iaculis. Cras faucibus, diam ac consequat convallis, risus dui ultrices ipsum, molestie faucibus nibh massa non nibh. Morbi et metus libero condimentum quis.</p>', 'publish', 'open', 'open', '', 'first-week-in-indonesia', '', '', '2012-11-24 12:32:36', '2012-11-24 12:32:36', '', 0, 'http://themextemplates.com/demo/midway/?p=203', 0, 'post', '', 0),
(205, 1, '2012-11-24 12:33:19', '2012-11-24 12:33:19', 'Aliquam metus felis, tempus vitae mollis quis, mollis sit amet purus. Suspendisse eget lorem elit. In non mi sed quam porta rutrum. Nunc suscipit rutrum neque, eu mattis ipsum convallis ut. Aliquam sed lacus dolor, sit amet pellentesque augue. Phasellus congue neque sed mauris aliquet vitae semper enim consectetur aliquam mauris ante sit amet ipsum.\n\nEtiam eget congue enim. Sed sit amet lobortis diam. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec risus orci, eleifend ut mattis non, dapibus at sem. Donec quis purus vitae ipsum consequat ornare in eget arcu. Proin adipiscing, nibh vel sodales iaculis, lacus nibh imperdiet dolor, at aliquam mauris ante sit amet ipsum. Cras vitae arcu sem. Pellentesque vehicula leo nec lectus tristique rhoncus. Donec varius pretium placerat.', 'Everything About Thailand', '<p>Praesent tincidunt, massa vitae ultricies dapibus, ligula mauris pulvinar arcu, ac aliquet nulla arcu id velit consequat quis accumsan dignissim.</p><p>Vestibulum ut dui sed sem congue tristique et eget leo. Praesent eget velit arcu. Vivamus sagittis luctus mauris, sed egestas mi auctor iniq. Proin lobortis, justo eu volutpat rhoncus, ipsum augue tempor felis, idis sagittis orci purus in enim metus condimentum.</p>', 'publish', 'open', 'open', '', 'everything-about-thailand', '', '', '2012-11-24 12:33:19', '2012-11-24 12:33:19', '', 0, 'http://themextemplates.com/demo/midway/?p=205', 0, 'post', '', 1),
(264, 1, '2012-11-29 11:24:18', '2012-11-29 11:24:18', '', 'image_18', '', 'inherit', 'open', 'open', '', 'image_18', '', '', '2012-11-29 11:24:18', '2012-11-29 11:24:18', '', 0, 'http://localhost:81/siaxe/travel2/wp-content/uploads/2012/11/image_18.jpg', 0, 'attachment', 'image/jpeg', 0),
(280, 1, '2012-12-08 12:25:37', '2012-12-08 12:25:37', '[tabs type="vertical" titles="Island wide Tours, Transport Rental, Hotel Reservation, Event Planning"]\r\n\r\n[tab]\r\n\r\n[seven_twelfths]\r\n<h3>Island wideTours</h3>\r\n<strong>Aenean sed pulvinar massa. Cras imperdiet facilisis massa consect faucibus. Duis eget commodo lacus. Duis tellus diam, aliquet nec imperdiet non, eleifend bibendum arcu. Nullam quis est nec enim.</strong>\r\n\r\nVestibulum eleifend dolor eu justo aliquam tempus. Vestibulum nibh urna, bibendum ut interdum eget, suscipit ac velit. Quisque aliquet, enim eu dictum laoreet, eros elit molestie leo, scelerisque lobortis risus urna id velit. Mauris at nulla sed nunc euismod hendrerit aliquam id dui. Cras ut ipsum vitae dolor.\r\n\r\n[button url="http://localhost:81/siaxe/travel2/?page_id=113" size="medium"]Browse Tours[/button][/seven_twelfths]\r\n\r\n[five_twelfths_last]<img class="aligncenter" src="http://themextemplates.com/demo/midway/updates/images/2012/12/image_19.jpg" alt="" />[/five_twelfths_last]\r\n\r\n[/tab]\r\n\r\n[tab]\r\n\r\n[seven_twelfths]\r\n<h3>Transport Rental</h3>\r\n<strong>Nulla in orci justo. In elit elit, tempus sit amet pellentesque ut, tempus ac risus. Suspendisse imperdiet, mi in bibendum scelerisque, massa leo mollis eros, vel congue enim leo eu arcu. Suspendisse a nibh odio.</strong>\r\n\r\nQuisque volutpat nunc ligula. Praesent nec massa in tortor malesuada conse scelerisque. Sed lobortis interdum pulvinar. Maecenas et est vel nunc imperdiet blandit at sed turpis. Mauris non libero ut nulla tempus gravida nec vel mi. Praesent et egestas ipsum. Ut vitae sapien elit. Aliquam erat volutpat.\r\n\r\n[button url="http://localhost:81/siaxe/travel2/?page_id=84" size="medium"]Rent a Car[/button][/seven_twelfths][five_twelfths_last]<img class="aligncenter" src="http://themextemplates.com/demo/midway/updates/images/2012/12/image_22.jpg" alt="" />[/five_twelfths_last]\r\n\r\n[/tab]\r\n\r\n[tab]\r\n\r\n[seven_twelfths]\r\n<h3>Hotel Reservation</h3>\r\n<strong>Fusce hendrerit hendrerit lacus id euismod. Aliquam erat volutpat. In in sem tortor. Vestibulum facilisis consequat purus, vel adipiscing velit sollicitudin quis. Vestibulum nec urna in lorem imperdiet iaculis.</strong>\r\n\r\nEtiam quam est, malesuada ut fringilla eu, auctor vel odio. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Integer fringilla magna ut risus sagittis ultrices. Nam eget varius sem. Nam mattis consectetur suscipit. Vivamus quis ante enim. Cras id sodales metus.\r\n\r\n[button url="http://localhost:81/siaxe/travel2/?page_id=84" size="medium"]Book a Hotel[/button][/seven_twelfths]\r\n\r\n[five_twelfths_last]<img class="aligncenter" src="http://themextemplates.com/demo/midway/updates/images/2012/12/image_20.jpg" alt="" />[/five_twelfths_last]\r\n\r\n[/tab]\r\n\r\n[tab]\r\n\r\n[seven_twelfths]\r\n<h3>Event Planning</h3>\r\n<strong>Fusce euismod euismod enim non adipiscing. Integer ante nisi, dictum tempus elementum hendrerit, convallis a tortor. Maecenas sed ante cursus ligula egestas egestas eu et ante. Maecenas leo odio, sodales.</strong>\r\n\r\nFusce a justo non dui imperdiet ultricies. Donec consectetur metus sed velit placerat pulvinar. Nam neque libero, tristique eu placerat sed, consectetur mattis leo. Aliquam sapien nulla, mattis ac luctus tincidunt, gravida eu quam. Praesent sem nisl, scelerisque venenatis euismod nec, interdum nec neque.\r\n\r\n[button url="http://localhost:81/siaxe/travel2/?page_id=84" size="medium"]Request a Quote[/button][/seven_twelfths]\r\n\r\n[five_twelfths_last]<img class="aligncenter" src="http://themextemplates.com/demo/midway/updates/images/2012/12/image_23.jpg" alt="" />[/five_twelfths_last]\r\n\r\n[/tab]\r\n\r\n[/tabs]\r\n\r\n[five_twelfths][title size="small"]Travel Experts[/title][one_third][image]http://themextemplates.com/demo/midway/updates/images/2012/12/image_26.jpg[/image][/one_third][two_thirds_last]\r\n<h5>Mark Templeton</h5>\r\nFusce a justo non dui imperdiet ultricies. Donec consectetur metus sed velit placerat pulvinar. Nam neque libero aqua, tristique eu placerat, consectetur mattis leo. Aliquam sapien nulla.\r\n\r\n[button url="http://localhost:81/siaxe/travel2/?page_id=84" color="grey"]Contact Mark[/button][/two_thirds_last]\r\n[one_third][image]http://themextemplates.com/demo/midway/updates/images/2012/12/image_25.jpg[/image][/one_third][two_thirds_last]\r\n<h5>Stan Peterson</h5>\r\nProin tempus scelerisque diam, nec bibendum nisi ornare quis. Cras congue nulla sed velit lacinia mattis. In aqua habitasse platea dictumst. Mauris ac orci sapien. Aenean pretium dui sit amet ante.\r\n\r\n[button url="http://localhost:81/siaxe/travel2/?page_id=84" color="grey"]Contact Stan[/button][/two_thirds_last][/five_twelfths][one_third][title size="small"]Why Choose Us[/title][toggle title="Maecenas condimentum ipsum metus"]Praesent facilisis dolor sed tortor eleifend vitae consectetur mi aliquam. Vestibulum eu dui sed lorem tristique facilisis. Aliquam interdum metus.[/toggle][toggle title="Morbi luctus euismod lorem et vitae"]Nulla laoreet pulvinar ipsum, ut viverra eros tincidunt ac. Fusce augue orci, tempus vitae imperdiet vel, cursus sed tellus duis eget.[/toggle][toggle title="Praesent facilisis dolor tortor eleifend"]Praesent facilisis dolor sed tortor eleifend vitae consectetur mi aliquam. Vestibulum eu dui sed lorem tristique facilisis. Aliquam interdum metus.[/toggle][toggle title="Nullam eget sem posuere et libero"]Nulla laoreet pulvinar ipsum, ut viverra eros tincidunt ac. Fusce augue orci, tempus vitae imperdiet vel, cursus sed tellus duis eget.[/toggle][toggle title="Nulla justo risus dignissim et viverr"]Praesent facilisis dolor sed tortor eleifend vitae consectetur mi aliquam. Vestibulum eu dui sed lorem tristique facilisis. Aliquam interdum metus.[/toggle][toggle title="Vestibulum ante ipsum primis aqua"]Nulla laoreet pulvinar ipsum, ut viverra eros tincidunt ac. Fusce augue orci, tempus vitae imperdiet vel, cursus sed tellus duis eget.[/toggle][toggle title="Sed et mi quis ipsum ullamcorper"]Nulla laoreet pulvinar ipsum, ut viverra eros tincidunt ac. Fusce augue orci, tempus vitae imperdiet vel, cursus sed tellus duis eget.[/toggle][toggle title="Maecenas non risus lorem et lobortis"]Praesent facilisis dolor sed tortor eleifend vitae consectetur mi aliquam. Vestibulum eu dui sed lorem tristique facilisis. Aliquam interdum metus.[/toggle][/one_third][one_fourth_last][title size="small"]Affiliations[/title]<a href="http://themextemplates.com/demo/midway/tours"><img src="http://themextemplates.com/demo/midway/updates/images/2012/12/image_24.jpg" alt="" /></a>[/one_fourth_last]', 'Services', '', 'publish', 'open', 'open', '', 'services', '', '', '2015-02-15 10:28:13', '2015-02-15 10:28:13', '', 0, 'http://themextemplates.com/demo/midway/?page_id=280', 0, 'page', '', 0),
(433, 1, '2012-12-08 17:27:03', '2012-12-08 17:27:03', '', 'image_24', '', 'inherit', 'open', 'open', '', 'image_24', '', '', '2012-12-08 17:27:03', '2012-12-08 17:27:03', '', 0, 'http://localhost:81/siaxe/travel2/wp-content/uploads/2012/12/image_24.jpg', 0, 'attachment', 'image/jpeg', 0),
(436, 1, '2015-02-15 08:17:30', '2015-02-15 08:17:30', ' ', '', '', 'publish', 'open', 'open', '', '436', '', '', '2015-03-28 11:12:19', '2015-03-28 11:12:19', '', 0, 'http://localhost:81/siaxe/travel2/?p=436', 4, 'nav_menu_item', '', 0),
(437, 1, '2015-02-15 08:17:31', '2015-02-15 08:17:31', ' ', '', '', 'publish', 'open', 'open', '', '437', '', '', '2015-03-28 11:11:27', '2015-03-28 11:11:27', '', 0, 'http://localhost:81/siaxe/travel2/?p=437', 5, 'nav_menu_item', '', 0),
(438, 1, '2015-02-15 08:17:32', '2015-02-15 08:17:32', ' ', '', '', 'publish', 'open', 'open', '', '438', '', '', '2015-03-28 11:11:27', '2015-03-28 11:11:27', '', 0, 'http://localhost:81/siaxe/travel2/?p=438', 3, 'nav_menu_item', '', 0),
(439, 1, '2015-02-15 08:17:34', '2015-02-15 08:17:34', ' ', '', '', 'publish', 'open', 'open', '', '439', '', '', '2015-03-28 11:11:27', '2015-03-28 11:11:27', '', 0, 'http://localhost:81/siaxe/travel2/?p=439', 4, 'nav_menu_item', '', 0),
(440, 1, '2015-02-15 08:17:35', '2015-02-15 08:17:35', ' ', '', '', 'publish', 'open', 'open', '', '440', '', '', '2015-03-28 11:11:27', '2015-03-28 11:11:27', '', 0, 'http://localhost:81/siaxe/travel2/?p=440', 2, 'nav_menu_item', '', 0),
(441, 1, '2015-02-15 08:17:36', '2015-02-15 08:17:36', ' ', '', '', 'publish', 'open', 'open', '', '441', '', '', '2015-03-28 11:12:19', '2015-03-28 11:12:19', '', 0, 'http://localhost:81/siaxe/travel2/?p=441', 3, 'nav_menu_item', '', 0),
(442, 1, '2015-02-15 08:17:37', '2015-02-15 08:17:37', ' ', '', '', 'publish', 'open', 'open', '', '442', '', '', '2015-03-28 11:12:19', '2015-03-28 11:12:19', '', 0, 'http://localhost:81/siaxe/travel2/?p=442', 2, 'nav_menu_item', '', 0),
(446, 1, '2015-02-15 08:22:22', '2015-02-15 08:22:22', '[layerslider id="2"]\r\n\r\n[two_thirds][five_twelfths]<img class="alignnone size-medium wp-image-21" title="image_1" src="http://localhost:81/siaxe/travel2/wp-content/uploads/2012/11/image_1.jpg" alt="" />[/five_twelfths][seven_twelfths_last][title]Explore the World[/title]\r\n\r\nDuis molestie ultrices massa, non volutpat nibh auctor rhoncus. Aenean erat nunc, venenatis euismod quis, iaculis eu dolor. Sed purus neque, consequat at vulputate in, sagittis at dolor. Duis ut arcu libero. Ut quis neque nunc, eget suscipit nisl. Quisque orci neque, scelerisque!\r\n\r\n[/seven_twelfths_last][/two_thirds][one_third_last][testimonials][/one_third_last][block background="http://localhost:81/siaxe/travel2/wp-content/uploads/2012/11/background_1.jpg"][tours columns="4" number="4"][/block][one_fourth][title]Travel Guide[/title][posts number="1"][/one_fourth][one_half][title]Gallery[/title][galleries columns="2" number="4"][/one_half][one_fourth_last][sidebar][/one_fourth_last]', 'Home2', '', 'publish', 'open', 'open', '', 'home2', '', '', '2015-02-15 14:03:13', '2015-02-15 14:03:13', '', 0, 'http://localhost:81/siaxe/travel2/?page_id=446', 0, 'page', '', 0),
(447, 1, '2015-02-15 08:22:22', '2015-02-15 08:22:22', '[two_thirds][five_twelfths]<img class="alignnone size-medium wp-image-21" title="image_1" src="http://localhost:81/siaxe/travel2/wp-content/uploads/2012/11/image_1.jpg" alt="" />[/five_twelfths][seven_twelfths_last][title]Explore the World[/title]\r\n\r\nDuis molestie ultrices massa, non volutpat nibh auctor rhoncus. Aenean erat nunc, venenatis euismod quis, iaculis eu dolor. Sed purus neque, consequat at vulputate in, sagittis at dolor. Duis ut arcu libero. Ut quis neque nunc, eget suscipit nisl. Quisque orci neque, scelerisque!\r\n\r\n[/seven_twelfths_last][/two_thirds][one_third_last][testimonials][/one_third_last][block background="http://localhost:81/siaxe/travel2/wp-content/uploads/2012/11/background_1.jpg"][tours columns="4" number="4"][/block][one_fourth][title]Travel Guide[/title][posts number="1"][/one_fourth][one_half][title]Gallery[/title][galleries columns="3" number="6"][/one_half][one_fourth_last][sidebar][/one_fourth_last]', 'Home2', '', 'inherit', 'open', 'open', '', '446-revision-v1', '', '', '2015-02-15 08:22:22', '2015-02-15 08:22:22', '', 446, 'http://localhost:81/siaxe/travel2/?p=447', 0, 'revision', '', 0),
(449, 1, '2015-02-15 08:24:02', '2015-02-15 08:24:02', '', 'd1', '', 'inherit', 'open', 'open', '', 'd1', '', '', '2015-02-15 08:24:02', '2015-02-15 08:24:02', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=449', 0, 'attachment', 'image/png', 0),
(450, 1, '2015-02-15 08:24:03', '2015-02-15 08:24:03', '', 'd2', '', 'inherit', 'open', 'open', '', 'd2', '', '', '2015-02-15 08:24:03', '2015-02-15 08:24:03', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=450', 0, 'attachment', 'image/png', 0),
(451, 1, '2015-02-15 08:24:04', '2015-02-15 08:24:04', '', 'fw-1', '', 'inherit', 'open', 'open', '', 'fw-1', '', '', '2015-02-15 08:24:04', '2015-02-15 08:24:04', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=451', 0, 'attachment', 'image/jpeg', 0),
(452, 1, '2015-02-15 08:24:05', '2015-02-15 08:24:05', '', 'l1', '', 'inherit', 'open', 'open', '', 'l1', '', '', '2015-02-15 08:24:05', '2015-02-15 08:24:05', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=452', 0, 'attachment', 'image/png', 0),
(453, 1, '2015-02-15 08:24:05', '2015-02-15 08:24:05', '', 'l2', '', 'inherit', 'open', 'open', '', 'l2', '', '', '2015-02-15 08:24:05', '2015-02-15 08:24:05', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=453', 0, 'attachment', 'image/png', 0),
(454, 1, '2015-02-15 08:24:06', '2015-02-15 08:24:06', '', 'l3', '', 'inherit', 'open', 'open', '', 'l3', '', '', '2015-02-15 08:24:06', '2015-02-15 08:24:06', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=454', 0, 'attachment', 'image/png', 0),
(455, 1, '2015-02-15 08:24:07', '2015-02-15 08:24:07', '', 'left', '', 'inherit', 'open', 'open', '', 'left', '', '', '2015-02-15 08:24:07', '2015-02-15 08:24:07', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=455', 0, 'attachment', 'image/png', 0),
(456, 1, '2015-02-15 08:24:07', '2015-02-15 08:24:07', '', 'right', '', 'inherit', 'open', 'open', '', 'right', '', '', '2015-02-15 08:24:07', '2015-02-15 08:24:07', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=456', 0, 'attachment', 'image/png', 0),
(457, 1, '2015-02-15 08:24:08', '2015-02-15 08:24:08', '', 's1', '', 'inherit', 'open', 'open', '', 's1', '', '', '2015-02-15 08:24:08', '2015-02-15 08:24:08', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=457', 0, 'attachment', 'image/jpeg', 0),
(458, 1, '2015-02-15 08:24:08', '2015-02-15 08:24:08', '', 's1', '', 'inherit', 'open', 'open', '', 's1-2', '', '', '2015-02-15 08:24:08', '2015-02-15 08:24:08', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=458', 0, 'attachment', 'image/png', 0),
(459, 1, '2015-02-15 08:24:08', '2015-02-15 08:24:08', '', 's2', '', 'inherit', 'open', 'open', '', 's2', '', '', '2015-02-15 08:24:08', '2015-02-15 08:24:08', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=459', 0, 'attachment', 'image/jpeg', 0),
(460, 1, '2015-02-15 08:24:09', '2015-02-15 08:24:09', '', 's2', '', 'inherit', 'open', 'open', '', 's2-2', '', '', '2015-02-15 08:24:09', '2015-02-15 08:24:09', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=460', 0, 'attachment', 'image/png', 0),
(461, 1, '2015-02-15 08:24:26', '2015-02-15 08:24:26', '[layerslider id="1"]\r\n[two_thirds][five_twelfths]<img class="alignnone size-medium wp-image-21" title="image_1" src="http://localhost:81/siaxe/travel2/wp-content/uploads/2012/11/image_1.jpg" alt="" />[/five_twelfths][seven_twelfths_last][title]Explore the World[/title]\r\n\r\nDuis molestie ultrices massa, non volutpat nibh auctor rhoncus. Aenean erat nunc, venenatis euismod quis, iaculis eu dolor. Sed purus neque, consequat at vulputate in, sagittis at dolor. Duis ut arcu libero. Ut quis neque nunc, eget suscipit nisl. Quisque orci neque, scelerisque!\r\n\r\n[/seven_twelfths_last][/two_thirds][one_third_last][testimonials][/one_third_last][block background="http://localhost:81/siaxe/travel2/wp-content/uploads/2012/11/background_1.jpg"][tours columns="4" number="4"][/block][one_fourth][title]Travel Guide[/title][posts number="1"][/one_fourth][one_half][title]Gallery[/title][galleries columns="3" number="6"][/one_half][one_fourth_last][sidebar][/one_fourth_last]', 'Home2', '', 'inherit', 'open', 'open', '', '446-revision-v1', '', '', '2015-02-15 08:24:26', '2015-02-15 08:24:26', '', 446, 'http://localhost:81/siaxe/travel2/?p=461', 0, 'revision', '', 0);
INSERT INTO `travel2_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
(462, 1, '2015-02-15 08:25:50', '2015-02-15 08:25:50', '[layerslider id="1"]\r\n\r\n[two_thirds][five_twelfths]<img class="alignnone size-medium wp-image-21" title="image_1" src="http://localhost:81/siaxe/travel2/wp-content/uploads/2012/11/image_1.jpg" alt="" />[/five_twelfths][seven_twelfths_last][title]Explore the World[/title]\r\n\r\nDuis molestie ultrices massa, non volutpat nibh auctor rhoncus. Aenean erat nunc, venenatis euismod quis, iaculis eu dolor. Sed purus neque, consequat at vulputate in, sagittis at dolor. Duis ut arcu libero. Ut quis neque nunc, eget suscipit nisl. Quisque orci neque, scelerisque!\r\n\r\n[/seven_twelfths_last][/two_thirds][one_third_last][testimonials][/one_third_last][block background="http://localhost:81/siaxe/travel2/wp-content/uploads/2012/11/background_1.jpg"][tours columns="4" number="4"][/block][one_fourth][title]Travel Guide[/title][posts number="1"][/one_fourth][one_half][title]Gallery[/title][galleries columns="3" number="6"][/one_half][one_fourth_last][sidebar][/one_fourth_last]', 'Home2', '', 'inherit', 'open', 'open', '', '446-revision-v1', '', '', '2015-02-15 08:25:50', '2015-02-15 08:25:50', '', 446, 'http://localhost:81/siaxe/travel2/?p=462', 0, 'revision', '', 0),
(463, 1, '2015-02-15 08:27:03', '2015-02-15 08:27:03', '', 'Home', '', 'publish', 'open', 'open', '', '463', '', '', '2015-03-28 11:12:19', '2015-03-28 11:12:19', '', 0, 'http://localhost:81/siaxe/travel2/?p=463', 1, 'nav_menu_item', '', 0),
(464, 1, '2015-02-15 08:27:33', '2015-02-15 08:27:33', '', 'Home', '', 'publish', 'open', 'open', '', '464', '', '', '2015-03-28 11:11:27', '2015-03-28 11:11:27', '', 0, 'http://localhost:81/siaxe/travel2/?p=464', 1, 'nav_menu_item', '', 0),
(465, 1, '2015-02-15 08:46:43', '2015-02-15 08:46:43', '[layerslider id="1"]\r\n\r\n[two_thirds][five_twelfths]<img class="alignnone size-medium wp-image-21" title="image_1" src="http://localhost:81/siaxe/travel2/wp-content/uploads/2012/11/image_1.jpg" alt="" />[/five_twelfths][seven_twelfths_last][title]Explore the World[/title]\r\n\r\nDuis molestie ultrices massa, non volutpat nibh auctor rhoncus. Aenean erat nunc, venenatis euismod quis, iaculis eu dolor. Sed purus neque, consequat at vulputate in, sagittis at dolor. Duis ut arcu libero. Ut quis neque nunc, eget suscipit nisl. Quisque orci neque, scelerisque!\r\n\r\n[/seven_twelfths_last][/two_thirds][one_third_last][testimonials][/one_third_last][block background="http://localhost:81/siaxe/travel2/wp-content/uploads/2012/11/background_1.jpg"][tours columns="4" number="4"][/block][one_fourth][title]Travel Guide[/title][posts number="1"][/one_fourth][one_half][title]Gallery[/title][galleries columns="2" number="4"][/one_half][one_fourth_last][sidebar][/one_fourth_last]', 'Home2', '', 'inherit', 'open', 'open', '', '446-revision-v1', '', '', '2015-02-15 08:46:43', '2015-02-15 08:46:43', '', 446, 'http://localhost:81/siaxe/travel2/?p=465', 0, 'revision', '', 0),
(475, 1, '2015-02-15 10:27:33', '2015-02-15 10:27:33', '[tabs type="vertical" titles="Island wide Tours, Airline Tickets, Transport Rental, Hotel Reservation, Event Planning"]\n\n[tab]\n\n[seven_twelfths]\n<h3>Island wideTours</h3>\n<strong>Aenean sed pulvinar massa. Cras imperdiet facilisis massa consect faucibus. Duis eget commodo lacus. Duis tellus diam, aliquet nec imperdiet non, eleifend bibendum arcu. Nullam quis est nec enim.</strong>\n\nVestibulum eleifend dolor eu justo aliquam tempus. Vestibulum nibh urna, bibendum ut interdum eget, suscipit ac velit. Quisque aliquet, enim eu dictum laoreet, eros elit molestie leo, scelerisque lobortis risus urna id velit. Mauris at nulla sed nunc euismod hendrerit aliquam id dui. Cras ut ipsum vitae dolor.\n\n[button url="http://localhost:81/siaxe/travel2/?page_id=113" size="medium"]Browse Tours[/button][/seven_twelfths]\n\n[five_twelfths_last]<img class="aligncenter" src="http://themextemplates.com/demo/midway/updates/images/2012/12/image_19.jpg" alt="" />[/five_twelfths_last]\n\n[/tab]\n\n[tab]\n\n[seven_twelfths]\n<h3>Transport Rental</h3>\n<strong>Nulla in orci justo. In elit elit, tempus sit amet pellentesque ut, tempus ac risus. Suspendisse imperdiet, mi in bibendum scelerisque, massa leo mollis eros, vel congue enim leo eu arcu. Suspendisse a nibh odio.</strong>\n\nQuisque volutpat nunc ligula. Praesent nec massa in tortor malesuada conse scelerisque. Sed lobortis interdum pulvinar. Maecenas et est vel nunc imperdiet blandit at sed turpis. Mauris non libero ut nulla tempus gravida nec vel mi. Praesent et egestas ipsum. Ut vitae sapien elit. Aliquam erat volutpat.\n\n[button url="http://localhost:81/siaxe/travel2/?page_id=84" size="medium"]Rent a Car[/button][/seven_twelfths][five_twelfths_last]<img class="aligncenter" src="http://themextemplates.com/demo/midway/updates/images/2012/12/image_22.jpg" alt="" />[/five_twelfths_last]\n\n[/tab]\n\n[tab]\n\n[seven_twelfths]\n<h3>Hotel Reservation</h3>\n<strong>Fusce hendrerit hendrerit lacus id euismod. Aliquam erat volutpat. In in sem tortor. Vestibulum facilisis consequat purus, vel adipiscing velit sollicitudin quis. Vestibulum nec urna in lorem imperdiet iaculis.</strong>\n\nEtiam quam est, malesuada ut fringilla eu, auctor vel odio. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Integer fringilla magna ut risus sagittis ultrices. Nam eget varius sem. Nam mattis consectetur suscipit. Vivamus quis ante enim. Cras id sodales metus.\n\n[button url="http://localhost:81/siaxe/travel2/?page_id=84" size="medium"]Book a Hotel[/button][/seven_twelfths]\n\n[five_twelfths_last]<img class="aligncenter" src="http://themextemplates.com/demo/midway/updates/images/2012/12/image_20.jpg" alt="" />[/five_twelfths_last]\n\n[/tab]\n\n[tab]\n\n[seven_twelfths]\n<h3>Event Planning</h3>\n<strong>Fusce euismod euismod enim non adipiscing. Integer ante nisi, dictum tempus elementum hendrerit, convallis a tortor. Maecenas sed ante cursus ligula egestas egestas eu et ante. Maecenas leo odio, sodales.</strong>\n\nFusce a justo non dui imperdiet ultricies. Donec consectetur metus sed velit placerat pulvinar. Nam neque libero, tristique eu placerat sed, consectetur mattis leo. Aliquam sapien nulla, mattis ac luctus tincidunt, gravida eu quam. Praesent sem nisl, scelerisque venenatis euismod nec, interdum nec neque.\n\n[button url="http://localhost:81/siaxe/travel2/?page_id=84" size="medium"]Request a Quote[/button][/seven_twelfths]\n\n[five_twelfths_last]<img class="aligncenter" src="http://themextemplates.com/demo/midway/updates/images/2012/12/image_23.jpg" alt="" />[/five_twelfths_last]\n\n[/tab]\n\n[/tabs]\n\n[five_twelfths][title size="small"]Travel Experts[/title][one_third][image]http://themextemplates.com/demo/midway/updates/images/2012/12/image_26.jpg[/image][/one_third][two_thirds_last]\n<h5>Mark Templeton</h5>\nFusce a justo non dui imperdiet ultricies. Donec consectetur metus sed velit placerat pulvinar. Nam neque libero aqua, tristique eu placerat, consectetur mattis leo. Aliquam sapien nulla.\n\n[button url="http://localhost:81/siaxe/travel2/?page_id=84" color="grey"]Contact Mark[/button][/two_thirds_last]\n[one_third][image]http://themextemplates.com/demo/midway/updates/images/2012/12/image_25.jpg[/image][/one_third][two_thirds_last]\n<h5>Stan Peterson</h5>\nProin tempus scelerisque diam, nec bibendum nisi ornare quis. Cras congue nulla sed velit lacinia mattis. In aqua habitasse platea dictumst. Mauris ac orci sapien. Aenean pretium dui sit amet ante.\n\n[button url="http://localhost:81/siaxe/travel2/?page_id=84" color="grey"]Contact Stan[/button][/two_thirds_last][/five_twelfths][one_third][title size="small"]Why Choose Us[/title][toggle title="Maecenas condimentum ipsum metus"]Praesent facilisis dolor sed tortor eleifend vitae consectetur mi aliquam. Vestibulum eu dui sed lorem tristique facilisis. Aliquam interdum metus.[/toggle][toggle title="Morbi luctus euismod lorem et vitae"]Nulla laoreet pulvinar ipsum, ut viverra eros tincidunt ac. Fusce augue orci, tempus vitae imperdiet vel, cursus sed tellus duis eget.[/toggle][toggle title="Praesent facilisis dolor tortor eleifend"]Praesent facilisis dolor sed tortor eleifend vitae consectetur mi aliquam. Vestibulum eu dui sed lorem tristique facilisis. Aliquam interdum metus.[/toggle][toggle title="Nullam eget sem posuere et libero"]Nulla laoreet pulvinar ipsum, ut viverra eros tincidunt ac. Fusce augue orci, tempus vitae imperdiet vel, cursus sed tellus duis eget.[/toggle][toggle title="Nulla justo risus dignissim et viverr"]Praesent facilisis dolor sed tortor eleifend vitae consectetur mi aliquam. Vestibulum eu dui sed lorem tristique facilisis. Aliquam interdum metus.[/toggle][toggle title="Vestibulum ante ipsum primis aqua"]Nulla laoreet pulvinar ipsum, ut viverra eros tincidunt ac. Fusce augue orci, tempus vitae imperdiet vel, cursus sed tellus duis eget.[/toggle][toggle title="Sed et mi quis ipsum ullamcorper"]Nulla laoreet pulvinar ipsum, ut viverra eros tincidunt ac. Fusce augue orci, tempus vitae imperdiet vel, cursus sed tellus duis eget.[/toggle][toggle title="Maecenas non risus lorem et lobortis"]Praesent facilisis dolor sed tortor eleifend vitae consectetur mi aliquam. Vestibulum eu dui sed lorem tristique facilisis. Aliquam interdum metus.[/toggle][/one_third][one_fourth_last][title size="small"]Affiliations[/title]<a href="http://themextemplates.com/demo/midway/tours"><img src="http://themextemplates.com/demo/midway/updates/images/2012/12/image_24.jpg" alt="" /></a>[/one_fourth_last]', 'Services', '', 'inherit', 'open', 'open', '', '280-autosave-v1', '', '', '2015-02-15 10:27:33', '2015-02-15 10:27:33', '', 280, 'http://localhost:81/siaxe/travel2/?p=475', 0, 'revision', '', 0),
(476, 1, '2015-02-15 10:23:23', '2015-02-15 10:23:23', '[tabs type="vertical" titles="Island wide Tours, Airline Tickets, Transport Rental, Hotel Reservation, Event Planning"][tab][seven_twelfths]\r\n<h3>Island wideTours</h3>\r\n<strong>Aenean sed pulvinar massa. Cras imperdiet facilisis massa consect faucibus. Duis eget commodo lacus. Duis tellus diam, aliquet nec imperdiet non, eleifend bibendum arcu. Nullam quis est nec enim.</strong>\r\n\r\nVestibulum eleifend dolor eu justo aliquam tempus. Vestibulum nibh urna, bibendum ut interdum eget, suscipit ac velit. Quisque aliquet, enim eu dictum laoreet, eros elit molestie leo, scelerisque lobortis risus urna id velit. Mauris at nulla sed nunc euismod hendrerit aliquam id dui. Cras ut ipsum vitae dolor.\r\n\r\n[button url="http://localhost:81/siaxe/travel2/?page_id=113" size="medium"]Browse Tours[/button][/seven_twelfths][five_twelfths_last]<img class="aligncenter" src="http://themextemplates.com/demo/midway/updates/images/2012/12/image_19.jpg" alt="" />[/five_twelfths_last][/tab][tab][seven_twelfths]\r\n<h3>Airline Tickets</h3>\r\n<strong>Quisque id augue erat, suscipit ultricies est. Maecenas feugiat justo ac massa porttitor mollis auctor nulla ullamcorper. Sed blandit interdum consequat. Mauris eget felis leo. Sed fermentum sollicitudin sagittis.</strong>\r\n\r\nSuspendisse luctus, felis at fringilla dictum, erat massa vehicula velit, id venenatis eros libero et lectus. Proin ullamcorper molestie lectus, sit amet condimentum dui tincidunt ut. In tempor faucibus eros, sed auctor orci ultricies non. Suspen lacinia enim vel nibh tincidunt vel consectetur est ullamcorper. Suspen orce.\r\n\r\n[button url="http://localhost:81/siaxe/travel2/?page_id=84" size="medium"]Buy Tickets[/button][/seven_twelfths][five_twelfths_last]<img class="aligncenter" src="http://themextemplates.com/demo/midway/updates/images/2012/12/image_21.jpg" alt="" />[/five_twelfths_last][/tab][tab][seven_twelfths]\r\n<h3>Transport Rental</h3>\r\n<strong>Nulla in orci justo. In elit elit, tempus sit amet pellentesque ut, tempus ac risus. Suspendisse imperdiet, mi in bibendum scelerisque, massa leo mollis eros, vel congue enim leo eu arcu. Suspendisse a nibh odio.</strong>\r\n\r\nQuisque volutpat nunc ligula. Praesent nec massa in tortor malesuada conse scelerisque. Sed lobortis interdum pulvinar. Maecenas et est vel nunc imperdiet blandit at sed turpis. Mauris non libero ut nulla tempus gravida nec vel mi. Praesent et egestas ipsum. Ut vitae sapien elit. Aliquam erat volutpat.\r\n\r\n[button url="http://themextemplates.com/demo/midway/contact" size="medium"]Rent a Car[/button][/seven_twelfths][five_twelfths_last]<img class="aligncenter" src="http://themextemplates.com/demo/midway/updates/images/2012/12/image_22.jpg" alt="" />[/five_twelfths_last][/tab][tab][seven_twelfths]\r\n<h3>Hotel Reservation</h3>\r\n<strong>Fusce hendrerit hendrerit lacus id euismod. Aliquam erat volutpat. In in sem tortor. Vestibulum facilisis consequat purus, vel adipiscing velit sollicitudin quis. Vestibulum nec urna in lorem imperdiet iaculis.</strong>\r\n\r\nEtiam quam est, malesuada ut fringilla eu, auctor vel odio. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Integer fringilla magna ut risus sagittis ultrices. Nam eget varius sem. Nam mattis consectetur suscipit. Vivamus quis ante enim. Cras id sodales metus.\r\n\r\n[button url="http://themextemplates.com/demo/midway/contact" size="medium"]Book a Hotel[/button][/seven_twelfths][five_twelfths_last]<img class="aligncenter" src="http://themextemplates.com/demo/midway/updates/images/2012/12/image_20.jpg" alt="" />[/five_twelfths_last][/tab][tab][seven_twelfths]\r\n<h3>Event Planning</h3>\r\n<strong>Fusce euismod euismod enim non adipiscing. Integer ante nisi, dictum tempus elementum hendrerit, convallis a tortor. Maecenas sed ante cursus ligula egestas egestas eu et ante. Maecenas leo odio, sodales.</strong>\r\n\r\nFusce a justo non dui imperdiet ultricies. Donec consectetur metus sed velit placerat pulvinar. Nam neque libero, tristique eu placerat sed, consectetur mattis leo. Aliquam sapien nulla, mattis ac luctus tincidunt, gravida eu quam. Praesent sem nisl, scelerisque venenatis euismod nec, interdum nec neque.\r\n\r\n[button url="http://themextemplates.com/demo/midway/contact" size="medium"]Request a Quote[/button][/seven_twelfths][five_twelfths_last]<img class="aligncenter" src="http://themextemplates.com/demo/midway/updates/images/2012/12/image_23.jpg" alt="" />[/five_twelfths_last][/tab][/tabs][five_twelfths][title size="small"]Travel Experts[/title][one_third][image]http://themextemplates.com/demo/midway/updates/images/2012/12/image_26.jpg[/image][/one_third][two_thirds_last]\r\n<h5>Mark Templeton</h5>\r\nFusce a justo non dui imperdiet ultricies. Donec consectetur metus sed velit placerat pulvinar. Nam neque libero aqua, tristique eu placerat, consectetur mattis leo. Aliquam sapien nulla.\r\n\r\n[button url="http://themextemplates.com/demo/midway/contact" color="grey"]Contact Mark[/button][/two_thirds_last]\r\n[one_third][image]http://themextemplates.com/demo/midway/updates/images/2012/12/image_25.jpg[/image][/one_third][two_thirds_last]\r\n<h5>Stan Peterson</h5>\r\nProin tempus scelerisque diam, nec bibendum nisi ornare quis. Cras congue nulla sed velit lacinia mattis. In aqua habitasse platea dictumst. Mauris ac orci sapien. Aenean pretium dui sit amet ante.\r\n\r\n[button url="http://themextemplates.com/demo/midway/contact" color="grey"]Contact Stan[/button][/two_thirds_last][/five_twelfths][one_third][title size="small"]Why Choose Us[/title][toggle title="Maecenas condimentum ipsum metus"]Praesent facilisis dolor sed tortor eleifend vitae consectetur mi aliquam. Vestibulum eu dui sed lorem tristique facilisis. Aliquam interdum metus.[/toggle][toggle title="Morbi luctus euismod lorem et vitae"]Nulla laoreet pulvinar ipsum, ut viverra eros tincidunt ac. Fusce augue orci, tempus vitae imperdiet vel, cursus sed tellus duis eget.[/toggle][toggle title="Praesent facilisis dolor tortor eleifend"]Praesent facilisis dolor sed tortor eleifend vitae consectetur mi aliquam. Vestibulum eu dui sed lorem tristique facilisis. Aliquam interdum metus.[/toggle][toggle title="Nullam eget sem posuere et libero"]Nulla laoreet pulvinar ipsum, ut viverra eros tincidunt ac. Fusce augue orci, tempus vitae imperdiet vel, cursus sed tellus duis eget.[/toggle][toggle title="Nulla justo risus dignissim et viverr"]Praesent facilisis dolor sed tortor eleifend vitae consectetur mi aliquam. Vestibulum eu dui sed lorem tristique facilisis. Aliquam interdum metus.[/toggle][toggle title="Vestibulum ante ipsum primis aqua"]Nulla laoreet pulvinar ipsum, ut viverra eros tincidunt ac. Fusce augue orci, tempus vitae imperdiet vel, cursus sed tellus duis eget.[/toggle][toggle title="Sed et mi quis ipsum ullamcorper"]Nulla laoreet pulvinar ipsum, ut viverra eros tincidunt ac. Fusce augue orci, tempus vitae imperdiet vel, cursus sed tellus duis eget.[/toggle][toggle title="Maecenas non risus lorem et lobortis"]Praesent facilisis dolor sed tortor eleifend vitae consectetur mi aliquam. Vestibulum eu dui sed lorem tristique facilisis. Aliquam interdum metus.[/toggle][/one_third][one_fourth_last][title size="small"]Affiliations[/title]<a href="http://themextemplates.com/demo/midway/tours"><img src="http://themextemplates.com/demo/midway/updates/images/2012/12/image_24.jpg" alt="" /></a>[/one_fourth_last]', 'Services', '', 'inherit', 'open', 'open', '', '280-revision-v1', '', '', '2015-02-15 10:23:23', '2015-02-15 10:23:23', '', 280, 'http://localhost:81/siaxe/travel2/?p=476', 0, 'revision', '', 0),
(477, 1, '2015-02-15 10:24:31', '2015-02-15 10:24:31', '[tabs type="vertical" titles="Island wide Tours, Airline Tickets, Transport Rental, Hotel Reservation, Event Planning"][tab][seven_twelfths]\r\n<h3>Island wideTours</h3>\r\n<strong>Aenean sed pulvinar massa. Cras imperdiet facilisis massa consect faucibus. Duis eget commodo lacus. Duis tellus diam, aliquet nec imperdiet non, eleifend bibendum arcu. Nullam quis est nec enim.</strong>\r\n\r\nVestibulum eleifend dolor eu justo aliquam tempus. Vestibulum nibh urna, bibendum ut interdum eget, suscipit ac velit. Quisque aliquet, enim eu dictum laoreet, eros elit molestie leo, scelerisque lobortis risus urna id velit. Mauris at nulla sed nunc euismod hendrerit aliquam id dui. Cras ut ipsum vitae dolor.\r\n\r\n[button url="http://localhost:81/siaxe/travel2/?page_id=113" size="medium"]Browse Tours[/button][/seven_twelfths][five_twelfths_last]<img class="aligncenter" src="http://themextemplates.com/demo/midway/updates/images/2012/12/image_19.jpg" alt="" />[/five_twelfths_last][/tab][tab][seven_twelfths]\r\n<h3>Airline Tickets</h3>\r\n<strong>Quisque id augue erat, suscipit ultricies est. Maecenas feugiat justo ac massa porttitor mollis auctor nulla ullamcorper. Sed blandit interdum consequat. Mauris eget felis leo. Sed fermentum sollicitudin sagittis.</strong>\r\n\r\nSuspendisse luctus, felis at fringilla dictum, erat massa vehicula velit, id venenatis eros libero et lectus. Proin ullamcorper molestie lectus, sit amet condimentum dui tincidunt ut. In tempor faucibus eros, sed auctor orci ultricies non. Suspen lacinia enim vel nibh tincidunt vel consectetur est ullamcorper. Suspen orce.\r\n\r\n[button url="http://localhost:81/siaxe/travel2/?page_id=84" size="medium"]Buy Tickets[/button][/seven_twelfths][five_twelfths_last]<img class="aligncenter" src="http://themextemplates.com/demo/midway/updates/images/2012/12/image_21.jpg" alt="" />[/five_twelfths_last][/tab][tab][seven_twelfths]\r\n<h3>Transport Rental</h3>\r\n<strong>Nulla in orci justo. In elit elit, tempus sit amet pellentesque ut, tempus ac risus. Suspendisse imperdiet, mi in bibendum scelerisque, massa leo mollis eros, vel congue enim leo eu arcu. Suspendisse a nibh odio.</strong>\r\n\r\nQuisque volutpat nunc ligula. Praesent nec massa in tortor malesuada conse scelerisque. Sed lobortis interdum pulvinar. Maecenas et est vel nunc imperdiet blandit at sed turpis. Mauris non libero ut nulla tempus gravida nec vel mi. Praesent et egestas ipsum. Ut vitae sapien elit. Aliquam erat volutpat.\r\n\r\n[button url="http://localhost:81/siaxe/travel2/?page_id=84" size="medium"]Rent a Car[/button][/seven_twelfths][five_twelfths_last]<img class="aligncenter" src="http://themextemplates.com/demo/midway/updates/images/2012/12/image_22.jpg" alt="" />[/five_twelfths_last][/tab][tab][seven_twelfths]\r\n<h3>Hotel Reservation</h3>\r\n<strong>Fusce hendrerit hendrerit lacus id euismod. Aliquam erat volutpat. In in sem tortor. Vestibulum facilisis consequat purus, vel adipiscing velit sollicitudin quis. Vestibulum nec urna in lorem imperdiet iaculis.</strong>\r\n\r\nEtiam quam est, malesuada ut fringilla eu, auctor vel odio. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Integer fringilla magna ut risus sagittis ultrices. Nam eget varius sem. Nam mattis consectetur suscipit. Vivamus quis ante enim. Cras id sodales metus.\r\n\r\n[button url="http://localhost:81/siaxe/travel2/?page_id=84" size="medium"]Book a Hotel[/button][/seven_twelfths][five_twelfths_last]<img class="aligncenter" src="http://themextemplates.com/demo/midway/updates/images/2012/12/image_20.jpg" alt="" />[/five_twelfths_last][/tab][tab][seven_twelfths]\r\n<h3>Event Planning</h3>\r\n<strong>Fusce euismod euismod enim non adipiscing. Integer ante nisi, dictum tempus elementum hendrerit, convallis a tortor. Maecenas sed ante cursus ligula egestas egestas eu et ante. Maecenas leo odio, sodales.</strong>\r\n\r\nFusce a justo non dui imperdiet ultricies. Donec consectetur metus sed velit placerat pulvinar. Nam neque libero, tristique eu placerat sed, consectetur mattis leo. Aliquam sapien nulla, mattis ac luctus tincidunt, gravida eu quam. Praesent sem nisl, scelerisque venenatis euismod nec, interdum nec neque.\r\n\r\n[button url="http://localhost:81/siaxe/travel2/?page_id=84" size="medium"]Request a Quote[/button][/seven_twelfths][five_twelfths_last]<img class="aligncenter" src="http://themextemplates.com/demo/midway/updates/images/2012/12/image_23.jpg" alt="" />[/five_twelfths_last][/tab][/tabs][five_twelfths][title size="small"]Travel Experts[/title][one_third][image]http://themextemplates.com/demo/midway/updates/images/2012/12/image_26.jpg[/image][/one_third][two_thirds_last]\r\n<h5>Mark Templeton</h5>\r\nFusce a justo non dui imperdiet ultricies. Donec consectetur metus sed velit placerat pulvinar. Nam neque libero aqua, tristique eu placerat, consectetur mattis leo. Aliquam sapien nulla.\r\n\r\n[button url="http://localhost:81/siaxe/travel2/?page_id=84" color="grey"]Contact Mark[/button][/two_thirds_last]\r\n[one_third][image]http://themextemplates.com/demo/midway/updates/images/2012/12/image_25.jpg[/image][/one_third][two_thirds_last]\r\n<h5>Stan Peterson</h5>\r\nProin tempus scelerisque diam, nec bibendum nisi ornare quis. Cras congue nulla sed velit lacinia mattis. In aqua habitasse platea dictumst. Mauris ac orci sapien. Aenean pretium dui sit amet ante.\r\n\r\n[button url="http://localhost:81/siaxe/travel2/?page_id=84" color="grey"]Contact Stan[/button][/two_thirds_last][/five_twelfths][one_third][title size="small"]Why Choose Us[/title][toggle title="Maecenas condimentum ipsum metus"]Praesent facilisis dolor sed tortor eleifend vitae consectetur mi aliquam. Vestibulum eu dui sed lorem tristique facilisis. Aliquam interdum metus.[/toggle][toggle title="Morbi luctus euismod lorem et vitae"]Nulla laoreet pulvinar ipsum, ut viverra eros tincidunt ac. Fusce augue orci, tempus vitae imperdiet vel, cursus sed tellus duis eget.[/toggle][toggle title="Praesent facilisis dolor tortor eleifend"]Praesent facilisis dolor sed tortor eleifend vitae consectetur mi aliquam. Vestibulum eu dui sed lorem tristique facilisis. Aliquam interdum metus.[/toggle][toggle title="Nullam eget sem posuere et libero"]Nulla laoreet pulvinar ipsum, ut viverra eros tincidunt ac. Fusce augue orci, tempus vitae imperdiet vel, cursus sed tellus duis eget.[/toggle][toggle title="Nulla justo risus dignissim et viverr"]Praesent facilisis dolor sed tortor eleifend vitae consectetur mi aliquam. Vestibulum eu dui sed lorem tristique facilisis. Aliquam interdum metus.[/toggle][toggle title="Vestibulum ante ipsum primis aqua"]Nulla laoreet pulvinar ipsum, ut viverra eros tincidunt ac. Fusce augue orci, tempus vitae imperdiet vel, cursus sed tellus duis eget.[/toggle][toggle title="Sed et mi quis ipsum ullamcorper"]Nulla laoreet pulvinar ipsum, ut viverra eros tincidunt ac. Fusce augue orci, tempus vitae imperdiet vel, cursus sed tellus duis eget.[/toggle][toggle title="Maecenas non risus lorem et lobortis"]Praesent facilisis dolor sed tortor eleifend vitae consectetur mi aliquam. Vestibulum eu dui sed lorem tristique facilisis. Aliquam interdum metus.[/toggle][/one_third][one_fourth_last][title size="small"]Affiliations[/title]<a href="http://themextemplates.com/demo/midway/tours"><img src="http://themextemplates.com/demo/midway/updates/images/2012/12/image_24.jpg" alt="" /></a>[/one_fourth_last]', 'Services', '', 'inherit', 'open', 'open', '', '280-revision-v1', '', '', '2015-02-15 10:24:31', '2015-02-15 10:24:31', '', 280, 'http://localhost:81/siaxe/travel2/?p=477', 0, 'revision', '', 0),
(478, 1, '2015-02-15 10:28:13', '2015-02-15 10:28:13', '[tabs type="vertical" titles="Island wide Tours, Transport Rental, Hotel Reservation, Event Planning"]\r\n\r\n[tab]\r\n\r\n[seven_twelfths]\r\n<h3>Island wideTours</h3>\r\n<strong>Aenean sed pulvinar massa. Cras imperdiet facilisis massa consect faucibus. Duis eget commodo lacus. Duis tellus diam, aliquet nec imperdiet non, eleifend bibendum arcu. Nullam quis est nec enim.</strong>\r\n\r\nVestibulum eleifend dolor eu justo aliquam tempus. Vestibulum nibh urna, bibendum ut interdum eget, suscipit ac velit. Quisque aliquet, enim eu dictum laoreet, eros elit molestie leo, scelerisque lobortis risus urna id velit. Mauris at nulla sed nunc euismod hendrerit aliquam id dui. Cras ut ipsum vitae dolor.\r\n\r\n[button url="http://localhost:81/siaxe/travel2/?page_id=113" size="medium"]Browse Tours[/button][/seven_twelfths]\r\n\r\n[five_twelfths_last]<img class="aligncenter" src="http://themextemplates.com/demo/midway/updates/images/2012/12/image_19.jpg" alt="" />[/five_twelfths_last]\r\n\r\n[/tab]\r\n\r\n[tab]\r\n\r\n[seven_twelfths]\r\n<h3>Transport Rental</h3>\r\n<strong>Nulla in orci justo. In elit elit, tempus sit amet pellentesque ut, tempus ac risus. Suspendisse imperdiet, mi in bibendum scelerisque, massa leo mollis eros, vel congue enim leo eu arcu. Suspendisse a nibh odio.</strong>\r\n\r\nQuisque volutpat nunc ligula. Praesent nec massa in tortor malesuada conse scelerisque. Sed lobortis interdum pulvinar. Maecenas et est vel nunc imperdiet blandit at sed turpis. Mauris non libero ut nulla tempus gravida nec vel mi. Praesent et egestas ipsum. Ut vitae sapien elit. Aliquam erat volutpat.\r\n\r\n[button url="http://localhost:81/siaxe/travel2/?page_id=84" size="medium"]Rent a Car[/button][/seven_twelfths][five_twelfths_last]<img class="aligncenter" src="http://themextemplates.com/demo/midway/updates/images/2012/12/image_22.jpg" alt="" />[/five_twelfths_last]\r\n\r\n[/tab]\r\n\r\n[tab]\r\n\r\n[seven_twelfths]\r\n<h3>Hotel Reservation</h3>\r\n<strong>Fusce hendrerit hendrerit lacus id euismod. Aliquam erat volutpat. In in sem tortor. Vestibulum facilisis consequat purus, vel adipiscing velit sollicitudin quis. Vestibulum nec urna in lorem imperdiet iaculis.</strong>\r\n\r\nEtiam quam est, malesuada ut fringilla eu, auctor vel odio. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Integer fringilla magna ut risus sagittis ultrices. Nam eget varius sem. Nam mattis consectetur suscipit. Vivamus quis ante enim. Cras id sodales metus.\r\n\r\n[button url="http://localhost:81/siaxe/travel2/?page_id=84" size="medium"]Book a Hotel[/button][/seven_twelfths]\r\n\r\n[five_twelfths_last]<img class="aligncenter" src="http://themextemplates.com/demo/midway/updates/images/2012/12/image_20.jpg" alt="" />[/five_twelfths_last]\r\n\r\n[/tab]\r\n\r\n[tab]\r\n\r\n[seven_twelfths]\r\n<h3>Event Planning</h3>\r\n<strong>Fusce euismod euismod enim non adipiscing. Integer ante nisi, dictum tempus elementum hendrerit, convallis a tortor. Maecenas sed ante cursus ligula egestas egestas eu et ante. Maecenas leo odio, sodales.</strong>\r\n\r\nFusce a justo non dui imperdiet ultricies. Donec consectetur metus sed velit placerat pulvinar. Nam neque libero, tristique eu placerat sed, consectetur mattis leo. Aliquam sapien nulla, mattis ac luctus tincidunt, gravida eu quam. Praesent sem nisl, scelerisque venenatis euismod nec, interdum nec neque.\r\n\r\n[button url="http://localhost:81/siaxe/travel2/?page_id=84" size="medium"]Request a Quote[/button][/seven_twelfths]\r\n\r\n[five_twelfths_last]<img class="aligncenter" src="http://themextemplates.com/demo/midway/updates/images/2012/12/image_23.jpg" alt="" />[/five_twelfths_last]\r\n\r\n[/tab]\r\n\r\n[/tabs]\r\n\r\n[five_twelfths][title size="small"]Travel Experts[/title][one_third][image]http://themextemplates.com/demo/midway/updates/images/2012/12/image_26.jpg[/image][/one_third][two_thirds_last]\r\n<h5>Mark Templeton</h5>\r\nFusce a justo non dui imperdiet ultricies. Donec consectetur metus sed velit placerat pulvinar. Nam neque libero aqua, tristique eu placerat, consectetur mattis leo. Aliquam sapien nulla.\r\n\r\n[button url="http://localhost:81/siaxe/travel2/?page_id=84" color="grey"]Contact Mark[/button][/two_thirds_last]\r\n[one_third][image]http://themextemplates.com/demo/midway/updates/images/2012/12/image_25.jpg[/image][/one_third][two_thirds_last]\r\n<h5>Stan Peterson</h5>\r\nProin tempus scelerisque diam, nec bibendum nisi ornare quis. Cras congue nulla sed velit lacinia mattis. In aqua habitasse platea dictumst. Mauris ac orci sapien. Aenean pretium dui sit amet ante.\r\n\r\n[button url="http://localhost:81/siaxe/travel2/?page_id=84" color="grey"]Contact Stan[/button][/two_thirds_last][/five_twelfths][one_third][title size="small"]Why Choose Us[/title][toggle title="Maecenas condimentum ipsum metus"]Praesent facilisis dolor sed tortor eleifend vitae consectetur mi aliquam. Vestibulum eu dui sed lorem tristique facilisis. Aliquam interdum metus.[/toggle][toggle title="Morbi luctus euismod lorem et vitae"]Nulla laoreet pulvinar ipsum, ut viverra eros tincidunt ac. Fusce augue orci, tempus vitae imperdiet vel, cursus sed tellus duis eget.[/toggle][toggle title="Praesent facilisis dolor tortor eleifend"]Praesent facilisis dolor sed tortor eleifend vitae consectetur mi aliquam. Vestibulum eu dui sed lorem tristique facilisis. Aliquam interdum metus.[/toggle][toggle title="Nullam eget sem posuere et libero"]Nulla laoreet pulvinar ipsum, ut viverra eros tincidunt ac. Fusce augue orci, tempus vitae imperdiet vel, cursus sed tellus duis eget.[/toggle][toggle title="Nulla justo risus dignissim et viverr"]Praesent facilisis dolor sed tortor eleifend vitae consectetur mi aliquam. Vestibulum eu dui sed lorem tristique facilisis. Aliquam interdum metus.[/toggle][toggle title="Vestibulum ante ipsum primis aqua"]Nulla laoreet pulvinar ipsum, ut viverra eros tincidunt ac. Fusce augue orci, tempus vitae imperdiet vel, cursus sed tellus duis eget.[/toggle][toggle title="Sed et mi quis ipsum ullamcorper"]Nulla laoreet pulvinar ipsum, ut viverra eros tincidunt ac. Fusce augue orci, tempus vitae imperdiet vel, cursus sed tellus duis eget.[/toggle][toggle title="Maecenas non risus lorem et lobortis"]Praesent facilisis dolor sed tortor eleifend vitae consectetur mi aliquam. Vestibulum eu dui sed lorem tristique facilisis. Aliquam interdum metus.[/toggle][/one_third][one_fourth_last][title size="small"]Affiliations[/title]<a href="http://themextemplates.com/demo/midway/tours"><img src="http://themextemplates.com/demo/midway/updates/images/2012/12/image_24.jpg" alt="" /></a>[/one_fourth_last]', 'Services', '', 'inherit', 'open', 'open', '', '280-revision-v1', '', '', '2015-02-15 10:28:13', '2015-02-15 10:28:13', '', 280, 'http://localhost:81/siaxe/travel2/?p=478', 0, 'revision', '', 0),
(484, 1, '2015-02-15 13:56:33', '2015-02-15 13:56:33', 'sri_lanka', 'sri_lanka', 'sri_lanka', 'inherit', 'open', 'open', '', 'sri_lanka', '', '', '2015-02-15 13:56:51', '2015-02-15 13:56:51', '', 0, 'http://localhost:81/siaxe/travel2/wp-content/uploads/2015/02/sri_lanka.png', 0, 'attachment', 'image/png', 0),
(485, 1, '2015-02-15 13:59:39', '2015-02-15 13:59:39', '', 'blur_sri_lanka', '', 'inherit', 'open', 'open', '', 'blur_sri_lanka', '', '', '2015-02-15 13:59:39', '2015-02-15 13:59:39', '', 0, 'http://localhost:81/siaxe/travel2/wp-content/uploads/2015/02/blur_sri_lanka.png', 0, 'attachment', 'image/png', 0),
(486, 1, '2015-02-15 14:02:03', '2015-02-15 14:02:03', '', 'd1', '', 'inherit', 'open', 'open', '', 'd1-2', '', '', '2015-02-15 14:02:03', '2015-02-15 14:02:03', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=486', 0, 'attachment', 'image/png', 0),
(487, 1, '2015-02-15 14:02:04', '2015-02-15 14:02:04', '', 'd2', '', 'inherit', 'open', 'open', '', 'd2-2', '', '', '2015-02-15 14:02:04', '2015-02-15 14:02:04', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=487', 0, 'attachment', 'image/png', 0),
(488, 1, '2015-02-15 14:02:06', '2015-02-15 14:02:06', '', 'fw-1', '', 'inherit', 'open', 'open', '', 'fw-1-2', '', '', '2015-02-15 14:02:06', '2015-02-15 14:02:06', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=488', 0, 'attachment', 'image/jpeg', 0),
(489, 1, '2015-02-15 14:02:10', '2015-02-15 14:02:10', '', 'l1', '', 'inherit', 'open', 'open', '', 'l1-2', '', '', '2015-02-15 14:02:10', '2015-02-15 14:02:10', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=489', 0, 'attachment', 'image/png', 0),
(490, 1, '2015-02-15 14:02:13', '2015-02-15 14:02:13', '', 'l2', '', 'inherit', 'open', 'open', '', 'l2-2', '', '', '2015-02-15 14:02:13', '2015-02-15 14:02:13', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=490', 0, 'attachment', 'image/png', 0),
(491, 1, '2015-02-15 14:02:15', '2015-02-15 14:02:15', '', 'l3', '', 'inherit', 'open', 'open', '', 'l3-2', '', '', '2015-02-15 14:02:15', '2015-02-15 14:02:15', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=491', 0, 'attachment', 'image/png', 0),
(492, 1, '2015-02-15 14:02:16', '2015-02-15 14:02:16', '', 'left', '', 'inherit', 'open', 'open', '', 'left-2', '', '', '2015-02-15 14:02:16', '2015-02-15 14:02:16', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=492', 0, 'attachment', 'image/png', 0),
(493, 1, '2015-02-15 14:02:18', '2015-02-15 14:02:18', '', 'right', '', 'inherit', 'open', 'open', '', 'right-2', '', '', '2015-02-15 14:02:18', '2015-02-15 14:02:18', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=493', 0, 'attachment', 'image/png', 0),
(494, 1, '2015-02-15 14:02:20', '2015-02-15 14:02:20', '', 's1', '', 'inherit', 'open', 'open', '', 's1-3', '', '', '2015-02-15 14:02:20', '2015-02-15 14:02:20', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=494', 0, 'attachment', 'image/jpeg', 0),
(495, 1, '2015-02-15 14:02:22', '2015-02-15 14:02:22', '', 's1', '', 'inherit', 'open', 'open', '', 's1-4', '', '', '2015-02-15 14:02:22', '2015-02-15 14:02:22', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=495', 0, 'attachment', 'image/png', 0),
(496, 1, '2015-02-15 14:02:24', '2015-02-15 14:02:24', '', 's2', '', 'inherit', 'open', 'open', '', 's2-3', '', '', '2015-02-15 14:02:24', '2015-02-15 14:02:24', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=496', 0, 'attachment', 'image/jpeg', 0),
(497, 1, '2015-02-15 14:02:24', '2015-02-15 14:02:24', '', 's2', '', 'inherit', 'open', 'open', '', 's2-4', '', '', '2015-02-15 14:02:24', '2015-02-15 14:02:24', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=497', 0, 'attachment', 'image/png', 0),
(498, 1, '2015-02-15 14:03:13', '2015-02-15 14:03:13', '[layerslider id="2"]\r\n\r\n[two_thirds][five_twelfths]<img class="alignnone size-medium wp-image-21" title="image_1" src="http://localhost:81/siaxe/travel2/wp-content/uploads/2012/11/image_1.jpg" alt="" />[/five_twelfths][seven_twelfths_last][title]Explore the World[/title]\r\n\r\nDuis molestie ultrices massa, non volutpat nibh auctor rhoncus. Aenean erat nunc, venenatis euismod quis, iaculis eu dolor. Sed purus neque, consequat at vulputate in, sagittis at dolor. Duis ut arcu libero. Ut quis neque nunc, eget suscipit nisl. Quisque orci neque, scelerisque!\r\n\r\n[/seven_twelfths_last][/two_thirds][one_third_last][testimonials][/one_third_last][block background="http://localhost:81/siaxe/travel2/wp-content/uploads/2012/11/background_1.jpg"][tours columns="4" number="4"][/block][one_fourth][title]Travel Guide[/title][posts number="1"][/one_fourth][one_half][title]Gallery[/title][galleries columns="2" number="4"][/one_half][one_fourth_last][sidebar][/one_fourth_last]', 'Home2', '', 'inherit', 'open', 'open', '', '446-revision-v1', '', '', '2015-02-15 14:03:13', '2015-02-15 14:03:13', '', 446, 'http://localhost:81/siaxe/travel2/?p=498', 0, 'revision', '', 0),
(499, 1, '2015-02-15 14:45:16', '2015-02-15 14:45:16', '', 'd1', '', 'inherit', 'open', 'open', '', 'd1-3', '', '', '2015-02-15 14:45:16', '2015-02-15 14:45:16', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=499', 0, 'attachment', 'image/png', 0),
(500, 1, '2015-02-15 14:45:16', '2015-02-15 14:45:16', '', 'd2', '', 'inherit', 'open', 'open', '', 'd2-3', '', '', '2015-02-15 14:45:16', '2015-02-15 14:45:16', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=500', 0, 'attachment', 'image/png', 0),
(501, 1, '2015-02-15 14:45:17', '2015-02-15 14:45:17', '', 'fw-1', '', 'inherit', 'open', 'open', '', 'fw-1-3', '', '', '2015-02-15 14:45:17', '2015-02-15 14:45:17', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=501', 0, 'attachment', 'image/jpeg', 0),
(502, 1, '2015-02-15 14:45:18', '2015-02-15 14:45:18', '', 'l1', '', 'inherit', 'open', 'open', '', 'l1-3', '', '', '2015-02-15 14:45:18', '2015-02-15 14:45:18', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=502', 0, 'attachment', 'image/png', 0),
(503, 1, '2015-02-15 14:45:19', '2015-02-15 14:45:19', '', 'l2', '', 'inherit', 'open', 'open', '', 'l2-3', '', '', '2015-02-15 14:45:19', '2015-02-15 14:45:19', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=503', 0, 'attachment', 'image/png', 0),
(504, 1, '2015-02-15 14:45:20', '2015-02-15 14:45:20', '', 'l3', '', 'inherit', 'open', 'open', '', 'l3-3', '', '', '2015-02-15 14:45:20', '2015-02-15 14:45:20', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=504', 0, 'attachment', 'image/png', 0),
(505, 1, '2015-02-15 14:45:21', '2015-02-15 14:45:21', '', 'left', '', 'inherit', 'open', 'open', '', 'left-3', '', '', '2015-02-15 14:45:21', '2015-02-15 14:45:21', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=505', 0, 'attachment', 'image/png', 0),
(506, 1, '2015-02-15 14:45:21', '2015-02-15 14:45:21', '', 'right', '', 'inherit', 'open', 'open', '', 'right-3', '', '', '2015-02-15 14:45:21', '2015-02-15 14:45:21', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=506', 0, 'attachment', 'image/png', 0),
(507, 1, '2015-02-15 14:45:21', '2015-02-15 14:45:21', '', 's1', '', 'inherit', 'open', 'open', '', 's1-5', '', '', '2015-02-15 14:45:21', '2015-02-15 14:45:21', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=507', 0, 'attachment', 'image/jpeg', 0),
(508, 1, '2015-02-15 14:45:22', '2015-02-15 14:45:22', '', 's1', '', 'inherit', 'open', 'open', '', 's1-6', '', '', '2015-02-15 14:45:22', '2015-02-15 14:45:22', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=508', 0, 'attachment', 'image/png', 0),
(509, 1, '2015-02-15 14:45:22', '2015-02-15 14:45:22', '', 's2', '', 'inherit', 'open', 'open', '', 's2-5', '', '', '2015-02-15 14:45:22', '2015-02-15 14:45:22', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=509', 0, 'attachment', 'image/jpeg', 0),
(510, 1, '2015-02-15 14:45:23', '2015-02-15 14:45:23', '', 's2', '', 'inherit', 'open', 'open', '', 's2-6', '', '', '2015-02-15 14:45:23', '2015-02-15 14:45:23', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=510', 0, 'attachment', 'image/png', 0),
(511, 1, '2015-02-15 14:53:13', '2015-02-15 14:53:13', '', 'sri_lanka', '', 'inherit', 'open', 'open', '', 'sri_lanka-2', '', '', '2015-02-15 14:53:13', '2015-02-15 14:53:13', '', 0, 'http://localhost:81/siaxe/travel2/wp-content/uploads/2015/02/sri_lanka1.png', 0, 'attachment', 'image/png', 0),
(512, 1, '2015-02-15 14:55:40', '2015-02-15 14:55:40', '', 'blur_sri_lanka', '', 'inherit', 'open', 'open', '', 'blur_sri_lanka-2', '', '', '2015-02-15 14:55:40', '2015-02-15 14:55:40', '', 0, 'http://localhost:81/siaxe/travel2/wp-content/uploads/2015/02/blur_sri_lanka1.png', 0, 'attachment', 'image/png', 0),
(513, 1, '2015-02-15 14:59:41', '2015-02-15 14:59:41', '', 'eliphant_to', '', 'inherit', 'open', 'open', '', 'eliphant_to', '', '', '2015-02-15 14:59:41', '2015-02-15 14:59:41', '', 0, 'http://localhost:81/siaxe/travel2/wp-content/uploads/2015/02/eliphant_to.png', 0, 'attachment', 'image/png', 0),
(514, 1, '2015-02-15 15:12:49', '2015-02-15 15:12:49', '', 'arrow-up', '', 'inherit', 'open', 'open', '', 'arrow-up', '', '', '2015-02-15 15:12:49', '2015-02-15 15:12:49', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=514', 0, 'attachment', 'image/png', 0),
(515, 1, '2015-02-15 15:12:50', '2015-02-15 15:12:50', '', 'bg', '', 'inherit', 'open', 'open', '', 'bg', '', '', '2015-02-15 15:12:50', '2015-02-15 15:12:50', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=515', 0, 'attachment', 'image/jpeg', 0),
(516, 1, '2015-02-15 15:12:51', '2015-02-15 15:12:51', '', 'bg21', '', 'inherit', 'open', 'open', '', 'bg21', '', '', '2015-02-15 15:12:51', '2015-02-15 15:12:51', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=516', 0, 'attachment', 'image/jpeg', 0),
(517, 1, '2015-02-15 15:12:52', '2015-02-15 15:12:52', '', 'd1', '', 'inherit', 'open', 'open', '', 'd1-4', '', '', '2015-02-15 15:12:52', '2015-02-15 15:12:52', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=517', 0, 'attachment', 'image/png', 0),
(518, 1, '2015-02-15 15:12:52', '2015-02-15 15:12:52', '', 'd2', '', 'inherit', 'open', 'open', '', 'd2-4', '', '', '2015-02-15 15:12:52', '2015-02-15 15:12:52', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=518', 0, 'attachment', 'image/png', 0),
(519, 1, '2015-02-15 15:12:52', '2015-02-15 15:12:52', '', 'bg31', '', 'inherit', 'open', 'open', '', 'bg31', '', '', '2015-02-15 15:12:52', '2015-02-15 15:12:52', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=519', 0, 'attachment', 'image/jpeg', 0),
(520, 1, '2015-02-15 15:12:53', '2015-02-15 15:12:53', '', 'fw-1', '', 'inherit', 'open', 'open', '', 'fw-1-4', '', '', '2015-02-15 15:12:53', '2015-02-15 15:12:53', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=520', 0, 'attachment', 'image/jpeg', 0),
(521, 1, '2015-02-15 15:12:54', '2015-02-15 15:12:54', '', 'bg4', '', 'inherit', 'open', 'open', '', 'bg4', '', '', '2015-02-15 15:12:54', '2015-02-15 15:12:54', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=521', 0, 'attachment', 'image/jpeg', 0),
(522, 1, '2015-02-15 15:12:54', '2015-02-15 15:12:54', '', 'l1', '', 'inherit', 'open', 'open', '', 'l1-4', '', '', '2015-02-15 15:12:54', '2015-02-15 15:12:54', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=522', 0, 'attachment', 'image/png', 0),
(523, 1, '2015-02-15 15:12:54', '2015-02-15 15:12:54', '', 'l2', '', 'inherit', 'open', 'open', '', 'l2-4', '', '', '2015-02-15 15:12:54', '2015-02-15 15:12:54', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=523', 0, 'attachment', 'image/png', 0),
(524, 1, '2015-02-15 15:12:55', '2015-02-15 15:12:55', '', 'bg51', '', 'inherit', 'open', 'open', '', 'bg51', '', '', '2015-02-15 15:12:55', '2015-02-15 15:12:55', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=524', 0, 'attachment', 'image/jpeg', 0),
(525, 1, '2015-02-15 15:12:56', '2015-02-15 15:12:56', '', 'l3', '', 'inherit', 'open', 'open', '', 'l3-4', '', '', '2015-02-15 15:12:56', '2015-02-15 15:12:56', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=525', 0, 'attachment', 'image/png', 0),
(526, 1, '2015-02-15 15:12:56', '2015-02-15 15:12:56', '', 'bg6b', '', 'inherit', 'open', 'open', '', 'bg6b', '', '', '2015-02-15 15:12:56', '2015-02-15 15:12:56', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=526', 0, 'attachment', 'image/jpeg', 0),
(527, 1, '2015-02-15 15:12:56', '2015-02-15 15:12:56', '', 'left', '', 'inherit', 'open', 'open', '', 'left-4', '', '', '2015-02-15 15:12:56', '2015-02-15 15:12:56', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=527', 0, 'attachment', 'image/png', 0),
(528, 1, '2015-02-15 15:12:57', '2015-02-15 15:12:57', '', 'right', '', 'inherit', 'open', 'open', '', 'right-4', '', '', '2015-02-15 15:12:57', '2015-02-15 15:12:57', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=528', 0, 'attachment', 'image/png', 0),
(529, 1, '2015-02-15 15:12:57', '2015-02-15 15:12:57', '', 's1', '', 'inherit', 'open', 'open', '', 's1-7', '', '', '2015-02-15 15:12:57', '2015-02-15 15:12:57', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=529', 0, 'attachment', 'image/jpeg', 0),
(530, 1, '2015-02-15 15:12:57', '2015-02-15 15:12:57', '', 's1', '', 'inherit', 'open', 'open', '', 's1-8', '', '', '2015-02-15 15:12:57', '2015-02-15 15:12:57', '', 37, 'http://localhost:81/siaxe/travel2/?attachment_id=530', 0, 'attachment', 'image/png', 0),