-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwordpress (1).sql
More file actions
1158 lines (1076 loc) · 452 KB
/
wordpress (1).sql
File metadata and controls
1158 lines (1076 loc) · 452 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- phpMyAdmin SQL Dump
-- version 4.1.12
-- http://www.phpmyadmin.net
--
-- Host: localhost:8889
-- Generation Time: Jul 17, 2014 at 07:59 PM
-- Server version: 5.5.34
-- PHP Version: 5.5.10
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: `am484`
--
-- --------------------------------------------------------
--
-- Table structure for table `cafeteria`
--
-- change the line below V to use your local database name
use am484;
CREATE TABLE `cafeteria` (
`employeeId` int(10) NOT NULL AUTO_INCREMENT,
`employeeFirstName` varchar(40) NOT NULL,
`employeeLastName` varchar(40) NOT NULL,
`employeeEmail` varchar(40) NOT NULL,
`employeePassword` varchar(100) NOT NULL,
`employeeLocation` varchar(10) NOT NULL,
PRIMARY KEY (`employeeId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;
--
-- Dumping data for table `cafeteria`
--
INSERT INTO `cafeteria` (`employeeId`, `employeeFirstName`, `employeeLastName`, `employeeEmail`, `employeePassword`, `employeeLocation`) VALUES
(1, 'Andi', 'Mitre', 'andi.mitre@nbcuni.com', 'dc5c7986daef50c1e02ab09b442ee34f', 'LA');
-- --------------------------------------------------------
--
-- Table structure for table `wp_commentmeta`
--
CREATE TABLE `wp_commentmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`meta_id`),
KEY `comment_id` (`comment_id`),
KEY `meta_key` (`meta_key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;
--
-- Dumping data for table `wp_commentmeta`
--
INSERT INTO `wp_commentmeta` (`meta_id`, `comment_id`, `meta_key`, `meta_value`) VALUES
(1, 1, '_wp_trash_meta_status', '1'),
(2, 1, '_wp_trash_meta_time', '1405033282');
-- --------------------------------------------------------
--
-- Table structure for table `wp_comments`
--
CREATE TABLE `wp_comments` (
`comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
`comment_author` tinytext NOT NULL,
`comment_author_email` varchar(100) NOT NULL DEFAULT '',
`comment_author_url` varchar(200) NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) NOT NULL DEFAULT '',
`comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_content` text NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT '0',
`comment_approved` varchar(20) NOT NULL DEFAULT '1',
`comment_agent` varchar(255) NOT NULL DEFAULT '',
`comment_type` varchar(20) NOT NULL DEFAULT '',
`comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`comment_ID`),
KEY `comment_post_ID` (`comment_post_ID`),
KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
KEY `comment_date_gmt` (`comment_date_gmt`),
KEY `comment_parent` (`comment_parent`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ;
--
-- Dumping data for table `wp_comments`
--
INSERT INTO `wp_comments` (`comment_ID`, `comment_post_ID`, `comment_author`, `comment_author_email`, `comment_author_url`, `comment_author_IP`, `comment_date`, `comment_date_gmt`, `comment_content`, `comment_karma`, `comment_approved`, `comment_agent`, `comment_type`, `comment_parent`, `user_id`) VALUES
(1, 1, 'Mr WordPress', '', 'https://wordpress.org/', '', '2014-07-10 22:45:42', '2014-07-10 22:45:42', 'Hi, this is a comment.\nTo delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.', 0, 'post-trashed', '', '', 0, 0),
(2, 2, 'admin', '23andimitre@gmail.com', '', '::1', '2014-07-11 03:32:51', '2014-07-11 03:32:51', 'hiiiiiii', 0, 'post-trashed', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.153 Safari/537.36', '', 0, 1),
(3, 2, 'admin', '23andimitre@gmail.com', '', '::1', '2014-07-11 03:32:56', '2014-07-11 03:32:56', 'is andiiiii', 0, 'post-trashed', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.153 Safari/537.36', '', 0, 1),
(4, 2, 'admin', '23andimitre@gmail.com', '', '::1', '2014-07-11 03:33:00', '2014-07-11 03:33:00', 'hiiiiii', 0, 'post-trashed', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.153 Safari/537.36', '', 0, 1);
-- --------------------------------------------------------
--
-- Table structure for table `wp_frm_fields`
--
CREATE TABLE `wp_frm_fields` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`field_key` varchar(255) DEFAULT NULL,
`name` text,
`description` text,
`type` text,
`default_value` longtext,
`options` longtext,
`field_order` int(11) DEFAULT '0',
`required` int(1) DEFAULT NULL,
`field_options` longtext,
`form_id` int(11) DEFAULT NULL,
`created_at` datetime NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `field_key` (`field_key`),
KEY `form_id` (`form_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=30 ;
--
-- Dumping data for table `wp_frm_fields`
--
INSERT INTO `wp_frm_fields` (`id`, `field_key`, `name`, `description`, `type`, `default_value`, `options`, `field_order`, `required`, `field_options`, `form_id`, `created_at`) VALUES
(1, 'qh4icy', 'Name', 'First', 'text', '', '', 1, 1, 'a:3:{s:5:"blank";s:0:"";s:14:"separate_value";i:0;s:7:"classes";s:14:"frm_first_half";}', 1, '2014-07-14 17:17:31'),
(2, 'ocfup1', 'Last', 'Last', 'text', '', '', 2, 1, 'a:3:{s:5:"label";s:6:"hidden";s:5:"blank";s:0:"";s:7:"classes";s:13:"frm_last_half";}', 1, '2014-07-14 17:17:31'),
(3, '29yf4d', 'Email', '', 'email', '', '', 3, 1, 'a:3:{s:5:"blank";s:0:"";s:7:"invalid";s:34:"Please enter a valid email address";s:7:"classes";s:8:"frm_full";}', 1, '2014-07-14 17:17:31'),
(4, 'itt5me', 'Website', '', 'url', '', '', 4, 0, 'a:3:{s:5:"blank";s:0:"";s:7:"invalid";s:28:"Please enter a valid website";s:7:"classes";s:8:"frm_full";}', 1, '2014-07-14 17:17:31'),
(5, 'e6lis6', 'Subject', '', 'text', '', '', 5, 1, 'a:2:{s:5:"blank";s:0:"";s:7:"classes";s:8:"frm_full";}', 1, '2014-07-14 17:17:31'),
(6, '9jv0r1', 'Message', '', 'textarea', '', '', 6, 1, 'a:3:{s:3:"max";s:1:"5";s:5:"blank";s:0:"";s:7:"classes";s:8:"frm_full";}', 1, '2014-07-14 17:17:31'),
(7, '62n6q3', 'Captcha', '', 'captcha', '', '', 7, 0, 'a:4:{s:5:"label";s:4:"none";s:5:"blank";s:0:"";s:14:"clear_on_focus";i:0;s:13:"default_blank";i:0;}', 1, '2014-07-14 17:17:31'),
(9, 'uwfbkz', 'Radio Buttons', '', 'radio', '', 'a:5:{i:0;s:7:"Burgers";i:1;s:5:"Steak";i:2;s:14:"Mac and Cheese";i:3;s:5:"Sushi";i:4;s:19:"cake cake cake cake";}', 2, 0, 'a:11:{s:4:"size";s:0:"";s:3:"max";s:0:"";s:5:"label";s:0:"";s:5:"blank";s:27:"This field cannot be blank.";s:18:"required_indicator";s:1:"*";s:7:"invalid";s:0:"";s:14:"separate_value";i:0;s:14:"clear_on_focus";i:0;s:13:"default_blank";i:0;s:7:"classes";s:0:"";s:11:"custom_html";s:433:"<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">\r\n <label class="frm_primary_label">[field_name]\r\n <span class="frm_required">[required_label]</span>\r\n </label>\r\n <div class="frm_opt_container">[input]</div>\r\n [if description]<div class="frm_description">[description]</div>[/if description]\r\n [if error]<div class="frm_error">[error]</div>[/if error]\r\n</div>";}', 2, '2014-07-14 17:19:21'),
(25, 'tre988', 'First Name', '', 'text', '', '', 0, 1, 'a:11:{s:4:"size";s:2:"50";s:3:"max";s:2:"50";s:5:"label";s:0:"";s:5:"blank";s:27:"This field cannot be blank.";s:18:"required_indicator";s:1:"*";s:7:"invalid";s:0:"";s:14:"separate_value";i:0;s:14:"clear_on_focus";i:0;s:13:"default_blank";i:0;s:7:"classes";s:0:"";s:11:"custom_html";s:413:"<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">\r\n <label for="field_[key]" class="frm_primary_label">[field_name]\r\n <span class="frm_required">[required_label]</span>\r\n </label>\r\n [input]\r\n [if description]<div class="frm_description">[description]</div>[/if description]\r\n [if error]<div class="frm_error">[error]</div>[/if error]\r\n</div>";}', 5, '2014-07-14 18:33:30'),
(26, 'avri73', 'Last Name', '', 'text', '', '', 1, 1, 'a:11:{s:4:"size";s:2:"50";s:3:"max";s:2:"50";s:5:"label";s:0:"";s:5:"blank";s:27:"This field cannot be blank.";s:18:"required_indicator";s:1:"*";s:7:"invalid";s:0:"";s:14:"separate_value";i:0;s:14:"clear_on_focus";i:0;s:13:"default_blank";i:0;s:7:"classes";s:0:"";s:11:"custom_html";s:413:"<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">\r\n <label for="field_[key]" class="frm_primary_label">[field_name]\r\n <span class="frm_required">[required_label]</span>\r\n </label>\r\n [input]\r\n [if description]<div class="frm_description">[description]</div>[/if description]\r\n [if error]<div class="frm_error">[error]</div>[/if error]\r\n</div>";}', 5, '2014-07-14 18:34:17'),
(27, '8zytmj', 'Email', '', 'text', '', '', 2, 1, 'a:11:{s:4:"size";s:2:"50";s:3:"max";s:2:"50";s:5:"label";s:0:"";s:5:"blank";s:27:"This field cannot be blank.";s:18:"required_indicator";s:1:"*";s:7:"invalid";s:0:"";s:14:"separate_value";i:0;s:14:"clear_on_focus";i:0;s:13:"default_blank";i:0;s:7:"classes";s:0:"";s:11:"custom_html";s:413:"<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">\r\n <label for="field_[key]" class="frm_primary_label">[field_name]\r\n <span class="frm_required">[required_label]</span>\r\n </label>\r\n [input]\r\n [if description]<div class="frm_description">[description]</div>[/if description]\r\n [if error]<div class="frm_error">[error]</div>[/if error]\r\n</div>";}', 5, '2014-07-14 18:34:25'),
(28, 'gw7ctg', 'Message', '', 'textarea', '', '', 3, 1, 'a:11:{s:4:"size";s:4:"51.5";s:3:"max";s:1:"2";s:5:"label";s:0:"";s:5:"blank";s:27:"This field cannot be blank.";s:18:"required_indicator";s:1:"*";s:7:"invalid";s:0:"";s:14:"separate_value";i:0;s:14:"clear_on_focus";i:0;s:13:"default_blank";i:0;s:7:"classes";s:0:"";s:11:"custom_html";s:413:"<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">\r\n <label for="field_[key]" class="frm_primary_label">[field_name]\r\n <span class="frm_required">[required_label]</span>\r\n </label>\r\n [input]\r\n [if description]<div class="frm_description">[description]</div>[/if description]\r\n [if error]<div class="frm_error">[error]</div>[/if error]\r\n</div>";}', 5, '2014-07-14 18:34:36');
-- --------------------------------------------------------
--
-- Table structure for table `wp_frm_forms`
--
CREATE TABLE `wp_frm_forms` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`form_key` varchar(255) DEFAULT NULL,
`name` varchar(255) DEFAULT NULL,
`description` text,
`logged_in` tinyint(1) DEFAULT NULL,
`editable` tinyint(1) DEFAULT NULL,
`is_template` tinyint(1) DEFAULT '0',
`default_template` tinyint(1) DEFAULT '0',
`status` varchar(255) DEFAULT NULL,
`prli_link_id` int(11) DEFAULT NULL,
`options` longtext,
`created_at` datetime NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `form_key` (`form_key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=6 ;
--
-- Dumping data for table `wp_frm_forms`
--
INSERT INTO `wp_frm_forms` (`id`, `form_key`, `name`, `description`, `logged_in`, `editable`, `is_template`, `default_template`, `status`, `prli_link_id`, `options`, `created_at`) VALUES
(1, 'contact', 'Contact Us', 'We would like to hear from you. Please send us a message by filling out the form below and we will get back with you shortly.', NULL, 0, 1, 1, 'published', NULL, 'a:11:{s:12:"notification";a:1:{i:0;a:9:{s:8:"email_to";s:13:"[admin_email]";s:8:"reply_to";s:0:"";s:13:"reply_to_name";s:0:"";s:13:"cust_reply_to";s:0:"";s:18:"cust_reply_to_name";s:0:"";s:13:"email_subject";s:0:"";s:13:"email_message";s:17:"[default-message]";s:13:"inc_user_info";i:0;s:10:"plain_text";i:0;}}s:12:"submit_value";s:6:"Submit";s:14:"success_action";s:7:"message";s:11:"success_msg";s:54:"Your responses were successfully submitted. Thank you!";s:9:"show_form";i:0;s:7:"akismet";s:0:"";s:7:"no_save";i:0;s:9:"ajax_load";i:0;s:11:"before_html";s:146:"[if form_name]<h3>[form_name]</h3>[/if form_name]\n[if form_description]<div class="frm_description">[form_description]</div>[/if form_description]";s:10:"after_html";s:0:"";s:11:"submit_html";s:459:"<div class="frm_submit">\n[if back_button]<input type="button" value="[back_label]" name="frm_prev_page" formnovalidate="formnovalidate" class="frm_prev_page" [back_hook] />[/if back_button]\n<input type="submit" value="[button_label]" [button_action] />\n<img class="frm_ajax_loading" src="[frmurl]/images/ajax_loader.gif" alt="Sending" style="visibility:hidden;" />\n[if save_draft]<a class="frm_save_draft" [draft_hook]>[draft_label]</a>[/if save_draft]\n</div>";}', '2009-11-24 00:17:31'),
(2, 'ymrk0q', 'Please vote on the following food:', '', NULL, 0, 0, 0, 'published', NULL, 'a:12:{s:12:"notification";a:1:{i:0;a:8:{s:13:"reply_to_name";s:6:"custom";s:8:"reply_to";s:0:"";s:18:"cust_reply_to_name";s:4:"Andi";s:13:"cust_reply_to";s:0:"";s:8:"email_to";s:21:"23andimitre@gmail.com";s:13:"email_subject";s:14:"Survey Results";s:13:"email_message";s:45:"Please consider the following survey results.";s:10:"plain_text";s:1:"1";}}s:12:"submit_value";s:6:"Submit";s:14:"success_action";s:7:"message";s:11:"success_msg";s:54:"Your responses were successfully submitted. Thank you!";s:9:"show_form";i:0;s:7:"akismet";s:0:"";s:7:"no_save";i:0;s:9:"ajax_load";i:0;s:12:"custom_style";s:1:"1";s:11:"before_html";s:149:"[if form_name]<h3>[form_name]</h3>[/if form_name]\r\n[if form_description]<div class=\\"frm_description\\">[form_description]</div>[/if form_description]";s:10:"after_html";s:0:"";s:11:"submit_html";s:490:"<div class=\\"frm_submit\\">\r\n[if back_button]<input type=\\"button\\" value=\\"[back_label]\\" name=\\"frm_prev_page\\" formnovalidate=\\"formnovalidate\\" class=\\"frm_prev_page\\" [back_hook] />[/if back_button]\r\n<input type=\\"submit\\" value=\\"[button_label]\\" [button_action] />\r\n<img class=\\"frm_ajax_loading\\" src=\\"[frmurl]/images/ajax_loader.gif\\" alt=\\"Sending\\" style=\\"visibility:hidden;\\" />\r\n[if save_draft]<a class=\\"frm_save_draft\\" [draft_hook]>[draft_label]</a>[/if save_draft]\r\n</div>";}', '2014-07-14 17:18:51'),
(5, 'xh48gz', 'Contact Us', '', NULL, 0, 0, 0, 'published', NULL, 'a:12:{s:12:"notification";a:1:{i:0;a:8:{s:13:"reply_to_name";s:0:"";s:8:"reply_to";s:0:"";s:18:"cust_reply_to_name";s:0:"";s:13:"cust_reply_to";s:0:"";s:8:"email_to";s:21:"23andimitre@gmail.com";s:13:"email_subject";s:7:"Contact";s:13:"email_message";s:17:"[default-message]";s:10:"plain_text";s:1:"1";}}s:12:"submit_value";s:6:"Submit";s:14:"success_action";s:7:"message";s:11:"success_msg";s:54:"Your responses were successfully submitted. Thank you!";s:9:"show_form";i:0;s:7:"akismet";s:0:"";s:7:"no_save";i:0;s:9:"ajax_load";i:0;s:12:"custom_style";s:1:"1";s:11:"before_html";s:149:"[if form_name]<h3>[form_name]</h3>[/if form_name]\r\n[if form_description]<div class=\\"frm_description\\">[form_description]</div>[/if form_description]";s:10:"after_html";s:0:"";s:11:"submit_html";s:490:"<div class=\\"frm_submit\\">\r\n[if back_button]<input type=\\"button\\" value=\\"[back_label]\\" name=\\"frm_prev_page\\" formnovalidate=\\"formnovalidate\\" class=\\"frm_prev_page\\" [back_hook] />[/if back_button]\r\n<input type=\\"submit\\" value=\\"[button_label]\\" [button_action] />\r\n<img class=\\"frm_ajax_loading\\" src=\\"[frmurl]/images/ajax_loader.gif\\" alt=\\"Sending\\" style=\\"visibility:hidden;\\" />\r\n[if save_draft]<a class=\\"frm_save_draft\\" [draft_hook]>[draft_label]</a>[/if save_draft]\r\n</div>";}', '2014-07-14 18:33:10');
-- --------------------------------------------------------
--
-- Table structure for table `wp_frm_items`
--
CREATE TABLE `wp_frm_items` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`item_key` varchar(255) DEFAULT NULL,
`name` varchar(255) DEFAULT NULL,
`description` text,
`ip` text,
`form_id` int(11) DEFAULT NULL,
`post_id` int(11) DEFAULT NULL,
`user_id` int(11) DEFAULT NULL,
`parent_item_id` int(11) DEFAULT NULL,
`is_draft` tinyint(1) DEFAULT '0',
`updated_by` int(11) DEFAULT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `item_key` (`item_key`),
KEY `form_id` (`form_id`),
KEY `post_id` (`post_id`),
KEY `user_id` (`user_id`),
KEY `parent_item_id` (`parent_item_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=12 ;
--
-- Dumping data for table `wp_frm_items`
--
INSERT INTO `wp_frm_items` (`id`, `item_key`, `name`, `description`, `ip`, `form_id`, `post_id`, `user_id`, `parent_item_id`, `is_draft`, `updated_by`, `created_at`, `updated_at`) VALUES
(1, 'jw060k', 'jw060k', 'a:2:{s:7:"browser";s:120:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.153 Safari/537.36";s:8:"referrer";s:43:"http://localhost:8888/wordpress/survey-2/\r\n";}', '::1', 2, 0, 1, NULL, 0, 1, '2014-07-14 17:23:34', '2014-07-14 17:23:34'),
(2, 'aegdmc', 'aegdmc', 'a:2:{s:7:"browser";s:120:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.153 Safari/537.36";s:8:"referrer";s:43:"http://localhost:8888/wordpress/survey-2/\r\n";}', '::1', 2, 0, 1, NULL, 0, 1, '2014-07-14 17:26:40', '2014-07-14 17:26:40'),
(3, 'njochs', 'njochs', 'a:2:{s:7:"browser";s:120:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.153 Safari/537.36";s:8:"referrer";s:43:"http://localhost:8888/wordpress/survey-2/\r\n";}', '::1', 2, 0, 1, NULL, 0, 1, '2014-07-14 17:32:24', '2014-07-14 17:32:24'),
(4, 'mgcmsx', 'mgcmsx', 'a:2:{s:7:"browser";s:120:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.153 Safari/537.36";s:8:"referrer";s:43:"http://localhost:8888/wordpress/survey-2/\r\n";}', '::1', 2, 0, 1, NULL, 0, 1, '2014-07-14 17:37:30', '2014-07-14 17:37:30'),
(5, 'c8i2mk', 'c8i2mk', 'a:2:{s:7:"browser";s:120:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.153 Safari/537.36";s:8:"referrer";s:43:"http://localhost:8888/wordpress/survey-2/\r\n";}', '::1', 2, 0, 1, NULL, 0, 1, '2014-07-14 17:55:37', '2014-07-14 17:55:37'),
(6, '9zwzgl', '9zwzgl', 'a:2:{s:7:"browser";s:120:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.153 Safari/537.36";s:8:"referrer";s:43:"http://localhost:8888/wordpress/survey-2/\r\n";}', '::1', 2, 0, 1, NULL, 0, 1, '2014-07-14 18:03:31', '2014-07-14 18:03:31'),
(7, 'hafdfo', 'Andi', 'a:2:{s:7:"browser";s:120:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.153 Safari/537.36";s:8:"referrer";s:47:"http://localhost:8888/wordpress/contact-page/\r\n";}', '::1', 5, 0, 1, NULL, 0, 1, '2014-07-14 18:40:37', '2014-07-14 18:40:37'),
(8, 'zjm2cd', 'zjm2cd', 'a:2:{s:7:"browser";s:120:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.153 Safari/537.36";s:8:"referrer";s:43:"http://localhost:8888/wordpress/survey-2/\r\n";}', '::1', 2, 0, 1, NULL, 0, 1, '2014-07-15 21:13:41', '2014-07-15 21:13:41'),
(9, 's4g9am', 's4g9am', 'a:2:{s:7:"browser";s:120:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.153 Safari/537.36";s:8:"referrer";s:43:"http://localhost:8888/wordpress/survey-2/\r\n";}', '::1', 2, 0, 1, NULL, 0, 1, '2014-07-15 21:13:57', '2014-07-15 21:13:57'),
(10, 'gis8y4', 'gis8y4', 'a:2:{s:7:"browser";s:120:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.153 Safari/537.36";s:8:"referrer";s:43:"http://localhost:8888/wordpress/survey-2/\r\n";}', '::1', 2, 0, 1, NULL, 0, 1, '2014-07-15 21:14:03', '2014-07-15 21:14:03'),
(11, '680iqr', 'a\\''asdasd', 'a:2:{s:7:"browser";s:120:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.153 Safari/537.36";s:8:"referrer";s:47:"http://localhost:8888/wordpress/contact-page/\r\n";}', '::1', 5, 0, 1, NULL, 0, 1, '2014-07-15 21:14:24', '2014-07-15 21:14:24');
-- --------------------------------------------------------
--
-- Table structure for table `wp_frm_item_metas`
--
CREATE TABLE `wp_frm_item_metas` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`meta_value` longtext,
`field_id` int(11) NOT NULL,
`item_id` int(11) NOT NULL,
`created_at` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `field_id` (`field_id`),
KEY `item_id` (`item_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=18 ;
--
-- Dumping data for table `wp_frm_item_metas`
--
INSERT INTO `wp_frm_item_metas` (`id`, `meta_value`, `field_id`, `item_id`, `created_at`) VALUES
(1, 'Burgers', 9, 1, '2014-07-14 17:23:34'),
(2, 'cake cake cake cake', 9, 2, '2014-07-14 17:26:40'),
(3, 'cake cake cake cake', 9, 3, '2014-07-14 17:32:24'),
(4, 'cake cake cake cake', 9, 4, '2014-07-14 17:37:30'),
(5, 'cake cake cake cake', 9, 5, '2014-07-14 17:55:37'),
(6, 'Steak', 9, 6, '2014-07-14 18:03:31'),
(7, 'Andi', 25, 7, '2014-07-14 18:40:37'),
(8, 'mitre', 26, 7, '2014-07-14 18:40:37'),
(9, '23andimitre@gmail.com', 27, 7, '2014-07-14 18:40:37'),
(10, 'let me knwo', 28, 7, '2014-07-14 18:40:37'),
(11, 'Mac and Cheese', 9, 8, '2014-07-15 21:13:41'),
(12, 'Sushi', 9, 9, '2014-07-15 21:13:57'),
(13, 'cake cake cake cake', 9, 10, '2014-07-15 21:14:03'),
(14, 'a\\''asdasd', 25, 11, '2014-07-15 21:14:24'),
(15, 'aksdjn', 26, 11, '2014-07-15 21:14:24'),
(16, '23andimitre@gmail.com', 27, 11, '2014-07-15 21:14:24'),
(17, 'aksdnasd', 28, 11, '2014-07-15 21:14:24');
-- --------------------------------------------------------
--
-- Table structure for table `wp_links`
--
CREATE TABLE `wp_links` (
`link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`link_url` varchar(255) NOT NULL DEFAULT '',
`link_name` varchar(255) NOT NULL DEFAULT '',
`link_image` varchar(255) NOT NULL DEFAULT '',
`link_target` varchar(25) NOT NULL DEFAULT '',
`link_description` varchar(255) NOT NULL DEFAULT '',
`link_visible` varchar(20) NOT NULL DEFAULT 'Y',
`link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
`link_rating` int(11) NOT NULL DEFAULT '0',
`link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`link_rel` varchar(255) NOT NULL DEFAULT '',
`link_notes` mediumtext NOT NULL,
`link_rss` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`link_id`),
KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `wp_options`
--
CREATE TABLE `wp_options` (
`option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`option_name` varchar(64) NOT NULL DEFAULT '',
`option_value` longtext NOT NULL,
`autoload` varchar(20) NOT NULL DEFAULT 'yes',
PRIMARY KEY (`option_id`),
UNIQUE KEY `option_name` (`option_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=469 ;
--
-- Dumping data for table `wp_options`
--
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1, 'siteurl', 'http://localhost:8888/wordpress', 'yes'),
(2, 'blogname', 'Nbc Universal ', 'yes'),
(3, 'blogdescription', 'Dining Services', 'yes'),
(4, 'users_can_register', '0', 'yes'),
(5, 'admin_email', '23andimitre@gmail.com', 'yes'),
(6, 'start_of_week', '1', 'yes'),
(7, 'use_balanceTags', '0', 'yes'),
(8, 'use_smilies', '1', 'yes'),
(9, 'require_name_email', '1', 'yes'),
(10, 'comments_notify', '1', 'yes'),
(11, 'posts_per_rss', '10', 'yes'),
(12, 'rss_use_excerpt', '0', 'yes'),
(13, 'mailserver_url', 'mail.example.com', 'yes'),
(14, 'mailserver_login', 'login@example.com', 'yes'),
(15, 'mailserver_pass', 'password', 'yes'),
(16, 'mailserver_port', '110', 'yes'),
(17, 'default_category', '1', 'yes'),
(18, 'default_comment_status', 'open', 'yes'),
(19, 'default_ping_status', 'open', 'yes'),
(20, 'default_pingback_flag', '0', 'yes'),
(21, 'posts_per_page', '10', 'yes'),
(22, 'date_format', 'F j, Y', 'yes'),
(23, 'time_format', 'g:i a', 'yes'),
(24, 'links_updated_date_format', 'F j, Y g:i a', 'yes'),
(25, 'comment_moderation', '0', 'yes'),
(26, 'moderation_notify', '1', 'yes'),
(27, 'permalink_structure', '/%postname%/', 'yes'),
(28, 'gzipcompression', '0', 'yes'),
(29, 'hack_file', '0', 'yes'),
(30, 'blog_charset', 'UTF-8', 'yes'),
(31, 'moderation_keys', '', 'no'),
(32, 'active_plugins', 'a:4:{i:0;s:25:"formidable/formidable.php";i:1;s:23:"ml-slider/ml-slider.php";i:2;s:39:"siteorigin-panels/siteorigin-panels.php";i:3;s:55:"super-simple-contact-form/super-simple-contact-form.php";}', 'yes'),
(33, 'home', 'http://localhost:8888/wordpress', 'yes'),
(34, 'category_base', '', 'yes'),
(35, 'ping_sites', 'http://rpc.pingomatic.com/', 'yes'),
(36, 'advanced_edit', '0', 'yes'),
(37, 'comment_max_links', '2', 'yes'),
(38, 'gmt_offset', '0', 'yes'),
(39, 'default_email_category', '1', 'yes'),
(40, 'recently_edited', 'a:5:{i:0;s:95:"/Users/andimitre/Desktop/nbcwebapp/WebAppTeamA/wordpress/wp-content/plugins/akismet/akismet.php";i:1;s:131:"/Users/andimitre/Desktop/nbcwebapp/WebAppTeamA/wordpress/wp-content/plugins/super-simple-contact-form/super-simple-contact-form.php";i:2;s:106:"/Users/andimitre/Desktop/nbcwebapp/WebAppTeamA/wordpress/wp-content/plugins/formidable/css/frm_display.css";i:3;s:97:"/Users/andimitre/Desktop/nbcwebapp/WebAppTeamA/wordpress/wp-content/plugins/formidable/readme.txt";i:4;s:101:"/Users/andimitre/Desktop/nbcwebapp/WebAppTeamA/wordpress/wp-content/plugins/formidable/formidable.php";}', 'no'),
(41, 'template', 'dw-timeline', 'yes'),
(42, 'stylesheet', 'dw-timeline', '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', '27916', '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', 'posts', 'yes'),
(55, 'tag_base', '', 'yes'),
(56, 'show_avatars', '1', 'yes'),
(57, 'avatar_rating', 'G', 'yes'),
(58, 'upload_url_path', '', 'yes'),
(59, 'thumbnail_size_w', '150', 'yes'),
(60, 'thumbnail_size_h', '150', 'yes'),
(61, 'thumbnail_crop', '1', 'yes'),
(62, 'medium_size_w', '300', 'yes'),
(63, 'medium_size_h', '300', 'yes'),
(64, 'avatar_default', 'mystery', 'yes'),
(65, 'large_size_w', '1024', 'yes'),
(66, 'large_size_h', '1024', 'yes'),
(67, 'image_default_link_type', 'file', 'yes'),
(68, 'image_default_size', '', 'yes'),
(69, 'image_default_align', '', 'yes'),
(70, 'close_comments_for_old_posts', '0', 'yes'),
(71, 'close_comments_days_old', '14', 'yes'),
(72, 'thread_comments', '1', 'yes'),
(73, 'thread_comments_depth', '5', 'yes'),
(74, 'page_comments', '0', 'yes'),
(75, 'comments_per_page', '50', 'yes'),
(76, 'default_comments_page', 'newest', 'yes'),
(77, 'comment_order', 'asc', 'yes'),
(78, 'sticky_posts', 'a:0:{}', 'yes'),
(79, 'widget_categories', 'a:2:{s:12:"_multiwidget";i:1;i:1;a:0:{}}', 'yes'),
(80, 'widget_text', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(81, 'widget_rss', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(82, 'uninstall_plugins', 'a:0:{}', 'no'),
(83, 'timezone_string', '', 'yes'),
(84, 'page_for_posts', '0', 'yes'),
(85, 'page_on_front', '0', 'yes'),
(86, 'default_post_format', '0', 'yes'),
(87, 'link_manager_enabled', '0', 'yes'),
(88, 'initial_db_version', '27916', 'yes'),
(89, 'wp_user_roles', 'a:5:{s:13:"administrator";a:2:{s:4:"name";s:13:"Administrator";s:12:"capabilities";a:66:{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:14:"frm_view_forms";b:1;s:14:"frm_edit_forms";b:1;s:16:"frm_delete_forms";b:1;s:19:"frm_change_settings";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:{s:12:"_multiwidget";i:1;i:1;a:0:{}}', 'yes'),
(91, 'widget_recent-posts', 'a:2:{s:12:"_multiwidget";i:1;i:1;a:0:{}}', 'yes'),
(92, 'widget_recent-comments', 'a:2:{s:12:"_multiwidget";i:1;i:1;a:0:{}}', 'yes'),
(93, 'widget_archives', 'a:2:{s:12:"_multiwidget";i:1;i:1;a:0:{}}', 'yes'),
(94, 'widget_meta', 'a:2:{s:12:"_multiwidget";i:1;i:1;a:0:{}}', 'yes'),
(95, 'sidebars_widgets', 'a:5:{s:19:"wp_inactive_widgets";a:1:{i:0;s:23:"origin_call-to-action-2";}s:18:"orphaned_widgets_1";a:0:{}s:18:"orphaned_widgets_2";a:0:{}s:18:"orphaned_widgets_3";N;s:13:"array_version";i:3;}', 'yes'),
(96, 'cron', 'a:5:{i:1405581900;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:1405593951;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:1405637158;a:1:{s:19:"wp_scheduled_delete";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1405638612;a:1:{s:30:"wp_scheduled_auto_draft_delete";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}s:7:"version";i:2;}', 'yes'),
(98, '_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-3.9.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-3.9.1.zip";s:10:"no_content";s:70:"https://downloads.wordpress.org/release/wordpress-3.9.1-no-content.zip";s:11:"new_bundled";s:71:"https://downloads.wordpress.org/release/wordpress-3.9.1-new-bundled.zip";s:7:"partial";b:0;s:8:"rollback";b:0;}s:7:"current";s:5:"3.9.1";s:7:"version";s:5:"3.9.1";s:11:"php_version";s:5:"5.2.4";s:13:"mysql_version";s:3:"5.0";s:11:"new_bundled";s:3:"3.8";s:15:"partial_version";s:0:"";}}s:12:"last_checked";i:1405550754;s:15:"version_checked";s:5:"3.9.1";s:12:"translations";a:0:{}}', 'yes'),
(105, '_site_transient_timeout_browser_5528f8b73d47c94fd5f135e8c6be4bb9', '1405637158', 'yes'),
(106, '_site_transient_browser_5528f8b73d47c94fd5f135e8c6be4bb9', 'a:9:{s:8:"platform";s:9:"Macintosh";s:4:"name";s:6:"Chrome";s:7:"version";s:13:"35.0.1916.153";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'),
(124, 'can_compress_scripts', '1', 'yes'),
(126, '_transient_twentyfourteen_category_count', '1', 'yes'),
(127, '_site_transient_timeout_wporg_theme_feature_list', '1405046003', 'yes'),
(128, '_site_transient_wporg_theme_feature_list', 'a:4:{s:6:"Colors";a:15:{i:0;s:5:"black";i:1;s:4:"blue";i:2;s:5:"brown";i:3;s:4:"gray";i:4;s:5:"green";i:5;s:6:"orange";i:6;s:4:"pink";i:7;s:6:"purple";i:8;s:3:"red";i:9;s:6:"silver";i:10;s:3:"tan";i:11;s:5:"white";i:12;s:6:"yellow";i:13;s:4:"dark";i:14;s:5:"light";}s:6:"Layout";a:9:{i:0;s:12:"fixed-layout";i:1;s:12:"fluid-layout";i:2;s:17:"responsive-layout";i:3;s:10:"one-column";i:4;s:11:"two-columns";i:5;s:13:"three-columns";i:6;s:12:"four-columns";i:7;s:12:"left-sidebar";i:8;s:13:"right-sidebar";}s:8:"Features";a:20:{i:0;s:19:"accessibility-ready";i:1;s:8:"blavatar";i:2;s:10:"buddypress";i:3;s:17:"custom-background";i:4;s:13:"custom-colors";i:5;s:13:"custom-header";i:6;s:11:"custom-menu";i:7;s:12:"editor-style";i:8;s:21:"featured-image-header";i:9;s:15:"featured-images";i:10;s:15:"flexible-header";i:11;s:20:"front-page-post-form";i:12;s:19:"full-width-template";i:13;s:12:"microformats";i:14;s:12:"post-formats";i:15;s:20:"rtl-language-support";i:16;s:11:"sticky-post";i:17;s:13:"theme-options";i:18;s:17:"threaded-comments";i:19;s:17:"translation-ready";}s:7:"Subject";a:3:{i:0;s:7:"holiday";i:1;s:13:"photoblogging";i:2;s:8:"seasonal";}}', 'yes'),
(130, 'theme_mods_twentyfourteen', 'a:1:{s:16:"sidebars_widgets";a:2:{s:4:"time";i:1405032423;s:4:"data";a:4:{s:19:"wp_inactive_widgets";a:0:{}s:9:"sidebar-1";a:6:{i:0;s:8:"search-2";i:1;s:14:"recent-posts-2";i:2;s:17:"recent-comments-2";i:3;s:10:"archives-2";i:4;s:12:"categories-2";i:5;s:6:"meta-2";}s:9:"sidebar-2";a:0:{}s:9:"sidebar-3";a:0:{}}}}', 'yes'),
(131, 'current_theme', 'DW Timeline', 'yes'),
(132, 'theme_mods_eighties', 'a:6:{i:0;b:0;s:12:"header_image";s:97:"http://localhost:8888/wordpress/wp-content/uploads/2014/07/copy-cropped-NBC_peacock2-1024x602.png";s:17:"header_image_data";O:8:"stdClass":5:{s:13:"attachment_id";i:26;s:3:"url";s:97:"http://localhost:8888/wordpress/wp-content/uploads/2014/07/copy-cropped-NBC_peacock2-1024x602.png";s:13:"thumbnail_url";s:97:"http://localhost:8888/wordpress/wp-content/uploads/2014/07/copy-cropped-NBC_peacock2-1024x602.png";s:6:"height";i:600;s:5:"width";i:0;}s:16:"header_textcolor";s:6:"828282";s:30:"eighties_singular_header_image";s:14:"featured_image";s:16:"sidebars_widgets";a:2:{s:4:"time";i:1405035214;s:4:"data";a:3:{s:19:"wp_inactive_widgets";a:0:{}s:28:"eighties-interactive-sidebar";a:0:{}s:15:"eighties-footer";a:0:{}}}}', 'yes'),
(133, 'theme_switched', '', 'yes'),
(135, 'theme_mods_ward', 'a:7:{i:0;b:0;s:16:"background_color";s:6:"bb93e2";s:16:"background_image";s:92:"http://localhost:8888/wordpress/wp-content/uploads/2014/07/cropped-NBC_peacock2-1024x602.png";s:17:"background_repeat";s:8:"repeat-x";s:21:"background_position_x";s:6:"center";s:21:"background_attachment";s:5:"fixed";s:16:"sidebars_widgets";a:2:{s:4:"time";i:1405032837;s:4:"data";a:3:{s:19:"wp_inactive_widgets";a:0:{}s:7:"sidebar";a:6:{i:0;s:8:"search-2";i:1;s:14:"recent-posts-2";i:2;s:17:"recent-comments-2";i:3;s:10:"archives-2";i:4;s:12:"categories-2";i:5;s:6:"meta-2";}s:18:"home-page-top-area";a:0:{}}}}', 'yes'),
(136, 'widget_pages', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(137, 'widget_calendar', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(138, 'widget_tag_cloud', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(139, 'widget_nav_menu', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(140, 'widget_bavotasan_custom_text_widget', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(141, 'ward_theme_options', 'a:10:{s:5:"width";s:4:"1200";s:6:"layout";s:1:"6";s:7:"primary";s:8:"col-md-8";s:15:"excerpt_content";s:7:"excerpt";s:20:"jumbo_headline_title";s:19:"Nbc Dining Services";s:19:"jumbo_headline_text";s:31:"Please select a location below!";s:18:"display_categories";b:1;s:14:"display_author";b:1;s:12:"display_date";s:2:"on";s:21:"display_comment_count";b:1;}', 'yes'),
(142, 'category_children', 'a:0:{}', 'yes'),
(144, 'theme_mods_formation', 'a:46:{i:0;b:0;s:16:"header_textcolor";s:6:"7c7c7c";s:16:"background_color";s:6:"c4a5e2";s:12:"header_image";s:91:"http://localhost:8888/wordpress/wp-content/uploads/2014/07/cropped-cropped-NBC_peacock2.png";s:17:"header_image_data";O:8:"stdClass":5:{s:13:"attachment_id";i:8;s:3:"url";s:91:"http://localhost:8888/wordpress/wp-content/uploads/2014/07/cropped-cropped-NBC_peacock2.png";s:13:"thumbnail_url";s:91:"http://localhost:8888/wordpress/wp-content/uploads/2014/07/cropped-cropped-NBC_peacock2.png";s:6:"height";i:1177;s:5:"width";i:2000;}s:16:"background_image";s:0:"";s:17:"background_repeat";s:6:"repeat";s:21:"background_position_x";s:4:"left";s:21:"background_attachment";s:5:"fixed";s:7:"twitter";s:0:"";s:8:"facebook";s:0:"";s:10:"googleplus";s:0:"";s:8:"linkedin";s:0:"";s:6:"flickr";s:0:"";s:9:"pinterest";s:0:"";s:7:"youtube";s:0:"";s:5:"vimeo";s:0:"";s:6:"tumblr";s:0:"";s:7:"dribble";s:0:"";s:6:"github";s:0:"";s:9:"instagram";s:0:"";s:14:"Formation_logo";s:0:"";s:28:"telnumber_textbox_header_one";s:0:"";s:16:"featured_textbox";s:21:"Default Featured Text";s:19:"featured_button_url";s:0:"";s:22:"header-one-file-upload";s:0:"";s:14:"header_one_url";s:0:"";s:27:"featured_textbox_header_one";s:0:"";s:25:"featured_textbox_text_one";s:0:"";s:22:"header-two-file-upload";s:0:"";s:14:"header_two_url";s:0:"";s:27:"featured_textbox_header_two";s:0:"";s:25:"featured_textbox_text_two";s:0:"";s:24:"header-three-file-upload";s:0:"";s:16:"header_three_url";s:0:"";s:29:"featured_textbox_header_three";s:0:"";s:27:"featured_textbox_text_three";s:0:"";s:20:"logo-one-file-upload";s:0:"";s:12:"logo_one_url";s:0:"";s:20:"logo-two-file-upload";s:0:"";s:12:"logo_two_url";s:0:"";s:22:"logo-three-file-upload";s:0:"";s:14:"logo_three_url";s:0:"";s:21:"logo-four-file-upload";s:0:"";s:13:"logo_four_url";s:0:"";s:16:"sidebars_widgets";a:2:{s:4:"time";i:1405033480;s:4:"data";a:7:{s:19:"wp_inactive_widgets";a:0:{}s:9:"sidebar-1";a:0:{}s:9:"sidebar-2";a:0:{}s:9:"sidebar-3";a:0:{}s:11:"left_column";a:0:{}s:13:"center_column";a:0:{}s:12:"right_column";a:0:{}}}}', 'yes'),
(151, 'theme_mods_dw-timeline', 'a:2:{i:0;b:0;s:18:"nav_menu_locations";a:1:{s:18:"primary_navigation";i:5;}}', 'yes'),
(152, 'dw_timeline_theme_options', 'a:10:{s:9:"get_start";s:21:"Select Location Below";s:7:"favicon";s:74:"http://localhost:8888/wordpress/wp-content/uploads/2014/07/hollywood-1.jpg";s:23:"header_background_image";s:80:"http://localhost:8888/wordpress/wp-content/uploads/2014/07/30rock_140617_071.jpg";s:17:"header_mask_start";s:7:"#a83279";s:15:"header_mask_end";s:7:"#d38b26";s:21:"site_title_backgournd";s:7:"#4063c4";s:12:"heading_font";s:1:"0";s:9:"body_font";s:0:"";s:11:"header_code";s:0:"";s:11:"footer_code";s:0:"";}', 'yes'),
(155, 'theme_mods_hathor', 'a:7:{i:0;b:0;s:16:"background_color";s:6:"565656";s:16:"background_image";s:56:"http://localhost:8888/wordpress/wp-content/themes/hathor";s:17:"background_repeat";s:6:"repeat";s:21:"background_position_x";s:4:"left";s:21:"background_attachment";s:5:"fixed";s:16:"sidebars_widgets";a:2:{s:4:"time";i:1405034353;s:4:"data";a:3:{s:19:"wp_inactive_widgets";a:0:{}s:7:"sidebar";a:0:{}s:12:"foot_sidebar";a:0:{}}}}', 'yes'),
(156, 'optionsframework', 'a:1:{s:2:"id";s:6:"hathor";}', 'yes'),
(157, 'widget_hathor_feat_widget', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(158, 'hathor', 'a:119:{s:14:"layout1_images";s:7:"layout1";s:11:"head_select";s:5:"head1";s:13:"footer_select";s:7:"footer1";s:17:"hathor_logo_image";s:0:"";s:14:"hathor_welcome";s:95:"<h1>Welcome!</h1><h2>You need to configure your Home Page! </h2>Please visit Theme Options Page";s:11:"latest_blog";s:11:"Latest Blog";s:17:"latstpst_checkbox";b:0;s:15:"footer_textarea";s:0:"";s:11:"font_select";s:7:"raleway";s:19:"flavour_colorpicker";s:7:"#26AE90";s:17:"hover_colorpicker";s:7:"#ff4533";s:13:"slider_select";s:4:"nivo";s:16:"sliderspeed_text";s:4:"6000";s:13:"number_select";s:1:"5";s:16:"sldrtxt_checkbox";s:1:"1";s:18:"sldrtitle_checkbox";s:1:"1";s:16:"sldrdes_checkbox";s:1:"1";s:6:"slide1";s:0:"";s:11:"slidetitle1";s:0:"";s:10:"slidedesc1";s:0:"";s:6:"slide2";s:0:"";s:11:"slidetitle2";s:0:"";s:10:"slidedesc2";s:0:"";s:6:"slide3";s:0:"";s:11:"slidetitle3";s:0:"";s:10:"slidedesc3";s:0:"";s:6:"slide4";s:0:"";s:11:"slidetitle4";s:0:"";s:10:"slidedesc4";s:0:"";s:6:"slide5";s:0:"";s:11:"slidetitle5";s:0:"";s:10:"slidedesc5";s:0:"";s:15:"blocks_checkbox";s:1:"1";s:16:"newtab4_checkbox";b:0;s:12:"servicelink2";s:15:"Show Me Details";s:12:"block_select";s:8:"service2";s:11:"block1_logo";s:8:"fa-heart";s:12:"block1_image";s:0:"";s:11:"block1_text";s:19:"We Work Efficiently";s:15:"block1_textarea";s:142:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam nec rhoncus risus. In ultrices lacinia ipsum, posuere faucibus velit bibendum ac.";s:11:"block1_link";s:21:"http://wordpress.org/";s:11:"block2_logo";s:12:"fa-volume-up";s:12:"block2_image";s:0:"";s:11:"block2_text";s:17:"24/7 Live Support";s:15:"block2_textarea";s:160:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam nec rhoncus risus. In ultrices lacinia ipsum, posuere faucibus velit bibendum ac. Sed ultrices leo.";s:11:"block2_link";s:0:"";s:11:"block3_logo";s:14:"fa-fighter-jet";s:12:"block3_image";s:0:"";s:11:"block3_text";s:7:"Confide";s:15:"block3_textarea";s:143:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam nec rhoncus risus. In ultrices lacinia ipsum, posuere faucibus velit bibendum ac. ";s:11:"block3_link";s:0:"";s:11:"block4_logo";s:7:"fa-cogs";s:12:"block4_image";s:0:"";s:11:"block4_text";s:22:"Gurantee Like No Other";s:15:"block4_textarea";s:106:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam nec rhoncus risus. In ultrices lacinia ipsum.";s:11:"block4_link";s:0:"";s:19:"recentwork_checkbox";s:1:"1";s:11:"recent_work";s:17:"Showcase Our Work";s:12:"recent_work2";s:251:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed blandit, sapien non placerat tempor, tortor sapien molestie dui, ut bibendumenim pretium augue. Morbi gravida urna quis lectus vestibulum auctor id sapien dignissim et convallis est rhoncus.";s:11:"recentlink2";s:9:"Read More";s:7:"recent1";s:76:"http://localhost:8888/wordpress/wp-content/themes/hathor/images/demo/bg2.png";s:12:"recenttitle1";s:15:"Beautiful Photo";s:11:"recentdesc1";s:125:"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy.";s:10:"recenturl1";s:0:"";s:7:"recent2";s:76:"http://localhost:8888/wordpress/wp-content/themes/hathor/images/demo/bg4.png";s:12:"recenttitle2";s:15:"Beautiful Photo";s:11:"recentdesc2";s:125:"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy.";s:10:"recenturl2";s:0:"";s:7:"recent3";s:76:"http://localhost:8888/wordpress/wp-content/themes/hathor/images/demo/bg5.png";s:12:"recenttitle3";s:15:"Beautiful Photo";s:11:"recentdesc3";s:125:"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy.";s:10:"recenturl3";s:0:"";s:7:"recent4";s:76:"http://localhost:8888/wordpress/wp-content/themes/hathor/images/demo/bg5.png";s:12:"recenttitle4";s:15:"Beautiful Photo";s:11:"recentdesc4";s:125:"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy.";s:10:"recenturl4";s:0:"";s:16:"ourteam_checkbox";b:0;s:12:"ourteam_work";s:19:"Meet The Dream Team";s:13:"ourteam_work2";s:251:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed blandit, sapien non placerat tempor, tortor sapien molestie dui, ut bibendumenim pretium augue. Morbi gravida urna quis lectus vestibulum auctor id sapien dignissim et convallis est rhoncus.";s:8:"ourteam1";s:78:"http://localhost:8888/wordpress/wp-content/themes/hathor/images/demo/team1.png";s:13:"ourteamtitle1";s:8:"Mr.ronty";s:12:"ourteamdesc1";s:125:"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy.";s:11:"ourteamurl1";s:0:"";s:8:"ourteam2";s:78:"http://localhost:8888/wordpress/wp-content/themes/hathor/images/demo/team2.png";s:13:"ourteamtitle2";s:8:"Mr.Monty";s:12:"ourteamdesc2";s:125:"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy.";s:11:"ourteamurl2";s:0:"";s:8:"ourteam3";s:78:"http://localhost:8888/wordpress/wp-content/themes/hathor/images/demo/team3.png";s:13:"ourteamtitle3";s:6:"ms.oly";s:12:"ourteamdesc3";s:125:"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy.";s:11:"ourteamurl3";s:0:"";s:8:"ourteam4";s:0:"";s:13:"ourteamtitle4";s:7:"Mr.Imon";s:12:"ourteamdesc4";s:125:"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy.";s:11:"ourteamurl4";s:0:"";s:18:"ourclient_checkbox";s:1:"1";s:10:"our_client";s:10:"Our Client";s:7:"client1";s:78:"http://localhost:8888/wordpress/wp-content/themes/hathor/images/demo/logo1.png";s:10:"clienturl1";s:0:"";s:7:"client2";s:78:"http://localhost:8888/wordpress/wp-content/themes/hathor/images/demo/logo2.png";s:10:"clienturl2";s:0:"";s:7:"client3";s:78:"http://localhost:8888/wordpress/wp-content/themes/hathor/images/demo/logo3.png";s:10:"clienturl3";s:0:"";s:7:"client4";s:78:"http://localhost:8888/wordpress/wp-content/themes/hathor/images/demo/logo4.png";s:10:"clienturl4";s:0:"";s:7:"client5";s:78:"http://localhost:8888/wordpress/wp-content/themes/hathor/images/demo/logo4.png";s:10:"clienturl5";s:0:"";s:10:"fbsoc_text";s:0:"";s:10:"ttsoc_text";s:0:"";s:10:"gpsoc_text";s:0:"";s:11:"ytbsoc_text";s:0:"";s:11:"pinsoc_text";s:0:"";s:11:"vimsoc_text";s:0:"";s:11:"linsoc_text";s:0:"";s:11:"flisoc_text";s:0:"";s:11:"rsssoc_text";s:0:"";s:18:"nosidebar_checkbox";b:0;s:17:"dissauth_checkbox";b:0;s:17:"disscats_checkbox";b:0;}', 'yes'),
(164, 'theme_mods_foodeez-lite', 'a:2:{i:0;b:0;s:16:"sidebars_widgets";a:2:{s:4:"time";i:1405034655;s:4:"data";a:4:{s:19:"wp_inactive_widgets";a:0:{}s:9:"sidebar-1";a:0:{}s:9:"sidebar-2";a:0:{}s:9:"sidebar-3";N;}}}', 'yes'),
(165, 'option_tree_settings', 'a:3:{s:15:"contextual_help";a:2:{s:7:"content";a:1:{i:0;a:3:{s:2:"id";s:12:"general_help";s:5:"title";s:7:"General";s:7:"content";s:30:"<p>Help content goes here!</p>";}}s:7:"sidebar";s:33:"<p>Sidebar content goes here!</p>";}s:8:"sections";a:7:{i:0;a:2:{s:5:"title";s:16:"General Settings";s:2:"id";s:15:"general_default";}i:1;a:2:{s:5:"title";s:15:"Header Settings";s:2:"id";s:15:"header_settings";}i:2;a:2:{s:5:"title";s:13:"Blog Settings";s:2:"id";s:13:"blog_settings";}i:3;a:2:{s:5:"title";s:26:"Home Page Featured Section";s:2:"id";s:21:"home_feature_settings";}i:4;a:2:{s:5:"title";s:26:"Home Page Parallax Section";s:2:"id";s:22:"home_parallax_settings";}i:5;a:2:{s:5:"title";s:12:"Social Links";s:2:"id";s:12:"social_links";}i:6;a:2:{s:5:"title";s:15:"Footer Section ";s:2:"id";s:14:"footer_section";}}s:8:"settings";a:36:{i:0;a:6:{s:5:"label";s:12:"Color Scheme";s:2:"id";s:19:"foodeez_colorpicker";s:4:"type";s:11:"colorpicker";s:4:"desc";s:16:"Set color scheme";s:3:"std";s:0:"";s:7:"section";s:15:"general_default";}i:1;a:6:{s:5:"label";s:74:"Change Logo (full path to logo image size: width * height (156px * 40px) )";s:2:"id";s:16:"foodeez_logo_img";s:4:"type";s:6:"upload";s:4:"desc";s:44:"This creates a custom logo for your website.";s:3:"std";s:0:"";s:7:"section";s:15:"general_default";}i:2;a:6:{s:2:"id";s:16:"foodeez_logo_alt";s:5:"label";s:13:"Logo ALT Text";s:4:"desc";s:36:"Enter logo image alt attribute text.";s:3:"std";s:0:"";s:4:"type";s:4:"text";s:7:"section";s:15:"general_default";}i:3;a:6:{s:5:"label";s:14:"Upload Favicon";s:2:"id";s:15:"foodeez_favicon";s:4:"type";s:6:"upload";s:4:"desc";s:47:"This creates a custom favicon for your website.";s:3:"std";s:0:"";s:7:"section";s:15:"general_default";}i:4;a:6:{s:5:"label";s:19:"Top Bar Contact no.";s:2:"id";s:22:"foodeez_topbar_contact";s:4:"type";s:4:"text";s:4:"desc";s:23:"Add top bar contact no.";s:3:"std";s:0:"";s:7:"section";s:15:"header_settings";}i:5;a:6:{s:5:"label";s:23:"Reservation Button Link";s:2:"id";s:17:"foodeez_rbtn_link";s:4:"type";s:4:"text";s:4:"desc";s:27:"Add Reservation button link";s:3:"std";s:0:"";s:7:"section";s:15:"header_settings";}i:6;a:6:{s:5:"label";s:15:"Home page Image";s:2:"id";s:25:"foodeez_frontslider_stype";s:4:"type";s:6:"upload";s:4:"desc";s:64:"Choose image for home page. Size: Width 1600px and Height 500px.";s:3:"std";s:0:"";s:7:"section";s:15:"header_settings";}i:7;a:6:{s:5:"label";s:28:"Inner Page Header Background";s:2:"id";s:25:"foodeez_innerheader_stype";s:4:"type";s:6:"upload";s:4:"desc";s:46:"Choose image for inner page header background.";s:3:"std";s:0:"";s:7:"section";s:15:"header_settings";}i:8;a:6:{s:2:"id";s:24:"foodeez_blogpage_heading";s:5:"label";s:21:"Enter Blog Page Title";s:4:"desc";s:27:"Enter Blog Page Title text.";s:3:"std";s:0:"";s:4:"type";s:4:"text";s:7:"section";s:13:"blog_settings";}i:9;a:6:{s:2:"id";s:30:"foodeez_fb1_first_part_heading";s:5:"label";s:26:"First Featured Box Heading";s:4:"desc";s:37:"Enter heading for first featured box.";s:3:"std";s:0:"";s:4:"type";s:4:"text";s:7:"section";s:21:"home_feature_settings";}i:10;a:6:{s:5:"label";s:69:"First Featured Box Image Path (size: width * height (150px * 150px) )";s:2:"id";s:28:"foodeez_fb1_first_part_image";s:4:"type";s:6:"upload";s:4:"desc";s:36:"Upload image for first featured box.";s:3:"std";s:0:"";s:7:"section";s:21:"home_feature_settings";}i:11;a:6:{s:5:"label";s:26:"First Featured Box Content";s:2:"id";s:30:"foodeez_fb1_first_part_content";s:4:"type";s:8:"textarea";s:4:"desc";s:37:"Enter content for first featured box.";s:3:"std";s:0:"";s:7:"section";s:21:"home_feature_settings";}i:12;a:6:{s:2:"id";s:27:"foodeez_fb1_first_part_link";s:5:"label";s:23:"First Featured Box Link";s:4:"desc";s:34:"Enter link for first featured box.";s:3:"std";s:0:"";s:4:"type";s:4:"text";s:7:"section";s:21:"home_feature_settings";}i:13;a:6:{s:2:"id";s:31:"foodeez_fb2_second_part_heading";s:5:"label";s:27:"Second Featured Box Heading";s:4:"desc";s:38:"Enter heading for second featured box.";s:3:"std";s:0:"";s:4:"type";s:4:"text";s:7:"section";s:21:"home_feature_settings";}i:14;a:6:{s:5:"label";s:70:"Second Featured Box Image Path (size: width * height (150px * 150px) )";s:2:"id";s:29:"foodeez_fb2_second_part_image";s:4:"type";s:6:"upload";s:4:"desc";s:37:"Upload image for second featured box.";s:3:"std";s:0:"";s:7:"section";s:21:"home_feature_settings";}i:15;a:6:{s:5:"label";s:27:"Second Featured Box Content";s:2:"id";s:31:"foodeez_fb2_second_part_content";s:4:"type";s:8:"textarea";s:4:"desc";s:38:"Enter content for second featured box.";s:3:"std";s:0:"";s:7:"section";s:21:"home_feature_settings";}i:16;a:6:{s:2:"id";s:28:"foodeez_fb2_second_part_link";s:5:"label";s:24:"Second Featured Box Link";s:4:"desc";s:35:"Enter link for second featured box.";s:3:"std";s:0:"";s:4:"type";s:4:"text";s:7:"section";s:21:"home_feature_settings";}i:17;a:6:{s:2:"id";s:30:"foodeez_fb3_third_part_heading";s:5:"label";s:26:"Third Featured Box Heading";s:4:"desc";s:37:"Enter heading for third featured box.";s:3:"std";s:0:"";s:4:"type";s:4:"text";s:7:"section";s:21:"home_feature_settings";}i:18;a:6:{s:5:"label";s:69:"Third Featured Box Image Path (size: width * height (150px * 150px) )";s:2:"id";s:28:"foodeez_fb3_third_part_image";s:4:"type";s:6:"upload";s:4:"desc";s:36:"Upload image for third featured box.";s:3:"std";s:0:"";s:7:"section";s:21:"home_feature_settings";}i:19;a:6:{s:5:"label";s:26:"Third Featured Box Content";s:2:"id";s:30:"foodeez_fb3_third_part_content";s:4:"type";s:8:"textarea";s:4:"desc";s:37:"Enter content for third featured box.";s:3:"std";s:0:"";s:7:"section";s:21:"home_feature_settings";}i:20;a:6:{s:2:"id";s:27:"foodeez_fb3_third_part_link";s:5:"label";s:23:"Third Featured Box Link";s:4:"desc";s:34:"Enter link for third featured box.";s:3:"std";s:0:"";s:4:"type";s:4:"text";s:7:"section";s:21:"home_feature_settings";}i:21;a:6:{s:2:"id";s:31:"foodeez_fb4_fourth_part_heading";s:5:"label";s:27:"Fourth Featured Box Heading";s:4:"desc";s:38:"Enter heading for fourth featured box.";s:3:"std";s:0:"";s:4:"type";s:4:"text";s:7:"section";s:21:"home_feature_settings";}i:22;a:6:{s:5:"label";s:70:"Fourth Featured Box Image Path (size: width * height (150px * 150px) )";s:2:"id";s:29:"foodeez_fb4_fourth_part_image";s:4:"type";s:6:"upload";s:4:"desc";s:37:"Upload image for fourth featured box.";s:3:"std";s:0:"";s:7:"section";s:21:"home_feature_settings";}i:23;a:6:{s:5:"label";s:27:"Fourth Featured Box Content";s:2:"id";s:31:"foodeez_fb4_fourth_part_content";s:4:"type";s:8:"textarea";s:4:"desc";s:38:"Enter content for fourth featured box.";s:3:"std";s:0:"";s:7:"section";s:21:"home_feature_settings";}i:24;a:6:{s:2:"id";s:28:"foodeez_fb4_fourth_part_link";s:5:"label";s:24:"Fourth Featured Box Link";s:4:"desc";s:35:"Enter link for fourth featured box.";s:3:"std";s:0:"";s:4:"type";s:4:"text";s:7:"section";s:21:"home_feature_settings";}i:25;a:6:{s:5:"label";s:74:"Parallax Section Background Image (size: width * height (1600x * 1000px) )";s:2:"id";s:26:"foodeez_fullparallax_image";s:4:"type";s:6:"upload";s:4:"desc";s:45:"Upload background image for parallax section.";s:3:"std";s:0:"";s:7:"section";s:22:"home_parallax_settings";}i:26;a:6:{s:5:"label";s:24:"Parallax Section Content";s:2:"id";s:25:"foodeez_para_content_left";s:4:"type";s:8:"textarea";s:4:"desc";s:34:"Enter content for parallax section";s:3:"std";s:0:"";s:7:"section";s:22:"home_parallax_settings";}i:27;a:6:{s:5:"label";s:13:"Facebook Link";s:2:"id";s:18:"foodeez_fbook_link";s:4:"type";s:4:"text";s:4:"desc";s:20:"Enter Facebook Link.";s:3:"std";s:0:"";s:7:"section";s:12:"social_links";}i:28;a:6:{s:5:"label";s:12:"Twitter Link";s:2:"id";s:20:"foodeez_twitter_link";s:4:"type";s:4:"text";s:4:"desc";s:19:"Enter Twitter link.";s:3:"std";s:0:"";s:7:"section";s:12:"social_links";}i:29;a:6:{s:5:"label";s:14:"Google Plus ID";s:2:"id";s:18:"foodeez_gplus_link";s:4:"type";s:4:"text";s:4:"desc";s:21:"Enter Google plus Id.";s:3:"std";s:0:"";s:7:"section";s:12:"social_links";}i:30;a:6:{s:5:"label";s:13:"Linkedin Link";s:2:"id";s:21:"foodeez_linkedin_link";s:4:"type";s:4:"text";s:4:"desc";s:20:"Enter Linkedin link.";s:3:"std";s:0:"";s:7:"section";s:12:"social_links";}i:31;a:6:{s:5:"label";s:14:"Pinterest Link";s:2:"id";s:22:"foodeez_pinterest_link";s:4:"type";s:4:"text";s:4:"desc";s:21:"Enter Pinterest link.";s:3:"std";s:0:"";s:7:"section";s:12:"social_links";}i:32;a:6:{s:5:"label";s:11:"Flickr Link";s:2:"id";s:19:"foodeez_flickr_link";s:4:"type";s:4:"text";s:4:"desc";s:18:"Enter Flickr link.";s:3:"std";s:0:"";s:7:"section";s:12:"social_links";}i:33;a:6:{s:5:"label";s:15:"Foursquare Link";s:2:"id";s:23:"foodeez_foursquare_link";s:4:"type";s:4:"text";s:4:"desc";s:22:"Enter Foursquare link.";s:3:"std";s:0:"";s:7:"section";s:12:"social_links";}i:34;a:6:{s:5:"label";s:12:"Youtube Link";s:2:"id";s:20:"foodeez_youtube_link";s:4:"type";s:4:"text";s:4:"desc";s:19:"Enter Youtube link.";s:3:"std";s:0:"";s:7:"section";s:12:"social_links";}i:35;a:6:{s:5:"label";s:14:"Copyright Text";s:2:"id";s:17:"foodeez_copyright";s:4:"type";s:8:"textarea";s:4:"desc";s:32:"You can use HTML for links etc..";s:3:"std";s:0:"";s:7:"section";s:14:"footer_section";}}}', 'yes'),
(166, 'option_tree', 'a:36:{s:19:"foodeez_colorpicker";s:7:"#c9ace0";s:16:"foodeez_logo_img";s:0:"";s:16:"foodeez_logo_alt";s:0:"";s:15:"foodeez_favicon";s:0:"";s:22:"foodeez_topbar_contact";s:0:"";s:17:"foodeez_rbtn_link";s:0:"";s:25:"foodeez_frontslider_stype";s:0:"";s:25:"foodeez_innerheader_stype";s:0:"";s:24:"foodeez_blogpage_heading";s:0:"";s:30:"foodeez_fb1_first_part_heading";s:10:"asdknjasdk";s:28:"foodeez_fb1_first_part_image";s:16:"askdnaskjdnakjdn";s:30:"foodeez_fb1_first_part_content";s:17:"asdknajsdkajsndka";s:27:"foodeez_fb1_first_part_link";s:0:"";s:31:"foodeez_fb2_second_part_heading";s:0:"";s:29:"foodeez_fb2_second_part_image";s:0:"";s:31:"foodeez_fb2_second_part_content";s:0:"";s:28:"foodeez_fb2_second_part_link";s:0:"";s:30:"foodeez_fb3_third_part_heading";s:0:"";s:28:"foodeez_fb3_third_part_image";s:0:"";s:30:"foodeez_fb3_third_part_content";s:0:"";s:27:"foodeez_fb3_third_part_link";s:0:"";s:31:"foodeez_fb4_fourth_part_heading";s:0:"";s:29:"foodeez_fb4_fourth_part_image";s:0:"";s:31:"foodeez_fb4_fourth_part_content";s:0:"";s:28:"foodeez_fb4_fourth_part_link";s:0:"";s:26:"foodeez_fullparallax_image";s:0:"";s:25:"foodeez_para_content_left";s:0:"";s:18:"foodeez_fbook_link";s:0:"";s:20:"foodeez_twitter_link";s:0:"";s:18:"foodeez_gplus_link";s:0:"";s:21:"foodeez_linkedin_link";s:0:"";s:22:"foodeez_pinterest_link";s:0:"";s:19:"foodeez_flickr_link";s:0:"";s:23:"foodeez_foursquare_link";s:0:"";s:20:"foodeez_youtube_link";s:0:"";s:17:"foodeez_copyright";s:0:"";}', 'yes'),
(174, 'theme_mods_triton-lite', 'a:2:{i:0;b:0;s:16:"sidebars_widgets";a:2:{s:4:"time";i:1405034911;s:4:"data";a:4:{s:19:"wp_inactive_widgets";a:0:{}s:7:"sidebar";a:0:{}s:11:"mid_sidebar";a:0:{}s:12:"foot_sidebar";N;}}}', 'yes'),
(175, 'trt_options', 'a:36:{s:12:"trt_patterns";s:10:"no_pattern";s:9:"trt_fonts";s:4:"Lora";s:12:"trt_lft_logo";i:1;s:15:"trt_description";i:1;s:8:"trt_foot";s:9:"I am here";s:17:"trt_primtxt_color";s:6:"7F7F7F";s:7:"trt_lay";s:8:"Layout 1";s:10:"trt_fb_url";s:0:"";s:10:"trt_tw_url";s:0:"";s:10:"trt_ms_url";s:0:"";s:11:"trt_ytb_url";s:0:"";s:13:"trt_flckr_url";s:0:"";s:11:"trt_rss_url";s:42:"http://localhost:8888/wordpress/?feed=rss2";s:13:"trt_gplus_url";s:0:"";s:10:"trt_slider";s:10:"Easyslider";s:16:"trt_slider_speed";s:4:"3000";s:11:"trt_num_sld";s:1:"1";s:13:"trt_diss_date";i:1;s:13:"trt_diss_cats";i:1;s:8:"trt_logo";s:0:"";s:7:"trt_fav";s:0:"";s:13:"trt_mid_color";s:0:"";s:14:"trt_head_color";s:0:"";s:14:"trt_foot_color";s:0:"";s:15:"trt_hide_social";i:0;s:11:"trt_hide_tw";i:0;s:11:"trt_hide_fb";i:0;s:11:"trt_hide_ms";i:0;s:12:"trt_hide_rss";i:0;s:14:"trt_hide_flckr";i:0;s:12:"trt_hide_ytb";i:0;s:14:"trt_hide_gplus";i:0;s:13:"trt_diss_logo";i:0;s:12:"trt_diss_sss";i:0;s:12:"trt_diss_fbx";i:0;s:12:"trt_diss_ftw";i:0;}', 'yes'),
(180, 'theme_mods_vantage', 'a:4:{i:0;b:0;s:17:"version_activated";s:6:"1.1.12";s:27:"_theme_settings_current_tab";s:1:"2";s:16:"sidebars_widgets";a:2:{s:4:"time";i:1405121914;s:4:"data";a:4:{s:19:"wp_inactive_widgets";a:0:{}s:9:"sidebar-1";a:0:{}s:14:"sidebar-footer";a:0:{}s:14:"sidebar-header";a:1:{i:0;s:23:"origin_call-to-action-2";}}}}', 'yes'),
(181, 'vantage_theme_settings', 'a:21:{s:10:"logo_image";s:2:"-1";s:16:"logo_header_text";s:6:"Search";s:17:"layout_responsive";b:1;s:12:"layout_bound";s:4:"full";s:15:"layout_masthead";s:12:"logo-in-menu";s:11:"layout_menu";s:0:"";s:13:"layout_footer";s:0:"";s:11:"home_slider";s:4:"demo";s:19:"home_slider_stretch";b:1;s:26:"navigation_use_sticky_menu";b:1;s:22:"navigation_menu_search";b:1;s:32:"navigation_display_scroll_to_top";b:1;s:19:"navigation_post_nav";b:1;s:19:"blog_archive_layout";s:4:"blog";s:20:"blog_archive_content";s:4:"full";s:16:"blog_post_author";b:1;s:14:"blog_post_date";b:1;s:19:"blog_featured_image";b:1;s:24:"blog_featured_image_type";s:5:"large";s:22:"general_site_info_text";s:0:"";s:20:"navigation_home_icon";b:0;}', 'yes'),
(185, 'siteorigin_panels_initial_version', '1.5', 'no'),
(186, 'recently_activated', 'a:1:{s:17:"navbar/navbar.php";i:1405121165;}', 'yes'),
(187, 'siteorigin_panels_home_page_id', '27', 'yes'),
(192, 'metaslider_systemcheck', 'a:2:{s:16:"wordPressVersion";b:0;s:12:"imageLibrary";b:0;}', 'yes'),
(193, 'ml-slider_children', 'a:0:{}', 'yes'),
(205, 'theme_switched_via_customizer', '', 'yes'),
(206, 'widget_siteorigin-panels-gallery', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(207, 'widget_siteorigin-panels-post-content', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(208, 'widget_siteorigin-panels-image', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(209, 'widget_siteorigin-panels-postloop', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(210, 'widget_siteorigin-panels-embedded-video', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(211, 'widget_siteorigin-panels-video', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(212, 'widget_metaslider_widget', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(213, 'widget_origin_animated-image', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(214, 'widget_origin_button', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(215, 'widget_origin_call-to-action', 'a:3:{i:1;a:0:{}i:2;a:7:{s:5:"title";s:6:"ajkdsn";s:8:"subtitle";s:7:"askjdna";s:11:"button_text";s:5:"askdn";s:10:"button_url";s:0:"";s:12:"origin_style";s:19:"simple:light_dashed";s:19:"origin_style_button";s:12:"simple:white";s:17:"button_new_window";b:0;}s:12:"_multiwidget";i:1;}', 'yes'),
(216, 'widget_origin_list', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(217, 'widget_origin_price-box', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(218, 'widget_origin_testimonial', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(219, 'nav_menu_options', 'a:2:{i:0;b:0;s:8:"auto_add";a:1:{i:1;i:5;}}', 'yes'),
(272, 'NavBar_options', 'a:10:{s:8:"position";s:4:"left";s:6:"hotkey";s:1:"e";s:5:"width";i:150;s:4:"hide";b:0;s:7:"bgcolor";s:7:"#ffffff";s:5:"links";a:2:{s:4:"name";a:7:{i:0;s:9:"Dashboard";i:1;s:12:"Add New Post";i:2;s:8:"Comments";i:3;s:6:"Themes";i:4;s:7:"Plugins";i:5;s:2:"hr";i:6;s:14:"NavBar Options";}s:3:"url";a:7:{i:0;s:50:"http://localhost:8888/wordpress/wp-admin/index.php";i:1;s:53:"http://localhost:8888/wordpress/wp-admin/post-new.php";i:2;s:58:"http://localhost:8888/wordpress/wp-admin/edit-comments.php";i:3;s:51:"http://localhost:8888/wordpress/wp-admin/themes.php";i:4;s:52:"http://localhost:8888/wordpress/wp-admin/plugins.php";i:5;s:1:"#";i:6;s:76:"http://localhost:8888/wordpress/wp-admin/options-general.php?page=navbar.php";}}s:7:"navinfo";s:2:"on";s:10:"navcomment";s:2:"on";s:10:"navvisitor";s:2:"on";s:9:"navfilter";s:2:"on";}', 'yes'),
(275, 'rewrite_rules', 'a:67:{s:47:"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$";s:52:"index.php?category_name=$matches[1]&feed=$matches[2]";s:42:"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$";s:52:"index.php?category_name=$matches[1]&feed=$matches[2]";s:35:"category/(.+?)/page/?([0-9]{1,})/?$";s:53:"index.php?category_name=$matches[1]&paged=$matches[2]";s:17:"category/(.+?)/?$";s:35:"index.php?category_name=$matches[1]";s:44:"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?tag=$matches[1]&feed=$matches[2]";s:39:"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?tag=$matches[1]&feed=$matches[2]";s:32:"tag/([^/]+)/page/?([0-9]{1,})/?$";s:43:"index.php?tag=$matches[1]&paged=$matches[2]";s:14:"tag/([^/]+)/?$";s:25:"index.php?tag=$matches[1]";s:45:"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?post_format=$matches[1]&feed=$matches[2]";s:40:"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?post_format=$matches[1]&feed=$matches[2]";s:33:"type/([^/]+)/page/?([0-9]{1,})/?$";s:51:"index.php?post_format=$matches[1]&paged=$matches[2]";s:15:"type/([^/]+)/?$";s:33:"index.php?post_format=$matches[1]";s:48:".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$";s:18:"index.php?feed=old";s:20:".*wp-app\\.php(/.*)?$";s:19:"index.php?error=403";s:18:".*wp-register.php$";s:23:"index.php?register=true";s:32:"feed/(feed|rdf|rss|rss2|atom)/?$";s:27:"index.php?&feed=$matches[1]";s:27:"(feed|rdf|rss|rss2|atom)/?$";s:27:"index.php?&feed=$matches[1]";s:20:"page/?([0-9]{1,})/?$";s:28:"index.php?&paged=$matches[1]";s:41:"comments/feed/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?&feed=$matches[1]&withcomments=1";s:36:"comments/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?&feed=$matches[1]&withcomments=1";s:44:"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:40:"index.php?s=$matches[1]&feed=$matches[2]";s:39:"search/(.+)/(feed|rdf|rss|rss2|atom)/?$";s:40:"index.php?s=$matches[1]&feed=$matches[2]";s:32:"search/(.+)/page/?([0-9]{1,})/?$";s:41:"index.php?s=$matches[1]&paged=$matches[2]";s:14:"search/(.+)/?$";s:23:"index.php?s=$matches[1]";s:47:"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?author_name=$matches[1]&feed=$matches[2]";s:42:"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?author_name=$matches[1]&feed=$matches[2]";s:35:"author/([^/]+)/page/?([0-9]{1,})/?$";s:51:"index.php?author_name=$matches[1]&paged=$matches[2]";s:17:"author/([^/]+)/?$";s:33:"index.php?author_name=$matches[1]";s:69:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$";s:80:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]";s:64:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$";s:80:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]";s:57:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$";s:81:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]";s:39:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$";s:63:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]";s:56:"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$";s:64:"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]";s:51:"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$";s:64:"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]";s:44:"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$";s:65:"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]";s:26:"([0-9]{4})/([0-9]{1,2})/?$";s:47:"index.php?year=$matches[1]&monthnum=$matches[2]";s:43:"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$";s:43:"index.php?year=$matches[1]&feed=$matches[2]";s:38:"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$";s:43:"index.php?year=$matches[1]&feed=$matches[2]";s:31:"([0-9]{4})/page/?([0-9]{1,})/?$";s:44:"index.php?year=$matches[1]&paged=$matches[2]";s:13:"([0-9]{4})/?$";s:26:"index.php?year=$matches[1]";s:27:".?.+?/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:37:".?.+?/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:57:".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:52:".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:52:".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:20:"(.?.+?)/trackback/?$";s:35:"index.php?pagename=$matches[1]&tb=1";s:40:"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$";s:47:"index.php?pagename=$matches[1]&feed=$matches[2]";s:35:"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$";s:47:"index.php?pagename=$matches[1]&feed=$matches[2]";s:28:"(.?.+?)/page/?([0-9]{1,})/?$";s:48:"index.php?pagename=$matches[1]&paged=$matches[2]";s:35:"(.?.+?)/comment-page-([0-9]{1,})/?$";s:48:"index.php?pagename=$matches[1]&cpage=$matches[2]";s:20:"(.?.+?)(/[0-9]+)?/?$";s:47:"index.php?pagename=$matches[1]&page=$matches[2]";s:27:"[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:37:"[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:57:"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:52:"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:52:"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:20:"([^/]+)/trackback/?$";s:31:"index.php?name=$matches[1]&tb=1";s:40:"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:43:"index.php?name=$matches[1]&feed=$matches[2]";s:35:"([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:43:"index.php?name=$matches[1]&feed=$matches[2]";s:28:"([^/]+)/page/?([0-9]{1,})/?$";s:44:"index.php?name=$matches[1]&paged=$matches[2]";s:35:"([^/]+)/comment-page-([0-9]{1,})/?$";s:44:"index.php?name=$matches[1]&cpage=$matches[2]";s:20:"([^/]+)(/[0-9]+)?/?$";s:43:"index.php?name=$matches[1]&page=$matches[2]";s:16:"[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:26:"[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:46:"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:41:"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:41:"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";}', 'yes'),
(294, '_transient_timeout_plugin_slugs', '1405536616', 'no'),
(295, '_transient_plugin_slugs', 'a:7:{i:0;s:19:"akismet/akismet.php";i:1;s:25:"formidable/formidable.php";i:2;s:9:"hello.php";i:3;s:23:"ml-slider/ml-slider.php";i:4;s:17:"navbar/navbar.php";i:5;s:39:"siteorigin-panels/siteorigin-panels.php";i:6;s:55:"super-simple-contact-form/super-simple-contact-form.php";}', 'no'),
(303, 'frm_options', 'O:11:"FrmSettings":29:{s:6:"pubkey";s:0:"";s:7:"privkey";s:0:"";s:8:"re_theme";s:3:"red";s:7:"re_lang";s:2:"en";s:6:"re_msg";s:39:"The reCAPTCHA was not entered correctly";s:12:"custom_style";b:1;s:17:"custom_stylesheet";b:0;s:10:"load_style";s:7:"dynamic";s:4:"menu";s:10:"Formidable";s:7:"mu_menu";i:0;s:15:"preview_page_id";i:63;s:9:"lock_keys";i:0;s:5:"track";i:0;s:8:"use_html";s:1:"1";s:10:"jquery_css";i:0;s:12:"accordion_js";i:0;s:11:"success_msg";s:54:"Your responses were successfully submitted. Thank you!";s:9:"blank_msg";s:27:"This field cannot be blank.";s:10:"unique_msg";s:26:"This value must be unique.";s:11:"invalid_msg";s:66:"There was a problem with your submission. Errors are marked below.";s:10:"failed_msg";s:58:"We''re sorry. It looks like you''ve already submitted that.";s:12:"submit_value";s:6:"Submit";s:9:"login_msg";s:45:"You do not have permission to view this form.";s:16:"admin_permission";s:37:"You do not have permission to do that";s:8:"email_to";s:13:"[admin_email]";s:14:"frm_view_forms";s:13:"administrator";s:14:"frm_edit_forms";s:13:"administrator";s:16:"frm_delete_forms";s:13:"administrator";s:19:"frm_change_settings";s:13:"administrator";}', 'yes'),
(305, 'frm_db_version', '11', 'yes');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(306, '_transient_frm_options', 'O:11:"FrmSettings":29:{s:6:"pubkey";s:0:"";s:7:"privkey";s:0:"";s:8:"re_theme";s:3:"red";s:7:"re_lang";s:2:"en";s:6:"re_msg";s:39:"The reCAPTCHA was not entered correctly";s:12:"custom_style";b:1;s:17:"custom_stylesheet";b:0;s:10:"load_style";s:7:"dynamic";s:4:"menu";s:10:"Formidable";s:7:"mu_menu";i:0;s:15:"preview_page_id";i:63;s:9:"lock_keys";i:0;s:5:"track";i:0;s:8:"use_html";s:1:"1";s:10:"jquery_css";i:0;s:12:"accordion_js";i:0;s:11:"success_msg";s:54:"Your responses were successfully submitted. Thank you!";s:9:"blank_msg";s:27:"This field cannot be blank.";s:10:"unique_msg";s:26:"This value must be unique.";s:11:"invalid_msg";s:66:"There was a problem with your submission. Errors are marked below.";s:10:"failed_msg";s:58:"We''re sorry. It looks like you''ve already submitted that.";s:12:"submit_value";s:6:"Submit";s:9:"login_msg";s:45:"You do not have permission to view this form.";s:16:"admin_permission";s:37:"You do not have permission to do that";s:8:"email_to";s:13:"[admin_email]";s:14:"frm_view_forms";s:13:"administrator";s:14:"frm_edit_forms";s:13:"administrator";s:16:"frm_delete_forms";s:13:"administrator";s:19:"frm_change_settings";s:13:"administrator";}', 'yes'),
(313, '_transient_timeout_frm_all_form_fields_1', '1405383530', 'no'),
(314, '_transient_frm_all_form_fields_1', 'a:7:{i:0;O:8:"stdClass":13:{s:2:"id";s:1:"1";s:9:"field_key";s:6:"qh4icy";s:4:"name";s:4:"Name";s:11:"description";s:5:"First";s:4:"type";s:4:"text";s:13:"default_value";s:0:"";s:7:"options";s:0:"";s:11:"field_order";s:1:"1";s:8:"required";s:1:"1";s:13:"field_options";a:3:{s:5:"blank";s:0:"";s:14:"separate_value";i:0;s:7:"classes";s:14:"frm_first_half";}s:7:"form_id";s:1:"1";s:10:"created_at";s:19:"2014-07-14 17:17:31";s:9:"form_name";s:10:"Contact Us";}i:1;O:8:"stdClass":13:{s:2:"id";s:1:"2";s:9:"field_key";s:6:"ocfup1";s:4:"name";s:4:"Last";s:11:"description";s:4:"Last";s:4:"type";s:4:"text";s:13:"default_value";s:0:"";s:7:"options";s:0:"";s:11:"field_order";s:1:"2";s:8:"required";s:1:"1";s:13:"field_options";a:3:{s:5:"label";s:6:"hidden";s:5:"blank";s:0:"";s:7:"classes";s:13:"frm_last_half";}s:7:"form_id";s:1:"1";s:10:"created_at";s:19:"2014-07-14 17:17:31";s:9:"form_name";s:10:"Contact Us";}i:2;O:8:"stdClass":13:{s:2:"id";s:1:"3";s:9:"field_key";s:6:"29yf4d";s:4:"name";s:5:"Email";s:11:"description";s:0:"";s:4:"type";s:5:"email";s:13:"default_value";s:0:"";s:7:"options";s:0:"";s:11:"field_order";s:1:"3";s:8:"required";s:1:"1";s:13:"field_options";a:3:{s:5:"blank";s:0:"";s:7:"invalid";s:34:"Please enter a valid email address";s:7:"classes";s:8:"frm_full";}s:7:"form_id";s:1:"1";s:10:"created_at";s:19:"2014-07-14 17:17:31";s:9:"form_name";s:10:"Contact Us";}i:3;O:8:"stdClass":13:{s:2:"id";s:1:"4";s:9:"field_key";s:6:"itt5me";s:4:"name";s:7:"Website";s:11:"description";s:0:"";s:4:"type";s:3:"url";s:13:"default_value";s:0:"";s:7:"options";s:0:"";s:11:"field_order";s:1:"4";s:8:"required";s:1:"0";s:13:"field_options";a:3:{s:5:"blank";s:0:"";s:7:"invalid";s:28:"Please enter a valid website";s:7:"classes";s:8:"frm_full";}s:7:"form_id";s:1:"1";s:10:"created_at";s:19:"2014-07-14 17:17:31";s:9:"form_name";s:10:"Contact Us";}i:4;O:8:"stdClass":13:{s:2:"id";s:1:"5";s:9:"field_key";s:6:"e6lis6";s:4:"name";s:7:"Subject";s:11:"description";s:0:"";s:4:"type";s:4:"text";s:13:"default_value";s:0:"";s:7:"options";s:0:"";s:11:"field_order";s:1:"5";s:8:"required";s:1:"1";s:13:"field_options";a:2:{s:5:"blank";s:0:"";s:7:"classes";s:8:"frm_full";}s:7:"form_id";s:1:"1";s:10:"created_at";s:19:"2014-07-14 17:17:31";s:9:"form_name";s:10:"Contact Us";}i:5;O:8:"stdClass":13:{s:2:"id";s:1:"6";s:9:"field_key";s:6:"9jv0r1";s:4:"name";s:7:"Message";s:11:"description";s:0:"";s:4:"type";s:8:"textarea";s:13:"default_value";s:0:"";s:7:"options";s:0:"";s:11:"field_order";s:1:"6";s:8:"required";s:1:"1";s:13:"field_options";a:3:{s:3:"max";s:1:"5";s:5:"blank";s:0:"";s:7:"classes";s:8:"frm_full";}s:7:"form_id";s:1:"1";s:10:"created_at";s:19:"2014-07-14 17:17:31";s:9:"form_name";s:10:"Contact Us";}i:6;O:8:"stdClass":13:{s:2:"id";s:1:"7";s:9:"field_key";s:6:"62n6q3";s:4:"name";s:7:"Captcha";s:11:"description";s:0:"";s:4:"type";s:7:"captcha";s:13:"default_value";s:0:"";s:7:"options";s:0:"";s:11:"field_order";s:1:"7";s:8:"required";s:1:"0";s:13:"field_options";a:4:{s:5:"label";s:4:"none";s:5:"blank";s:0:"";s:14:"clear_on_focus";i:0;s:13:"default_blank";i:0;}s:7:"form_id";s:1:"1";s:10:"created_at";s:19:"2014-07-14 17:17:31";s:9:"form_name";s:10:"Contact Us";}}', 'no'),
(325, '_transient_timeout_frm_all_form_fields_3', '1405384018', 'no'),
(326, '_transient_frm_all_form_fields_3', 'a:6:{i:0;O:8:"stdClass":13:{s:2:"id";s:2:"11";s:9:"field_key";s:7:"qh4icy2";s:4:"name";s:4:"Name";s:11:"description";s:5:"First";s:4:"type";s:4:"text";s:13:"default_value";s:0:"";s:7:"options";s:0:"";s:11:"field_order";s:1:"1";s:8:"required";s:1:"1";s:13:"field_options";a:9:{s:5:"blank";s:27:"This field cannot be blank.";s:14:"separate_value";i:0;s:7:"classes";s:14:"frm_first_half";s:4:"size";s:0:"";s:3:"max";s:0:"";s:5:"label";s:0:"";s:7:"invalid";s:0:"";s:18:"required_indicator";s:1:"*";s:11:"custom_html";s:312:"<div id=\\"frm_field_[id]_container\\" class=\\"\\">\r\n <label for=\\"field_[key]\\" class=\\"\\">[field_name]\r\n <span class=\\"\\"></span>\r\n </label>\r\n [input]\r\n [if description]<div class=\\"\\">[description]</div>[/if description]\r\n [if error]<div class=\\"frm_error\\">[error]</div>[/if error]\r\n</div>";}s:7:"form_id";s:1:"3";s:10:"created_at";s:19:"2014-07-14 18:18:50";s:9:"form_name";s:10:"Contact Us";}i:1;O:8:"stdClass":13:{s:2:"id";s:2:"12";s:9:"field_key";s:7:"ocfup12";s:4:"name";s:4:"Last";s:11:"description";s:4:"Last";s:4:"type";s:4:"text";s:13:"default_value";s:0:"";s:7:"options";s:0:"";s:11:"field_order";s:1:"2";s:8:"required";s:1:"1";s:13:"field_options";a:9:{s:5:"label";s:6:"hidden";s:5:"blank";s:27:"This field cannot be blank.";s:7:"classes";s:13:"frm_last_half";s:4:"size";s:0:"";s:3:"max";s:0:"";s:7:"invalid";s:0:"";s:18:"required_indicator";s:1:"*";s:14:"separate_value";i:0;s:11:"custom_html";s:358:"<div id=\\"frm_field_[id]_container\\" class=\\" [required_class][error_class]\\">\r\n <label for=\\"field_[key]\\" class=\\"\\">[field_name]\r\n <span class=\\"\\">[required_label]</span>\r\n </label>\r\n [input]\r\n [if description]<div class=\\"\\">[description]</div>[/if description]\r\n [if error]<div class=\\"frm_error\\">[error]</div>[/if error]\r\n</div>";}s:7:"form_id";s:1:"3";s:10:"created_at";s:19:"2014-07-14 18:18:50";s:9:"form_name";s:10:"Contact Us";}i:2;O:8:"stdClass":13:{s:2:"id";s:2:"13";s:9:"field_key";s:7:"29yf4d2";s:4:"name";s:5:"Email";s:11:"description";s:0:"";s:4:"type";s:4:"text";s:13:"default_value";s:0:"";s:7:"options";s:0:"";s:11:"field_order";s:1:"3";s:8:"required";s:1:"1";s:13:"field_options";a:9:{s:5:"blank";s:27:"This field cannot be blank.";s:7:"invalid";s:0:"";s:7:"classes";s:8:"frm_full";s:4:"size";s:0:"";s:3:"max";s:0:"";s:5:"label";s:0:"";s:18:"required_indicator";s:1:"*";s:14:"separate_value";i:0;s:11:"custom_html";s:368:"<div id=\\"frm_field_[id]_container\\" class=\\"form-field [required_class][error_class]\\">\r\n <label for=\\"field_[key]\\" class=\\"\\">[field_name]\r\n <span class=\\"\\">[required_label]</span>\r\n </label>\r\n [input]\r\n [if description]<div class=\\"\\">[description]</div>[/if description]\r\n [if error]<div class=\\"frm_error\\">[error]</div>[/if error]\r\n</div>";}s:7:"form_id";s:1:"3";s:10:"created_at";s:19:"2014-07-14 18:18:50";s:9:"form_name";s:10:"Contact Us";}i:3;O:8:"stdClass":13:{s:2:"id";s:2:"14";s:9:"field_key";s:7:"itt5me2";s:4:"name";s:7:"Website";s:11:"description";s:0:"";s:4:"type";s:4:"text";s:13:"default_value";s:0:"";s:7:"options";s:0:"";s:11:"field_order";s:1:"4";s:8:"required";s:1:"0";s:13:"field_options";a:9:{s:5:"blank";s:27:"This field cannot be blank.";s:7:"invalid";s:0:"";s:7:"classes";s:8:"frm_full";s:4:"size";s:0:"";s:3:"max";s:0:"";s:5:"label";s:0:"";s:18:"required_indicator";s:1:"*";s:14:"separate_value";i:0;s:11:"custom_html";s:427:"<div id=\\"frm_field_[id]_container\\" class=\\"frm_form_field form-field [required_class][error_class]\\">\r\n <label for=\\"field_[key]\\" class=\\"frm_primary_label\\">[field_name]\r\n <span class=\\"frm_required\\">[required_label]</span>\r\n </label>\r\n [input]\r\n [if description]<div class=\\"frm_description\\">[description]</div>[/if description]\r\n [if error]<div class=\\"frm_error\\">[error]</div>[/if error]\r\n</div>";}s:7:"form_id";s:1:"3";s:10:"created_at";s:19:"2014-07-14 18:18:50";s:9:"form_name";s:10:"Contact Us";}i:4;O:8:"stdClass":13:{s:2:"id";s:2:"15";s:9:"field_key";s:7:"e6lis62";s:4:"name";s:7:"Subject";s:11:"description";s:0:"";s:4:"type";s:4:"text";s:13:"default_value";s:0:"";s:7:"options";s:0:"";s:11:"field_order";s:1:"5";s:8:"required";s:1:"1";s:13:"field_options";a:9:{s:5:"blank";s:27:"This field cannot be blank.";s:7:"classes";s:8:"frm_full";s:4:"size";s:0:"";s:3:"max";s:0:"";s:5:"label";s:0:"";s:7:"invalid";s:0:"";s:18:"required_indicator";s:1:"*";s:14:"separate_value";i:0;s:11:"custom_html";s:371:"<div id=\\"frm_field_[id]_container\\" class=\\"form-field [required_class][error_class]\\">\r\n <label for=\\"field_[key]\\" class=\\"\\">[field_name]\r\n <span class=\\"frm_required\\">[required_label]</span>\r\n </label>\r\n [input]\r\n [if description]<div class=\\"\\">[description]</div>[/if description]\r\n [if error]<div class=\\"\\">[error]</div>[/if error]\r\n</div>";}s:7:"form_id";s:1:"3";s:10:"created_at";s:19:"2014-07-14 18:18:50";s:9:"form_name";s:10:"Contact Us";}i:5;O:8:"stdClass":13:{s:2:"id";s:2:"16";s:9:"field_key";s:7:"9jv0r12";s:4:"name";s:7:"Message";s:11:"description";s:0:"";s:4:"type";s:8:"textarea";s:13:"default_value";s:0:"";s:7:"options";s:0:"";s:11:"field_order";s:1:"6";s:8:"required";s:1:"1";s:13:"field_options";a:9:{s:3:"max";s:1:"5";s:5:"blank";s:27:"This field cannot be blank.";s:7:"classes";s:8:"frm_full";s:4:"size";s:0:"";s:5:"label";s:0:"";s:7:"invalid";s:0:"";s:18:"required_indicator";s:1:"*";s:14:"separate_value";i:0;s:11:"custom_html";s:355:"<div id=\\"frm_field_[id]_container\\" class=\\"form-field [required_class][error_class]\\">\r\n <label for=\\"field_[key]\\" class=\\"\\">[field_name]\r\n <span class=\\"\\">[required_label]</span>\r\n </label>\r\n [input]\r\n [if description]<div class=\\"\\">[description]</div>[/if description]\r\n [if error]<div class=>[error]</div>[/if error]\r\n</div>";}s:7:"form_id";s:1:"3";s:10:"created_at";s:19:"2014-07-14 18:18:50";s:9:"form_name";s:10:"Contact Us";}}', 'no'),
(341, '_transient_timeout_frm_all_form_fields_4', '1405384334', 'no'),
(342, '_transient_frm_all_form_fields_4', 'a:6:{i:0;O:8:"stdClass":13:{s:2:"id";s:2:"18";s:9:"field_key";s:7:"qh4icy3";s:4:"name";s:4:"Name";s:11:"description";s:5:"First";s:4:"type";s:4:"text";s:13:"default_value";s:0:"";s:7:"options";s:0:"";s:11:"field_order";s:1:"1";s:8:"required";s:1:"1";s:13:"field_options";a:4:{s:5:"blank";s:0:"";s:14:"separate_value";i:0;s:7:"classes";s:14:"frm_first_half";s:11:"custom_html";s:426:"<div id=\\"frm_field_[id]_container\\" class=\\"frm_form_field form-field [required_class][error_class] >\r\n <label for=\\"field_[key]\\" class=\\"frm_primary_label\\">[field_name]\r\n <span class=\\"frm_required\\">[required_label]</span>\r\n </label>\r\n [input]\r\n [if description]<div class=\\"frm_description\\">[description]</div>[/if description]\r\n [if error]<div class=\\"frm_error\\">[error]</div>[/if error]\r\n</div>";}s:7:"form_id";s:1:"4";s:10:"created_at";s:19:"2014-07-14 18:27:25";s:9:"form_name";s:10:"Contact Us";}i:1;O:8:"stdClass":13:{s:2:"id";s:2:"19";s:9:"field_key";s:7:"ocfup13";s:4:"name";s:4:"Last";s:11:"description";s:4:"Last";s:4:"type";s:4:"text";s:13:"default_value";s:0:"";s:7:"options";s:0:"";s:11:"field_order";s:1:"2";s:8:"required";s:1:"1";s:13:"field_options";a:4:{s:5:"label";s:6:"hidden";s:5:"blank";s:0:"";s:7:"classes";s:13:"frm_last_half";s:11:"custom_html";s:427:"<div id=\\"frm_field_[id]_container\\" class=\\"frm_form_field form-field [required_class][error_class]\\">\r\n <label for=\\"field_[key]\\" class=\\"frm_primary_label\\">[field_name]\r\n <span class=\\"frm_required\\">[required_label]</span>\r\n </label>\r\n [input]\r\n [if description]<div class=\\"frm_description\\">[description]</div>[/if description]\r\n [if error]<div class=\\"frm_error\\">[error]</div>[/if error]\r\n</div>";}s:7:"form_id";s:1:"4";s:10:"created_at";s:19:"2014-07-14 18:27:25";s:9:"form_name";s:10:"Contact Us";}i:2;O:8:"stdClass":13:{s:2:"id";s:2:"20";s:9:"field_key";s:7:"29yf4d3";s:4:"name";s:5:"Email";s:11:"description";s:0:"";s:4:"type";s:5:"email";s:13:"default_value";s:0:"";s:7:"options";s:0:"";s:11:"field_order";s:1:"3";s:8:"required";s:1:"1";s:13:"field_options";a:4:{s:5:"blank";s:0:"";s:7:"invalid";s:34:"Please enter a valid email address";s:7:"classes";s:8:"frm_full";s:11:"custom_html";s:427:"<div id=\\"frm_field_[id]_container\\" class=\\"frm_form_field form-field [required_class][error_class]\\">\r\n <label for=\\"field_[key]\\" class=\\"frm_primary_label\\">[field_name]\r\n <span class=\\"frm_required\\">[required_label]</span>\r\n </label>\r\n [input]\r\n [if description]<div class=\\"frm_description\\">[description]</div>[/if description]\r\n [if error]<div class=\\"frm_error\\">[error]</div>[/if error]\r\n</div>";}s:7:"form_id";s:1:"4";s:10:"created_at";s:19:"2014-07-14 18:27:25";s:9:"form_name";s:10:"Contact Us";}i:3;O:8:"stdClass":13:{s:2:"id";s:2:"21";s:9:"field_key";s:7:"itt5me3";s:4:"name";s:7:"Website";s:11:"description";s:0:"";s:4:"type";s:3:"url";s:13:"default_value";s:0:"";s:7:"options";s:0:"";s:11:"field_order";s:1:"4";s:8:"required";s:1:"0";s:13:"field_options";a:4:{s:5:"blank";s:0:"";s:7:"invalid";s:28:"Please enter a valid website";s:7:"classes";s:8:"frm_full";s:11:"custom_html";s:427:"<div id=\\"frm_field_[id]_container\\" class=\\"frm_form_field form-field [required_class][error_class]\\">\r\n <label for=\\"field_[key]\\" class=\\"frm_primary_label\\">[field_name]\r\n <span class=\\"frm_required\\">[required_label]</span>\r\n </label>\r\n [input]\r\n [if description]<div class=\\"frm_description\\">[description]</div>[/if description]\r\n [if error]<div class=\\"frm_error\\">[error]</div>[/if error]\r\n</div>";}s:7:"form_id";s:1:"4";s:10:"created_at";s:19:"2014-07-14 18:27:25";s:9:"form_name";s:10:"Contact Us";}i:4;O:8:"stdClass":13:{s:2:"id";s:2:"22";s:9:"field_key";s:7:"e6lis63";s:4:"name";s:7:"Subject";s:11:"description";s:0:"";s:4:"type";s:4:"text";s:13:"default_value";s:0:"";s:7:"options";s:0:"";s:11:"field_order";s:1:"5";s:8:"required";s:1:"1";s:13:"field_options";a:3:{s:5:"blank";s:0:"";s:7:"classes";s:8:"frm_full";s:11:"custom_html";s:427:"<div id=\\"frm_field_[id]_container\\" class=\\"frm_form_field form-field [required_class][error_class]\\">\r\n <label for=\\"field_[key]\\" class=\\"frm_primary_label\\">[field_name]\r\n <span class=\\"frm_required\\">[required_label]</span>\r\n </label>\r\n [input]\r\n [if description]<div class=\\"frm_description\\">[description]</div>[/if description]\r\n [if error]<div class=\\"frm_error\\">[error]</div>[/if error]\r\n</div>";}s:7:"form_id";s:1:"4";s:10:"created_at";s:19:"2014-07-14 18:27:25";s:9:"form_name";s:10:"Contact Us";}i:5;O:8:"stdClass":13:{s:2:"id";s:2:"23";s:9:"field_key";s:7:"9jv0r13";s:4:"name";s:7:"Message";s:11:"description";s:0:"";s:4:"type";s:8:"textarea";s:13:"default_value";s:0:"";s:7:"options";s:0:"";s:11:"field_order";s:1:"6";s:8:"required";s:1:"1";s:13:"field_options";a:4:{s:3:"max";s:1:"5";s:5:"blank";s:0:"";s:7:"classes";s:8:"frm_full";s:11:"custom_html";s:333:"<div id=\\"frm_field_[id]_container\\" class=\\"frm_form_field form-field [required_class][error_class]\\">\r\n <label for=\\"field_[key]\\" >[field_name]\r\n <span >[required_label]</span>\r\n </label>\r\n [input]\r\n [if description]<div >[description]</div>[/if description]\r\n [if error]<div>[error]</div>[/if error]\r\n</div>";}s:7:"form_id";s:1:"4";s:10:"created_at";s:19:"2014-07-14 18:27:25";s:9:"form_name";s:10:"Contact Us";}}', 'no'),
(375, 'widget_frm_show_form', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(411, '_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a', '1405460954', 'yes'),
(412, '_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:"4463";}s:4:"post";a:3:{s:4:"name";s:4:"Post";s:4:"slug";s:4:"post";s:5:"count";s:4:"2778";}s:6:"plugin";a:3:{s:4:"name";s:6:"plugin";s:4:"slug";s:6:"plugin";s:5:"count";s:4:"2683";}s:5:"admin";a:3:{s:4:"name";s:5:"admin";s:4:"slug";s:5:"admin";s:5:"count";s:4:"2196";}s:5:"posts";a:3:{s:4:"name";s:5:"posts";s:4:"slug";s:5:"posts";s:5:"count";s:4:"2110";}s:7:"sidebar";a:3:{s:4:"name";s:7:"sidebar";s:4:"slug";s:7:"sidebar";s:5:"count";s:4:"1756";}s:6:"google";a:3:{s:4:"name";s:6:"google";s:4:"slug";s:6:"google";s:5:"count";s:4:"1553";}s:7:"twitter";a:3:{s:4:"name";s:7:"twitter";s:4:"slug";s:7:"twitter";s:5:"count";s:4:"1513";}s:8:"comments";a:3:{s:4:"name";s:8:"comments";s:4:"slug";s:8:"comments";s:5:"count";s:4:"1465";}s:6:"images";a:3:{s:4:"name";s:6:"images";s:4:"slug";s:6:"images";s:5:"count";s:4:"1449";}s:4:"page";a:3:{s:4:"name";s:4:"page";s:4:"slug";s:4:"page";s:5:"count";s:4:"1401";}s:9:"shortcode";a:3:{s:4:"name";s:9:"shortcode";s:4:"slug";s:9:"shortcode";s:5:"count";s:4:"1340";}s:5:"image";a:3:{s:4:"name";s:5:"image";s:4:"slug";s:5:"image";s:5:"count";s:4:"1308";}s:8:"facebook";a:3:{s:4:"name";s:8:"Facebook";s:4:"slug";s:8:"facebook";s:5:"count";s:4:"1157";}s:3:"seo";a:3:{s:4:"name";s:3:"seo";s:4:"slug";s:3:"seo";s:5:"count";s:4:"1116";}s:5:"links";a:3:{s:4:"name";s:5:"links";s:4:"slug";s:5:"links";s:5:"count";s:4:"1096";}s:9:"wordpress";a:3:{s:4:"name";s:9:"wordpress";s:4:"slug";s:9:"wordpress";s:5:"count";s:3:"999";}s:7:"gallery";a:3:{s:4:"name";s:7:"gallery";s:4:"slug";s:7:"gallery";s:5:"count";s:3:"955";}s:6:"social";a:3:{s:4:"name";s:6:"social";s:4:"slug";s:6:"social";s:5:"count";s:3:"955";}s:7:"widgets";a:3:{s:4:"name";s:7:"widgets";s:4:"slug";s:7:"widgets";s:5:"count";s:3:"789";}s:3:"rss";a:3:{s:4:"name";s:3:"rss";s:4:"slug";s:3:"rss";s:5:"count";s:3:"782";}s:5:"pages";a:3:{s:4:"name";s:5:"pages";s:4:"slug";s:5:"pages";s:5:"count";s:3:"781";}s:6:"jquery";a:3:{s:4:"name";s:6:"jquery";s:4:"slug";s:6:"jquery";s:5:"count";s:3:"769";}s:5:"email";a:3:{s:4:"name";s:5:"email";s:4:"slug";s:5:"email";s:5:"count";s:3:"766";}s:5:"media";a:3:{s:4:"name";s:5:"media";s:4:"slug";s:5:"media";s:5:"count";s:3:"703";}s:4:"ajax";a:3:{s:4:"name";s:4:"AJAX";s:4:"slug";s:4:"ajax";s:5:"count";s:3:"678";}s:5:"video";a:3:{s:4:"name";s:5:"video";s:4:"slug";s:5:"video";s:5:"count";s:3:"662";}s:10:"javascript";a:3:{s:4:"name";s:10:"javascript";s:4:"slug";s:10:"javascript";s:5:"count";s:3:"651";}s:7:"content";a:3:{s:4:"name";s:7:"content";s:4:"slug";s:7:"content";s:5:"count";s:3:"619";}s:10:"buddypress";a:3:{s:4:"name";s:10:"buddypress";s:4:"slug";s:10:"buddypress";s:5:"count";s:3:"610";}s:5:"photo";a:3:{s:4:"name";s:5:"photo";s:4:"slug";s:5:"photo";s:5:"count";s:3:"592";}s:4:"link";a:3:{s:4:"name";s:4:"link";s:4:"slug";s:4:"link";s:5:"count";s:3:"583";}s:4:"feed";a:3:{s:4:"name";s:4:"feed";s:4:"slug";s:4:"feed";s:5:"count";s:3:"579";}s:5:"login";a:3:{s:4:"name";s:5:"login";s:4:"slug";s:5:"login";s:5:"count";s:3:"579";}s:6:"photos";a:3:{s:4:"name";s:6:"photos";s:4:"slug";s:6:"photos";s:5:"count";s:3:"568";}s:8:"category";a:3:{s:4:"name";s:8:"category";s:4:"slug";s:8:"category";s:5:"count";s:3:"532";}s:7:"youtube";a:3:{s:4:"name";s:7:"youtube";s:4:"slug";s:7:"youtube";s:5:"count";s:3:"525";}s:4:"spam";a:3:{s:4:"name";s:4:"spam";s:4:"slug";s:4:"spam";s:5:"count";s:3:"524";}s:8:"security";a:3:{s:4:"name";s:8:"security";s:4:"slug";s:8:"security";s:5:"count";s:3:"510";}s:5:"share";a:3:{s:4:"name";s:5:"Share";s:4:"slug";s:5:"share";s:5:"count";s:3:"507";}}', 'yes'),
(429, '_transient_timeout_frm_all_form_fields_5', '1405503154', 'no'),
(430, '_transient_frm_all_form_fields_5', 'a:4:{i:0;O:8:"stdClass":13:{s:2:"id";s:2:"25";s:9:"field_key";s:6:"tre988";s:4:"name";s:10:"First Name";s:11:"description";s:0:"";s:4:"type";s:4:"text";s:13:"default_value";s:0:"";s:7:"options";s:0:"";s:11:"field_order";s:1:"0";s:8:"required";s:1:"1";s:13:"field_options";a:11:{s:4:"size";s:2:"50";s:3:"max";s:2:"50";s:5:"label";s:0:"";s:5:"blank";s:27:"This field cannot be blank.";s:18:"required_indicator";s:1:"*";s:7:"invalid";s:0:"";s:14:"separate_value";i:0;s:14:"clear_on_focus";i:0;s:13:"default_blank";i:0;s:7:"classes";s:0:"";s:11:"custom_html";s:413:"<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">\r\n <label for="field_[key]" class="frm_primary_label">[field_name]\r\n <span class="frm_required">[required_label]</span>\r\n </label>\r\n [input]\r\n [if description]<div class="frm_description">[description]</div>[/if description]\r\n [if error]<div class="frm_error">[error]</div>[/if error]\r\n</div>";}s:7:"form_id";s:1:"5";s:10:"created_at";s:19:"2014-07-14 18:33:30";s:9:"form_name";s:10:"Contact Us";}i:1;O:8:"stdClass":13:{s:2:"id";s:2:"26";s:9:"field_key";s:6:"avri73";s:4:"name";s:9:"Last Name";s:11:"description";s:0:"";s:4:"type";s:4:"text";s:13:"default_value";s:0:"";s:7:"options";s:0:"";s:11:"field_order";s:1:"1";s:8:"required";s:1:"1";s:13:"field_options";a:11:{s:4:"size";s:2:"50";s:3:"max";s:2:"50";s:5:"label";s:0:"";s:5:"blank";s:27:"This field cannot be blank.";s:18:"required_indicator";s:1:"*";s:7:"invalid";s:0:"";s:14:"separate_value";i:0;s:14:"clear_on_focus";i:0;s:13:"default_blank";i:0;s:7:"classes";s:0:"";s:11:"custom_html";s:413:"<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">\r\n <label for="field_[key]" class="frm_primary_label">[field_name]\r\n <span class="frm_required">[required_label]</span>\r\n </label>\r\n [input]\r\n [if description]<div class="frm_description">[description]</div>[/if description]\r\n [if error]<div class="frm_error">[error]</div>[/if error]\r\n</div>";}s:7:"form_id";s:1:"5";s:10:"created_at";s:19:"2014-07-14 18:34:17";s:9:"form_name";s:10:"Contact Us";}i:2;O:8:"stdClass":13:{s:2:"id";s:2:"27";s:9:"field_key";s:6:"8zytmj";s:4:"name";s:5:"Email";s:11:"description";s:0:"";s:4:"type";s:4:"text";s:13:"default_value";s:0:"";s:7:"options";s:0:"";s:11:"field_order";s:1:"2";s:8:"required";s:1:"1";s:13:"field_options";a:11:{s:4:"size";s:2:"50";s:3:"max";s:2:"50";s:5:"label";s:0:"";s:5:"blank";s:27:"This field cannot be blank.";s:18:"required_indicator";s:1:"*";s:7:"invalid";s:0:"";s:14:"separate_value";i:0;s:14:"clear_on_focus";i:0;s:13:"default_blank";i:0;s:7:"classes";s:0:"";s:11:"custom_html";s:413:"<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">\r\n <label for="field_[key]" class="frm_primary_label">[field_name]\r\n <span class="frm_required">[required_label]</span>\r\n </label>\r\n [input]\r\n [if description]<div class="frm_description">[description]</div>[/if description]\r\n [if error]<div class="frm_error">[error]</div>[/if error]\r\n</div>";}s:7:"form_id";s:1:"5";s:10:"created_at";s:19:"2014-07-14 18:34:25";s:9:"form_name";s:10:"Contact Us";}i:3;O:8:"stdClass":13:{s:2:"id";s:2:"28";s:9:"field_key";s:6:"gw7ctg";s:4:"name";s:7:"Message";s:11:"description";s:0:"";s:4:"type";s:8:"textarea";s:13:"default_value";s:0:"";s:7:"options";s:0:"";s:11:"field_order";s:1:"3";s:8:"required";s:1:"1";s:13:"field_options";a:11:{s:4:"size";s:4:"51.5";s:3:"max";s:1:"2";s:5:"label";s:0:"";s:5:"blank";s:27:"This field cannot be blank.";s:18:"required_indicator";s:1:"*";s:7:"invalid";s:0:"";s:14:"separate_value";i:0;s:14:"clear_on_focus";i:0;s:13:"default_blank";i:0;s:7:"classes";s:0:"";s:11:"custom_html";s:413:"<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">\r\n <label for="field_[key]" class="frm_primary_label">[field_name]\r\n <span class="frm_required">[required_label]</span>\r\n </label>\r\n [input]\r\n [if description]<div class="frm_description">[description]</div>[/if description]\r\n [if error]<div class="frm_error">[error]</div>[/if error]\r\n</div>";}s:7:"form_id";s:1:"5";s:10:"created_at";s:19:"2014-07-14 18:34:36";s:9:"form_name";s:10:"Contact Us";}}', 'no'),
(431, '_transient_timeout_frm_all_form_fields_2', '1405509704', 'no'),
(432, '_transient_frm_all_form_fields_2', 'a:1:{i:0;O:8:"stdClass":13:{s:2:"id";s:1:"9";s:9:"field_key";s:6:"uwfbkz";s:4:"name";s:13:"Radio Buttons";s:11:"description";s:0:"";s:4:"type";s:5:"radio";s:13:"default_value";s:0:"";s:7:"options";a:5:{i:0;s:7:"Burgers";i:1;s:5:"Steak";i:2;s:14:"Mac and Cheese";i:3;s:5:"Sushi";i:4;s:19:"cake cake cake cake";}s:11:"field_order";s:1:"2";s:8:"required";s:1:"0";s:13:"field_options";a:11:{s:4:"size";s:0:"";s:3:"max";s:0:"";s:5:"label";s:0:"";s:5:"blank";s:27:"This field cannot be blank.";s:18:"required_indicator";s:1:"*";s:7:"invalid";s:0:"";s:14:"separate_value";i:0;s:14:"clear_on_focus";i:0;s:13:"default_blank";i:0;s:7:"classes";s:0:"";s:11:"custom_html";s:433:"<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">\r\n <label class="frm_primary_label">[field_name]\r\n <span class="frm_required">[required_label]</span>\r\n </label>\r\n <div class="frm_opt_container">[input]</div>\r\n [if description]<div class="frm_description">[description]</div>[/if description]\r\n [if error]<div class="frm_error">[error]</div>[/if error]\r\n</div>";}s:7:"form_id";s:1:"2";s:10:"created_at";s:19:"2014-07-14 17:19:21";s:9:"form_name";s:34:"Please vote on the following food:";}}', 'no'),
(433, '_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1405531328', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(434, '_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:51:"\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:25:"http://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, 10 Jul 2014 10:27:22 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"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:42:"http://wordpress.org/?v=4.0-beta1-20140715";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"item";a:10:{i:0;a:6:{s:4:"data";s:45:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:20:"WordPress 4.0 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:55:"http://wordpress.org/news/2014/07/wordpress-4-0-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:64:"http://wordpress.org/news/2014/07/wordpress-4-0-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, 10 Jul 2014 10:17:41 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3248";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.0 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.0, 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:"Helen Hou-Sandi";s: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:4025:"<p>WordPress 4.0 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.0, try the <a href="http://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.0-beta1.zip">download the beta here</a> (zip).</p>\n<p>4.0 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>Previews of <a href="http://codex.wordpress.org/Embeds">embedding via URLs</a></strong> in the visual editor and the “Insert from URL” tab in the media modal. Try pasting a URL (such as a <a href="http://wordpress.tv/">WordPress.tv</a> or YouTube video) onto its own line in the visual editor. (<a href="https://core.trac.wordpress.org/ticket/28195">#28195</a>, <a href="https://core.trac.wordpress.org/ticket/15490">#15490</a>)</li>\n<li>The <strong>Media Library</strong> now has a “grid” view in addition to the existing list view. Clicking on an item takes you into a modal where you can see a larger preview and edit information about that attachment, and you can navigate between items right from the modal without closing it. (<a href="https://core.trac.wordpress.org/ticket/24716">#24716</a>)</li>\n<li>We’re freshening up the <strong>plugin install experience</strong>. You’ll see some early visual changes as well as more information when searching for plugins and viewing details. (<a href="https://core.trac.wordpress.org/ticket/28785">#28785</a>, <a href="https://core.trac.wordpress.org/ticket/27440">#27440</a>)</li>\n<li><strong>Selecting a language</strong> when you run the installation process. (<a href="https://core.trac.wordpress.org/ticket/28577">#28577</a>)</li>\n<li>The <strong>editor</strong> intelligently resizes and its top and bottom bars pin when needed. Browsers don’t like to agree on where to put things like cursors, so if you find a bug here, please also let us know your browser and operating system. (<a href="https://core.trac.wordpress.org/ticket/28328">#28328</a>)</li>\n<li>We’ve made some improvements to how your keyboard and cursor interact with <strong>TinyMCE views</strong> such as the gallery preview. Much like the editor resizing and scrolling improvements, knowing about your setup is particularly important for bug reports here. (<a href="https://core.trac.wordpress.org/ticket/28595">#28595</a>)</li>\n<li><strong>Widgets in the Customizer</strong> are now loaded in a separate panel. (<a href="https://core.trac.wordpress.org/ticket/27406">#27406</a>)</li>\n<li>We’ve also made some changes to some <strong>formatting</strong> functions, so if you see quotes curling in the wrong direction, please file a bug report.</li>\n</ul>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href="http://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="http://core.trac.wordpress.org/tickets/major">a list of known bugs</a> and <a href="http://core.trac.wordpress.org/query?status=closed&group=component&milestone=4.0">everything we’ve fixed</a> so far.</p>\n<p><strong>Developers:</strong> Never fear, we haven’t forgotten you. There’s plenty for you, too – more on that in upcoming posts. In the meantime, check out the <a href="http://make.wordpress.org/core/2014/07/08/customizer-improvements-in-4-0/#customizer-panels">API for panels in the Customizer</a>.</p>\n<p>Happy testing!</p>\n<p><em>Plugins, editor</em><br />\n<em>Media, things in between</em><br />\n<em>Please help look for bugs</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:60:"http://wordpress.org/news/2014/07/wordpress-4-0-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:1;a:6:{s:4:"data";s:42:"\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 3.9.1 Maintenance Release";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:50:"http://wordpress.org/news/2014/05/wordpress-3-9-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:59:"http://wordpress.org/news/2014/05/wordpress-3-9-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, 08 May 2014 18:40:58 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:1:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3241";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:385:"After three weeks and more than 9 million downloads of WordPress 3.9, we’re pleased to announce that WordPress 3.9.1 is now available. This maintenance release fixes 34 bugs in 3.9, including numerous fixes for multisite networks, customizing widgets while previewing themes, and the updated visual editor. We’ve also made some improvements to the new audio/video […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:3077:"<p>After three weeks and more than 9 million downloads of <a title="WordPress 3.9 “Smith”" href="http://wordpress.org/news/2014/04/smith/">WordPress 3.9</a>, we’re pleased to announce that WordPress 3.9.1 is now available.</p>\n<p>This maintenance release fixes 34 bugs in 3.9, including numerous fixes for multisite networks, customizing widgets while previewing themes, and the updated visual editor. We’ve also made some improvements to the new audio/video playlists feature and made some adjustments to improve performance. For a full list of changes, consult the <a href="https://core.trac.wordpress.org/query?milestone=3.9.1">list of tickets</a> and the <a href="https://core.trac.wordpress.org/log/branches/3.9?rev=28353&stop_rev=28154">changelog</a>.</p>\n<p>If you are one of the millions already running WordPress 3.9, we’ve started rolling out automatic background updates for 3.9.1. For sites <a href="http://wordpress.org/plugins/background-update-tester/">that support them</a>, of course.</p>\n<p><a href="http://wordpress.org/download/">Download WordPress 3.9.1</a> or venture over to <strong>Dashboard → Updates</strong> and simply click “Update Now.”</p>\n<p>Thanks to all of these fine individuals for contributing to 3.9.1: <a href="http://profiles.wordpress.org/jorbin">Aaron Jorbin</a>, <a href="http://profiles.wordpress.org/nacin">Andrew Nacin</a>, <a href="http://profiles.wordpress.org/azaozz">Andrew Ozz</a>, <a href="http://profiles.wordpress.org/rzen">Brian Richards</a>, <a href="http://profiles.wordpress.org/ehg">Chris Blower</a>, <a href="http://profiles.wordpress.org/jupiterwise">Corey McKrill</a>, <a href="http://profiles.wordpress.org/danielbachhuber">Daniel Bachhuber</a>, <a href="http://profiles.wordpress.org/ocean90">Dominik Schilling</a>, <a href="http://profiles.wordpress.org/feedmeastraycat">feedmeastraycat</a>, <a href="http://profiles.wordpress.org/gcorne">Gregory Cornelius</a>, <a href="http://profiles.wordpress.org/helen">Helen Hou-Sandi</a>, <a href="http://profiles.wordpress.org/imath">imath</a>, <a href="http://profiles.wordpress.org/avryl">Janneke Van Dorpe</a>, <a href="http://profiles.wordpress.org/jeremyfelt">Jeremy Felt</a>, <a href="http://profiles.wordpress.org/johnbillion">John Blackbourn</a>, <a href="http://profiles.wordpress.org/obenland">Konstantin Obenland</a>, <a href="http://profiles.wordpress.org/lancewillett">Lance Willett</a>, <a href="http://profiles.wordpress.org/m_i_n">m_i_n</a>, <a href="http://profiles.wordpress.org/clorith">Marius Jensen</a>, <a href="http://profiles.wordpress.org/markjaquith">Mark Jaquith</a>, <a href="http://profiles.wordpress.org/dimadin">Milan Dinić</a>, <a href="http://profiles.wordpress.org/celloexpressions">Nick Halsey</a>, <a href="http://profiles.wordpress.org/pavelevap">pavelevap</a>, <a href="http://profiles.wordpress.org/wonderboymusic">Scott Taylor</a>, <a href="http://profiles.wordpress.org/SergeyBiryukov">Sergey Biryukov</a>, and <a href="http://profiles.wordpress.org/westonruter">Weston Ruter</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:55:"http://wordpress.org/news/2014/05/wordpress-3-9-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:2;a:6:{s:4:"data";s:42:"\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 3.9 “Smith”";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:40:"http://wordpress.org/news/2014/04/smith/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:49:"http://wordpress.org/news/2014/04/smith/#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, 16 Apr 2014 18:33:44 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:1:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3154";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:411:"Version 3.9 of WordPress, named “Smith” in honor of jazz organist Jimmy Smith, is available for download or update in your WordPress dashboard. This release features a number of refinements that we hope you’ll love. A smoother media editing experience Improved visual editing The updated visual editor has improved speed, accessibility, and mobile support. You can paste into the […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:23298:"<p>Version 3.9 of WordPress, named “Smith” in honor of jazz organist <a href="http://en.wikipedia.org/wiki/Jimmy_Smith_(musician)">Jimmy Smith</a>, is available <a href="http://wordpress.org/download/">for download</a> or update in your WordPress dashboard. This release features a number of refinements that we hope you’ll love.</p>\n<embed src="//v0.wordpress.com/player.swf?v=1.03" type="application/x-shockwave-flash" width="640" height="360" wmode="direct" seamlesstabbing="true" allowfullscreen="true" allowscriptaccess="always" overstretch="true" flashvars="guid=sAiXhCfV&isDynamicSeeking=true" title=""></embed>\n<h2 class="about-headline-callout" style="text-align: center">A smoother media editing experience</h2>\n<div>\n<p><img class="alignright wp-image-3168" src="//wordpress.org/news/files/2014/04/editor1-300x233.jpg" alt="editor" width="228" height="177" /></p>\n<h3>Improved visual editing</h3>\n<p>The updated visual editor has improved speed, accessibility, and mobile support. You can paste into the visual editor from your word processor without wasting time to clean up messy styling. (Yeah, we’re talking about you, Microsoft Word.)</p>\n</div>\n<div style="clear: both"></div>\n<div>\n<p><img class="alignright wp-image-3170" src="//wordpress.org/news/files/2014/04/image1-300x233.jpg" alt="image" width="228" height="178" /></p>\n<h3>Edit images easily</h3>\n<p>With quicker access to crop and rotation tools, it’s now much easier to edit your images while editing posts. You can also scale images directly in the editor to find just the right fit.</p>\n</div>\n<div style="clear: both"></div>\n<div>\n<p><img class="alignright wp-image-3187" src="//wordpress.org/news/files/2014/04/dragdrop1-300x233.jpg" alt="dragdrop" width="228" height="178" /></p>\n<h3>Drag and drop your images</h3>\n<p>Uploading your images is easier than ever. Just grab them from your desktop and drop them in the editor.</p>\n</div>\n<div style="clear: both"></div>\n<hr />\n<h2 style="text-align: center">Gallery previews</h2>\n<p><img class="aligncenter size-full wp-image-3169" src="//wordpress.org/news/files/2014/04/gallery1.jpg" alt="gallery" width="980" height="550" /></p>\n<p>Galleries display a beautiful grid of images right in the editor, just like they do in your published post.</p>\n<hr />\n<h2 style="text-align: center">Do more with audio and video</h2>\n\n<a href=''http://wordpress.org/news/files/2014/04/AintMisbehavin.mp3''>Ain''t Misbehavin''</a>\n<a href=''http://wordpress.org/news/files/2014/04/DavenportBlues.mp3''>Davenport Blues</a>\n<a href=''http://wordpress.org/news/files/2014/04/JellyRollMorton-BuddyBoldensBlues.mp3''>Buddy Bolden''s Blues</a>\n<a href=''http://wordpress.org/news/files/2014/04/Johnny_Hodges_Orchestra-Squaty_Roo-1941.mp3''>Squaty Roo</a>\n<a href=''http://wordpress.org/news/files/2014/04/Louisiana_Five-Dixie_Blues-1919.mp3''>Dixie Blues</a>\n<a href=''http://wordpress.org/news/files/2014/04/WolverineBlues.mp3''>Wolverine Blues</a>\n\n<p>Images have galleries; now we’ve added simple audio and video playlists, so you can showcase your music and clips.</p>\n<hr />\n<h2 style="text-align: center">Live widget and header previews</h2>\n<div style="width: 692px; max-width: 100%;" class="wp-video"><!--[if lt IE 9]><script>document.createElement(''video'');</script><![endif]-->\n<video class="wp-video-shortcode" id="video-3154-1" width="692" height="448" preload="metadata" controls="controls"><source type="video/mp4" src="//wordpress.org/news/files/2014/04/widgets.mp4?_=1" /><a href="//wordpress.org/news/files/2014/04/widgets.mp4">//wordpress.org/news/files/2014/04/widgets.mp4</a></video></div>\n<p>Add, edit, and rearrange your site’s widgets right in the theme customizer. No “save and surprise” — preview your changes live and only save them when you’re ready.</p>\n<p>The improved header image tool also lets you upload, crop, and manage headers while customizing your theme.</p>\n<hr />\n<h2 style="text-align: center">Stunning new theme browser</h2>\n<p><img class="aligncenter size-full wp-image-3172" src="//wordpress.org/news/files/2014/04/theme1.jpg" alt="theme" width="1003" height="558" /><br />\nLooking for a new theme should be easy and fun. Lose yourself in the boundless supply of free WordPress.org themes with the beautiful new theme browser.</p>\n<hr />\n<h2 style="text-align: center">The Crew</h2>\n<p>This release was led by <a href="http://nacin.com/">Andrew Nacin</a> and <a href="http://www.getsource.net/">Mike Schroder</a>, with the help of these fine individuals. There are 267 contributors with props in this release, a new high:</p>\n<p><a href="http://profiles.wordpress.org/aaroncampbell">Aaron D. Campbell</a>, <a href="http://profiles.wordpress.org/jorbin">Aaron Jorbin</a>, <a href="http://profiles.wordpress.org/kawauso">Adam Harley</a>, <a href="http://profiles.wordpress.org/adamsilverstein">Adam Silverstein</a>, <a href="http://profiles.wordpress.org/adelval">adelval</a>, <a href="http://profiles.wordpress.org/ajay">Ajay</a>, <a href="http://profiles.wordpress.org/akeda">Akeda Bagus</a>, <a href="http://profiles.wordpress.org/xknown">Alex Concha</a>, <a href="http://profiles.wordpress.org/tellyworth">Alex Shiels</a>, <a href="http://profiles.wordpress.org/aliso">Alison Barrett</a>, <a href="http://profiles.wordpress.org/collinsinternet">Allan Collins</a>, <a href="http://profiles.wordpress.org/sabreuse">Amy Hendrix (sabreuse)</a>, <a href="http://profiles.wordpress.org/afercia">Andrea Fercia</a>, <a href="http://profiles.wordpress.org/nacin">Andrew Nacin</a>, <a href="http://profiles.wordpress.org/norcross">Andrew Norcross</a>, <a href="http://profiles.wordpress.org/azaozz">Andrew Ozz</a>, <a href="http://profiles.wordpress.org/rarst">Andrey "Rarst" Savchenko</a>, <a href="http://profiles.wordpress.org/andykeith">Andy Keith</a>, <a href="http://profiles.wordpress.org/andy">Andy Skelton</a>, <a href="http://profiles.wordpress.org/atimmer">Anton Timmermans</a>, <a href="http://profiles.wordpress.org/aubreypwd">Aubrey Portwood</a>, <a href="http://profiles.wordpress.org/barry">Barry</a>, <a href="http://profiles.wordpress.org/toszcze">Bartosz Romanowski</a>, <a href="http://profiles.wordpress.org/bassgang">bassgang</a>, <a href="http://profiles.wordpress.org/bcworkz">bcworkz</a>, <a href="http://profiles.wordpress.org/empireoflight">Ben Dunkle</a>, <a href="http://profiles.wordpress.org/neoxx">Bernhard Riedl</a>, <a href="http://profiles.wordpress.org/bigdawggi">bigdawggi</a>, <a href="http://profiles.wordpress.org/bobbravo2">Bob Gregor</a>, <a href="http://profiles.wordpress.org/bobbingwide">bobbingwide</a>, <a href="http://profiles.wordpress.org/bradt">Brad Touesnard</a>, <a href="http://profiles.wordpress.org/bradparbs">bradparbs</a>, <a href="http://profiles.wordpress.org/bramd">bramd</a>, <a href="http://profiles.wordpress.org/kraftbj">Brandon Kraft</a>, <a href="http://profiles.wordpress.org/brasofilo">brasofilo</a>, <a href="http://profiles.wordpress.org/bravokeyl">bravokeyl</a>, <a href="http://profiles.wordpress.org/bpetty">Bryan Petty</a>, <a href="http://profiles.wordpress.org/cgaffga">cgaffga</a>, <a href="http://profiles.wordpress.org/chiragswadia">Chirag Swadia</a>, <a href="http://profiles.wordpress.org/chouby">Chouby</a>, <a href="http://profiles.wordpress.org/ehg">Chris Blower</a>, <a href="http://profiles.wordpress.org/cmmarslender">Chris Marslender</a>, <a href="http://profiles.wordpress.org/c3mdigital">Chris Olbekson</a>, <a href="http://profiles.wordpress.org/chrisscott">Chris Scott</a>, <a href="http://profiles.wordpress.org/chriseverson">chriseverson</a>, <a href="http://profiles.wordpress.org/chrisguitarguy">chrisguitarguy</a>, <a href="http://profiles.wordpress.org/cfinke">Christopher Finke</a>, <a href="http://profiles.wordpress.org/ciantic">ciantic</a>, <a href="http://profiles.wordpress.org/antorome">Comparativa de Bancos</a>, <a href="http://profiles.wordpress.org/cojennin">Connor Jennings</a>, <a href="http://profiles.wordpress.org/corvannoorloos">Cor van Noorloos</a>, <a href="http://profiles.wordpress.org/corphi">Corphi</a>, <a href="http://profiles.wordpress.org/cramdesign">cramdesign</a>, <a href="http://profiles.wordpress.org/danielbachhuber">Daniel Bachhuber</a>, <a href="http://profiles.wordpress.org/redsweater">Daniel Jalkut (Red Sweater)</a>, <a href="http://profiles.wordpress.org/dannydehaan">Danny de Haan</a>, <a href="http://profiles.wordpress.org/koop">Daryl Koopersmith</a>, <a href="http://profiles.wordpress.org/eightface">Dave Kellam (eightface)</a>, <a href="http://profiles.wordpress.org/dpe415">DaveE</a>, <a href="http://profiles.wordpress.org/davidakennedy">David A. Kennedy</a>, <a href="http://profiles.wordpress.org/davidanderson">David Anderson</a>, <a href="http://profiles.wordpress.org/davidmarichal">David Marichal</a>, <a href="http://profiles.wordpress.org/denis-de-bernardy">Denis de Bernardy</a>, <a href="http://profiles.wordpress.org/dd32">Dion Hulse</a>, <a href="http://profiles.wordpress.org/ocean90">Dominik Schilling</a>, <a href="http://profiles.wordpress.org/dougwollison">Doug Wollison</a>, <a href="http://profiles.wordpress.org/drewapicture">Drew Jaynes</a>, <a href="http://profiles.wordpress.org/drprotocols">DrProtocols</a>, <a href="http://profiles.wordpress.org/dustyf">Dustin Filippini</a>, <a href="http://profiles.wordpress.org/eatingrules">eatingrules</a>, <a href="http://profiles.wordpress.org/plocha">edik</a>, <a href="http://profiles.wordpress.org/eliorivero">Elio Rivero</a>, <a href="http://profiles.wordpress.org/enej">enej</a>, <a href="http://profiles.wordpress.org/ericlewis">Eric Andrew Lewis</a>, <a href="http://profiles.wordpress.org/ericmann">Eric Mann</a>, <a href="http://profiles.wordpress.org/evarlese">Erica Varlese</a>, <a href="http://profiles.wordpress.org/ethitter">Erick Hitter</a>, <a href="http://profiles.wordpress.org/ejdanderson">Evan Anderson</a>, <a href="http://profiles.wordpress.org/fahmiadib">Fahmi Adib</a>, <a href="http://profiles.wordpress.org/fboender">fboender</a>, <a href="http://profiles.wordpress.org/frank-klein">Frank Klein</a>, <a href="http://profiles.wordpress.org/garyc40">Gary Cao</a>, <a href="http://profiles.wordpress.org/garyj">Gary Jones</a>, <a href="http://profiles.wordpress.org/pento">Gary Pendergast</a>, <a href="http://profiles.wordpress.org/genkisan">genkisan</a>, <a href="http://profiles.wordpress.org/soulseekah">Gennady Kovshenin</a>, <a href="http://profiles.wordpress.org/georgestephanis">George Stephanis</a>, <a href="http://profiles.wordpress.org/grahamarmfield">Graham Armfield</a>, <a href="http://profiles.wordpress.org/vancoder">Grant Mangham</a>, <a href="http://profiles.wordpress.org/gcorne">Gregory Cornelius</a>, <a href="http://profiles.wordpress.org/tivnet">Gregory Karpinsky (@tivnet)</a>, <a href="http://profiles.wordpress.org/hakre">hakre</a>, <a href="http://profiles.wordpress.org/hanni">hanni</a>, <a href="http://profiles.wordpress.org/helen">Helen Hou-Sandí</a>, <a href="http://profiles.wordpress.org/ippetkov">ippetkov</a>, <a href="http://profiles.wordpress.org/ipstenu">Ipstenu (Mika Epstein)</a>, <a href="http://profiles.wordpress.org/jdgrimes">J.D. Grimes</a>, <a href="http://profiles.wordpress.org/jackreichert">Jack Reichert</a>, <a href="http://profiles.wordpress.org/_jameslee">jameslee</a>, <a href="http://profiles.wordpress.org/avryl">Janneke Van Dorpe</a>, <a href="http://profiles.wordpress.org/janrenn">janrenn</a>, <a href="http://profiles.wordpress.org/jaycc">JayCC</a>, <a href="http://profiles.wordpress.org/jeffsebring">Jeff Sebring</a>, <a href="http://profiles.wordpress.org/jenmylo">Jen Mylo</a>, <a href="http://profiles.wordpress.org/jeremyfelt">Jeremy Felt</a>, <a href="http://profiles.wordpress.org/jesin">Jesin A</a>, <a href="http://profiles.wordpress.org/jayjdk">Jesper Johansen (jayjdk)</a>, <a href="http://profiles.wordpress.org/jnielsendotnet">jnielsendotnet</a>, <a href="http://profiles.wordpress.org/jartes">Joan Artes</a>, <a href="http://profiles.wordpress.org/joedolson">Joe Dolson</a>, <a href="http://profiles.wordpress.org/joehoyle">Joe Hoyle</a>, <a href="http://profiles.wordpress.org/johnbillion">John Blackbourn</a>, <a href="http://profiles.wordpress.org/johnjamesjacoby">John James Jacoby</a>, <a href="http://profiles.wordpress.org/johnpbloch">John P. Bloch</a>, <a href="http://profiles.wordpress.org/johnregan3">John Regan</a>, <a href="http://profiles.wordpress.org/duck_">Jon Cave</a>, <a href="http://profiles.wordpress.org/jond3r">Jonas Bolinder (jond3r)</a>, <a href="http://profiles.wordpress.org/joostdevalk">Joost de Valk</a>, <a href="http://profiles.wordpress.org/shelob9">Josh Pollock</a>, <a href="http://profiles.wordpress.org/joshuaabenazer">Joshua Abenazer</a>, <a href="http://profiles.wordpress.org/jstraitiff">jstraitiff</a>, <a href="http://profiles.wordpress.org/juliobox">Julio Potier</a>, <a href="http://profiles.wordpress.org/kopepasah">Justin Kopepasah</a>, <a href="http://profiles.wordpress.org/justinsainton">Justin Sainton</a>, <a href="http://profiles.wordpress.org/kadamwhite">K.Adam White</a>, <a href="http://profiles.wordpress.org/trepmal">Kailey (trepmal)</a>, <a href="http://profiles.wordpress.org/kasparsd">Kaspars</a>, <a href="http://profiles.wordpress.org/ryelle">Kelly Dwan</a>, <a href="http://profiles.wordpress.org/kerikae">kerikae</a>, <a href="http://profiles.wordpress.org/kworthington">Kevin Worthington</a>, <a href="http://profiles.wordpress.org/kpdesign">Kim Parsell</a>, <a href="http://profiles.wordpress.org/kwight">Kirk Wight</a>, <a href="http://profiles.wordpress.org/kitchin">kitchin</a>, <a href="http://profiles.wordpress.org/klihelp">klihelp</a>, <a href="http://profiles.wordpress.org/knutsp">Knut Sparhell</a>, <a href="http://profiles.wordpress.org/kovshenin">Konstantin Kovshenin</a>, <a href="http://profiles.wordpress.org/obenland">Konstantin Obenland</a>, <a href="http://profiles.wordpress.org/drozdz">Krzysiek Drozdz</a>, <a href="http://profiles.wordpress.org/lancewillett">Lance Willett</a>, <a href="http://profiles.wordpress.org/leewillis77">Lee Willis</a>, <a href="http://profiles.wordpress.org/lpointet">lpointet</a>, <a href="http://profiles.wordpress.org/ldebrouwer">Luc De Brouwer</a>, <a href="http://profiles.wordpress.org/spmlucas">Lucas Karpiuk</a>, <a href="http://profiles.wordpress.org/lkwdwrd">Luke Woodward</a>, <a href="http://profiles.wordpress.org/mark8barnes">Mark Barnes</a>, <a href="http://profiles.wordpress.org/markjaquith">Mark Jaquith</a>, <a href="http://profiles.wordpress.org/markoheijnen">Marko Heijnen</a>, <a href="http://profiles.wordpress.org/marventus">Marventus</a>, <a href="http://profiles.wordpress.org/iammattthomas">Matt (Thomas) Miklic</a>, <a href="http://profiles.wordpress.org/mjbanks">Matt Banks</a>, <a href="http://profiles.wordpress.org/matt">Matt Mullenweg</a>, <a href="http://profiles.wordpress.org/mboynes">Matthew Boynes</a>, <a href="http://profiles.wordpress.org/mdbitz">Matthew Denton</a>, <a href="http://profiles.wordpress.org/mattheu">Matthew Haines-Young</a>, <a href="http://profiles.wordpress.org/mattonomics">mattonomics</a>, <a href="http://profiles.wordpress.org/mattyrob">mattyrob</a>, <a href="http://profiles.wordpress.org/matveb">Matías Ventura</a>, <a href="http://profiles.wordpress.org/maxcutler">Max Cutler</a>, <a href="http://profiles.wordpress.org/mcadwell">mcadwell</a>, <a href="http://profiles.wordpress.org/melchoyce">Mel Choyce</a>, <a href="http://profiles.wordpress.org/meloniq">meloniq</a>, <a href="http://profiles.wordpress.org/michael-arestad">Michael Arestad</a>, <a href="http://profiles.wordpress.org/michelwppi">Michel - xiligroup dev</a>, <a href="http://profiles.wordpress.org/mcsf">Miguel Fonseca</a>, <a href="http://profiles.wordpress.org/gradyetc">Mike Burns</a>, <a href="http://profiles.wordpress.org/mikehansenme">Mike Hansen</a>, <a href="http://profiles.wordpress.org/mikemanger">Mike Manger</a>, <a href="http://profiles.wordpress.org/mikeschinkel">Mike Schinkel</a>, <a href="http://profiles.wordpress.org/dh-shredder">Mike Schroder</a>, <a href="http://profiles.wordpress.org/mikecorkum">mikecorkum</a>, <a href="http://profiles.wordpress.org/mitchoyoshitaka">mitcho (Michael Yoshitaka Erlewine)</a>, <a href="http://profiles.wordpress.org/batmoo">Mohammad Jangda</a>, <a href="http://profiles.wordpress.org/morganestes">Morgan Estes</a>, <a href="http://profiles.wordpress.org/mor10">Morten Rand-Hendriksen</a>, <a href="http://profiles.wordpress.org/Nao">Naoko Takano</a>, <a href="http://profiles.wordpress.org/alex-ye">Nashwan Doaqan</a>, <a href="http://profiles.wordpress.org/nendeb55">nendeb55</a>, <a href="http://profiles.wordpress.org/celloexpressions">Nick Halsey</a>, <a href="http://profiles.wordpress.org/nicolealleyinteractivecom">Nicole Arnold</a>, <a href="http://profiles.wordpress.org/nikv">Nikhil Vimal (NikV)</a>, <a href="http://profiles.wordpress.org/nivijah">Nivi Jah</a>, <a href="http://profiles.wordpress.org/nofearinc">nofearinc</a>, <a href="http://profiles.wordpress.org/nunomorgadinho">Nuno Morgadinho</a>, <a href="http://profiles.wordpress.org/olivm">olivM</a>, <a href="http://profiles.wordpress.org/jbkkd">Omer Korner</a>, <a href="http://profiles.wordpress.org/originalexe">OriginalEXE</a>, <a href="http://profiles.wordpress.org/oso96_2000">oso96_2000</a>, <a href="http://profiles.wordpress.org/patricknami">patricknami</a>, <a href="http://profiles.wordpress.org/pbearne">Paul Bearne</a>, <a href="http://profiles.wordpress.org/djpaul">Paul Gibbs</a>, <a href="http://profiles.wordpress.org/paulwilde">Paul Wilde</a>, <a href="http://profiles.wordpress.org/pavelevap">pavelevap</a>, <a href="http://profiles.wordpress.org/westi">Peter Westwood</a>, <a href="http://profiles.wordpress.org/philiparthurmoore">Philip Arthur Moore</a>, <a href="http://profiles.wordpress.org/mordauk">Pippin Williamson</a>, <a href="http://profiles.wordpress.org/nprasath002">Prasath Nadarajah</a>, <a href="http://profiles.wordpress.org/prettyboymp">prettyboymp</a>, <a href="http://profiles.wordpress.org/raamdev">Raam Dev</a>, <a href="http://profiles.wordpress.org/rachelbaker">Rachel Baker</a>, <a href="http://profiles.wordpress.org/mauryaratan">Ram Ratan Maurya</a>, <a href="http://profiles.wordpress.org/ramonchiara">ramonchiara</a>, <a href="http://profiles.wordpress.org/ounziw">Rescuework Support</a>, <a href="http://profiles.wordpress.org/rhyswynne">Rhys Wynne</a>, <a href="http://profiles.wordpress.org/ricardocorreia">Ricardo Correia</a>, <a href="http://profiles.wordpress.org/theorboman">Richard Sweeney</a>, <a href="http://profiles.wordpress.org/iamfriendly">Richard Tape</a>, <a href="http://profiles.wordpress.org/richard2222">richard2222</a>, <a href="http://profiles.wordpress.org/rickalee">Ricky Lee Whittemore</a>, <a href="http://profiles.wordpress.org/miqrogroove">Robert Chapin</a>, <a href="http://profiles.wordpress.org/robmiller">robmiller</a>, <a href="http://profiles.wordpress.org/rodrigosprimo">Rodrigo Primo</a>, <a href="http://profiles.wordpress.org/romaimperator">romaimperator</a>, <a href="http://profiles.wordpress.org/roothorick">roothorick</a>, <a href="http://profiles.wordpress.org/ruudjoyo">ruud@joyo</a>, <a href="http://profiles.wordpress.org/ryan">Ryan Boren</a>, <a href="http://profiles.wordpress.org/rmccue">Ryan McCue</a>, <a href="http://profiles.wordpress.org/salcode">Sal Ferrarello</a>, <a href="http://profiles.wordpress.org/otto42">Samuel Wood (Otto)</a>, <a href="http://profiles.wordpress.org/sandyr">Sandeep</a>, <a href="http://profiles.wordpress.org/scottlee">Scott Lee</a>, <a href="http://profiles.wordpress.org/coffee2code">Scott Reilly</a>, <a href="http://profiles.wordpress.org/wonderboymusic">Scott Taylor</a>, <a href="http://profiles.wordpress.org/greglone">ScreenfeedFr</a>, <a href="http://profiles.wordpress.org/scribu">scribu</a>, <a href="http://profiles.wordpress.org/sdasse">sdasse</a>, <a href="http://profiles.wordpress.org/bootsz">Sean Butze</a>, <a href="http://profiles.wordpress.org/seanchayes">Sean Hayes</a>, <a href="http://profiles.wordpress.org/nessworthy">Sean Nessworthy</a>, <a href="http://profiles.wordpress.org/sergeybiryukov">Sergey Biryukov</a>, <a href="http://profiles.wordpress.org/shahpranaf">shahpranaf</a>, <a href="http://profiles.wordpress.org/shaunandrews">Shaun Andrews</a>, <a href="http://profiles.wordpress.org/shinichin">ShinichiN</a>, <a href="http://profiles.wordpress.org/pross">Simon Prosser</a>, <a href="http://profiles.wordpress.org/simonwheatley">Simon Wheatley</a>, <a href="http://profiles.wordpress.org/siobhan">Siobhan</a>, <a href="http://profiles.wordpress.org/siobhyb">Siobhan Bamber (siobhyb)</a>, <a href="http://profiles.wordpress.org/sirzooro">sirzooro</a>, <a href="http://profiles.wordpress.org/solarissmoke">solarissmoke</a>, <a href="http://profiles.wordpress.org/sonjanyc">sonjanyc</a>, <a href="http://profiles.wordpress.org/spencerfinnell">Spencer Finnell</a>, <a href="http://profiles.wordpress.org/piontkowski">Spencer Piontkowski</a>, <a href="http://profiles.wordpress.org/stephcook22">stephcook22</a>, <a href="http://profiles.wordpress.org/netweb">Stephen Edgar</a>, <a href="http://profiles.wordpress.org/stephenharris">Stephen Harris</a>, <a href="http://profiles.wordpress.org/sbruner">Steve Bruner</a>, <a href="http://profiles.wordpress.org/stevenkword">Steven Word</a>, <a href="http://profiles.wordpress.org/miyauchi">Takayuki Miyauchi</a>, <a href="http://profiles.wordpress.org/tanner-m">Tanner Moushey</a>, <a href="http://profiles.wordpress.org/tlovett1">Taylor Lovett</a>, <a href="http://profiles.wordpress.org/tbrams">tbrams</a>, <a href="http://profiles.wordpress.org/tobiasbg">TobiasBg</a>, <a href="http://profiles.wordpress.org/tomauger">Tom Auger</a>, <a href="http://profiles.wordpress.org/willmot">Tom Willmot</a>, <a href="http://profiles.wordpress.org/topher1kenobe">Topher</a>, <a href="http://profiles.wordpress.org/topquarky">topquarky</a>, <a href="http://profiles.wordpress.org/zodiac1978">Torsten Landsiedel</a>, <a href="http://profiles.wordpress.org/toru">Toru</a>, <a href="http://profiles.wordpress.org/wpsmith">Travis Smith</a>, <a href="http://profiles.wordpress.org/umeshsingla">Umesh Kumar</a>, <a href="http://profiles.wordpress.org/undergroundnetwork">undergroundnetwork</a>, <a href="http://profiles.wordpress.org/varunagw">VarunAgw</a>, <a href="http://profiles.wordpress.org/wawco">wawco</a>, <a href="http://profiles.wordpress.org/westonruter">Weston Ruter</a>, <a href="http://profiles.wordpress.org/wokamoto">wokamoto</a>, <a href="http://profiles.wordpress.org/xsonic">xsonic</a>, <a href="http://profiles.wordpress.org/yoavf">Yoav Farhi</a>, <a href="http://profiles.wordpress.org/yurivictor">Yuri Victor</a>, <a href="http://profiles.wordpress.org/zbtirrell">Zach Tirrell</a>, and <a href="http://profiles.wordpress.org/vanillalounge">Ze Fontainhas</a>. Also thanks to <a href="http://michaelpick.wordpress.com/">Michael Pick</a> for producing the release video.</p>\n<p>If you want to follow along or help out, check out <a href="http://make.wordpress.org/">Make WordPress</a> and our <a href="http://make.wordpress.org/core/">core development blog</a>. Thanks for choosing WordPress. See you soon for version 4.0!</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:45:"http://wordpress.org/news/2014/04/smith/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:33:"WordPress 3.9 Release Candidate 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:68:"http://wordpress.org/news/2014/04/wordpress-3-9-release-candidate-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:77:"http://wordpress.org/news/2014/04/wordpress-3-9-release-candidate-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:"Tue, 15 Apr 2014 09:47: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:8:"category";a:2:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3151";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:356:"The second release candidate for WordPress 3.9 is now available for testing. If you haven’t tested 3.9 yet, you’re running out of time! We made about five dozen changes since the first release candidate, and those changes are all helpfully summarized in our weekly post on the development blog. Probably the biggest fixes are to live […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s: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:2273:"<p>The second release candidate for WordPress 3.9 is now available for testing.</p>\n<p>If you haven’t tested 3.9 yet, you’re running out of time! We made about five dozen changes since the <a title="WordPress 3.9 Release Candidate" href="//wordpress.org/news/2014/04/wordpress-3-9-release-candidate/">first release candidate</a>, and those changes are all helpfully summarized <a href="//make.wordpress.org/core/?p=10237">in our weekly post</a> on the development blog. Probably the biggest fixes are to live widget previews and the new theme browser, along with some extra TinyMCE compatibility and some RTL fixes.</p>\n<p><strong>Plugin authors:</strong> Could you test your plugins against 3.9, and if they’re compatible, make sure they are marked as tested up to 3.9? It only takes a few minutes and this really helps make launch easier. Be sure to follow along the core development blog; we’ve been posting <a href="//make.wordpress.org/core/tag/3-9-dev-notes/">notes for developers for 3.9</a>. (For example: <a href="//make.wordpress.org/core/2014/04/15/html5-galleries-captions-in-wordpress-3-9/">HTML5</a>, <a href="//make.wordpress.org/core/2014/04/14/symlinked-plugins-in-wordpress-3-9/">symlinks</a>, <a href="//make.wordpress.org/core/2014/04/07/mysql-in-wordpress-3-9/">MySQL</a>, <a href="//make.wordpress.org/core/2014/04/11/plupload-2-x-in-wordpress-3-9/">Plupload</a>.)</p>\n<p>To test WordPress 3.9 RC2, try the <a href="//wordpress.org/extend/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href="//wordpress.org/wordpress-3.9-RC2.zip">download the release candidate here</a> (zip). If you’d like to learn more about what’s new in WordPress 3.9, visit the nearly complete About screen in your dashboard (<strong><img src="//i0.wp.com/core.svn.wordpress.org/branches/3.6/wp-content/themes/twentyten/images/wordpress.png?w=692" alt="" width="16" height="16" /> → About</strong> in the toolbar) and also check out <a title="WordPress 3.9 Beta 1" href="//wordpress.org/news/2014/03/wordpress-3-9-beta-1/">the Beta 1 post</a>.</p>\n<p><em>This is for testing,</em><br />\n<em>so not recommended for<br />\nproduction sites—yet.</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:73:"http://wordpress.org/news/2014/04/wordpress-3-9-release-candidate-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:4;a:6:{s:4:"data";s:42:"\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 3.8.3 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:50:"http://wordpress.org/news/2014/04/wordpress-3-8-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:59:"http://wordpress.org/news/2014/04/wordpress-3-8-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:"Mon, 14 Apr 2014 19:29:13 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:1:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3145";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:338:"WordPress 3.8.3 is now available to fix a small but unfortunate bug in the WordPress 3.8.2 security release. The “Quick Draft” tool on the dashboard screen was broken in the 3.8.2 update. If you tried to use it, your draft would disappear and it wouldn’t save. While we doubt anyone was writing a novella using […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:2339:"<p>WordPress 3.8.3 is now available to fix a small but unfortunate bug in the <a title="WordPress 3.8.2 Security Release" href="http://wordpress.org/news/2014/04/wordpress-3-8-2/">WordPress 3.8.2 security release</a>.</p>\n<p>The “Quick Draft” tool on the dashboard screen was broken in the 3.8.2 update. If you tried to use it, your draft would disappear and it wouldn’t save. While we doubt anyone was writing a novella using this tool, <em>any</em> loss of content is unacceptable to us.</p>\n<p>We recognize how much trust you place in us to safeguard your content, and we take this responsibility very seriously. We’re sorry we let you down.</p>\n<p>We’ve all lost words we’ve written before, like an email thanks to a cat on the keyboard or a term paper to a blue screen of death. Over the last few WordPress releases, we’ve made a number of improvements to features like autosaves and revisions. With revisions, an old edit can always be restored. We’re trying our hardest to save your content somewhere even if your power goes out or your browser crashes. We even monitor your internet connection and prevent you from hitting that “Publish” button at the exact moment the coffee shop Wi-Fi has a hiccup.</p>\n<p>It’s <em>possible</em> that the quick draft you lost last week is still in the database, and just hidden from view. As an added complication, these “discarded drafts” normally get deleted after seven days, and it’s already been six days since the release. If we were able to rescue your draft, you’ll see it on the “All Posts” screen after you update to 3.8.3. (We’ll also be pushing 3.8.3 out as a background update, so you may just see a draft appear.)</p>\n<p>So, if you tried to jot down a quick idea last week, I hope WordPress has recovered it for you. Maybe it’ll turn into that novella.</p>\n<p><a href="http://wordpress.org/download/">Download WordPress 3.8.3</a> or click “Update Now” on Dashboard → Updates.</p>\n<p><em>This affected version 3.7.2 as well, so we’re pushing a 3.7.3 to these installs, but we’d encourage you to update to the latest and greatest.</em></p>\n<hr />\n<p><em>Now for some good news:<br />\nWordPress 3.9 is near.<br />\nExpect it this week</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:55:"http://wordpress.org/news/2014/04/wordpress-3-8-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:5;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 3.9 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:66:"http://wordpress.org/news/2014/04/wordpress-3-9-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:75:"http://wordpress.org/news/2014/04/wordpress-3-9-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:"Tue, 08 Apr 2014 21:05:21 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3129";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:338:"As teased earlier, the first release candidate for WordPress 3.9 is now available for testing! We hope to ship WordPress 3.9 next week, but we need your help to get there. If you haven’t tested 3.9 yet, there’s no time like the present. (Please, not on a production site, unless you’re adventurous.) To test WordPress 3.9 […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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:2967:"<p><a href="//wordpress.org/news/2014/04/wordpress-3-8-2/">As teased earlier</a>, the first release candidate for WordPress 3.9 is now available for testing!</p>\n<p>We hope to ship WordPress 3.9 <em>next week</em>, but we need your help to get there. If you haven’t tested 3.9 yet, there’s no time like the present. (Please, not on a production site, unless you’re adventurous.)</p>\n<p>To test WordPress 3.9 RC1, try the <a href="//wordpress.org/extend/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href="//wordpress.org/wordpress-3.9-RC1.zip">download the release candidate here</a> (zip). If you’d like to learn more about what’s new in WordPress 3.9, visit the work-in-progress About screen in your dashboard (<strong><img src="//i0.wp.com/core.svn.wordpress.org/branches/3.6/wp-content/themes/twentyten/images/wordpress.png?w=692" alt="" width="16" height="16" /> → About</strong> in the toolbar) and check out <a title="WordPress 3.9 Beta 1" href="//wordpress.org/news/2014/03/wordpress-3-9-beta-1/">the Beta 1 post</a>.</p>\n<p><strong>Think you’ve found a bug? </strong>Please post to the <a href="//wordpress.org/support/forum/alphabeta/">Alpha/Beta area in the support forums</a>. If any known issues come up, you’ll be able to <a href="//core.trac.wordpress.org/report/5">find them here</a>.</p>\n<p><strong>If you’re a plugin author</strong>, there are two important changes in particular to be aware of:</p>\n<ul>\n<li>TinyMCE received a major update, to version 4.0. Any editor plugins written for TinyMCE 3.x might require some updates. (If things broke, we’d like to hear about them so we can make adjustments.) For more, see TinyMCE’s <a href="http://www.tinymce.com/wiki.php/Tutorial:Migration_guide_from_3.x">migration guide</a> and <a href="http://www.tinymce.com/wiki.php/api4:index">API documentation</a>, and the notes on the <a href="//make.wordpress.org/core/2014/01/18/tinymce-4-0-is-in-core/">core development blog</a>.</li>\n<li>WordPress 3.9 now uses the MySQLi Improved extension for sites running PHP 5.5. Any plugins that made direct calls to <code>mysql_*</code> functions will experience some problems on these sites. For more information, see the notes on the <a href="//make.wordpress.org/core/2014/04/07/mysql-in-wordpress-3-9/">core development blog</a>.</li>\n</ul>\n<p>Be sure to follow along the core development blog, where we will be continuing to post <a href="//make.wordpress.org/core/tag/3-9-dev-notes/">notes for developers for 3.9</a>. (For example, read <a href="//make.wordpress.org/core/2014/03/27/masonry-in-wordpress-3-9/">this</a> if you are using Masonry in your theme.) And please, please update your plugin’s <em>Tested up to</em> version in the readme to 3.9 before April 16.</p>\n<p><em>Release candidate<br />\nThis haiku’s the easy one<br />\n3.9 is near</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:71:"http://wordpress.org/news/2014/04/wordpress-3-9-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: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:32:"WordPress 3.8.2 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:50:"http://wordpress.org/news/2014/04/wordpress-3-8-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:59:"http://wordpress.org/news/2014/04/wordpress-3-8-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:"Tue, 08 Apr 2014 19:04:44 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Security";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3124";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:355:"WordPress 3.8.2 is now available. This is an important security release for all previous versions and we strongly encourage you to update your sites immediately. This releases fixes a weakness that could let an attacker force their way into your site by forging authentication cookies. This was discovered and fixed by Jon Cave of the WordPress […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"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:2272:"<p>WordPress 3.8.2 is now available. This is an important security release for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>This releases fixes a weakness that could let an attacker force their way into your site by forging authentication cookies. This was discovered and fixed by <a href="http://joncave.co.uk/">Jon Cave</a> of the WordPress security team.</p>\n<p>It also contains a fix to prevent a user with the Contributor role from improperly publishing posts. Reported by <a href="http://edik.ch/">edik</a>.</p>\n<p>This release also fixes nine bugs and contains three other security hardening changes:</p>\n<ul>\n<li>Pass along additional information when processing pingbacks to help hosts identify potentially abusive requests.</li>\n<li>Fix a low-impact SQL injection by trusted users. Reported by <a href="http://www.dxw.com/">Tom Adams</a> of dxw.</li>\n<li>Prevent possible cross-domain scripting through Plupload, the third-party library WordPress uses for uploading files. Reported by <a href="http://szgru.website.pl/">Szymon Gruszecki</a>.</li>\n</ul>\n<p>We appreciated <a href="http://codex.wordpress.org/FAQ_Security">responsible disclosure</a> of these security issues directly to our security team. For more information on all of the changes, see the <a href="http://codex.wordpress.org/Version_3.8.2">release notes</a> or consult <a href="https://core.trac.wordpress.org/log/branches/3.8?rev=28057&stop_rev=27024">the list of changes</a>.</p>\n<p><a href="http://wordpress.org/download/">Download WordPress 3.8.2</a> or venture over to <strong>Dashboard → Updates</strong> and simply click “Update Now.”</p>\n<p>Sites that support automatic background updates will be updated to WordPress 3.8.2 within 12 hours. If you are still on WordPress 3.7.1, you will be updated to 3.7.2, which contains the same security fixes as 3.8.2. We don’t support older versions, so please update to 3.8.2 for the latest and greatest.</p>\n<p>Already testing WordPress 3.9? The first release candidate is <a href="https://wordpress.org/wordpress-3.9-RC1.zip">now available</a> (zip) and it contains these security fixes. Look for a full announcement later today; we expect to release 3.9 next week.</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:55:"http://wordpress.org/news/2014/04/wordpress-3-8-2/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:7;a:6:{s:4:"data";s: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:20:"WordPress 3.9 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:55:"http://wordpress.org/news/2014/03/wordpress-3-9-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:64:"http://wordpress.org/news/2014/03/wordpress-3-9-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:"Sat, 29 Mar 2014 13:15:10 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3106";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:373:"The third (and maybe last) beta of WordPress 3.9 is now available for download. Beta 3 includes more than 200 changes, including: New features like live widget previews and the new theme installer are now more ready for prime time, so check ‘em out. UI refinements when editing images and when working with media in the editor. We’ve also brought […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:2668:"<p>The third (and maybe last) beta of WordPress 3.9 is now available for download.</p>\n<p>Beta 3 includes more than 200 <a href="https://core.trac.wordpress.org/log?rev=27850&stop_rev=27639&limit=300">changes</a>, including:</p>\n<ul>\n<li>New features like live widget previews and the new theme installer are now more ready for prime time, so check ‘em out.</li>\n<li>UI refinements when editing images and when working with media in the editor. We’ve also brought back some of the advanced display settings for images.</li>\n<li>If you want to test out audio and video playlists, the links will appear in the media manager once you’ve uploaded an audio or video file.</li>\n<li>For theme developers, we’ve added HTML5 caption support (<a class="reopened ticket" title="task (blessed): HTML5 captions (reopened)" href="https://core.trac.wordpress.org/ticket/26642">#26642</a>) to match the new gallery support (<a class="closed ticket" title="enhancement: HTML5 Galleries (closed: fixed)" href="https://core.trac.wordpress.org/ticket/26697">#26697</a>).</li>\n<li>The formatting function that turns straight quotes into smart quotes (among other things) underwent some changes to drastically speed it up, so let us know if you see anything weird.</li>\n</ul>\n<p><strong>We need your help</strong>. We’re still aiming for an April release, which means the next week will be critical for identifying and squashing bugs. If you’re just joining us, please see <a href="https://wordpress.org/news/2014/03/wordpress-3-9-beta-1/">the Beta 1 announcement post</a> for what to look out for.</p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href="http://wordpress.org/support/forum/alphabeta">Alpha/Beta area</a> in the support forums, where friendly moderators are standing by. <b>Plugin developers</b><strong>,</strong> if you haven’t tested WordPress 3.9 yet, now is the time — and be sure to update the “tested up to” version for your plugins so they’re listed as compatible with 3.9.</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 3.9, try the <a href="http://wordpress.org/extend/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href="http://wordpress.org/wordpress-3.9-beta3.zip">download the beta here</a> (zip).</p>\n<p><em>WordPress 3.9<br />\nLet’s make the date official<br />\nIt’s April 16</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:60:"http://wordpress.org/news/2014/03/wordpress-3-9-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:8;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:20:"WordPress 3.9 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:55:"http://wordpress.org/news/2014/03/wordpress-3-9-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:64:"http://wordpress.org/news/2014/03/wordpress-3-9-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, 20 Mar 2014 05:01:25 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3101";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:309:"WordPress 3.9 Beta 2 is now available for testing! We’ve made more than a hundred changes since Beta 1, but we still need your help if we’re going to hit our goal of an April release. For what to look out for, please head on over to the Beta 1 announcement post. Some of the changes in […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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:1901:"<p>WordPress 3.9 Beta 2 is now available for testing!</p>\n<p>We’ve made more than a hundred <a href="https://core.trac.wordpress.org/log?rev=27639&stop_rev=27500&limit=200">changes</a> since Beta 1, but we still need your help if we’re going to hit our goal of an April release. For what to look out for, please head on over to <a href="https://wordpress.org/news/2014/03/wordpress-3-9-beta-1/">the Beta 1 announcement post</a>. Some of the changes in Beta 2 include:</p>\n<ul>\n<li>Rendering of embedded audio and video players directly in the visual editor.</li>\n<li>Visual and functional improvements to the editor, the media manager, and theme installer.</li>\n<li>Various bug fixes to TinyMCE, the software behind the visual editor.</li>\n<li>Lots of fixes to widget management in the theme customizer.</li>\n</ul>\n<p>As always,<strong> if you think you’ve found a bug</strong>, you can post to the <a href="http://wordpress.org/support/forum/alphabeta">Alpha/Beta area</a> in the support forums. Or, 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="http://core.trac.wordpress.org/tickets/major">a list of known bugs</a> and <a href="http://core.trac.wordpress.org/query?status=closed&group=component&milestone=3.9">everything we’ve fixed</a> so far.</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 3.9, try the <a href="http://wordpress.org/extend/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href="http://wordpress.org/wordpress-3.9-beta2.zip">download the beta here</a> (zip).</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:60:"http://wordpress.org/news/2014/03/wordpress-3-9-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: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:20:"WordPress 3.9 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:55:"http://wordpress.org/news/2014/03/wordpress-3-9-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:64:"http://wordpress.org/news/2014/03/wordpress-3-9-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:"Tue, 11 Mar 2014 13:42: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:"category";a:2:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3083";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:"I’m excited to announce that the first beta of WordPress 3.9 is now available for testing. WordPress 3.9 is due out next month — but in order to hit that goal, we need your help testing all of the goodies we’ve added: We updated TinyMCE, the software powering the visual editor, to the latest version. […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:6065:"<p>I’m excited to announce that the <strong>first beta of WordPress 3.9</strong> is now available for testing.</p>\n<p>WordPress 3.9 is due out next month — but in order to hit that goal, <strong>we need your help</strong> testing all of the goodies we’ve added:</p>\n<ul>\n<li>We updated TinyMCE, the software powering the visual editor, to the latest version. Be on the lookout for cleaner markup. Also try the new paste handling — if you paste in a block of text from Microsoft Word, for example, it will no longer come out terrible. (The “Paste from Word” button you probably never noticed has been removed.) It’s possible some plugins that added stuff to the visual editor (like a new toolbar button) no longer work, so we’d like to hear about them (<a href="https://core.trac.wordpress.org/ticket/24067">#24067</a>). (And be sure to <a href="http://wordpress.org/support/">open a support thread</a> for the plugin author.)</li>\n<li>We’ve added <strong>widget management to live previews</strong> (the customizer). Please test editing, adding, and rearranging widgets! (<a href="https://core.trac.wordpress.org/ticket/27112">#27112</a>) We’ve also added the ability to upload, crop, and manage header images, without needing to leave the preview. (<a href="https://core.trac.wordpress.org/ticket/21785">#21785</a>)</li>\n<li>We brought 3.8’s beautiful new theme browsing experience to the <strong>theme installer</strong>. Check it out! (<a title="View ticket" href="https://core.trac.wordpress.org/ticket/27055">#27055</a>)</li>\n<li><strong>Galleries</strong> now receive a live preview in the editor. Upload some photos and insert a gallery to see this in action. (<a href="https://core.trac.wordpress.org/ticket/26959">#26959</a>)</li>\n<li>You can now <strong>drag-and-drop</strong> images directly onto the editor to upload them. It can be a bit finicky, so try it and help us work out the kinks. (<a href="https://core.trac.wordpress.org/ticket/19845">#19845</a>)</li>\n<li>Some things got improved around <strong>editing images</strong>. It’s a lot easier to make changes to an image after you insert it into a post (<a class="closed" title="View ticket" href="https://core.trac.wordpress.org/ticket/24409">#24409</a>) and you no longer get kicked to a new window when you need to crop or rotate an image (<a href="https://core.trac.wordpress.org/ticket/21811">#21811</a>).</li>\n<li>New <strong>audio/video playlists</strong>. Upload a few audio or video files to test these. (<a href="https://core.trac.wordpress.org/ticket/26631">#26631</a>)</li>\n</ul>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href="http://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="http://core.trac.wordpress.org/tickets/major">a list of known bugs</a> and <a href="http://core.trac.wordpress.org/query?status=closed&group=component&milestone=3.9">everything we’ve fixed</a> so far.</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 3.9, try the <a href="http://wordpress.org/extend/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href="http://wordpress.org/wordpress-3.9-beta1.zip">download the beta here</a> (zip).</p>\n<hr />\n<p><strong>DEVELOPERS!</strong> Hello! There’s lots for you, too.</p>\n<p><strong>Please test your plugins and themes!</strong> There’s a lot of great stuff under the hood in 3.9 and we hope to blog a bit about them in the coming days. If you haven’t been reading the awesome <a href="http://make.wordpress.org/core/tag/week-in-core/">weekly summaries</a> on the <a href="http://make.wordpress.org/core/">main core development blog</a>, that’s a great place to start. (You should definitely follow that blog.) For now, here are some things to watch out for when testing:</p>\n<ul>\n<li>The <strong>load process in multisite</strong> got rewritten. If you notice any issues with your network, see <a href="https://core.trac.wordpress.org/ticket/27003">#27003</a>.</li>\n<li>We now use the <strong>MySQL Improved (mysqli) database extension</strong> if you’re running a recent version of PHP (<a href="https://core.trac.wordpress.org/ticket/21663">#21663</a>). Please test your plugins and see that everything works well, and please make sure you’re not calling <code>mysql_*</code> functions directly.</li>\n<li><strong>Autosave</strong> was refactored, so if you see any issues related to autosaving, heartbeat, etc., let us know (<a href="https://core.trac.wordpress.org/ticket/25272">#25272</a>).</li>\n<li>Library updates, in particular Backbone 1.1 and Underscore 1.6 (<a href="https://core.trac.wordpress.org/ticket/26799">#26799</a>). Also Masonry 3 (<a href="https://core.trac.wordpress.org/ticket/25351">#25351</a>), PHPMailer (<a href="https://core.trac.wordpress.org/ticket/25560">#25560</a>), Plupload (<a href="https://core.trac.wordpress.org/ticket/25663">#25663</a>), and TinyMCE (<a href="https://core.trac.wordpress.org/ticket/24067">#24067</a>).</li>\n<li>TinyMCE 4.0 is a <em>major</em> update. Please see TinyMCE’s <a href="http://www.tinymce.com/wiki.php/Tutorial:Migration_guide_from_3.x">upgrade guide</a> and our <a href="https://core.trac.wordpress.org/ticket/24067">implementation ticket</a> for more. If you have any questions or problems, please <a href="http://wordpress.org/support/forum/alphabeta">open a thread in the support forums</a>.</li>\n</ul>\n<p>Happy testing!</p>\n<p><em><em>Lots of improvements<br />\nLittle things go a long way</em><br />\nPlease test beta one<br />\n</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:60:"http://wordpress.org/news/2014/03/wordpress-3-9-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:"";}}}}}}}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:31:"http://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:8:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Wed, 16 Jul 2014 05:22:08 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:10:"x-pingback";s:36:"http://wordpress.org/news/xmlrpc.php";s:13:"last-modified";s:29:"Thu, 10 Jul 2014 10:27:22 GMT";s:4:"x-nc";s:11:"HIT lax 249";}s:5:"build";s:14:"20130911110210";}', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(435, '_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1405531328', 'no'),
(436, '_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1405488128', 'no'),
(437, '_transient_timeout_feed_867bd5c64f85878d03a060509cd2f92c', '1405531329', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(438, '_transient_feed_867bd5c64f85878d03a060509cd2f92c', '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:85:"WPTavern: Responsible Plugin Adds a Responsive Testing Kit to the WordPress Admin Bar";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=26433";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:214:"http://wptavern.com/responsible-plugin-adds-a-responsive-testing-kit-to-the-wordpress-admin-bar?utm_source=rss&utm_medium=rss&utm_campaign=responsible-plugin-adds-a-responsive-testing-kit-to-the-wordpress-admin-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:2962:"<p>January 2014 marked the first month that <a href="http://money.cnn.com/2014/02/28/technology/mobile/mobile-apps-internet/">mobile traffic has overtaken PC traffic</a> on the internet in the US, accounting for 55% of Internet usage. As mobile traffic is on the rise, <a href="http://hanno.co/logbook/why-designing-in-the-browser-is-the-way-forward" target="_blank">designing in the browser</a> has become more popular, as it offers better tools for testing sites against various devices.</p>\n<p><a href="http://wordpress.org/plugins/responsible/" target="_blank">Responsible</a> is a plugin that adds viewport resizing to the WordPress admin bar with support for six different device sizes. If you’ve ever used a browser bookmarklet in the past to test how a site appears in different devices, the Responsible plugin essentially replicates that same experience within the WordPress admin. It adds a little viewer icon to the admin bar, which refreshes the page with the viewport resizing panel.</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/07/responsible.png" rel="prettyphoto[26433]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/07/responsible.png?resize=900%2C340" alt="responsible" class="aligncenter size-full wp-image-26434" /></a></p>\n<p>Clicking on the device icons will automatically resize the site, whether in the admin or on the frontend. Below is an example of viewing a website at iPhone dimensions:</p>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/07/responsible-test.png" rel="prettyphoto[26433]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/07/responsible-test.png?resize=845%2C388" alt="responsible-test" class="aligncenter size-full wp-image-26473" /></a></p>\n<p>Responsible includes the following common viewport sizes for testing, in addition to custom sizes:</p>\n<ul>\n<li>Mobile: 320×480 (Portrait), Ratio: 2:3</li>\n<li>Apple iPhone 5: 320×568 (Portrait), Ratio: 40:71</li>\n<li>Small Tablet: 600×800 (Portrait), Ratio: 3:4</li>\n<li>Tablet (e.g. Apple iPad 2-3rd, mini): 768×1024 (Portrait), Ratio: 3:4</li>\n<li>Widescreen: 1280×800 (Landscape), Ratio: 8:5</li>\n<li>HDTV 1080p: 1920×1080 (Landscape), Ratio: 16:9</li>\n</ul>\n<p>If you prefer using the the tool as a bookmarklet, the plugin comes with a <a href="http://wordpress.org/plugins/responsible/faq/" target="_blank">filter</a> that allows you register a custom bookmarklet. You can then generate your own bookmarklet using the <a href="http://lab.maltewassermann.com/viewport-resizer/" target="_blank">Viewport Resizer</a> tool.</p>\n<p>Responsible is perfect for designing in the browser with WordPress or for some quick responsive testing when you don’t have access to all the different devices. <a href="http://wordpress.org/plugins/responsible/" target="_blank">Download</a> it from WordPress.org or add it to your site via the admin plugins screen.</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, 15 Jul 2014 23:37: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:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:1;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:104:"WPTavern: A WordPress Plugin That Helps Remove Access To The WordPress Dashboard From Non Administrators";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=26450";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:252:"http://wptavern.com/a-wordpress-plugin-that-helps-remove-access-to-the-wordpress-dashboard-from-non-administrators?utm_source=rss&utm_medium=rss&utm_campaign=a-wordpress-plugin-that-helps-remove-access-to-the-wordpress-dashboard-from-non-administrators";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3131:"<p>Have you ever wanted to remove access to the WordPress dashboard for a user but didn’t want to touch any code to do it? <a title="http://wordpress.org/plugins/remove-dashboard-access-for-non-admins/" href="http://wordpress.org/plugins/remove-dashboard-access-for-non-admins/">Remove Dashboard Access</a> by <a title="http://werdswords.com/" href="http://werdswords.com/">Drew Jaynes</a> makes it an easy process. After activating the plugin, I found it difficult to locate where the configuration settings are. The settings are at the bottom of the <strong>Settings > Reading</strong> page. I also discovered a quick link to the settings on the plugins management screen.</p>\n<p>You can remove access based on a user’s capability, or if they’re part of the Administrator, Author, or Editor roles. This is great if you don’t have any users assigned to roles provided by plugins like <a title="https://wordpress.org/plugins/edit-flow/" href="https://wordpress.org/plugins/edit-flow/">Edit Flow</a> or if you created custom roles though the <a title="https://wordpress.org/plugins/members/" href="https://wordpress.org/plugins/members/">Members</a> plugin. If a custom role has a specific capability separate from other roles, you can use the Limit By Capability feature.</p>\n<div id="attachment_26456" class="wp-caption aligncenter"><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/07/RemoveDashboardAccessOptions.png" rel="prettyphoto[26450]"><img class="size-full wp-image-26456" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/07/RemoveDashboardAccessOptions.png?resize=782%2C501" alt="Settings To Control Who Has Access To The Dashboard" /></a><p class="wp-caption-text">Settings To Control Who Has Access To The Dashboard</p></div>\n<p>For those that don’t have access, you can redirect them to a specific URL. You can also choose whether or not they can use the dashboard to edit their profile. Last but not least, there’s a box provided to create a custom login message. The plugin removes access to some of the built-in WordPress Toolbar menu items by default. However, if you want to remove toolbar menus from other plugins, you can follow the guide on the plugin’s <a title="http://wordpress.org/plugins/remove-dashboard-access-for-non-admins/other_notes/" href="http://wordpress.org/plugins/remove-dashboard-access-for-non-admins/other_notes/">other notes page</a>.</p>\n<p>Remove Dashboard Access works great for its intended purpose but if you need more granular control over which roles you can remove access from, you’ll need to look elsewhere. The plugin can be found on the <a title="http://wordpress.org/plugins/remove-dashboard-access-for-non-admins/" href="http://wordpress.org/plugins/remove-dashboard-access-for-non-admins/">WordPress plugin directory</a> or <a title="https://github.com/DrewAPicture/remove-dashboard-access" href="https://github.com/DrewAPicture/remove-dashboard-access">on Github</a>. Jaynes openly invites pull requests.</p>\n<p>Do you know of a plugin that has a similar feature set but supports custom roles?</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, 15 Jul 2014 21:38:15 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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:83:"WPTavern: WPCore: Create WordPress Plugin Collections and Install Them in One Click";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=26414";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:208:"http://wptavern.com/wpcore-create-wordpress-plugin-collections-and-install-them-in-one-click?utm_source=rss&utm_medium=rss&utm_campaign=wpcore-create-wordpress-plugin-collections-and-install-them-in-one-click";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:5049:"<p><a href="http://wordpress.org/plugins/wpcore/" target="_blank">WPCore</a> landed in the WordPress plugin repository this week. The plugin extends WordPress to interact with the new <a href="http://wpcore.com/" target="_blank">WPCore</a> service that allows you to create and manage plugin collections. The new WPCore plugin lets you bulk install all the plugins from any collection in just one click. The service was created by <a href="http://stueynet.com/" target="_blank">Stuart Starr</a>, an application developer with a penchant for launching what he calls “brand new and relatively useless web services.” In this case he may have actually launched a useful one.</p>\n<p>Your average WordPress site needs at least a few plugins to add basics like contact forms, SEO, galleries, etc. More specialized sites can require a dozen or more related plugins in order to provide more complex functionality like e-commerce, social networking, forums, or event management. This is where having a collection ready to install can save you some time.</p>\n<p>Once you sign up for the free service, you can start creating your own public or private collections on WPCore.com. Private collections will not appear in the collections directory.</p>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/07/create-new-collection.jpg" rel="prettyphoto[26414]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/07/create-new-collection.jpg?resize=606%2C354" alt="create-new-collection" class="aligncenter size-full wp-image-26429" /></a></p>\n<p>Start typing in plugin names or slugs to add them to the collection. The search box autosuggests plugins as you type:</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/07/plugin-search.jpg" rel="prettyphoto[26414]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/07/plugin-search.jpg?resize=747%2C602" alt="plugin-search" class="aligncenter size-full wp-image-26431" /></a></p>\n<p>As you can see above, each plugin collection is assigned its own unique key. Once you’ve added all the plugins you want to your collection, you can then paste this key into the WPCore settings page:</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/07/add-key.png" rel="prettyphoto[26414]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/07/add-key.png?resize=900%2C407" alt="add-key" class="aligncenter size-full wp-image-26436" /></a></p>\n<p>This will pull up all the plugins in the collection and link to a bulk install page in the admin:</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/07/bulk-install.png" rel="prettyphoto[26414]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/07/bulk-install.png?resize=1025%2C408" alt="bulk-install" class="aligncenter size-full wp-image-26437" /></a></p>\n<p>The handy thing is that you can grab the key from any collection to bulk install the plugins; it doesn’t have to be one that you created. You can browse the WPCore <a href="http://wpcore.com/collections" target="_blank">Collections</a> directory to find other public collections that users have already shared.</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/07/collections.jpg" rel="prettyphoto[26414]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/07/collections.jpg?resize=972%2C548" alt="collections" class="aligncenter size-full wp-image-26423" /></a></p>\n<p>Collections can be shared, edited and/or deleted, and made private at any time. The concept is very similar to what the <a href="http://wptavern.com/how-to-bulk-install-all-your-favorite-wordpress-plugins" target="_blank">WP Install Profiles</a> plugin provides with its <a href="http://plugins.ancillaryfactory.com/">corresponding service</a>. The <a href="http://wptavern.com/rolling-your-own-wordpress-with-wproller" target="_blank">WP Roller</a> service is another app that attempts to do the same thing but also allows you to customize a few extra settings in the process. So far, none of these services have grown to become mainstream tools for WordPress developers.</p>\n<p>The WPCore app was built with <a href="http://laravel.com/" target="_blank">Laravel</a> and <a href="http://getbootstrap.com/" target="_blank">Bootstrap</a>. After testing the app and the plugin, I can confirm it is user-friendly and provides a super fast way to install a long list of plugins. Making the most of WPCore requires having your collections set up already and a necessity to install the same plugins on multiple sites.</p>\n<p>For those building WordPress sites regularly for clients, the tool can be a real time saver. Once your collection is set, you no longer have to spend time trying to remember all the plugins you need for setting up new sites. It’s also an easy way to share your recommendations with new users and other developers. Check out <a href="http://wpcore.com/" target="_blank">WPCore</a> and let us know if this is a service you’re likely to use.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 15 Jul 2014 21:09:13 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:52:"WordPress.tv: Bolette Obbekær: Designtendenser 2014";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wordpress.tv/?p=36614";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:69:"http://wordpress.tv/2014/07/15/bolette-obbekaer-designtendenser-2014/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:652:"<div id="v-1oeinlph-1" class="video-player">\n</div><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/36614/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/36614/" /></a> <img alt="" border="0" src="http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=36614&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2014/07/15/bolette-obbekaer-designtendenser-2014/"><img alt="Bolette Obbekær: Designtendenser 2014" src="http://videos.videopress.com/1oeinlph/video-085b37d644_scruberthumbnail_1.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 15 Jul 2014 15:55: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:12:"WordPress.tv";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:4;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:100:"WordPress.tv: Peter Nemčok: 2013 – rok, v ktorom sa WordPress stal jednotkou už aj na Solvensku";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wordpress.tv/?p=36585";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:109:"http://wordpress.tv/2014/07/15/peter-nemcok-2013-rok-v-ktorom-sa-wordpress-stal-jednotkou-uz-aj-na-solvensku/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:744:"<div id="v-zehOrzcb-1" class="video-player">\n</div><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/36585/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/36585/" /></a> <img alt="" border="0" src="http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=36585&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2014/07/15/peter-nemcok-2013-rok-v-ktorom-sa-wordpress-stal-jednotkou-uz-aj-na-solvensku/"><img alt="Peter Nemčok: 2013 – rok, v ktorom sa WordPress stal jednotkou už aj na Solvensku" src="http://videos.videopress.com/zehOrzcb/video-d20b1ef572_scruberthumbnail_0.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 15 Jul 2014 15:19:19 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"WordPress.tv";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}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:52:"WordPress.tv: Travis Totz: Designing for Interaction";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wordpress.tv/?p=36420";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:71:"http://wordpress.tv/2014/07/15/travis-totz-designing-for-interaction-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:654:"<div id="v-tYGpHGjV-1" class="video-player">\n</div><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/36420/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/36420/" /></a> <img alt="" border="0" src="http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=36420&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2014/07/15/travis-totz-designing-for-interaction-2/"><img alt="Travis Totz: Designing for Interaction" src="http://videos.videopress.com/tYGpHGjV/video-afcb9b7f01_scruberthumbnail_0.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 15 Jul 2014 15:04:15 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"WordPress.tv";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}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:22:"Matt: New Yorker on 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:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=43932";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/2014/07/new-yorker-on-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:11:"description";a:1:{i:0;a:5:{s:4:"data";s:688:"<p>The New York Times writes about how <a href="http://www.nytimes.com/2014/07/09/business/media/the-new-yorker-alters-its-online-strategy.html">The New Yorker is overhauling its design and online presence</a>, including experimenting with paywalls and this wonderful nugget:</p>\n<blockquote><p>The new site, designed to be cleaner, with new typefaces, will be based on the WordPress publishing system. It is expected to be easier to navigate for mobile users — among the fastest-growing segments of the readership.</p></blockquote>\n<p>The New Yorker is one of my top 3 favorite publications in the world, and I’m very excited they’ll be using WP for their next chapter.</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, 15 Jul 2014 13:56: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:14:"Matt Mullenweg";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:7;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:79:"WPTavern: Hybrid Core 2.0 Adds Composer Support, Removes Widgets From Framework";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=26332";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:200:"http://wptavern.com/hybrid-core-2-0-adds-composer-support-removes-widgets-from-framework?utm_source=rss&utm_medium=rss&utm_campaign=hybrid-core-2-0-adds-composer-support-removes-widgets-from-framework";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:5132:"<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/07/hybrid-core1.png" rel="prettyphoto[26332]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/07/hybrid-core1.png?resize=700%2C285" alt="hybrid-core" class="aligncenter size-full wp-image-26407" /></a></p>\n<p>Theme Hybrid released <a href="http://themehybrid.com/weblog/hybrid-core-version-2-0" target="_blank">Hybrid Core 2.0</a> today after many months in development. The framework, created by Justin Tadlock, powers this site and many other WordPress sites on the web. <a href="http://themehybrid.com/weblog/hybrid-core-theme-framework-version-1-0" target="_blank">Version 1.0</a> was first released in October 2010, built from the engine that made up the base of Tadlock’s popular Hybrid Theme.</p>\n<p>Since that time, <a href="http://themehybrid.com/hybrid-core" target="_blank">Hybrid Core</a> has been downloaded hundreds of thousands of times. Version 2.0 includes <a href="https://github.com/justintadlock/hybrid-core/commits/2.0.0" target="_blank">more than 200 commits</a> and several major changes that will be important for users and theme developers to know about.</p>\n<h3>Composer Support</h3>\n<p>Tadlock credits Andrey Savchenko (<a href="http://www.rarst.net/" target="_blank">@Rarst</a>) with helping to add <a href="https://getcomposer.org/" target="_blank">Composer</a> support to Hybrid Core. Composer is a dependency manager for PHP that operates on a project-by-project basis by pulling in all the required libraries to manage them in one place.</p>\n<p>Hybrid Core now includes a <a href="https://github.com/justintadlock/hybrid-core/blob/master/composer.json" target="_blank">composer.json</a> file and those familiar with Composer can find the <a href="https://packagist.org/packages/justintadlock/hybrid-core" target="_blank">package link</a> on Packagist. Please note that using Composer is optional and not required for using Hybrid Core. For more information on getting started, check out @Rarst’s mini guide on using <a href="http://composer.rarst.net/" target="_blank">Composer with WordPress</a>.</p>\n<h3>Trimming the Framework</h3>\n<p>Hybrid Core 2.0 is a return to the basics of WordPress theme development in that it further separates functionality from presentation. Tadlock took a blade to framework and sliced out a sizeable chunk of legacy code, opting to support accompanying plugins to keep the core lean.</p>\n<p>Widgets have been <a href="http://themehybrid.com/weblog/where-oh-where-have-my-widgets-gone" target="_blank">completely removed</a> in favor of the <a href="http://themehybrid.com/plugins/widgets-reloaded" target="_blank">Widgets Reloaded</a> plugin, which Tadlock recommends users install if they want to keep their widgets. Entry Views was converted into a WordPress <a href="http://themehybrid.com/weblog/entry-views-wordpress-plugin" target="_blank">plugin</a> in order to help keep the framework more modular. Several extensions were dropped entirely, along with post and comment-related template shortcodes and deprecated functions prior to 2.0.</p>\n<p>Theme developers will be particularly interested in the new attribute system which allows for more flexibility than using body_class(). It includes built-in support for ARIA and <a href="http://schema.org/" target="_blank">Schema.org microdata</a>.</p>\n<p>Hybrid Core 2.0 also organizes all of the framework’s template tags into a /functions directory and introduces many new tags for theme authors. “Most of them are on my WordPress ‘wish list,’” Tadlock said. “So I hope to eventually see them added to core WordPress. They are functions that I believe are hugely beneficial to theme authors.”</p>\n<p>Overall, Tadlock was able reduce 66 KB from the Hybrid Core zip file, while adding new features for theme developers at the same time. Naturally, if your site was making use of anything that was removed, an update to 2.0 may require you to add a new plugin or make transitions in your theme’s code. You’ll want to review the specifics outlined in the release <a href="http://themehybrid.com/weblog/hybrid-core-version-2-0" target="_blank">announcement</a>.</p>\n<p>Theme Hybrid has always been on the forefront of defining and redefining WordPress theme frameworks and the relationship between parent/child themes. Tadlock is a purist when it comes to WordPress theme development best practices and his commitment to <a href="http://wptavern.com/why-wordpress-theme-developers-are-moving-functionality-into-plugins" target="_blank">data portability</a> is admirable in a theme market where many of the largest sellers are only there to make a buck.</p>\n<p>Hybrid Core 2.0 is a much leaner version of the framework that theme developers have been working with for years. As documentation is still being written, you’ll need to take it out of the box and explore the code to find all the new goodies. <a href="http://themehybrid.com/hybrid-core" target="_blank">Hybrid Core 2.0</a>, like all Theme Hybrid plugins and themes, is available to download for 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, 15 Jul 2014 03:45:19 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:93:"WPTavern: WP Quick Install Script Offers a Fast Way to Install WordPress, Plugins, and Themes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=26103";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:226:"http://wptavern.com/wp-quick-install-script-offers-a-fast-way-to-install-wordpress-plugins-and-themes?utm_source=rss&utm_medium=rss&utm_campaign=wp-quick-install-script-offers-a-fast-way-to-install-wordpress-plugins-and-themes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4958:"<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/07/wp-quick-install.jpeg" rel="prettyphoto[26103]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/07/wp-quick-install.jpeg?resize=300%2C263" alt="wp-quick-install" class="alignright size-medium wp-image-26338" /></a></p>\n<p><a href="http://wp-quick-install.com/" target="_blank">WP Quick Install</a> is an interesting new tool from Julio Potier, Jonathan Buttigieg, and Jean-Baptiste Marchand-Arvier, the folks behind <a href="http://wptavern.com/wp-rocket-launches-commercial-caching-plugin-for-wordpress" target="_blank">WP Rocket</a>. As part of supporting their commercial caching plugin, the WP Rocket team works extensively with clients. WP Quick Install is a tool they use internally and decided to share with the community.</p>\n<p>Its creators claim that the script is the easiest way to install WordPress. You download the tiny script and then upload it to where you want your installation. The new installation screen allows you to add themes and plugins to your site as well as configure some of the most common settings. It even allows you to do a few extra handy things like auto-remove the default content created by WordPress, ie. page, post, comment, themes, etc.</p>\n<p>“We set up a fresh WordPress installation almost every week, both for our clients and for testing purposes,” Marchand-Arvier told the Tavern. “It’s always the same (when we don’t have SSH): download the zip, unzip, upload via ftp, install our favorites plugins, remove the default content, etc. So we developed a tool to do this for us.”</p>\n<p>Marchand-Arvier said that the team created the tool for the sake of convenience and wanted to share it to give back to the community. He confirmed that they have no plans to build a commercial product around it but simply want to release as many free plugins and scripts as they can while developing for WordPress.</p>\n<h3>Bulk Install Plugins and Themes While Installing WordPress</h3>\n<p>In addition to all the usual database details, WP Quick Install allows you to select search engine privacy settings, media thumbnail sizes, revision and autosave settings, enable debug mode, and disable the theme and plugin editors. Any theme that you include in the install folder can also be automatically activated:</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/07/theme-info.png" rel="prettyphoto[26103]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/07/theme-info.png?resize=736%2C298" alt="theme-info" class="aligncenter size-full wp-image-26345" /></a></p>\n<p>The automatic plugin installation part of the script is likely to save users the most time. It allows you to specify extensions by their slugs and automatically activate them upon installation:</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/07/extensions-information.png" rel="prettyphoto[26103]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/07/extensions-information.png?resize=721%2C337" alt="extensions-information" class="aligncenter size-full wp-image-26347" /></a></p>\n<p>WP Quick Install may seem like a long installation form to fill out, but the good news is that you can include a data.ini file to pre-populate the installation form or to generate content (posts, pages, etc).</p>\n<h3>Multisite Support Coming Soon</h3>\n<p>In the future, the WP Rocket team plans to add network creation to the script. “We want to keep it simple, but of course we definitely want to improve this tool,” Marchand-Arvier said. “We are currently working on multisite deployment. The script is on <a href="https://github.com/GeekPress/WP-Quick-Install" target="_blank">GitHub</a> and it’s open to contributions.”</p>\n<p>The tool is convenient if you prepare a data.ini file to pre-populate the installation form, but its primary shortcoming is that it doesn’t let you select the language before doing anything else. The script uses the WordPress 4.0 language API to manage the dropdown selection, allowing you to install in any language. However, it doesn’t automatically change the language in the installation process. This forces the user to complete the lengthy form in English. Hopefully, this aspect of the script will be improved in the next version.</p>\n<p>The WP Rocket team created <a href="http://wp-quick-install.com/" target="_blank">WP Quick Install</a> chiefly for novice developers. “We aren’t pretending to replace the classic WordPress installation,” Marchand-Arvier said. “But today we believe that it’s the easiest way to install WordPress, especially if you don’t use WP-CLI or wget to install.” Check out the demo video below and let us know in the comments if you think the script can help you speed up your installations.</p>\n<p><span class="embed-youtube"></span></p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 14 Jul 2014 20:48:14 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:79:"WPTavern: Critical Security Update For WPTouch, Users Should Update Immediately";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=26304";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:200:"http://wptavern.com/critical-security-update-for-wptouch-users-should-update-immediately?utm_source=rss&utm_medium=rss&utm_campaign=critical-security-update-for-wptouch-users-should-update-immediately";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2209:"<p>First <a title="http://blog.sucuri.net/2014/07/disclosure-insecure-nonce-generation-in-wptouch.html" href="http://blog.sucuri.net/2014/07/disclosure-insecure-nonce-generation-in-wptouch.html">reported by Sucuri</a>, the <a title="https://wordpress.org/plugins/wptouch/" href="https://wordpress.org/plugins/wptouch/">WPTouch plugin</a> has a dangerous security vulnerability and users are encouraged to update immediately. WPTouch is used to quickly add mobile support to websites and has over 5 million downloads making it one of the most popular plugins in the WordPress plugin directory.</p>\n<div id="attachment_26317" class="wp-caption aligncenter"><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/07/WPTouchFeaturedImage.png" rel="prettyphoto[26304]"><img class="size-full wp-image-26317" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/07/WPTouchFeaturedImage.png?resize=739%2C243" alt="WPTouch Plugin Header" /></a><p class="wp-caption-text">WPTouch Plugin Header</p></div>\n<p> </p>\n<p>According to Sucuri, WPTouch incorrectly uses the “<em>admin_init</em>” hook which can lead to users without the correct capabilities to upload malicious files to the server. Mailpoet, another popular plugin <a title="http://wptavern.com/wordpress-mailpoet-plugin-security-vulnerability-immediate-update-recommended" href="http://wptavern.com/wordpress-mailpoet-plugin-security-vulnerability-immediate-update-recommended">recently suffered</a> from the same type of security issue. Taking advantage of the bug is a simple two-step process.</p>\n<blockquote><p>All an attacker had to do in order to compromise a vulnerable website was to:</p>\n<ol>\n<li>Login and get his nonce via wp-admin</li>\n<li>Send an AJAX file upload request containing the leaked nonce and his backdoor</li>\n</ol>\n<p>So long story short – don’t only use nonces to protect sensitive methods, always add functions such as “current_user_can()” or the likes to confirm a user’s right to do something.</p></blockquote>\n<p>The vulnerability only affects sites that have registration enabled but you should update regardless. Users should already see an upgrade notification in the dashboard.</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, 14 Jul 2014 16:45:08 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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: Baskerville: A Free WordPress Theme for Hoarders";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=26215";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:158:"http://wptavern.com/baskerville-a-free-wordpress-theme-for-hoarders?utm_source=rss&utm_medium=rss&utm_campaign=baskerville-a-free-wordpress-theme-for-hoarders";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3177:"<p><a href="http://wordpress.org/themes/baskerville" target="_blank">Baskerville</a> is a new masonry grid style WordPress theme available from designer <a href="http://wptavern.com/anders-noren-on-achieving-simplicity-in-wordpress-theme-design" target="_blank">Anders Norén</a>. His popular <a href="http://wordpress.org/themes/hemingway" target="_blank">Hemingway</a> theme has received more than 60,000 downloads on WordPress.org and is also offered on <a href="http://theme.wordpress.com/themes/hemingway-rewritten/" target="_blank">WordPress.com</a>. Baskerville was created to showcase many different types of content, hence its tagline: “A WordPress Theme for Hoarders.”</p>\n<p>The theme bears Norén’s trademark minimalist style, is responsive and retina-ready. It includes support for all nine post formats with content-specific styles for videos, galleries, images, quotes, links, etc.</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/07/baskerville.png" rel="prettyphoto[26215]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/07/baskerville.png?resize=880%2C660" alt="baskerville" class="aligncenter size-full wp-image-26276" /></a></p>\n<p>Post meta is attractively styled and placed at the bottom of the content, so it doesn’t clutter up the page and detract from the main event. It also includes an author box with social links.</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/07/quote-format.jpg" rel="prettyphoto[26215]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/07/quote-format.jpg?resize=725%2C845" alt="quote-format" class="aligncenter size-full wp-image-26297" /></a></p>\n<p>Baskerville customization options can be found in the customizer, including:</p>\n<ul>\n<li>Custom logo upload</li>\n<li>Background color</li>\n<li>Custom header image(s) and ability to randomize the display</li>\n<li>Background image</li>\n<li>Two widget areas (sidebar and footer)</li>\n</ul>\n<p>Check out a <a href="http://andersnoren.se/themes/baskerville/" target="_blank">live demo</a> of Baskerville to resize your browser window to see how smoothly it responds to different screen sizes.</p>\n<p>The theme also adds three custom widgets to display videos, Flickr, Dribbble shots and like functionality via the <a href="http://www.themezilla.com/plugins/zillalikes/" target="_blank">ZillaLikes</a> plugin. Pages can be customized via four different templates, including full-width, no sidebar, archives and a contributors template which showcases writers with avatars, descriptions and social links.</p>\n<p>Baskerville includes a Swedish/svenska translation but the code is translation-ready so you can easily translate it into your own language.</p>\n<p>If you’re enthusiastic about using post formats, then <a href="http://wordpress.org/themes/baskerville" target="_blank">Baskerville</a> may be the theme for you. It works nicely for magazines or personal blogs that regularly post multimedia content. Install it via your WordPress admin theme browser or <a href="http://wordpress.org/themes/baskerville" target="_blank">download</a> it directly 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:"Mon, 14 Jul 2014 16:15:03 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:11;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:58:"WordPress.tv: Peter Lauge: Avancerede WordPress-løsninger";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wordpress.tv/?p=36605";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:76:"http://wordpress.tv/2014/07/14/peter-lauge-avancerede-wordpress-losninger-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:665:"<div id="v-RaLiPRyJ-1" class="video-player">\n</div><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/36605/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/36605/" /></a> <img alt="" border="0" src="http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=36605&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2014/07/14/peter-lauge-avancerede-wordpress-losninger-2/"><img alt="Peter Lauge: Avancerede WordPress-løsninger" src="http://videos.videopress.com/RaLiPRyJ/video-45325fb52b_scruberthumbnail_0.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 14 Jul 2014 15:57:10 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"WordPress.tv";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}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:46:"WordPress.tv: K.Adam White: Modular JavaScript";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wordpress.tv/?p=36418";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wordpress.tv/2014/07/14/k-adam-white-modular-javascript/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:640:"<div id="v-GmWlWodu-1" class="video-player">\n</div><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/36418/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/36418/" /></a> <img alt="" border="0" src="http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=36418&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2014/07/14/k-adam-white-modular-javascript/"><img alt="K.Adam White: Modular JavaScript" src="http://videos.videopress.com/GmWlWodu/video-d0b589ff3e_scruberthumbnail_0.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 14 Jul 2014 15:53: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:12:"WordPress.tv";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}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:71:"WordPress.tv: Ján Bočínec: Frameworky, Pods a skrytá sila 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://wordpress.tv/?p=19160";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:85:"http://wordpress.tv/2014/07/14/jan-bocinec-frameworky-pods-a-skryta-sila-wordpress-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:681:"<div id="v-NUGbwKm3-1" class="video-player">\n</div><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/19160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/19160/" /></a> <img alt="" border="0" src="http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=19160&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2014/07/14/jan-bocinec-frameworky-pods-a-skryta-sila-wordpress-2/"><img alt="Ján Bočínec: Frameworky, Pods a skrytá sila WordPress" src="http://videos.videopress.com/NUGbwKm3/video-440eea2f8b_std.original.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 14 Jul 2014 15:49:15 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"WordPress.tv";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}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:70:"Post Status: Chris Coyier on WordPress, business, and building the web";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:30:"http://www.poststat.us/?p=6874";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:112:"http://www.poststat.us/chris-coyier-interview/?utm_source=rss&utm_medium=rss&utm_campaign=chris-coyier-interview";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:12629:"<p><img class="aligncenter size-large wp-image-6881" src="http://www.poststat.us/wp-content/uploads/2014/07/chris-coyier-752x406.jpg" alt="chris-coyier" width="752" height="406" />Chris Coyier is not a stranger to most of us web workers. He’s a designer at <a title="CodePen" href="http://codepen.io">CodePen</a>, a writer at <a title="CSS-Tricks" href="http://css-tricks.com">CSS-Tricks</a>, and a podcaster at <a title="ShopTalk Podcast" href="http://shoptalkshow.com">ShopTalk</a>.</p>\n<p>He uses WordPress on all three of his primary projects. For years, Chris has been a consistent advocate for the platform. He develops his own websites with WordPress, but his day-to-day interactions are as a user.</p>\n<p>Chris brings a unique perspective, I believe. He did some client work early in his career, but he’s been more involved in SaaS projects and membership websites; his current membership websites are on WordPress (CSS-Tricks) and Ruby on Rails (CodePen).</p>\n<p>I asked Chris about his projects, his perspective on various aspects of WordPress, and the community around it. I enjoyed learning from him, and I hope you do too:</p>\n<!--[if lt IE 9]><script>document.createElement(''audio'');</script><![endif]-->\n<a href="http://s3.amazonaws.com/PostStatus/DraftPodcast/chris-coyier-post-status-draft.mp3">http://s3.amazonaws.com/PostStatus/DraftPodcast/chris-coyier-post-status-draft.mp3</a>\n<p><a href="http://s3.amazonaws.com/PostStatus/DraftPodcast/chris-coyier-post-status-draft.mp3">Direct Download</a></p>\n<h3>What have you learned from working on membership websites?</h3>\n<blockquote><p> It’s just a good dang business idea.</p></blockquote>\n<p>Chris was sold on the idea of membership websites from his tenure at <a title="Wufoo" href="http://www.wufoo.com/">Wufoo</a> and <a title="SurveyMonkey" href="https://www.surveymonkey.com/">SurveyMonkey</a> (where he worked once they acquired Wufoo).</p>\n<p>He uses Pippin Williamson’s <a href="https://pippinsplugins.com/restrict-content-pro-premium-content-plugin/">Restrict Content Pro</a> for managing <a title="The Lodge" href="http://css-tricks.com/lodge/">The Lodge</a> on CSS-Tricks. At CodePen, they spend time thinking about pricing, churn, and other membership metrics.</p>\n<p>They talk about some of these things (and much more) on the <a title="CodePen Radio" href="http://blog.codepen.io/radio/">CodePen Radio</a> podcast — an awesome podcast for anyone interested in SaaS, not just CodePen.</p>\n<h4>Delivering value</h4>\n<p>Another aspect Chris noted about membership websites is how it makes you want to continually deliver value for customers. He always wants to make people feel like they’re getting excellent features and value for the price of their membership.</p>\n<p>Another thing he and the CodePen team are learning is prioritizing feature requests. When you are building for members, you want to build features members want; and sometimes that goes against other fixes that are less glamorous. So they are consistently trying to balance time spent on customer-facing features versus behind the scenes development.</p>\n<h4>Build the feature, get the reward</h4>\n<p>Chris talked about how important it is for him to build something, then be rewarded for the work he does, versus selling something and then having to build the feature for it.</p>\n<p>He experience this with his big <a href="https://www.kickstarter.com/projects/chriscoyier/screencasting-a-complete-redesign">Kickstarter</a> project for a CSS-Tricks redesign a couple of years ago, and said that mentality was really difficult for him.</p>\n<h3>What do you appreciate more now about WordPress, after using other software?</h3>\n<p>WordPress comes with a lot of built-in features that many of us (I do at least) may take for granted. Need a user system? Check. Need comments? Check. Need categorization? Check.</p>\n<p>Building CodePen, Chris is able to appreciate (even more than before) just how powerful WordPress is and how much thought goes into every feature.</p>\n<p>We dove into something seemingly simple as an example: tags. It turns out that something even that simple takes a lot of thought, consideration, and user experience considerations.</p>\n<blockquote><p>What it ends up as, is something you’ll have to iterate on for years to get anywhere close to how good the WordPress one works already. And that’s like the tiniest thing we could think about. Think about the login system, or something else.</p></blockquote>\n<p>So his advice was to focus on simplicity and decisions when building features, because required effort grows rapidly as a feature gets more complicated.</p>\n<h3>How would you compare the WordPress community to other web communities?</h3>\n<p>Chris has exposure to a much broader web community than I do. I’m pretty locked into the WordPress bubble. He sees the Ruby on Rails world, the more generic web world, and attends and speaks at a slew of non-WordPress conferences every year.</p>\n<p>Even though he says he’s mostly in a WordPress bubble himself (he’s not exactly attending Drupal conferences, he notes), he thinks that the WordPress community is pretty top-notch, and hasn’t seen other communities that are “better” than the WordPress community.</p>\n<blockquote><p>There’s definitely no other CMS that I’m jealous of that community.</p></blockquote>\n<h3>What questions about WordPress are you always seeing on the ShopTalk Podcast</h3>\n<p>Chris and his co-host Dave Rupert (seriously, <a href="https://twitter.com/davatron5000">follow Dave</a> and gain laughs and knowledge in life) get a lot of questions about WordPress on the ShopTalk Podcast. Some of these questions are repeated pretty frequently, and they see trends of common issues.</p>\n<h4>Working locally and syncing remotely</h4>\n<p><span id="more-6874"></span></p>\n<p>For WordPress, the most common questions tend to come around syncing the local development environment with the live environment. They’ve been recommending <a title="WP Migrate DB Pro" href="https://deliciousbrains.com/wp-migrate-db-pro/">WP Migrate DB Pro</a> for people trying to get around that, though Chris says he doesn’t think it’s perfect for huge websites like CSS-Tricks.</p>\n<p>I think, to a degree, the common confusion is logical. WordPress development is really centered around three different layers of “stuff”: the content (posts, pages, etc), the files in the directory, and the site management database options. I think there is plenty of room for confusion when it’s not easy to decouple website management with website content, from a database perspective.</p>\n<h4>Learning more about WordPress through the lens of a different audience</h4>\n<p>I used this segment to talk about other confusing aspects of WordPress. We talked about database management, the degree of PHP knowledge required for WordPress theming, using pre-processors in distributed versus custom themes, responsive images, and the asset-itis of many WordPress websites that utilize plugins that each load their own scripts and styles.</p>\n<p>Regardless of the specific issues people are having, I find tremendous value listening to ShopTalk — which is not as hardcore of a WordPress audience as I have here — where the trends of people’s struggles help reveal real struggles that perhaps we could build better tools for in WordPress.</p>\n<p>It’s also worth noting that some of the “struggles” we talked about are very modern struggles, and WordPress has been around for over eleven years. WordPress iterates pretty quickly and does a great job of supporting modern web features, but it’s rarely immediate, especially in terms of core support. But plugin support and the shear number of people innovating on top of WordPress is significant and awesome.</p>\n<h3>Just build websites!</h3>\n<blockquote><p>So many people want to be told what to do and what to learn next. That’s for sure the #1 question on ShopTalk.</p></blockquote>\n<p>In the face of lots of new and changing technology, Chris is often asked about what to do first, or what to do next. He and Dave have a core <a href="http://shoptalkshow.com/mantra/">mantra at ShopTalk</a> to encourage people to “just build websites!”</p>\n<blockquote><p>The things that you learn will happen as a result of building those websites and things for other people.</p></blockquote>\n<p>The degree of paralysis by analysis they see is significant, and Chris and Dave hope that people will let their experiences guide them versus a to-do list of things they must learn today.</p>\n<h4>You’re desirable</h4>\n<p>Another note is that pretty much everyone has something they can do to provide value to others. People surely know something from a tooling perspective that’s worthwhile; even sans-modern tools, basic knowledge of HTML and CSS — the building blocks of the web — could be a great asset to lots of business.</p>\n<p>Even more important than tooling though, is the ability to solve problems. Chris used an example of a business that sells wrenches. If you can help a business that sells wrenches to sell more wrenches, then you are able to provide that business a lot of value; so focus on helping businesses do what they do better.</p>\n<h4>Learn by sharing</h4>\n<p>I admire Chris’ degree of sharing what he’s learning, through ShopTalk, CodePen Radio, and for years on CSS-Tricks.</p>\n<p>He doesn’t do anything special to write about what he learns. He keeps his drafts right there in WordPress. He doesn’t take special notes. He just writes, and he often writes about what he’s learning.</p>\n<p>Over time he’s been able to refine his writing and learn what to expect, as far as feedback goes. But at the core he just writes, and through that writing he’s been able to grow his own audience and get better at everything else he’s doing professionally.</p>\n<h3>Staying consistent and avoiding burnout</h3>\n<p>I was curious what Chris has done to stay so consistent online and avoid burnout. It seems to me that a lot of people get temporarily motivated and quickly disenchanted.</p>\n<p>I’ve learned in my own experience with the web that any measure of success takes lots and lots of consistent effort. Chris hasn’t done a lot to think about avoiding burnout, but figures there are some things he subconsciously does to stay motivated.</p>\n<p>That may be taking extended breaks from the web and disconnecting for a trip to the woods, or shorter breaks just in the day like stopping and playing the banjo for a few minutes.</p>\n<h3>Stay in touch with Chris</h3>\n<p>At the end of every episode of ShopTalk, Chris and Dave give guests an opportunity to plug whatever they want.</p>\n<p>Chris’ plug for our interview was to advise folks to take some time off from building their own product and instead go into their issues list and clean up after themselves and their project — which is what Chris and team are doing at CodePen right now.</p>\n<p>He also noted that nothing would make him happier than folks going <a href="http://codepen.io/pro">Pro on CodePen</a>. If you teach, interact with others, or want a way to store private pens, you should definitely check it out. And it’s affordable too, at only $75 for the year.</p>\n<p>While he didn’t take the opportunity to plug much of his own stuff, you should definitely still check out his various projects. I’ve learned a ton from Chris since I started my own journey on the web. If my learning journey on the web were a university, I’ve definitely taken multiple classes from CSS-Tricks and the ShopTalk Show. Chris’ business is built on a three-legged stool right now. Check them out:</p>\n<ul>\n<li><a href="http://codepen.io">CodePen</a> – a playground for the front-end side of the web.</li>\n<li><a href="http://shoptalkshow.com/">ShopTalk Show</a> – a podcast about front-end web design (and sound effects).</li>\n<li><a href="http://css-tricks.com/">CSS-Tricks</a> – where the whole internet learns CSS.</li>\n</ul>\n<p>Also check out <a href="http://chriscoyier.net/about/">Chris’ fun about page</a> with his life’s timeline and <a href="https://twitter.com/chriscoyier">follow him on Twitter</a>.</p>\n<hr />\n<p>I’d like to thank Chris for the time he spent with me, and I hope that if you enjoyed this interview and write-up, that you’ll share it!</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, 14 Jul 2014 15:43:45 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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: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:30:"Matt: Ibrahim Maalouf Wowed Me";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=43926";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/2014/07/ibrahim-maalouf/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2219:"<p>One of the most surprising performances I saw at the North Sea Jazz festival was a French-Lebanese trumpet player named Ibrahim Maalouf. He plays a trumpet with a special additional fourth valve — three is standard — that allows him to more easily play <a href="http://en.wikipedia.org/wiki/Arabic_maqam">Arabic maqams</a> or scales with quarter tone and three quarter tone intervals along with <a href="http://en.wikipedia.org/wiki/Equal_temperament">equal temperament western ones</a>, like <a href="http://en.wikipedia.org/wiki/Don_Ellis">Don Ellis</a>. He also has a way of playing that sounds most like singing in his inflections and vibrato.</p>\n<p>This is the best video I could find of one song he did called “Beirut,” and I’m amazed it only has 475 views. It’s worth 12 minutes out of your day, especially when it amps up at the end.</p>\n<p><span class="embed-youtube"></span></p>\n<p class="p1"><span class="s1">The only word for the crowd was “pandemonium” — I’ve never seen a jazz audience react to music like that; it reminded me of the</span> <a href="http://en.wikipedia.org/wiki/Ellington_at_Newport#The_Gonsalves_solo">famous Duke Ellington / Paul Gonsalves performance and the riot that followed</a>.</p>\n<p>The audience on Saturday went totally bonkers, and the band did some even wilder songs to close including with jazz bagpipe (gaita?), which reminded me of <a href="http://www.cristinapato.com/en/">Cristina Pato</a>. Here’s a video of a similar end, but it’s a much more subdued crowd:</p>\n<p><span class="embed-youtube"></span></p>\n<p>Amazing music, and also a good reminder of the power of a live performance, where a great artist can feed off the audience and vice versa. I wouldn’t mind going to a few more jazz shows where people are unafraid to hoot and holler and move a bit.</p>\n<p>If you ever have a chance to see <a href="http://www.ibrahimmaalouf.com/en/">Ibrahim Maalouf</a> live, I recommend it. It looks like he uses WordPress for his site, too, which makes him doubly cool. <img src="http://i1.wp.com/s.ma.tt/blog/wp-includes/images/smilies/icon_smile.gif?w=604" alt=":)" class="wp-smiley" /></p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 14 Jul 2014 14:56: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: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: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:91:"WPTavern: FooGallery – A Free WordPress Gallery Plugin Built For Developers and Designers";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=26279";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:218:"http://wptavern.com/foogallery-a-free-wordpress-gallery-plugin-built-for-developers-and-designers?utm_source=rss&utm_medium=rss&utm_campaign=foogallery-a-free-wordpress-gallery-plugin-built-for-developers-and-designers";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3054:"<p><a title="http://wordpress.org/plugins/foogallery/" href="http://wordpress.org/plugins/foogallery/">FooGallery</a> is a new free WordPress plugin aimed squarely at developers and designers. <a title="http://fooplugins.com/wordpress-gallery-plugin/" href="http://fooplugins.com/wordpress-gallery-plugin/">Developed by FooPlugins</a>, FooGallery utilizes much of the same image and gallery handling found within WordPress, providing an intuitive content creation and management experience. While the plugin is simple, it offers developers a <a title="http://docs.fooplugins.com/foogallery/actions-filters/" href="http://docs.fooplugins.com/foogallery/actions-filters/">ton of filters and hooks</a> to extend its functionality. Some of the core features include:</p>\n<ul>\n<li>Gallery custom post type</li>\n<li>Use built-in media library to manage images</li>\n<li>Drag-and-drop reordering of images</li>\n<li>Built-in gallery templates</li>\n<li>Built-in support for FooBox</li>\n<li>NextGen importer tool</li>\n</ul>\n<p>FooGallery runs on an extension framework where different functionality is separated into different areas of the codebase. This keeps the core plugin lightweight, but still allows for the most flexibility. A built-in extension boilerplate generator makes it easy to create template or lightbox extensions. Although extensions can be hosted on the WordPress plugin directory, you’ll want to <a title="http://foo.gallery/submit-extension/" href="http://foo.gallery/submit-extension/">submit them</a> to them to the FooGallery website as well. Extensions that are accepted into the FooGallery directory will be listed in the Extensions tab within the plugin. Extensions can either be free or commercial.</p>\n<div id="attachment_26283" class="wp-caption aligncenter"><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/07/FooGalleryExtensionBoilerplate.png" rel="prettyphoto[26279]"><img class="size-full wp-image-26283" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/07/FooGalleryExtensionBoilerplate.png?resize=1025%2C756" alt="FooGallery Boilerplate Generator" /></a><p class="wp-caption-text">FooGallery Boilerplate Generator</p></div>\n<p><a title="http://docs.fooplugins.com/foogallery/foogallery-101/" href="http://docs.fooplugins.com/foogallery/foogallery-101/">Documentation for users</a> and <a title="http://docs.fooplugins.com/foogallery/foogallery-developers-101/" href="http://docs.fooplugins.com/foogallery/foogallery-developers-101/">developers</a> is available for free on the FooPlugins website. Since it’s a free plugin, support is handled via <a title="http://wordpress.org/support/plugin/foogallery" href="http://wordpress.org/support/plugin/foogallery">the WordPress.org support forums.</a> For those who want to contribute back to the project, you can find it <a title="https://github.com/fooplugins/foogallery" href="https://github.com/fooplugins/foogallery">on Github</a>.</p>\n<p>If you need something lightweight compared to NextGen 2, you may want to consider using FooGallery.</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, 14 Jul 2014 14:47:19 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:17;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:22:"Matt: Founding Fathers";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=43934";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/2014/07/founding-fathers/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:502:"<p>Kottke: <a href="http://kottke.org/13/08/the-surprising-ages-of-the-founding-fathers-on-july-4-1776">The surprising ages of the Founding Fathers on July 4, 1776</a>. While we’re talking about the Founding Fathers, Marc Andreessen thinks that the <a href="http://pmarcasays.golaun.ch/2014/07/14/founding-fathers-arguably-designed-us-system-specifically-to-be-dominated-by-moneyed-interests/">Founding Fathers Arguably Designed US System Specifically To Be Dominated By Moneyed Interests</a></p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 14 Jul 2014 13:18:02 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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: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:34:"Akismet: Congratulations, Germany!";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=1618";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/2014/07/14/congratulations-germany/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:789:"<p>The Akismet team would like to send a hearty congratulations to the Germany national football team for their victory over Argentina yesterday in the 2014 FIFA World Cup. Our own Akisbot was busy celebrating and showing his support last night.</p>\n<p><img class="alignnone size-full wp-image-1621" src="http://akismet.files.wordpress.com/2014/07/akisbot-germany.jpg?w=700&h=525" alt="akisbot-germany" width="700" height="525" /></p><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/akismet.wordpress.com/1618/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/akismet.wordpress.com/1618/" /></a> <img alt="" border="0" src="http://pixel.wp.com/b.gif?host=blog.akismet.com&blog=116920&post=1618&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:"Mon, 14 Jul 2014 11:55:53 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:8:"Dan Hauk";s: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:78:"Post Status: Week in review: Beta 1, WooThemes is seeing double, and much 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:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:30:"http://www.poststat.us/?p=6863";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:130:"http://www.poststat.us/week-in-review-wordpress-beta-1/?utm_source=rss&utm_medium=rss&utm_campaign=week-in-review-wordpress-beta-1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:6295:"<p><img class="aligncenter size-large wp-image-6769" src="http://www.poststat.us/wp-content/uploads/2014/06/week-in-review1-752x300.jpg" alt="week-in-review" width="752" height="300" />Welcome to the third “<a href="http://www.poststat.us/category/week-in-review/">Week in Review</a>” on Post Status, where I hope to offer up some of the things you may have missed in the last week or so. It’s been a busy week, and there’s a lot to share, so let’s do it.</p>\n<h3>WordPress 4.0 beta 1 is out</h3>\n<p><a title="WordPress 4.0 Beta 1" href="http://wordpress.org/news/2014/07/wordpress-4-0-beta-1/">Beta 1 of WordPress 4.0</a> is out. This means that the feature list is frozen, and testing is underway. If you haven’t tested WordPress 4.0, now is a great time to be involved.</p>\n<p>WordPress 4.0 is going to be an excellent release. There are a number of nice new features slated, including language selection upon install (a huge feature), an <a href="http://make.wordpress.org/core/2014/07/08/customizer-improvements-in-4-0/">improved customizer experience</a>, new media views, a new plugins experience in the admin, and an awesome scroll effect in the editor that makes writing so much better.</p>\n<p>I just have to tease the scrolling:</p>\n<div class="wp-video"><!--[if lt IE 9]><script>document.createElement(''video'');</script><![endif]-->\n<a href="https://i.cloudup.com/2ndNE9tCzE.mp4">https://i.cloudup.com/2ndNE9tCzE.mp4</a></div>\n<p>Thanks to <a href="https://twitter.com/kovshenin/status/487176276055056384">Konstantin Kovshenin</a> for the video.</p>\n<p>You can check out more about <a title="WordPress 4.0 Beta 1" href="http://wordpress.org/news/2014/07/wordpress-4-0-beta-1/">Beta 1 on the WordPress release post</a>, and do give it a spin with your themes and plugins to help test for bugs.</p>\n<h3>WooThemes has doubled revenues in the last year</h3>\n<p>WooThemes celebrated their sixth birthday last week. But I think they <a title="Six Years of Woo" href="http://www.woothemes.com/2014/07/six-years/">buried the lede in the post</a>. Included in the celebratory post was the note that they’ve gone from 30 to 40 employees, doubled their revenues, and tripled their profit rates in the last year.</p>\n<p>That’s some serious growth, and I’m sure mostly on the back of WooCommerce. As readers know (I love linking this post), WooCommerce is <a title="Interview with Mark Forrester, co-founder of WooThemes" href="http://www.poststat.us/interview-mark-forrester-co-founder-woothemes/">now over 80% of their revenue</a>, and probably more now.</p>\n<h3>Bye bye, bacon</h3>\n<p>Sadly, <a href="http://wpbacon.com/">WP Bacon</a> is done for. The podcast was a fun one, and the blog was pretty good too, but Rob and Ozzy are moving on. The domain got hammered a while back, and the effort to recover the site’s value just wasn’t worth the effort, so the Bacon is gone.</p>\n<p>No fear though, the folks behind it aren’t going anywhere. You can follow <a href="http://twitter.com/rob_neu">Rob</a> and <a href="http://twitter.com/ozzyr">Ozzy</a> on Twitter to catch them in their new antics.</p>\n<h3>The history of WordPress, abridged edition</h3>\n<p>Kinsta is a WordPress hosting company, and they spent some serious time putting together a <a href="https://kinsta.com/learn/wordpress-history/">pretty in-depth post</a> about the history of WordPress.</p>\n<p>This is a good read, but it’s honestly (even with a post this size) really hard to capture the complete scope of WordPress and its history. There’s a good book on the way that will really tell the story, but for now, Kinsta’s post is quite the achievement, and you should definitely <a href="https://kinsta.com/learn/wordpress-history/">check it out</a>.</p>\n<h3>iThemes Sync has an app for that</h3>\n<p><span id="more-6863"></span></p>\n<p>As <a href="http://chrislema.com/update-multiple-wordpress-sites/">Chris Lema highlights</a> with a video review, iThemes <a href="http://ithemes.com/2014/07/10/new-ithemes-sync-iphone-app/">has released an iOS app</a> for their Sync website management service.</p>\n<p>Sync is looking really great, and might be worth checking out if you’re looking for new options in this changing space.</p>\n<h3>The building blocks of responsive web design</h3>\n<p>The Theme Foundry (a Post Status sponsor, for what it’s worth) did a nice <a title="RWD" href="https://thethemefoundry.com/blog/responsive-website-design/">write-up on the building blocks of responsive design</a>.</p>\n<p>I especially liked this post because Drew focused on some things we forget some times, like scaling calls to action, line height, and font weights. There are also other good resources linked within.</p>\n<h3>Design (more than just pixels) for your audience</h3>\n<p>I read a lot of stuff that’s not strictly WordPress related. On Medium, Quartz strategist Mia Mabanta <a href="https://medium.com/@mia/getting-real-survey-answers-out-of-smart-busy-people-778f5a98e4c6">gives an in-depth look</a> at how the financial news website got excellent conversion numbers getting executive-level folks to fill out a survey.</p>\n<p>The degree of strategic thinking and testing goes to show how well something can do if we put some real effort into it. This is a great case study that any consultant or product maker could learn from.</p>\n<p>Another good read that’s not strictly WordPress is Brad Miller’s post on the <a href="http://liftux.com/posts/connection-customer-service-user-experience-design/">connection between customer service and user experience design</a>.</p>\n<hr />\n<p> </p>\n<p>That’s it for the last week. Of course, these are all posts other folks have created. We also had a great week here at Post Status, including some guest posts from <a title="Automating i18n in WordPress themes" href="http://www.poststat.us/automating-i18n-wordpress-themes/">Brady Vercher</a> and <a title="Tips for local WordPress development with Varying Vagrant Vagrants (VVV)" href="http://www.poststat.us/vvv-tips-every-day/">Jason Resnick</a> I hope you’ll check out.</p>\n<p>The days ahead are also shaping up nicely for Post Status. I hope you are all refreshed and ready as I am for a new week.</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, 14 Jul 2014 00:28: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: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: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:59:"WordPress.tv: Dan Beil: How NOT to Develop (With WordPress)";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wordpress.tv/?p=36416";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:74:"http://wordpress.tv/2014/07/13/dan-beil-how-not-to-develop-with-wordpress/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:664:"<div id="v-mwFhKpDW-1" class="video-player">\n</div><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/36416/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/36416/" /></a> <img alt="" border="0" src="http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=36416&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2014/07/13/dan-beil-how-not-to-develop-with-wordpress/"><img alt="Dan Beil: How NOT to Develop (With WordPress)" src="http://videos.videopress.com/mwFhKpDW/video-09ce81fb50_scruberthumbnail_0.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 13 Jul 2014 15:55: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:12:"WordPress.tv";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}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:63:"WordPress.tv: Andrei Chira: Cum mi-a schimbat WordPress viaț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:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wordpress.tv/?p=36533";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wordpress.tv/2014/07/13/andrei-chira-cum-mi-a-schimbat-wordpress-viat%cc%a6a/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:672:"<div id="v-aSN3u5nN-1" class="video-player">\n</div><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/36533/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/36533/" /></a> <img alt="" border="0" src="http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=36533&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2014/07/13/andrei-chira-cum-mi-a-schimbat-wordpress-viat%cc%a6a/"><img alt="Andrei Chira: Cum mi-a schimbat WordPress viața" src="http://videos.videopress.com/aSN3u5nN/video-cfa4d6f800_std.original.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 13 Jul 2014 15:28: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:12:"WordPress.tv";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}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:45:"WordPress.tv: Ivan Potančok: Less, Bootstrap";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wordpress.tv/?p=36481";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:60:"http://wordpress.tv/2014/07/13/ivan-potancok-less-bootstrap/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:630:"<div id="v-NjK2dLXJ-1" class="video-player">\n</div><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/36481/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/36481/" /></a> <img alt="" border="0" src="http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=36481&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2014/07/13/ivan-potancok-less-bootstrap/"><img alt="Ivan Potančok: Less, Bootstrap" src="http://videos.videopress.com/NjK2dLXJ/video-be1dc90ddf_std.original.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 13 Jul 2014 15:15:10 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"WordPress.tv";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}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:48:"WordPress.tv: Martin Viceník: Video a 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://wordpress.tv/?p=36310";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"http://wordpress.tv/2014/07/12/martin-vicenik-video-a-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:643:"<div id="v-Hxbb4DLf-1" class="video-player">\n</div><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/36310/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/36310/" /></a> <img alt="" border="0" src="http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=36310&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2014/07/12/martin-vicenik-video-a-wordpress/"><img alt="Martin Viceník: Video a WordPress" src="http://videos.videopress.com/Hxbb4DLf/video-4c0e0f61b6_scruberthumbnail_0.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 12 Jul 2014 15:58:58 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"WordPress.tv";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}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:81:"WordPress.tv: Yoav Farhi: Language Packs and the Future of WordPress Translations";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wordpress.tv/?p=36412";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:98:"http://wordpress.tv/2014/07/12/yoav-farhi-language-packs-and-the-future-of-wordpress-translations/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:704:"<div id="v-mUPafAmJ-1" class="video-player">\n</div><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/36412/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/36412/" /></a> <img alt="" border="0" src="http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=36412&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2014/07/12/yoav-farhi-language-packs-and-the-future-of-wordpress-translations/"><img alt="Yoav Farhi: Language Packs and the Future of WordPress Translations" src="http://videos.videopress.com/mUPafAmJ/video-2813feab06_std.original.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 12 Jul 2014 15:58: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:12:"WordPress.tv";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}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:75:"WordPress.tv: Almog Baku: Optimizing and Improving Performance in WordPress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wordpress.tv/?p=19153";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:92:"http://wordpress.tv/2014/07/12/almog-baku-optimizing-and-improving-performance-in-wordpress/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:698:"<div id="v-Jl4CDEqK-1" class="video-player">\n</div><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/19153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/19153/" /></a> <img alt="" border="0" src="http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=19153&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2014/07/12/almog-baku-optimizing-and-improving-performance-in-wordpress/"><img alt="Almog Baku: Optimizing and Improving Performance in WordPress" src="http://videos.videopress.com/Jl4CDEqK/video-813f1ede0d_scruberthumbnail_1.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 12 Jul 2014 15:42:02 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"WordPress.tv";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}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:90:"WPTavern: A Proposed Enhancement That Saves A Mouse Click When Upgrading WordPress Plugins";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=26203";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:224:"http://wptavern.com/a-proposed-enhancement-that-saves-a-mouse-click-when-upgrading-wordpress-plugins?utm_source=rss&utm_medium=rss&utm_campaign=a-proposed-enhancement-that-saves-a-mouse-click-when-upgrading-wordpress-plugins";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1940:"<p>Four months ago, WordPress user <a title="https://profiles.wordpress.org/Fredelig" href="https://profiles.wordpress.org/Fredelig">Fredelig</a> <a title="https://core.trac.wordpress.org/ticket/27303" href="https://core.trac.wordpress.org/ticket/27303">created a new ticket</a> on WordPress trac suggesting the plugin update notification bubble load the page listing all of the plugins with pending upgrades.</p>\n<p>In WordPress 3.9, clicking the notification loads Plugins.php which lists all of the activated plugins, including the ones with upgrades. This requires a second mouse click to show only the plugins that have an update available. Although it was too late to include in WordPress 3.9, it’s also missed the boat for 4.0.</p>\n<div id="attachment_26260" class="wp-caption aligncenter"><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/07/MoreUsefulPluginUpgradeBubble.png" rel="prettyphoto[26203]"><img class="size-full wp-image-26260" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/07/MoreUsefulPluginUpgradeBubble.png?resize=621%2C131" alt="Better Plugin Upgrade Notification Bubbles" /></a><p class="wp-caption-text">Better Plugin Upgrade Notification Bubbles</p></div>\n<p>On a related note, I’d like to propose an enhancement to the comment notification bubble. Clicking on the notification currently loads edit-comments.php which displays both approved and moderated comments. Ninety-nine percent of the time when I click on the notification link, it’s because I want to approve a comment pending moderation.</p>\n<p>Although the task can be accomplished with the way it works now, sometimes the comment I need to approve is not on the first page and I have to click the Pending comments link. Having the notifications bubble load the pending comments first would save me a mouse click.</p>\n<p><strong>Do you have any pros or cons regarding the suggested enhancements?</strong></p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 12 Jul 2014 06:37:10 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:59:"WPTavern: WPWeekly Episode 154 – All About The Customizer";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=26192&preview_id=26192";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:154:"http://wptavern.com/wpweekly-episode-154-all-about-the-customizer?utm_source=rss&utm_medium=rss&utm_campaign=wpweekly-episode-154-all-about-the-customizer";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2656:"<p>On this episode of WordPress Weekly, we give you the low down on all the new features in WordPress 4.0 beta 1. Later in the show, <a href="http://wp.mattwie.be/" title="http://wp.mattwie.be/">Matt Wiebe</a> who works for Automattic as a design engineer, joins us to discuss his thoughts on the WordPress customizer. Most of what we talked about stems from his <a href="http://wp.mattwie.be/2014/06/27/evolving-the-customizer/" title="http://wp.mattwie.be/2014/06/27/evolving-the-customizer/">recent blog post</a> highlighting some of the roadblocks the customizer has in its current state. Near the end of the show, we have a candid conversation on how the feature may evolve in the next 2-3 years. After the interview, I’m more optimistic of what the future holds for the customizer.</p>\n<h2>Stories Discussed:</h2>\n<p><a href="http://wptavern.com/preview-wordpress-4-0-features-beta-1-now-available-for-testing" title="http://wptavern.com/preview-wordpress-4-0-features-beta-1-now-available-for-testing">Preview WordPress 4.0 Features, Beta 1 Now Available for Testing</a><br />\n<a href="http://wptavern.com/wordpress-tv-adds-its-first-german-presentation-konstantin-obenland-on-underscores" title="http://wptavern.com/wordpress-tv-adds-its-first-german-presentation-konstantin-obenland-on-underscores">WordPress.tv Adds Its First German Presentation: Konstantin Obenland on Underscores</a><br />\n<a href="http://wptavern.com/wordpress-feature-plugin-planned-to-improve-image-editing-experience" title="http://wptavern.com/wordpress-feature-plugin-planned-to-improve-image-editing-experience">WordPress Feature Plugin Planned to Improve Image Editing Experience</a><br />\n<a href="http://wptavern.com/wpbeginner-turns-5-celebrates-with-campaign-to-build-two-new-schools-in-guatemala" title="http://wptavern.com/wpbeginner-turns-5-celebrates-with-campaign-to-build-two-new-schools-in-guatemala">WPBeginner Turns 5, Celebrates With Campaign To Build Two New Schools In Guatemala</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Friday, July 18th 3 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 #154:</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:"Sat, 12 Jul 2014 02:34:56 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s: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: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:88:"WPTavern: Gust Plugin Adds Support for Categories, Featured Images and Custom Post Types";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=26217";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:218:"http://wptavern.com/gust-plugin-adds-support-for-categories-featured-images-and-custom-post-types?utm_source=rss&utm_medium=rss&utm_campaign=gust-plugin-adds-support-for-categories-featured-images-and-custom-post-types";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3760:"<p>The <a href="http://wordpress.org/plugins/gust/" target="_blank">Gust</a> plugin aims to provide a <a href="https://ghost.org/" target="_blank">Ghost</a>-style publishing experience within the WordPress admin. It was released at the end of last year by developer Arūnas Liuiza. He was disappointed that Ghost didn’t end up being a fork of WordPress, so he decided to package its best publishing features into a plugin. Gust adds a Ghost-style editor with a live preview pane to WordPress and includes support for Markdown.</p>\n<p>Liuiza has been gradually improving the plugin and the 0.4.0 release is a total rewrite with several new features since the last time we <a href="http://wptavern.com/gust-plugin-brings-the-ghost-admin-panel-into-wordpress" target="_blank">featured</a> it on the Tavern. It’s now PHP 5.2 compatible. In addition to media upload capabilities, Gust now supports adding and assigning a featured image.</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/07/edit-featured-image.jpg" rel="prettyphoto[26217]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/07/edit-featured-image.jpg?resize=1025%2C585" alt="edit-featured-image" class="aligncenter size-full wp-image-26224" /></a></p>\n<p>The latest version includes the ability to create and add categories in addition to tags.</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/07/category-support.jpg" rel="prettyphoto[26217]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/07/category-support.jpg?resize=1004%2C643" alt="category-support" class="aligncenter size-full wp-image-26218" /></a></p>\n<p>Gust 0.4.0 adds autosave support so you don’t have to worry about saving your drafts as you are composing. This release includes support for custom fields (post meta) and adds experimental support for custom post types. You can enable that feature via the plugin’s settings page.</p>\n<p>In the past, the Gust dashboard was difficult to find unless you knew how to navigate there. The latest release improves the discoverability of the Gust dashboard by adding tighter integration with the WordPress admin bar and post edit links.</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/07/gust-dashboard.jpg" rel="prettyphoto[26217]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/07/gust-dashboard.jpg?resize=640%2C168" alt="gust-dashboard" class="aligncenter size-full wp-image-26219" /></a></p>\n<p>You can easily edit any of your content in the Gust dashboard by clicking on the new link in the hover menu below posts/pages/CPTs.</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/07/edit-posts.jpg" rel="prettyphoto[26217]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/07/edit-posts.jpg?resize=833%2C276" alt="edit-posts" class="aligncenter size-full wp-image-26221" /></a></p>\n<p>Gust is by no means a perfect of full-featured editing experience, but it is a solid option for adding Markdown support with a live preview. Not every user likes the same flavor of WordPress and Gust adds an interesting alternative to the current publishing experience. In the future, we may see many more variations of the WordPress editor as the platform adds better support for interfacing with external apps.</p>\n<p>If you like where the plugin is headed and want to help contribute, you can find Gust on <a href="https://github.com/ideag/gust" target="_blank">GitHub</a>. So far, it has received excellent ratings on WordPress.org and Liuiza has been adding regular improvements. You can download <a href="http://wordpress.org/plugins/gust/" target="_blank">Gust</a> for free via the plugin installer in the WordPress admin.</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, 12 Jul 2014 00:09:45 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:72:"WPTavern: THBusiness: A Free WordPress Business Theme Based on Bootstrap";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=26181";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:186:"http://wptavern.com/thbusiness-a-free-wordpress-business-theme-based-on-bootstrap?utm_source=rss&utm_medium=rss&utm_campaign=thbusiness-a-free-wordpress-business-theme-based-on-bootstrap";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3206:"<p>If you’re looking for a clean, customizable business theme for WordPress, <a href="http://wordpress.org/themes/thbusiness" target="_blank">THBusiness</a> just landed in the official Themes Directory. While most free themes are dedicated to blogging, THBusiness is focused on providing all of the basic elements you need to display featured content, services, testimonials, and more.</p>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/07/THbusiness.png" rel="prettyphoto[26181]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/07/THbusiness.png?resize=880%2C660" alt="THbusiness" class="aligncenter size-full wp-image-26186" /></a></p>\n<p>It was designed by the folks at <a href="http://www.themezhut.com/" target="_blank">THEMEZHUT</a> to have a big visual impact on the homepage. The theme is based on <a href="http://getbootstrap.com/" target="_blank">Bootstrap</a> and includes a full width Flexslider, which can be easily configured in the options panel.</p>\n<p>Most of the layout is managed by widgets. THBusiness includes a total of eight different widget areas, with four of them located on the homepage.</p>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/07/widgets.jpg" rel="prettyphoto[26181]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/07/widgets.jpg?resize=944%2C256" alt="widgets" class="aligncenter size-full wp-image-26183" /></a></p>\n<p>It also includes six business-specific widgets that make it easy to set up featured images, services, testimonials, a call to action, and recent work. THBusiness has support for <a href="http://fortawesome.github.io/Font-Awesome/" target="_blank">Font Awesome</a> icons and adding them to the widgets doesn’t require adding any extra markup.</p>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/07/recent-work-testimonials.jpg" rel="prettyphoto[26181]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/07/recent-work-testimonials.jpg?resize=805%2C784" alt="recent-work-testimonials" class="aligncenter size-full wp-image-26198" /></a></p>\n<p>The options panel lets you easily add a custom logo, favicon, and footer description. Check out a <a href="http://www.themezhut.com/demo/thbusiness/" target="_blank">live demo of THBusiness</a> to see it in action.</p>\n<p>Using THBusiness means that you can take advantage of any of the Bootstrap components such as labels, alerts, thumbnails, buttons, badges and more. While not everyone is a fan of reusable UI components, they can help to keep a website’s look consistent. If you’re not a designer, working with a frontend framework like <a href="http://getbootstrap.com/" target="_blank">Bootstrap</a> makes it easy to mix in different UI elements without having to reinvent the wheel.</p>\n<p><a href="http://wordpress.org/themes/thbusiness" target="_blank">THBusiness</a> is a clean business theme that doesn’t pack in a lot of complicated options. It’s easy to setup by dropping widgets into the homepage widget areas and you can have your site looking like the demo in a matter of minutes. Download it for free through your WordPress admin theme browser.</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, 11 Jul 2014 18:13:14 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:85:"Post Status: Tips for local WordPress development with Varying Vagrant Vagrants (VVV)";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:30:"http://www.poststat.us/?p=6848";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://www.poststat.us/vvv-tips-every-day/?utm_source=rss&utm_medium=rss&utm_campaign=vvv-tips-every-day";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:6721:"<p><img class="aligncenter size-large wp-image-6861" src="http://www.poststat.us/wp-content/uploads/2014/07/vvv-tips-752x300.jpg" alt="vvv-tips" width="752" height="300" />I’ve used local development environments for as long as I can remember. They’ve always been a fluid part of being a developer. The biggest pain point was keeping everything upgraded at all times and switching from one stack to another.</p>\n<p>In case you didn’t notice, I said ”was”. This is because in the Spring of 2013 I found Varying Vagrant Vagrants, or <a href="https://github.com/Varying-Vagrant-Vagrants/VVV">VVV</a>. With VVV you can have your local WordPress development environment virtually silo’d in it’s own container.</p>\n<p>There are many tutorials out there explaining the <a href="http://chriswiegman.com/2013/08/virtual-machines-the-holy-grail-of-local-web-development/">what and why you should use a virtualized development environment</a>, <a href="https://docs.vagrantup.com/v2/getting-started/">how to setup Vagrant</a>, and <a href="http://wptavern.com/wordpress-theme-review-vvv-a-quick-vagrant-setup-for-testing-and-reviewing-themes">how to setup VVV</a> so I won’t dive deep there.</p>\n<p>My take away is just that I want to be able to have an environment that’s flexible, quick, and not so dependent upon the hardware and software installed on my computer.</p>\n<p>With that, here are my most used tips for everyday usage of VVV. I do mention some of the initial pain points I had with VVV, but with some digging around I found solutions that I would like to share with you.</p>\n<h3>1. Creating a new site</h3>\n<p>TL;DR <code>vvv new mysite.dev -v 3.9.1</code></p>\n<p>I’m not a systems engineer by any means. I know enough to be helpful, but not enough to build a full stack. So when I jumped into VVV for the first time, I had an issue with trying to get my existing sites into the /www root directory.</p>\n<p>The way I work is that I have a /Sites directory, then under that is each website that I am working on. When I installed VVV for the first time, I installed it in that /Sites folder only to realize that I probably should’ve installed it outside of that.</p>\n<p>But that was an easy fix. <code>vagrant destroy</code> and start again where I wanted.</p>\n<p>Once I created a site or two I realized that I wanted to automate this process a bit more than the <a href="https://github.com/Varying-Vagrant-Vagrants/VVV/wiki/Auto-site-Setup">Auto site Setup</a> that VVV has built in. After a quick search I found <a href="https://github.com/aliso/vvv-site-wizard">VVV Site Wizard</a>.</p>\n<p>This great script allowed me to create a new site with any version of WP I wanted simply by typing <code>vvv new mysite.dev -v 3.9.1</code> where the -v grabs the version of WordPress I want and installs it. If left off, then it’ll grab the latest.</p>\n<p>I didn’t have to mess with database or nginx files, or provision scripts either. After typing in that simple command, I had a brand new site installed and ready to go in seconds.</p>\n<h3>2. Connecting to MySQL</h3>\n<p>At first glance, I was unsure on using MySQL as I had in the past since I didn’t like using phpMyAdmin for database work. I like to use Sequel Pro (on OS X) to run queries and look at the data.</p>\n<p>I wasn’t sure how I was going to connect to MySQL since normally I would just put in my connection string with the host information and it would connect. With VVV I wouldn’t be able to put in localhost and the user credentials and have it connect, since technically my sites were no longer on my localhost.</p>\n<p>The way to do it is via <a href="https://github.com/Varying-Vagrant-Vagrants/VVV/wiki/Connecting-to-MySQL#ssh-tunnel">SSH Tunnel</a>. In layman’s terms, that’s just relaying the information via SSH.</p>\n<p>So whether you are using Sequel Pro or some other MySQL application, look for SSH Tunnel when setting up your connection.</p>\n<p>Here’s what mine looks like:</p>\n<div id="attachment_6852" class="wp-caption aligncenter"><img class="wp-image-6852 size-full" src="http://www.poststat.us/wp-content/uploads/2014/07/sequel-pro-vvv.png" alt="sequel-pro-vvv" width="454" height="470" /><p class="wp-caption-text">Yes I know it’s bad practice to have root user, but if you have my laptop, then it doesn’t matter what the password is.</p></div>\n<h3>3. Restarting Services</h3>\n<p>This isn’t something that I do all that often, but there are times that I will need to do this often enough that I wanted to share it.</p>\n<p>Sometimes when I run <code>vagrant up</code> MySQL doesn’t start and I’ll get the WordPress “Error Establishing a Database Connection”.</p>\n<p>With two commands, this is easily fixed. First type <code>vagrant ssh</code> and then type <code>sudo service mysql start</code>. After a few seconds, you should be good to go.</p>\n<p>One of the great features of VVV is that unless you destroy your setup, any changes you make within the instance will persist. So there are times when I have to setup custom nginx directives and restart the service.</p>\n<p><code>sudo service nginx restart</code> does the trick.</p>\n<h4>Clean slate</h4>\n<p>After a long day of WordPress development, it’s great to just type <code>vagrant halt</code>, watch my resources come back available, and know that my laptop is free of any development environment burden.</p>\n<p>Since 2013 when I really went neck deep into virtualizing my development environment, I can’t tell you how awesome it is to see the WordPress community embracing this as well. This only serves us as developers more ability to push forward with the latest and greatest plugins, themes, and core as the architectures we work on mature.</p>\n<div id="single-hcard-jasonresnick" class="loop-meta vcard"><h4 class="author-bio fn n">Jason Resnick</h4><div class="author-description"><img alt="Jason Resnick" src="http://0.gravatar.com/avatar/022e1ac79e7186ee6ef38c3916388aa0?s=150&d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D150&r=G" class="avatar avatar-150 photo" height="150" width="150" /><div class="user-bio author-bio">Jason Resnick is a WordPress developer, founder of <a href="http://rezzz.com">rezzz.com</a> & <a href="http://www.rezzz.com/wp-field-guides">WP Field Guides</a> and is a co-host of the WordPress development podcast <a href="http://wpdevtable.com">WP Dev Table</a>. Jason is a sports nut, even if all the teams he follows seem to lose. Follow Jason on Twitter <a href="https://twitter.com/rezzz">@rezzz</a></div><!-- .user-bio .author-bio --></div><!-- .loop-description --></div><!-- .loop-meta -->";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 11 Jul 2014 17:45:15 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jason Resnick";s: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:82:"WordPress.tv: Zac Gordon: Why Setting Up Themes Is a Niche in Itself, What to Know";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wordpress.tv/?p=36328";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:98:"http://wordpress.tv/2014/07/11/zac-gordon-why-setting-up-themes-is-a-niche-in-itself-what-to-know/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:711:"<div id="v-CWraOJk1-1" class="video-player">\n</div><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/36328/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/36328/" /></a> <img alt="" border="0" src="http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=36328&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2014/07/11/zac-gordon-why-setting-up-themes-is-a-niche-in-itself-what-to-know/"><img alt="Zac Gordon: Why Setting Up Themes Is a Niche in Itself, What to Know" src="http://videos.videopress.com/CWraOJk1/video-898f08d1db_scruberthumbnail_0.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 11 Jul 2014 15:53: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:12:"WordPress.tv";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}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:48:"WordPress.tv: Kelly Dwan: A Walk Around the Loop";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wordpress.tv/?p=36414";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:65:"http://wordpress.tv/2014/07/11/kelly-dwan-a-walk-around-the-loop/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:644:"<div id="v-Gkb8CYeW-1" class="video-player">\n</div><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/36414/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/36414/" /></a> <img alt="" border="0" src="http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=36414&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2014/07/11/kelly-dwan-a-walk-around-the-loop/"><img alt="Kelly Dwan: A Walk Around the Loop" src="http://videos.videopress.com/Gkb8CYeW/video-2bc80f3c10_scruberthumbnail_2.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 11 Jul 2014 15:31:01 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"WordPress.tv";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}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:73:"WordPress.tv: Gloria Antonelli: Information Architecture Strategy Session";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wordpress.tv/?p=36324";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wordpress.tv/2014/07/11/gloria-antonelli-information-architecture-strategy-session/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:694:"<div id="v-HdYmQ5Yt-1" class="video-player">\n</div><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/36324/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/36324/" /></a> <img alt="" border="0" src="http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=36324&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2014/07/11/gloria-antonelli-information-architecture-strategy-session/"><img alt="Gloria Antonelli: Information Architecture Strategy Session" src="http://videos.videopress.com/HdYmQ5Yt/video-e4ee1f9bf5_scruberthumbnail_0.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 11 Jul 2014 15:04:44 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"WordPress.tv";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}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:70:"WPTavern: Nantes, France to Host a WordCamp for Developers in November";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=26144";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:182:"http://wptavern.com/nantes-france-to-host-a-wordcamp-for-developers-in-november?utm_source=rss&utm_medium=rss&utm_campaign=nantes-france-to-host-a-wordcamp-for-developers-in-november";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3339:"<div id="attachment_26166" class="wp-caption aligncenter"><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/07/nantes.jpg" rel="prettyphoto[26144]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/07/nantes.jpg?resize=1025%2C681" alt="Nantes" class="size-full wp-image-26166" /></a><p class="wp-caption-text">Nantes</p></div>\n<p>France is getting its second official WordCamp. The event is called <a href="http://2014.wptech.fr/" target="_blank">WordCamp Nantes WP Tech</a> and will be held in Nantes on Saturday, November 29, 2014. Unlike your traditional WordCamp, WP Tech will be devoted entirely to developers.</p>\n<p><strong>“The idea is to share knowledge, ideas and best practices about WordPress development,”</strong> organizer Daniel Roch told the Tavern. “It’s slightly different from a basic WordCamp because there will only be one track about development.”</p>\n<p>Roch is joined by four others on the organization team and they are expecting 100-300 attendees at <a href="http://www.epitech.eu/" target="_blank">Epitech</a>, a school for computer innovation. “All of us thought that there weren’t enough technical conferences about WordPress. In fact, we spoke with many developers, and all of them were enjoying the idea of a WordCamp Developer Edition.”</p>\n<div id="attachment_26151" class="wp-caption alignright"><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/07/venue-nantes.jpg" rel="prettyphoto[26144]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/07/venue-nantes.jpg?resize=300%2C225" alt="La salle de l’Epitech Nantes" class="size-medium wp-image-26151" /></a><p class="wp-caption-text">La salle de l’Epitech Nantes</p></div>\n<p>The selected venue is located in the center of downtown Nantes, as the event was born out of <a href="http://www.wp-nantes.org/" target="_blank">WP Nantes</a>, a thriving local meetup group. The organizers are looking for passionate speakers to present on technical topics. “It doesn’t matter if you’re an expert about your topic,” Roch said. “You must be passionate! Concerning the topics, we’re looking for presentations on coding best practices, security, performance, APIs, etc.”</p>\n<p>WP Tech organizers are considering adding a contributor day, but Roch said they don’t wish to stretch themselves too thin for the first event. “It would be great for us to have a contributor day, but we are afraid to bite off more than we can chew. We think it’s better to have a smaller yet well organized event, rather than a disappointing one.” They remain undecided about adding a contributor day.</p>\n<p>The call for speakers is already open and those selected will be paid for travel and hotel. Presentations will be given in both English and French. Applications to speak will be closed Tuesday, July 15, at midnight. <a href="http://2014.wptech.fr/appel-orateurs/" target="_blank">Contact the organizers</a> if you wish to participate. Developers, designers and project managers are all encouraged to attend WP Tech to learn more about mastering WordPress. Sign up on the event’s <a href="http://2014.nantes.wordcamp.org/" target="_blank">WordCamp site</a> (coming soon) to be notified of updates.</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, 10 Jul 2014 21:37: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: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:59:"WPTavern: Blue Steel: A Free WordPress Theme Based on Roots";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=26074";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:160:"http://wptavern.com/blue-steel-a-free-wordpress-theme-based-on-roots?utm_source=rss&utm_medium=rss&utm_campaign=blue-steel-a-free-wordpress-theme-based-on-roots";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3325:"<p><a href="http://roots.io/" target="_blank">Roots</a> is a WordPress starter theme that makes use of HTML5 Boilerplate, Bootstrap, and Grunt. Over the years Roots has garnered somewhat of a cult following and is still going strong with the release of <a href="http://roots.io/roots-7-0-0-updates/" target="_blank">version 7.0.0</a> last week. This release moves some of the theme’s trademark features into a plugin called <a href="http://wptavern.com/soil-roots-framework-features-that-can-be-used-with-any-wordpress-theme" target="_blank">Soil</a> and adds Bower for front-end package management.</p>\n<p>Blue Steel is a new open source theme built to run on top of Roots. It was inspired by the design of <a href="http://www.theverge.com/" target="_blank">The Verge</a> and, of course, the film <a href="https://www.youtube.com/watch?v=D519hT7-ytY" target="_blank">Zoolander</a>. <a href="https://twitter.com/dhawalhshah" target="_blank">Dhawal Shah</a> introduced his new theme on the Roots discussion boards under a <a href="http://discourse.roots.io/t/new-roots-theme-blue-steel-mit-license/1905" target="_blank">thread</a> titled: <strong>“Is there more to a blog than being really really really ridiculously good looking?”</strong></p>\n<p>Blue Steel is the answer to that question. It was originally created for use on <a href="https://www.class-central.com/" target="_blank">Class Central</a>, a website dedicated to helping people discover free online classes (MOOCs) from top universities such as Stanford, MIT, and Harvard.</p>\n<p>The theme is responsive and resizes down nicely to use mobile-friendly navigation. The <a href="https://www.class-central.com/report/" target="_blank">homepage</a> sports a flat, minimalist style with bold colors and features your latest content with room for a sidebar.</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/07/homepage.jpg" rel="prettyphoto[26074]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/07/homepage.jpg?resize=764%2C626" alt="homepage" class="aligncenter size-full wp-image-26135" /></a></p>\n<p>Blue Steel <a href="https://www.class-central.com/report/udacity-kunal-chawla/" target="_blank">blog posts</a> are styled with readable typography and attractive pullquotes.</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/07/blue-steel-blog-posts.jpg" rel="prettyphoto[26074]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/07/blue-steel-blog-posts.jpg?resize=1025%2C698" alt="blue-steel-blog-posts" class="aligncenter size-full wp-image-26131" /></a></p>\n<p>This is not exactly your average plug-and-play style WordPress theme. In order to use it you must be familiar with both <a href="http://roots.io/" target="_blank">Roots</a> and <a href="https://getcomposer.org/" target="_blank">Composer</a>. You will also be required to modify it to suit your own needs, but it does provide an excellent starting place for creating your own Roots-powered theme.</p>\n<p>Blue Steel is released under a GPL-compatible MIT license. Many thanks to the folks at <a href="http://codelight.eu/" target="_blank">Codelight</a> who decided to make it available on <a href="https://github.com/classcentral/blue-steel" target="_blank">GitHub</a> so anyone can fork it for an easy start.</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, 10 Jul 2014 20:09:06 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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:88:"WPTavern: WordPress Mini Conference “East Meets Press” Set For September 17-21, 2014";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=26058";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:206:"http://wptavern.com/wordpress-mini-conference-east-meets-press-set-for-september-17-21-2014?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-mini-conference-east-meets-press-set-for-september-17-21-2014";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2444:"<p><a title="http://eastmeetspress.com/" href="http://eastmeetspress.com/">East Meets Press</a> is a business focused WordPress event organized by Ben Fox that will be held on <strong>September 17-21</strong> (Wednesday to Sunday – 4 nights). Not to be outdone by BeachPress which was recently held on the West Coast of the US, East Meets Press will take place on the East Coast in Kure Beach, North Carolina.</p>\n<div id="attachment_26110" class="wp-caption aligncenter"><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/07/EastMeetsPressVenue.jpg" rel="prettyphoto[26058]"><img class="size-full wp-image-26110" src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/07/EastMeetsPressVenue.jpg?resize=550%2C365" alt="The Venue For East Meets Press" /></a><p class="wp-caption-text">The Venue For East Meets Press</p></div>\n<p>Individual tickets are <strong>$600.</strong> The tickets are all-inclusive so they cover lodging, internet, food, and beverages. Companies that can’t attend but want to support the event can do so with the <strong>$400</strong> sponsor ticket.</p>\n<p>Without the hustle and bustle of attending sessions and having limited networking time at a WordCamp, this event gives attendees a chance to get to know each another while discussing the business of WordPress in a relaxing atmosphere. There will be set meal times with a given topic of discussion as well as one 15 minute lightning talk each day. Outside of that, attendees will be free to do whatever they want.</p>\n<p>It’s nice to see these type of events unfold within the WordPress community. They’re like miniature versions of <a title="http://wptavern.com/dates-announced-for-pressnomics-3-jan-22nd-24th-2015" href="http://wptavern.com/dates-announced-for-pressnomics-3-jan-22nd-24th-2015">PressNomics</a>. If you plan on going, let us know in the comments and be sure to <a title="http://eastmeetspress.com/?espresso_events=east-coast-press-2014" href="http://eastmeetspress.com/?espresso_events=east-coast-press-2014">register your tickets</a> as space is limited.</p>\n<p>If you attended <a title="http://zao.is/2013/10/beachpress-2-0/" href="http://zao.is/2013/10/beachpress-2-0/">BeachPress 2014</a> or <a title="http://bigsnowtinyconf.com/" href="http://bigsnowtinyconf.com/">Big Snow Tiny Conference 2014,</a> I’d love to hear about your experience in the comments, especially if it improved your business.</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, 10 Jul 2014 18:40:20 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:37;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:50:"Akismet: Akismet 3.0.1 for WordPress Now Available";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"http://blog.akismet.com/?p=1615";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://blog.akismet.com/2014/07/10/akismet-3-0-1-for-wordpress-now-available/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1574:"<p>Extry, extry, read all about it! Version 3.0.1 of <a href="http://wordpress.org/plugins/akismet/">the Akismet plugin for WordPress</a> is now available!</p>\n<p>Even though it’s not a big round number like our 3.0 release, we’ve worked hard to make Akismet even better in 3.0.1:</p>\n<ul>\n<li>We’ve reduced the amount of data we store in the <code>akismet_as_submitted</code> comment meta value for each comment.</li>\n<li>Akismet no longer depends on the <code>fsockopen</code> PHP function.</li>\n<li>jQuery is no longer required for Akismet’s frontend JavaScript.</li>\n<li>We fixed a bug that was causing spam reports from outside of the dashboard (the iOS app, for example) to be ignored.</li>\n<li>If an API key is suspended for any reason, comments will now all be sent to the Pending queue instead of the Spam folder.</li>\n<li>…and lots of other improvements to performance and error-handling.</li>\n</ul>\n<p>To upgrade, visit the Plugins or Updates page of your WordPress dashboard and follow the instructions. If you need to download the 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/1615/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/akismet.wordpress.com/1615/" /></a> <img alt="" border="0" src="http://pixel.wp.com/b.gif?host=blog.akismet.com&blog=116920&post=1615&subd=akismet&ref=&feed=1" width="1" height="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 10 Jul 2014 17:45: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: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: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:30:"Matt: 4 Years Working Remotely";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=43867";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/2014/07/4-years-working-remotely/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:245:"<p>Sara Rosso writes <a href="http://whenihavetime.com/2014/07/08/10-lessons-from-4-years-working-remotely/">10 Lessons from 4 Years Working Remotely at Automattic</a>. (Lesson 11, left out: Always give list articles an odd number of items.)</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, 10 Jul 2014 16:13:31 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"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: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:74:"WPTavern: Preview WordPress 4.0 Features, Beta 1 Now Available for Testing";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=26019";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:190:"http://wptavern.com/preview-wordpress-4-0-features-beta-1-now-available-for-testing?utm_source=rss&utm_medium=rss&utm_campaign=preview-wordpress-4-0-features-beta-1-now-available-for-testing";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4630:"<p><a href="http://wordpress.org/news/2014/07/wordpress-4-0-beta-1/" target="_blank">WordPress 4.0 Beta 1</a> is now available for download and testing. This means that core developers are now onto the stage of bug fixes and inline documentation in preparation for the official release in <a href="http://make.wordpress.org/core/version-4-0-project-schedule/" target="_blank">August</a>.</p>\n<p>Helen Hou-Sandí, the release lead, announced the beta with an outline of user-facing features that need testing. The list offers a good summary of some of the exciting changes and improvements coming in WordPress 4.0:</p>\n<ul>\n<li>Previews of oEmbed URLs in the visual editor and via the “Insert from URL” tab in the media modal.</li>\n<li>Media library “grid view” added in addition to the “list view”</li>\n<li>Refreshed plugin <a href="https://core.trac.wordpress.org/ticket/27440" target="_blank">install</a> and <a href="https://core.trac.wordpress.org/ticket/28785" target="_blank">search</a> experience</li>\n<li>Select a language when installing WordPress</li>\n<li>Improvements to editor resizing its top and bottom bars pin when needed</li>\n<li>Improvements to keyboard and cursor interaction with <a href="https://core.trac.wordpress.org/ticket/28595" target="_blank">TinyMCE views</a></li>\n<li>Widgets in the Customizer are now loaded in a separate panel</li>\n<li>Improvements to formatting functions</li>\n</ul>\n<p>When testing the beta, you’ll find that the grid view for the media library is on by default. You have the option to toggle back to the list view, but I’m not sure why you ever would. The new grid view is truly a thing of beauty and has evolved considerably since last October when we <a href="http://wptavern.com/new-grid-view-coming-to-the-wordpress-media-library" target="_blank">featured</a> it during its initial development.</p>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/07/grid-view.jpg" rel="prettyphoto[26019]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/07/grid-view.jpg?resize=966%2C582" alt="grid-view" class="aligncenter size-full wp-image-26087" /></a></p>\n<p>The bulk edit option allows you to quickly delete multiple images. Clicking on individual items launches a details modal where you can edit an attachment and even navigate between items directly in the modal.</p>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/07/details-modal.jpg" rel="prettyphoto[26019]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/07/details-modal.jpg?resize=718%2C542" alt="details-modal" class="aligncenter size-full wp-image-26089" /></a></p>\n<p>There are a lot of changes packed into WordPress media in the upcoming release and any help testing would be beneficial to the core team.</p>\n<p>The plugin search and installation process is another highly visible feature with a fresh new look. Check out the new <a href="http://wptavern.com/first-look-at-the-new-plugin-details-screen-coming-to-wordpress-4-0" target="_blank">plugin details modal</a> as well as the new grid view when searching for an extension.</p>\n<p><a href="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/07/search-plugins.jpg" rel="prettyphoto[26019]"><img src="http://i0.wp.com/wptavern.com/wp-content/uploads/2014/07/search-plugins.jpg?resize=951%2C338" alt="search-plugins" class="aligncenter size-full wp-image-26091" /></a></p>\n<p>You can help by testing the plugin modals and cards on as many screens and accessibility devices as possible in order to hunt down any bugs with the new display.</p>\n<p>As this is a major release of WordPress, developers would do well to test their sites, themes and plugins against the beta while it’s still early. Hou-Sandí encourages anyone who has found a bug to post in the <a href="http://wordpress.org/support/forum/alphabeta" target="_blank">Alpha/Beta forum</a> or <a href="https://make.wordpress.org/core/reports/" target="_blank">file a ticket on trac</a>. The <a href="http://core.trac.wordpress.org/tickets/major" target="_blank">list of known bugs</a> will show you what testers have already identified so far. Some of those bugs may have already been <a href="http://core.trac.wordpress.org/query?status=closed&group=component&milestone=4.0" target="_blank">fixed</a>. Your bug reports and patches will help to make WordPress 4.0 shiny and polished when it’s officially released in August. Download Beta 1 from the <a href="http://wordpress.org/news/2014/07/wordpress-4-0-beta-1/" target="_blank">release announcement</a> on 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:"Thu, 10 Jul 2014 16:07:09 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:76:"WordPress.tv: Troy Dean: 101 Ways to Elevate Yourself and Demand Higher Fees";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wordpress.tv/?p=36426";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:95:"http://wordpress.tv/2014/07/10/troy-dean-101-ways-to-elevate-yourself-and-demand-higher-fees-3/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:696:"<div id="v-fi1ObGks-1" class="video-player">\n</div><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/36426/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/36426/" /></a> <img alt="" border="0" src="http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=36426&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2014/07/10/troy-dean-101-ways-to-elevate-yourself-and-demand-higher-fees-3/"><img alt="Troy Dean: 101 Ways to Elevate Yourself and Demand Higher Fees" src="http://videos.videopress.com/fi1ObGks/video-96bf3eaf39_std.original.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 10 Jul 2014 15:56: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:12:"WordPress.tv";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}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:48:"WordPress.tv: Kyle Maurer: Shortcode Shenanigans";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wordpress.tv/?p=36330";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:65:"http://wordpress.tv/2014/07/10/kyle-maurer-shortcode-shenanigans/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:644:"<div id="v-ZgmKpbhK-1" class="video-player">\n</div><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/36330/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/36330/" /></a> <img alt="" border="0" src="http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=36330&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2014/07/10/kyle-maurer-shortcode-shenanigans/"><img alt="Kyle Maurer: Shortcode Shenanigans" src="http://videos.videopress.com/ZgmKpbhK/video-60a7186e41_scruberthumbnail_1.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 10 Jul 2014 15:51:47 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"WordPress.tv";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}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:56:"WordPress.tv: Tammie Lister: The Theme Is In The Details";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wordpress.tv/?p=36381";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wordpress.tv/2014/07/10/tammie-lister-the-theme-is-in-the-details/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:660:"<div id="v-cWkmumEQ-1" class="video-player">\n</div><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/36381/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/36381/" /></a> <img alt="" border="0" src="http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=36381&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2014/07/10/tammie-lister-the-theme-is-in-the-details/"><img alt="Tammie Lister: The Theme Is In The Details" src="http://videos.videopress.com/cWkmumEQ/video-32fc4193a4_scruberthumbnail_0.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 10 Jul 2014 15:27:52 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"WordPress.tv";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}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:"Dev Blog: WordPress 4.0 Beta 1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3248";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"http://wordpress.org/news/2014/07/wordpress-4-0-beta-1/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4016:"<p>WordPress 4.0 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.0, try the <a href="http://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.0-beta1.zip">download the beta here</a> (zip).</p>\n<p>4.0 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>Previews of <a href="http://codex.wordpress.org/Embeds">embedding via URLs</a></strong> in the visual editor and the “Insert from URL” tab in the media modal. Try pasting a URL (such as a <a href="http://wordpress.tv/">WordPress.tv</a> or YouTube video) onto its own line in the visual editor. (<a href="https://core.trac.wordpress.org/ticket/28195">#28195</a>, <a href="https://core.trac.wordpress.org/ticket/15490">#15490</a>)</li>\n<li>The <strong>Media Library</strong> now has a “grid” view in addition to the existing list view. Clicking on an item takes you into a modal where you can see a larger preview and edit information about that attachment, and you can navigate between items right from the modal without closing it. (<a href="https://core.trac.wordpress.org/ticket/24716">#24716</a>)</li>\n<li>We’re freshening up the <strong>plugin install experience</strong>. You’ll see some early visual changes as well as more information when searching for plugins and viewing details. (<a href="https://core.trac.wordpress.org/ticket/28785">#28785</a>, <a href="https://core.trac.wordpress.org/ticket/27440">#27440</a>)</li>\n<li><strong>Selecting a language</strong> when you run the installation process. (<a href="https://core.trac.wordpress.org/ticket/28577">#28577</a>)</li>\n<li>The <strong>editor</strong> intelligently resizes and its top and bottom bars pin when needed. Browsers don’t like to agree on where to put things like cursors, so if you find a bug here, please also let us know your browser and operating system. (<a href="https://core.trac.wordpress.org/ticket/28328">#28328</a>)</li>\n<li>We’ve made some improvements to how your keyboard and cursor interact with <strong>TinyMCE views</strong> such as the gallery preview. Much like the editor resizing and scrolling improvements, knowing about your setup is particularly important for bug reports here. (<a href="https://core.trac.wordpress.org/ticket/28595">#28595</a>)</li>\n<li><strong>Widgets in the Customizer</strong> are now loaded in a separate panel. (<a href="https://core.trac.wordpress.org/ticket/27406">#27406</a>)</li>\n<li>We’ve also made some changes to some <strong>formatting</strong> functions, so if you see quotes curling in the wrong direction, please file a bug report.</li>\n</ul>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href="http://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="http://core.trac.wordpress.org/tickets/major">a list of known bugs</a> and <a href="http://core.trac.wordpress.org/query?status=closed&group=component&milestone=4.0">everything we’ve fixed</a> so far.</p>\n<p><strong>Developers:</strong> Never fear, we haven’t forgotten you. There’s plenty for you, too – more on that in upcoming posts. In the meantime, check out the <a href="http://make.wordpress.org/core/2014/07/08/customizer-improvements-in-4-0/#customizer-panels">API for panels in the Customizer</a>.</p>\n<p>Happy testing!</p>\n<p><em>Plugins, editor</em><br />\n<em>Media, things in between</em><br />\n<em>Please help look for bugs</em></p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 10 Jul 2014 10:17: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:15:"Helen Hou-Sandi";s: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:73:"WPTavern: WP Engine Becomes The First Large Partner To Integrate Sidekick";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=26052";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:190:"http://wptavern.com/wp-engine-becomes-the-first-large-partner-to-integrate-sidekick?utm_source=rss&utm_medium=rss&utm_campaign=wp-engine-becomes-the-first-large-partner-to-integrate-sidekick";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2152:"<div id="attachment_26073" class="wp-caption alignright"><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/07/WP-Engine-SIDEKICK-Portal.png" rel="prettyphoto[26052]"><img class="wp-image-26073 size-full" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/07/WP-Engine-SIDEKICK-Portal.png?resize=296%2C457" alt="WP Engine User Portal" /></a><p class="wp-caption-text">WP Engine User Portal</p></div>\n<p>WP Engine has <a title="http://wpengine.com/blog/#/2014/07/09/introducing-interactive-tutorials-within-user-portal/" href="http://wpengine.com/blog/#/2014/07/09/introducing-interactive-tutorials-within-user-portal/">revamped their user portal</a> and is the first large partner to integrate <a title="http://www.sidekick.pro/" href="http://www.sidekick.pro/">Sidekick</a> into its service. Sidekick provides WP Engine customers access to guided tours for understanding how different components of the User Portal work together. Sidekick is a product created by FlowPress to create interactive, narrated, guided walkthroughs. The new user portal has guides to learn about the WP Engine platform, managing your account, setting up your site, etc.</p>\n<p>I was granted access to a WP Engine staging server to experience the benefits these guides offer and I’m impressed. They’re a helping hand at the click of a button. The walkthroughs are clear and to the point. Unlike reading tutorials or watching videos, it was nice to be guided through the process of managing my account.</p>\n<p>The magic behind the walkthroughs is <a title="http://www.sidekick.pro/composer/" href="http://www.sidekick.pro/composer/">Sidekick Composer</a>. Although not available to the public yet, I consider it the Camtasia studio for WordPress. After watching a demo of what this plugin is capable of, I think plugin authors are going to love it. Instead of using pointers, they’ll be able to create interactive tours with narrated explanations on how to configure or use their plugin.</p>\n<p>Keep an eye on the Tavern as rumor has it, the beta period for Sidekick Composer will open soon. When it happens, we’ll let you know.</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, 10 Jul 2014 05:36:22 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:45;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:64:"WPTavern: Create Your Own Custom Pointers in the WordPress Admin";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=26025";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:172:"http://wptavern.com/create-your-own-custom-pointers-in-the-wordpress-admin?utm_source=rss&utm_medium=rss&utm_campaign=create-your-own-custom-pointers-in-the-wordpress-admin";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4358:"<p>Admin pointers were first added in <a href="http://codex.wordpress.org/Version_3.3" target="_blank">WordPress 3.3</a> for the purpose of helping users discover and navigate new features in major releases. For example, when widgets were added to the customizer, an admin pointer displayed to highlight live widget previews on the themes page.</p>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/07/new-feature-admin-pointer.jpg" rel="prettyphoto[26025]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/07/new-feature-admin-pointer.jpg?resize=743%2C495" alt="new-feature-admin-pointer" class="aligncenter size-full wp-image-26034" /></a></p>\n<p>The friendly pointers, when used sparingly, can draw attention to important items and help new users more effectively navigate the admin. Ordinarily, creating your own pointers requires a bit of custom coding. Fortunately, the admin pointers feature is easy to extend, so plugin developers have been able to harness it for unique uses.</p>\n<p><a href="http://wordpress.org/plugins/better-admin-pointers/" target="_blank">Better Admin Pointers</a> is a plugin that makes it possible for anyone to create custom pointers and add them to any screen in the admin. The plugin saves the new pointers as a custom post type. Pointers will display until they are dismissed by the user.</p>\n<p>Here’s an example of a pointer created to identify which plugin you’re editing:</p>\n<p><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/07/edit-plugin.png" rel="prettyphoto[26025]"><img src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/07/edit-plugin.png?resize=1025%2C681" alt="edit-plugin" class="aligncenter size-full wp-image-26045" /></a></p>\n<h3>Pointer Customization Options</h3>\n<p>Better Admin Pointers allows you to customize every aspect of your custom pointers, including:</p>\n<ul>\n<li>Main content area</li>\n<li>Pointer id – A unique id so that it can be tracked in the WP DB as dismissed</li>\n<li>Screen – What page/screen it should appear on</li>\n<li>Target – CSS id or class we want the pointer to attach to on the screen above</li>\n<li>Position Edge – Which edge should be adjacent to the target? (left, right, top, or bottom)</li>\n<li>Position Align – How should the pointer be aligned on this edge, relative to the target? (top, bottom, left, right, or middle)</li>\n</ul>\n<p>The plugin’s settings page has a checkbox option to “show current screen,” which will display the value you need for the screen ID when creating a new pointer.</p>\n<p><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/07/screen-id.jpg" rel="prettyphoto[26025]"><img src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/07/screen-id.jpg?resize=656%2C361" alt="screen-id" class="aligncenter size-full wp-image-26048" /></a></p>\n<p>The WordPress Plugin API also has a handy <a href="http://codex.wordpress.org/Plugin_API/Admin_Screen_Reference" target="_blank">Admin Screen Reference</a> where you can easily locate IDs for the screens.</p>\n<p><strong>A point of caution here:</strong> It’s easy to go overboard creating too many admin pointers. Some popular plugins annoy users to no end with their ever-present pointers. Don’t make this mistake if you decide to customize your own.</p>\n<p>While testing the plugin, I was able to create and customize pointers faster than I imagined. The custom post type essentially guides you through the process with an explanation of the values expected in each box. For the average user, the most difficult aspect of customizing a pointer might be setting the target. If you’re not familiar with using your browser to inspect elements, it may be frustrating to determine the right CSS class or ID to use. However, the plugin’s most typical use case is most likely to be a developer setting up pointers for a client website or for someone who is new to WordPress.</p>\n<p>I can see pointers being very useful for helping clients navigate custom features that a developer has built into the admin. <a href="http://wordpress.org/plugins/better-admin-pointers/" target="_blank">Better Admin Pointers</a> provides a quick way to write up a few friendly pointers to accompany new or confusing screens. Download it 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:"Wed, 09 Jul 2014 23:03:29 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"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:77:"WPTavern: First Look At The New Plugin Details Screen Coming To WordPress 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:28:"http://wptavern.com/?p=26010";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:198:"http://wptavern.com/first-look-at-the-new-plugin-details-screen-coming-to-wordpress-4-0?utm_source=rss&utm_medium=rss&utm_campaign=first-look-at-the-new-plugin-details-screen-coming-to-wordpress-4-0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2472:"<p>In the past two weeks, a lot of work has been done to improve the various plugin installer modals in the backend of WordPress. A <a title="http://en.wikipedia.org/wiki/Modal_window" href="http://en.wikipedia.org/wiki/Modal_window">modal</a> is a fancy way of saying a dialog or popup box. One of the modals revamped is the <a title="https://core.trac.wordpress.org/ticket/27440" href="https://core.trac.wordpress.org/ticket/27440">plugin details view</a>. When users click on the details link when searching for plugins to install from the backend of WordPress, a dialog box appears showing detailed plugin information. Here is what the current implementation looks like.</p>\n<div id="attachment_26039" class="wp-caption aligncenter"><a href="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/07/WPPluginInstallModelBefore.png" rel="prettyphoto[26010]"><img class="size-full wp-image-26039" src="http://i1.wp.com/wptavern.com/wp-content/uploads/2014/07/WPPluginInstallModelBefore.png?resize=866%2C878" alt="Current Plugin Details Modal View" /></a><p class="wp-caption-text">Current Plugin Details Modal View</p></div>\n<p>Here’s what the new view looks like. Keep in mind that it’s a work in progress.</p>\n<div id="attachment_26043" class="wp-caption aligncenter"><a href="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/07/WPPluginInstallModelAfter.png" rel="prettyphoto[26010]"><img class="size-full wp-image-26043" src="http://i2.wp.com/wptavern.com/wp-content/uploads/2014/07/WPPluginInstallModelAfter.png?resize=837%2C852" alt="The Detailed Modal View For WordPress 4.0" /></a><p class="wp-caption-text">The Detailed Modal View For WordPress 4.0</p></div>\n<p>As you can see, the plugin’s banner image is displayed at the top. A reviews tab has been added making it easy to read the latest reviews. In addition to the average rating, you can now see how the average is determined. All contributors to the plugin are listed along with their Gravatars. When the modal view shrinks, the detailed information is displayed above the description text.</p>\n<p>I found the reviews hard to read in chronological order because it’s difficult to determine where a review begins and ends. Showing Gravatars is neat but I question their usefulness if they are the size of favicons. Overall, I like the improvements and can’t wait to see what the finished product looks like.</p>\n<p><strong>What do you think of the new look?</strong></p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 09 Jul 2014 22:19:25 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:45:"Alex King: Custom Taxonomy as “Post Meta”";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=14416";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"http://alexking.org/blog/2014/07/09/custom-taxonomy-as-post-meta";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1135:"<p><em>I found this post while sorting through my old drafts and decided to go ahead and publish it rather than trashing it. Hopefully the code samples don’t break too badly in WordPress 3.9.</em></p>\n<p>I’ve talked a bit about <a href="http://alexking.org/blog/2011/08/29/wordpress-post-meta-taxonomies">when to use custom taxonomies and when to use custom fields/post meta</a> (and how they can be used virtually interchangeably in some situations). If you want to use taxonomies, you’ll probably also want to:</p>\n<ul>\n<li>make sure that the terms you want to use exist in your custom taxonomy</li>\n<li>limit the ability for these terms to be altered</li>\n</ul>\n<p>This Gist is a good start:</p>\n<p><p>View the code on <a href="https://gist.github.com/3723819">Gist</a>.</p></p>\n<p>You’ll probably also want to specify:</p>\n<p><code>''public'' => false,<br />\n''show_ui'' => true,</code></p>\n<p>when defining your custom taxonomy. This makes the UI box for the taxonomy appear in the post/page editing interface as expected, but hides the admin forms for editing the taxonomy terms from the admin menu.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 09 Jul 2014 21:33:02 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"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: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:31:"Matt: Pitchforks for Plutocrats";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=43859";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/2014/07/pitchforks-for-plutocrats/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:322:"<p>Nick Hanauer advocates for $15 minimum wage in <a href="http://www.politico.com/magazine/story/2014/06/the-pitchforks-are-coming-for-us-plutocrats-108014.html">The Pitchforks Are Coming… For Us Plutocrats</a>. He was the first non-family investor in Amazon.com, and as he puts it, a “zillionaire.”</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 09 Jul 2014 20:54:51 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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: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:90:"WPTavern: Kinsta Publishes Guide On The History Of WordPress, Its Ecosystem, and 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:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=26008";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:220:"http://wptavern.com/kinsta-publishes-guide-on-the-history-of-wordpress-its-ecosystem-and-community?utm_source=rss&utm_medium=rss&utm_campaign=kinsta-publishes-guide-on-the-history-of-wordpress-its-ecosystem-and-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:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1316:"<p>Mark Gavalda, CEO of <a title="https://kinsta.com/" href="https://kinsta.com/">Kinsta WordPress Hosting</a>, has <a title="https://kinsta.com/learn/wordpress-history/" href="https://kinsta.com/learn/wordpress-history/">published an in-depth guide</a> covering the history of WordPress, its vast ecosystem, and the community surrounding it. Gavalda does a great job explaining the impact WordPress has had on so many individuals and businesses with quotes from notable members of the community.</p>\n<p>The largest take away for me is that despite taking over an hour to read, it only scratches the surface. One of my favorite parts is a quote from Matt Mullenweg on contributing to WordPress.</p>\n<blockquote><p>Just remember, every contribution counts, no matter what it looks like. It takes every one of us to make WordPress better.</p></blockquote>\n<p>If you’d like to know more about the history of the project before it became WordPress, check out <a title="https://hakre.wordpress.com/2011/01/25/milestones-of-wordpress-early-project-timeline-ca-2000-to-2005/" href="https://hakre.wordpress.com/2011/01/25/milestones-of-wordpress-early-project-timeline-ca-2000-to-2005/">this list of milestones by Hakre</a>. His post covers the events in the 2000-2005 timeline that include the birth of WordPress.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 09 Jul 2014 20:07: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:"";}}}}}}}}}}}}}}}}s:4:"type";i:128;s:7:"headers";a:9:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Wed, 16 Jul 2014 05:22:08 GMT";s:12:"content-type";s:8:"text/xml";s:14:"content-length";s:6:"156458";s:10:"connection";s:5:"close";s:4:"vary";s:15:"Accept-Encoding";s:13:"last-modified";s:29:"Wed, 16 Jul 2014 05:15:17 GMT";s:4:"x-nc";s:11:"HIT lax 249";s:13:"accept-ranges";s:5:"bytes";}s:5:"build";s:14:"20130911110210";}', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(439, '_transient_timeout_feed_mod_867bd5c64f85878d03a060509cd2f92c', '1405531329', 'no'),
(440, '_transient_feed_mod_867bd5c64f85878d03a060509cd2f92c', '1405488129', 'no'),
(441, '_transient_timeout_feed_b9388c83948825c1edaef0d856b7b109', '1405531329', 'no'),
(442, '_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:72:"\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:44:"http://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:"Wed, 16 Jul 2014 05:12: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: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:15:{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:45:"http://wordpress.org/plugins/akismet/#post-15";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 09 Mar 2007 22:11:30 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:32:"15@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:98:"Akismet checks your comments against the Akismet Web service to see if they look like spam or not.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Matt Mullenweg";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:54:"http://wordpress.org/plugins/contact-form-7/#post-2141";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 02 Aug 2007 12:45:03 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"2141@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:54:"Just another contact form plugin. Simple but flexible.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:16:"Takayuki Miyoshi";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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: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:53:"http://wordpress.org/plugins/wordpress-seo/#post-8321";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 01 Jan 2009 20:34:44 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"8321@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:131:"Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using the WordPress SEO plugin 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: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: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: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:48:"http://wordpress.org/plugins/jetpack/#post-23862";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 20 Jan 2011 02:21:38 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"23862@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:104:"Supercharge your WordPress site with powerful features previously only available to WordPress.com 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: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: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: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:63:"http://wordpress.org/plugins/google-sitemap-generator/#post-132";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 09 Mar 2007 22:31:32 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"132@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:105:"This plugin will generate a special XML sitemap which will help search engines to better index your blog.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:5:"arnee";s: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: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:58:"http://wordpress.org/plugins/all-in-one-seo-pack/#post-753";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 30 Mar 2007 20:08:18 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"753@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:126:"All in One SEO Pack is a WordPress SEO plugin to automatically optimize your WordPress blog for Search Engines such as Google.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:8:"uberdose";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:20:"MailPoet Newsletters";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wordpress.org/plugins/wysija-newsletters/#post-32629";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 02 Dec 2011 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:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"32629@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:94:"Send newsletters, post notifications or autoresponders from WordPress easily, and 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:14:"MailPoet Staff";s: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: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:52:"http://wordpress.org/plugins/woocommerce/#post-29860";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 05 Sep 2011 08:13:36 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"29860@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:97:"WooCommerce is a powerful, extendable eCommerce plugin that helps you sell anything. Beautifully.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:9:"WooThemes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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: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:59:"http://wordpress.org/plugins/wordpress-importer/#post-18101";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 20 May 2010 17:42:45 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"18101@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:101:"Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Brian Colinger";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:"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:50:"http://wordpress.org/plugins/wordfence/#post-29832";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 04 Sep 2011 03:13:51 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"29832@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s: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:10;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:21:"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:47:"http://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:34:"5468@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:63:"Create a slick mobile WordPress website 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: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:59:"http://wordpress.org/plugins/better-wp-security/#post-21738";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 22 Oct 2010 22:06:05 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"21738@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s: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:74:"http://wordpress.org/plugins/google-analytics-dashboard-for-wp/#post-50539";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 10 Mar 2013 17:07:11 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"50539@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:148:"Displays Google Analytics Reports and Real-Time Statistics in your Dashboard. Automatically inserts the tracking code in every page of your 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: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:27:"Black Studio TinyMCE Widget";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:68:"http://wordpress.org/plugins/black-studio-tinymce-widget/#post-31973";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 10 Nov 2011 15:06:14 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"31973@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:76:"Adds a WYSIWYG widget based on the standard TinyMCE WordPress visual 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:12:"Marco Chiesi";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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: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:55:"http://wordpress.org/plugins/nextgen-gallery/#post-1169";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 23 Apr 2007 20:08:06 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"1169@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:121:"The most popular WordPress gallery plugin and one of the most popular plugins of all time with over 10 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:"";}}}}}}}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:45:"http://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:10:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Wed, 16 Jul 2014 05:22:08 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:7:"expires";s:29:"Wed, 16 Jul 2014 05:47:44 GMT";s:13:"cache-control";s:0:"";s:6:"pragma";s:0:"";s:13:"last-modified";s:31:"Wed, 16 Jul 2014 05:12:44 +0000";s:4:"x-nc";s:11:"HIT lax 249";}s:5:"build";s:14:"20130911110210";}', 'no'),
(443, '_transient_timeout_feed_mod_b9388c83948825c1edaef0d856b7b109', '1405531329', 'no'),
(444, '_transient_feed_mod_b9388c83948825c1edaef0d856b7b109', '1405488129', 'no'),
(445, '_transient_timeout_dash_4077549d03da2e451c8b5f002294ff51', '1405531329', 'no'),
(446, '_transient_dash_4077549d03da2e451c8b5f002294ff51', '<div class="rss-widget"><ul><li><a class=''rsswidget'' href=''http://wordpress.org/news/2014/07/wordpress-4-0-beta-1/''>WordPress 4.0 Beta 1</a> <span class="rss-date">July 10, 2014</span><div class="rssSummary">WordPress 4.0 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.0, 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://wptavern.com/responsible-plugin-adds-a-responsive-testing-kit-to-the-wordpress-admin-bar?utm_source=rss&utm_medium=rss&utm_campaign=responsible-plugin-adds-a-responsive-testing-kit-to-the-wordpress-admin-bar'' title=''January 2014 marked the first month that mobile traffic has overtaken PC traffic on the internet in the US, accounting for 55% of Internet usage. As mobile traffic is on the rise, designing in the browser has become more popular, as it offers better tools for testing sites against various devices. Responsible is a plugin that adds viewport resizing to the Wo''>WPTavern: Responsible Plugin Adds a Responsive Testing Kit to the WordPress Admin Bar</a></li><li><a class=''rsswidget'' href=''http://wptavern.com/a-wordpress-plugin-that-helps-remove-access-to-the-wordpress-dashboard-from-non-administrators?utm_source=rss&utm_medium=rss&utm_campaign=a-wordpress-plugin-that-helps-remove-access-to-the-wordpress-dashboard-from-non-administrators'' title=''Have you ever wanted to remove access to the WordPress dashboard for a user but didn’t want to touch any code to do it? Remove Dashboard Access by Drew Jaynes makes it an easy process. After activating the plugin, I found it difficult to locate where the configuration settings are. The settings are at the bottom of the Settings > Reading page. I also disc''>WPTavern: A WordPress Plugin That Helps Remove Access To The WordPress Dashboard From Non Administrators</a></li><li><a class=''rsswidget'' href=''http://wptavern.com/wpcore-create-wordpress-plugin-collections-and-install-them-in-one-click?utm_source=rss&utm_medium=rss&utm_campaign=wpcore-create-wordpress-plugin-collections-and-install-them-in-one-click'' title=''WPCore landed in the WordPress plugin repository this week. The plugin extends WordPress to interact with the new WPCore service that allows you to create and manage plugin collections. The new WPCore plugin lets you bulk install all the plugins from any collection in just one click. The service was created by Stuart Starr, an application developer with a pe''>WPTavern: WPCore: Create WordPress Plugin Collections and Install Them in One Click</a></li></ul></div><div class="rss-widget"><ul><li class=''dashboard-news-plugin''><span>Popular Plugin:</span> <a href=''http://wordpress.org/plugins/black-studio-tinymce-widget/'' class=''dashboard-news-plugin-link''>Black Studio TinyMCE Widget</a> <span>(<a href=''plugin-install.php?tab=plugin-information&plugin=black-studio-tinymce-widget&_wpnonce=b7018708bd&TB_iframe=true&width=600&height=800'' class=''thickbox'' title=''Black Studio TinyMCE Widget''>Install</a>)</span></li></ul></div>', 'no'),
(461, '_site_transient_timeout_theme_roots', '1405552554', 'yes'),
(462, '_site_transient_theme_roots', 'a:4:{s:6:"ballin";s:7:"/themes";s:11:"dw-timeline";s:7:"/themes";s:8:"eighties";s:7:"/themes";s:7:"vantage";s:7:"/themes";}', 'yes'),
(463, '_site_transient_update_themes', 'O:8:"stdClass":4:{s:12:"last_checked";i:1405550755;s:7:"checked";a:4:{s:6:"ballin";s:5:"1.0.9";s:11:"dw-timeline";s:5:"1.0.9";s:8:"eighties";s:5:"1.1.0";s:7:"vantage";s:6:"1.1.12";}s:8:"response";a:1:{s:7:"vantage";a:4:{s:5:"theme";s:7:"vantage";s:11:"new_version";s:3:"1.2";s:3:"url";s:36:"https://wordpress.org/themes/vantage";s:7:"package";s:53:"https://wordpress.org/themes/download/vantage.1.2.zip";}}s:12:"translations";a:0:{}}', 'yes'),
(464, '_site_transient_update_plugins', 'O:8:"stdClass":3:{s:12:"last_checked";i:1405550755;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.0.1";s:3:"url";s:38:"https://wordpress.org/plugins/akismet/";s:7:"package";s:56:"https://downloads.wordpress.org/plugin/akismet.3.0.1.zip";}}s:12:"translations";a:0:{}}', 'yes'),
(467, '_transient_doing_cron', '1405619526.3531858921051025390625', 'yes');
-- --------------------------------------------------------
--
-- Table structure for table `wp_postmeta`
--
CREATE TABLE `wp_postmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`meta_id`),
KEY `post_id` (`post_id`),
KEY `meta_key` (`meta_key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=490 ;
--
-- Dumping data for table `wp_postmeta`
--
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1, 2, '_wp_page_template', 'page-templates/full-width.php'),
(6, 5, '_menu_item_type', 'custom'),
(7, 5, '_menu_item_menu_item_parent', '0'),
(8, 5, '_menu_item_object_id', '5'),
(9, 5, '_menu_item_object', 'custom'),
(10, 5, '_menu_item_target', ''),
(11, 5, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(12, 5, '_menu_item_xfn', ''),
(13, 5, '_menu_item_url', 'http://localhost:8888/wordpress/'),
(14, 5, '_menu_item_orphaned', '1405032751'),
(15, 6, '_menu_item_type', 'post_type'),
(16, 6, '_menu_item_menu_item_parent', '0'),
(17, 6, '_menu_item_object_id', '2'),
(18, 6, '_menu_item_object', 'page'),
(19, 6, '_menu_item_target', ''),
(20, 6, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(21, 6, '_menu_item_xfn', ''),
(22, 6, '_menu_item_url', ''),
(23, 6, '_menu_item_orphaned', '1405032751'),
(31, 9, '_menu_item_type', 'custom'),
(32, 9, '_menu_item_menu_item_parent', '0'),
(33, 9, '_menu_item_object_id', '9'),
(34, 9, '_menu_item_object', 'custom'),
(35, 9, '_menu_item_target', ''),
(36, 9, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(37, 9, '_menu_item_xfn', ''),
(38, 9, '_menu_item_url', 'http://localhost:8888/wordpress/'),
(39, 9, '_menu_item_orphaned', '1405033236'),
(40, 10, '_menu_item_type', 'post_type'),
(41, 10, '_menu_item_menu_item_parent', '0'),
(42, 10, '_menu_item_object_id', '2'),
(43, 10, '_menu_item_object', 'page'),
(44, 10, '_menu_item_target', ''),
(45, 10, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(46, 10, '_menu_item_xfn', ''),
(47, 10, '_menu_item_url', ''),
(48, 10, '_menu_item_orphaned', '1405033236'),
(49, 2, '_edit_lock', '1405057015:1'),
(50, 2, '_edit_last', '1'),
(51, 1, '_wp_trash_meta_status', 'publish'),
(52, 1, '_wp_trash_meta_time', '1405033340'),
(53, 1, '_wp_trash_meta_comments_status', 'a:1:{i:1;s:5:"trash";}'),
(54, 13, '_menu_item_type', 'custom'),
(55, 13, '_menu_item_menu_item_parent', '0'),
(56, 13, '_menu_item_object_id', '13'),
(57, 13, '_menu_item_object', 'custom'),
(58, 13, '_menu_item_target', ''),
(59, 13, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(60, 13, '_menu_item_xfn', ''),
(61, 13, '_menu_item_url', 'http://localhost:8888/wordpress/'),
(62, 13, '_menu_item_orphaned', '1405033352'),
(63, 14, '_menu_item_type', 'post_type'),
(64, 14, '_menu_item_menu_item_parent', '0'),
(65, 14, '_menu_item_object_id', '2'),
(66, 14, '_menu_item_object', 'page'),
(67, 14, '_menu_item_target', ''),
(68, 14, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(69, 14, '_menu_item_xfn', ''),
(70, 14, '_menu_item_url', ''),
(71, 14, '_menu_item_orphaned', '1405033352'),
(74, 16, '_menu_item_type', 'custom'),
(75, 16, '_menu_item_menu_item_parent', '0'),
(76, 16, '_menu_item_object_id', '16'),
(77, 16, '_menu_item_object', 'custom'),
(78, 16, '_menu_item_target', ''),
(79, 16, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(80, 16, '_menu_item_xfn', ''),
(81, 16, '_menu_item_url', 'http://localhost:8888/wordpress/'),
(82, 16, '_menu_item_orphaned', '1405033769'),
(83, 17, '_menu_item_type', 'post_type'),
(84, 17, '_menu_item_menu_item_parent', '0'),
(85, 17, '_menu_item_object_id', '2'),
(86, 17, '_menu_item_object', 'page'),
(87, 17, '_menu_item_target', ''),
(88, 17, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(89, 17, '_menu_item_xfn', ''),
(90, 17, '_menu_item_url', ''),
(91, 17, '_menu_item_orphaned', '1405033769'),
(92, 18, '_menu_item_type', 'custom'),
(93, 18, '_menu_item_menu_item_parent', '0'),
(94, 18, '_menu_item_object_id', '18'),
(95, 18, '_menu_item_object', 'custom'),
(96, 18, '_menu_item_target', ''),
(97, 18, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(98, 18, '_menu_item_xfn', ''),
(99, 18, '_menu_item_url', 'http://localhost:8888/wordpress/'),
(100, 18, '_menu_item_orphaned', '1405033796'),
(101, 19, '_menu_item_type', 'post_type'),
(102, 19, '_menu_item_menu_item_parent', '0'),
(103, 19, '_menu_item_object_id', '2'),
(104, 19, '_menu_item_object', 'page'),
(105, 19, '_menu_item_target', ''),
(106, 19, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(107, 19, '_menu_item_xfn', ''),
(108, 19, '_menu_item_url', ''),
(109, 19, '_menu_item_orphaned', '1405033796'),
(110, 20, '_edit_last', '1'),
(111, 20, '_edit_lock', '1405033686:1'),
(112, 20, '_wp_page_template', 'template-custom.php'),
(113, 22, '_wp_attached_file', '2014/07/cropped-cropped-NBC_peacock2-300x1761.png'),
(114, 22, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:300;s:6:"height";i:176;s:4:"file";s:49:"2014/07/cropped-cropped-NBC_peacock2-300x1761.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:49:"cropped-cropped-NBC_peacock2-300x1761-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:10:{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:"";}}'),
(115, 23, '_wp_attached_file', '2014/07/cropped-NBC_peacock2-300x1761.png'),
(116, 23, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:300;s:6:"height";i:176;s:4:"file";s:41:"2014/07/cropped-NBC_peacock2-300x1761.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:41:"cropped-NBC_peacock2-300x1761-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:10:{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:"";}}'),
(118, 25, '_edit_last', '1'),
(119, 25, 'trt_slide_link', ''),
(120, 25, '_edit_lock', '1405034560:1'),
(121, 26, '_wp_attached_file', '2014/07/copy-cropped-NBC_peacock2-1024x602.png'),
(122, 26, '_wp_attachment_context', 'custom-header'),
(123, 26, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1024;s:6:"height";i:602;s:4:"file";s:46:"2014/07/copy-cropped-NBC_peacock2-1024x602.png";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:46:"copy-cropped-NBC_peacock2-1024x602-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:46:"copy-cropped-NBC_peacock2-1024x602-300x176.png";s:5:"width";i:300;s:6:"height";i:176;s:9:"mime-type";s:9:"image/png";}s:13:"main-featured";a:4:{s:4:"file";s:47:"copy-cropped-NBC_peacock2-1024x602-1000x602.png";s:5:"width";i:1000;s:6:"height";i:602;s:9:"mime-type";s:9:"image/png";}s:18:"portfolio-featured";a:4:{s:4:"file";s:46:"copy-cropped-NBC_peacock2-1024x602-500x350.png";s:5:"width";i:500;s:6:"height";i:350;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:10:{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:"";}}'),
(124, 26, '_wp_attachment_is_custom_header', 'eighties'),
(125, 26, '_wp_attachment_custom_header_last_used_eighties', '1405035082'),
(126, 27, 'panels_data', 'a:3:{s:7:"widgets";a:3:{i:0;a:12:{s:5:"title";s:11:"Los Angeles";s:4:"text";s:70:"Click the circle above or the link below to check out the menu for LA.";s:4:"icon";s:17:"icon-envelope-alt";s:21:"icon_background_color";s:0:"";s:5:"image";s:0:"";s:13:"icon_position";s:3:"top";s:9:"icon_size";s:5:"small";s:4:"more";s:11:"Los Angeles";s:8:"more_url";s:1:"#";s:3:"box";s:0:"";s:12:"all_linkable";s:0:"";s:4:"info";a:4:{s:4:"grid";s:1:"0";s:4:"cell";s:1:"0";s:2:"id";s:1:"0";s:5:"class";s:25:"Vantage_CircleIcon_Widget";}}i:1;a:12:{s:5:"title";s:8:"New York";s:4:"text";s:70:"Click the circle above or the link below to check out the menu for NY.";s:4:"icon";s:16:"icon-quote-right";s:21:"icon_background_color";s:0:"";s:5:"image";s:0:"";s:13:"icon_position";s:3:"top";s:9:"icon_size";s:5:"small";s:4:"more";s:8:"New York";s:8:"more_url";s:1:"#";s:3:"box";s:0:"";s:12:"all_linkable";s:0:"";s:4:"info";a:4:{s:4:"grid";s:1:"0";s:4:"cell";s:1:"1";s:2:"id";s:1:"1";s:5:"class";s:25:"Vantage_CircleIcon_Widget";}}i:2;a:12:{s:5:"title";s:16:"Englewood Cliffs";s:4:"text";s:70:"Click the circle above or the link below to check out the menu for EC.";s:4:"icon";s:19:"icon-star-half-full";s:21:"icon_background_color";s:0:"";s:5:"image";s:0:"";s:13:"icon_position";s:3:"top";s:9:"icon_size";s:5:"small";s:4:"more";s:16:"Englewood Cliffs";s:8:"more_url";s:1:"#";s:3:"box";s:0:"";s:12:"all_linkable";s:0:"";s:4:"info";a:4:{s:4:"grid";s:1:"0";s:4:"cell";s:1:"2";s:2:"id";s:1:"2";s:5:"class";s:25:"Vantage_CircleIcon_Widget";}}}s:5:"grids";a:1:{i:0;a:2:{s:5:"cells";s:1:"3";s:5:"style";a:7:{s:5:"class";s:0:"";s:10:"top_border";s:0:"";s:13:"bottom_border";s:0:"";s:10:"background";s:0:"";s:16:"background_image";s:0:"";s:23:"background_image_repeat";s:0:"";s:9:"no_margin";s:0:"";}}}s:10:"grid_cells";a:3:{i:0;a:2:{s:6:"weight";s:18:"0.3333333333333333";s:4:"grid";s:1:"0";}i:1;a:2:{s:6:"weight";s:18:"0.3333333333333333";s:4:"grid";s:1:"0";}i:2;a:2:{s:6:"weight";s:18:"0.3333333333333333";s:4:"grid";s:1:"0";}}}'),
(127, 27, '_wp_page_template', 'home-panels.php'),
(128, 20, '_wp_trash_meta_status', 'publish'),
(129, 20, '_wp_trash_meta_time', '1405035820'),
(130, 27, '_edit_lock', '1405049752:1'),
(131, 27, '_thumbnail_id', '22'),
(132, 27, 'vantage_metaslider_slider', ''),
(133, 27, 'vantage_menu_icon', ''),
(134, 28, 'panels_data', 'a:3:{s:7:"widgets";a:3:{i:0;a:12:{s:5:"title";s:11:"Los Angeles";s:4:"text";s:70:"Click the circle above or the link below to check out the menu for LA.";s:4:"icon";s:17:"icon-envelope-alt";s:21:"icon_background_color";s:0:"";s:5:"image";s:0:"";s:13:"icon_position";s:3:"top";s:9:"icon_size";s:5:"small";s:4:"more";s:11:"Los Angeles";s:8:"more_url";s:1:"#";s:3:"box";s:0:"";s:12:"all_linkable";s:0:"";s:4:"info";a:4:{s:4:"grid";s:1:"0";s:4:"cell";s:1:"0";s:2:"id";s:1:"0";s:5:"class";s:25:"Vantage_CircleIcon_Widget";}}i:1;a:12:{s:5:"title";s:8:"New York";s:4:"text";s:70:"Click the circle above or the link below to check out the menu for NY.";s:4:"icon";s:16:"icon-quote-right";s:21:"icon_background_color";s:0:"";s:5:"image";s:0:"";s:13:"icon_position";s:3:"top";s:9:"icon_size";s:5:"small";s:4:"more";s:8:"New York";s:8:"more_url";s:1:"#";s:3:"box";s:0:"";s:12:"all_linkable";s:0:"";s:4:"info";a:4:{s:4:"grid";s:1:"0";s:4:"cell";s:1:"1";s:2:"id";s:1:"1";s:5:"class";s:25:"Vantage_CircleIcon_Widget";}}i:2;a:12:{s:5:"title";s:16:"Englewood Cliffs";s:4:"text";s:70:"Click the circle above or the link below to check out the menu for EC.";s:4:"icon";s:19:"icon-star-half-full";s:21:"icon_background_color";s:0:"";s:5:"image";s:0:"";s:13:"icon_position";s:3:"top";s:9:"icon_size";s:5:"small";s:4:"more";s:16:"Englewood Cliffs";s:8:"more_url";s:1:"#";s:3:"box";s:0:"";s:12:"all_linkable";s:0:"";s:4:"info";a:4:{s:4:"grid";s:1:"0";s:4:"cell";s:1:"2";s:2:"id";s:1:"2";s:5:"class";s:25:"Vantage_CircleIcon_Widget";}}}s:5:"grids";a:1:{i:0;a:2:{s:5:"cells";s:1:"3";s:5:"style";a:7:{s:5:"class";s:0:"";s:10:"top_border";s:0:"";s:13:"bottom_border";s:0:"";s:10:"background";s:0:"";s:16:"background_image";s:0:"";s:23:"background_image_repeat";s:0:"";s:9:"no_margin";s:0:"";}}}s:10:"grid_cells";a:3:{i:0;a:2:{s:6:"weight";s:18:"0.3333333333333333";s:4:"grid";s:1:"0";}i:1;a:2:{s:6:"weight";s:18:"0.3333333333333333";s:4:"grid";s:1:"0";}i:2;a:2:{s:6:"weight";s:18:"0.3333333333333333";s:4:"grid";s:1:"0";}}}'),
(135, 27, '_edit_last', '1'),
(136, 29, 'panels_data', 'a:3:{s:7:"widgets";a:4:{i:0;a:12:{s:5:"title";s:11:"Los Angeles";s:4:"text";s:70:"Click the circle above or the link below to check out the menu for LA.";s:4:"icon";s:17:"icon-envelope-alt";s:21:"icon_background_color";s:0:"";s:5:"image";s:0:"";s:13:"icon_position";s:3:"top";s:9:"icon_size";s:5:"small";s:4:"more";s:11:"Los Angeles";s:8:"more_url";s:1:"#";s:3:"box";s:0:"";s:12:"all_linkable";s:0:"";s:4:"info";a:4:{s:4:"grid";s:1:"0";s:4:"cell";s:1:"0";s:2:"id";s:1:"0";s:5:"class";s:25:"Vantage_CircleIcon_Widget";}}i:1;a:6:{s:3:"ids";s:7:"efsfsef";s:4:"size";s:0:"";s:4:"type";s:0:"";s:7:"columns";s:1:"3";s:4:"link";s:0:"";s:4:"info";a:4:{s:4:"grid";s:1:"0";s:4:"cell";s:1:"0";s:2:"id";s:1:"3";s:5:"class";s:33:"SiteOrigin_Panels_Widgets_Gallery";}}i:2;a:12:{s:5:"title";s:8:"New York";s:4:"text";s:70:"Click the circle above or the link below to check out the menu for NY.";s:4:"icon";s:16:"icon-quote-right";s:21:"icon_background_color";s:0:"";s:5:"image";s:0:"";s:13:"icon_position";s:3:"top";s:9:"icon_size";s:5:"small";s:4:"more";s:8:"New York";s:8:"more_url";s:1:"#";s:3:"box";s:0:"";s:12:"all_linkable";s:0:"";s:4:"info";a:4:{s:4:"grid";s:1:"0";s:4:"cell";s:1:"1";s:2:"id";s:1:"1";s:5:"class";s:25:"Vantage_CircleIcon_Widget";}}i:3;a:12:{s:5:"title";s:16:"Englewood Cliffs";s:4:"text";s:70:"Click the circle above or the link below to check out the menu for EC.";s:4:"icon";s:19:"icon-star-half-full";s:21:"icon_background_color";s:0:"";s:5:"image";s:0:"";s:13:"icon_position";s:3:"top";s:9:"icon_size";s:5:"small";s:4:"more";s:16:"Englewood Cliffs";s:8:"more_url";s:1:"#";s:3:"box";s:0:"";s:12:"all_linkable";s:0:"";s:4:"info";a:4:{s:4:"grid";s:1:"0";s:4:"cell";s:1:"2";s:2:"id";s:1:"2";s:5:"class";s:25:"Vantage_CircleIcon_Widget";}}}s:5:"grids";a:1:{i:0;a:2:{s:5:"cells";s:1:"3";s:5:"style";a:7:{s:5:"class";s:0:"";s:10:"top_border";s:0:"";s:13:"bottom_border";s:0:"";s:10:"background";s:0:"";s:16:"background_image";s:0:"";s:23:"background_image_repeat";s:0:"";s:9:"no_margin";s:0:"";}}}s:10:"grid_cells";a:3:{i:0;a:2:{s:6:"weight";s:18:"0.3333333333333333";s:4:"grid";s:1:"0";}i:1;a:2:{s:6:"weight";s:18:"0.3333333333333333";s:4:"grid";s:1:"0";}i:2;a:2:{s:6:"weight";s:18:"0.3333333333333333";s:4:"grid";s:1:"0";}}}'),
(137, 30, 'ml-slider_settings', 'a:35:{s:4:"type";s:10:"responsive";s:6:"random";s:5:"false";s:8:"cssClass";s:0:"";s:8:"printCss";s:4:"true";s:7:"printJs";s:4:"true";s:5:"width";s:3:"500";s:6:"height";s:3:"300";s:3:"spw";i:7;s:3:"sph";i:5;s:5:"delay";s:4:"3000";s:6:"sDelay";i:30;s:7:"opacity";d:0.6999999999999999555910790149937383830547332763671875;s:10:"titleSpeed";i:500;s:6:"effect";s:4:"fade";s:10:"navigation";s:5:"false";s:5:"links";s:5:"false";s:10:"hoverPause";s:4:"true";s:5:"theme";s:7:"default";s:9:"direction";s:10:"horizontal";s:7:"reverse";s:5:"false";s:14:"animationSpeed";s:3:"600";s:8:"prevText";s:1:"<";s:8:"nextText";s:1:">";s:6:"slices";i:15;s:6:"center";s:5:"false";s:9:"smartCrop";s:4:"true";s:12:"carouselMode";s:5:"false";s:14:"carouselMargin";s:1:"5";s:6:"easing";s:6:"linear";s:8:"autoPlay";s:4:"true";s:11:"thumb_width";i:150;s:12:"thumb_height";i:100;s:9:"fullWidth";s:5:"false";s:10:"noConflict";s:5:"false";s:12:"smoothHeight";s:5:"false";}'),
(138, 26, 'ml-slider_type', 'image'),
(139, 26, '_wp_attachment_backup_sizes', 'a:5:{s:15:"resized-700x300";a:5:{s:4:"path";s:130:"/Users/andimitre/Desktop/nbcwebapp/WebAppTeamA/wordpress/wp-content/uploads/2014/07/copy-cropped-NBC_peacock2-1024x602-700x300.png";s:4:"file";s:46:"copy-cropped-NBC_peacock2-1024x602-700x300.png";s:5:"width";i:700;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:16:"resized-1024x284";a:5:{s:4:"path";s:131:"/Users/andimitre/Desktop/nbcwebapp/WebAppTeamA/wordpress/wp-content/uploads/2014/07/copy-cropped-NBC_peacock2-1024x602-1024x284.png";s:4:"file";s:47:"copy-cropped-NBC_peacock2-1024x602-1024x284.png";s:5:"width";i:1024;s:6:"height";i:284;s:9:"mime-type";s:9:"image/png";}s:15:"resized-1024x94";a:5:{s:4:"path";s:130:"/Users/andimitre/Desktop/nbcwebapp/WebAppTeamA/wordpress/wp-content/uploads/2014/07/copy-cropped-NBC_peacock2-1024x602-1024x94.png";s:4:"file";s:46:"copy-cropped-NBC_peacock2-1024x602-1024x94.png";s:5:"width";i:1024;s:6:"height";i:94;s:9:"mime-type";s:9:"image/png";}s:16:"resized-1000x100";a:5:{s:4:"path";s:131:"/Users/andimitre/Desktop/nbcwebapp/WebAppTeamA/wordpress/wp-content/uploads/2014/07/copy-cropped-NBC_peacock2-1024x602-1000x100.png";s:4:"file";s:47:"copy-cropped-NBC_peacock2-1024x602-1000x100.png";s:5:"width";i:1000;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}s:15:"resized-500x300";a:5:{s:4:"path";s:130:"/Users/andimitre/Desktop/nbcwebapp/WebAppTeamA/wordpress/wp-content/uploads/2014/07/copy-cropped-NBC_peacock2-1024x602-500x300.png";s:4:"file";s:46:"copy-cropped-NBC_peacock2-1024x602-500x300.png";s:5:"width";i:500;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}}'),
(140, 26, '_wp_attachment_image_alt', ''),
(141, 31, '_edit_last', '1'),
(142, 31, '_edit_lock', '1405049839:1'),
(143, 31, '_wp_page_template', 'default'),
(144, 31, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:5:{s:5:"title";s:11:"Monday Menu";s:8:"dropdown";s:1:"1";s:12:"hierarchical";s:1:"1";s:5:"count";s:1:"0";s:4:"info";a:4:{s:4:"grid";s:1:"0";s:4:"cell";s:1:"0";s:2:"id";s:1:"0";s:5:"class";s:20:"WP_Widget_Categories";}}}s:5:"grids";a:1:{i:0;a:1:{s:5:"cells";s:1:"1";}}s:10:"grid_cells";a:1:{i:0;a:2:{s:6:"weight";s:1:"1";s:4:"grid";s:1:"0";}}}'),
(145, 31, 'vantage_metaslider_slider', ''),
(146, 31, 'vantage_menu_icon', ''),
(147, 32, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:5:{s:5:"title";s:11:"Monday Menu";s:8:"dropdown";s:1:"1";s:12:"hierarchical";s:1:"1";s:5:"count";s:1:"0";s:4:"info";a:4:{s:4:"grid";s:1:"0";s:4:"cell";s:1:"0";s:2:"id";s:1:"0";s:5:"class";s:20:"WP_Widget_Categories";}}}s:5:"grids";a:1:{i:0;a:2:{s:5:"cells";s:1:"1";s:5:"style";a:7:{s:5:"class";s:9:"wide-grey";s:10:"top_border";s:0:"";s:13:"bottom_border";s:0:"";s:10:"background";s:7:"#a466e2";s:16:"background_image";s:0:"";s:23:"background_image_repeat";s:0:"";s:9:"no_margin";s:0:"";}}}s:10:"grid_cells";a:1:{i:0;a:2:{s:6:"weight";s:1:"1";s:4:"grid";s:1:"0";}}}'),
(148, 33, '_wp_attached_file', '2014/07/30rock_140617_07.jpg'),
(149, 33, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1000;s:6:"height";i:765;s:4:"file";s:28:"2014/07/30rock_140617_07.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:28:"30rock_140617_07-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:28:"30rock_140617_07-300x229.jpg";s:5:"width";i:300;s:6:"height";i:229;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:10:{s:8:"aperture";d:5.5999999999999996447286321199499070644378662109375;s:6:"credit";s:0:"";s:6:"camera";s:11:"NIKON D5100";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1403017074;s:9:"copyright";s:0:"";s:12:"focal_length";s:3:"300";s:3:"iso";s:4:"2800";s:13:"shutter_speed";s:5:"0.008";s:5:"title";s:0:"";}}'),
(168, 36, '_menu_item_type', 'post_type'),
(169, 36, '_menu_item_menu_item_parent', '0'),
(170, 36, '_menu_item_object_id', '27'),
(171, 36, '_menu_item_object', 'page'),
(172, 36, '_menu_item_target', ''),
(173, 36, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(174, 36, '_menu_item_xfn', ''),
(175, 36, '_menu_item_url', ''),
(176, 36, '_menu_item_orphaned', '1405049172'),
(177, 27, '_wp_trash_meta_status', 'publish'),
(178, 27, '_wp_trash_meta_time', '1405050074'),
(179, 31, '_wp_trash_meta_status', 'draft'),
(180, 31, '_wp_trash_meta_time', '1405057163'),
(181, 2, '_wp_trash_meta_status', 'publish'),
(182, 2, '_wp_trash_meta_time', '1405057165'),
(183, 2, '_wp_trash_meta_comments_status', 'a:3:{i:2;s:1:"1";i:3;s:1:"1";i:4;s:1:"1";}'),
(184, 38, '_edit_last', '1'),
(185, 38, '_edit_lock', '1405057427:1'),
(186, 38, '_wp_page_template', 'template-custom.php'),
(187, 38, 'panels_data', 'a:0:{}'),
(197, 38, '_wp_trash_meta_status', 'publish'),
(198, 38, '_wp_trash_meta_time', '1405057435'),
(199, 41, '_edit_last', '1'),
(200, 41, '_edit_lock', '1405121794:1'),
(201, 41, 'ml-slider_type', '100sda'),
(202, 41, '_wp_page_template', 'templates/template-full-notitle.php'),
(203, 41, 'panels_data', 'a:0:{}'),
(204, 43, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:4:{s:5:"title";s:16:"dasd,jnasdkasnkd";s:4:"text";s:19:"asdnbasjkhdbaskjd a";s:6:"filter";s:0:"";s:4:"info";a:4:{s:4:"grid";s:1:"0";s:4:"cell";s:1:"0";s:2:"id";s:1:"0";s:5:"class";s:14:"WP_Widget_Text";}}}s:5:"grids";a:1:{i:0;a:1:{s:5:"cells";s:1:"1";}}s:10:"grid_cells";a:1:{i:0;a:2:{s:6:"weight";s:1:"1";s:4:"grid";s:1:"0";}}}'),
(214, 45, '_wp_attached_file', '2014/07/cropped-NBC_peacock2-300x17611.png'),
(215, 45, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:300;s:6:"height";i:176;s:4:"file";s:42:"2014/07/cropped-NBC_peacock2-300x17611.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:42:"cropped-NBC_peacock2-300x17611-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:10:{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:"";}}'),
(216, 46, '_wp_attached_file', '2014/07/copy-cropped-NBC_peacock2-1024x602-700x3001.png'),
(217, 46, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:700;s:6:"height";i:300;s:4:"file";s:55:"2014/07/copy-cropped-NBC_peacock2-1024x602-700x3001.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:55:"copy-cropped-NBC_peacock2-1024x602-700x3001-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:55:"copy-cropped-NBC_peacock2-1024x602-700x3001-300x128.png";s:5:"width";i:300;s:6:"height";i:128;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:10:{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:"";}}'),
(218, 47, '_wp_attached_file', '2014/07/cropped-NBC_peacock2-300x176111.png'),
(219, 47, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:300;s:6:"height";i:176;s:4:"file";s:43:"2014/07/cropped-NBC_peacock2-300x176111.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:43:"cropped-NBC_peacock2-300x176111-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:10:{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:"";}}'),
(220, 48, '_wp_attached_file', '2014/07/20130222_142056.jpg'),
(221, 48, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:3264;s:6:"height";i:2448;s:4:"file";s:27:"2014/07/20130222_142056.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:27:"20130222_142056-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:27:"20130222_142056-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:28:"20130222_142056-1024x768.jpg";s:5:"width";i:1024;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:10:{s:8:"aperture";d:2.649999999999999911182158029987476766109466552734375;s:6:"credit";s:0:"";s:6:"camera";s:8:"SGH-T989";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1361542856;s:9:"copyright";s:0:"";s:12:"focal_length";s:4:"4.03";s:3:"iso";s:2:"32";s:13:"shutter_speed";s:17:"0.000892060660125";s:5:"title";s:0:"";}}'),
(222, 49, '_wp_attached_file', '2014/07/30rock_140617_071.jpg'),
(223, 49, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1000;s:6:"height";i:765;s:4:"file";s:29:"2014/07/30rock_140617_071.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:29:"30rock_140617_071-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:29:"30rock_140617_071-300x229.jpg";s:5:"width";i:300;s:6:"height";i:229;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:10:{s:8:"aperture";d:5.5999999999999996447286321199499070644378662109375;s:6:"credit";s:0:"";s:6:"camera";s:11:"NIKON D5100";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1403017074;s:9:"copyright";s:0:"";s:12:"focal_length";s:3:"300";s:3:"iso";s:4:"2800";s:13:"shutter_speed";s:5:"0.008";s:5:"title";s:0:"";}}'),
(224, 50, '_edit_last', '1'),
(225, 50, '_edit_lock', '1405118977:1'),
(226, 50, '_wp_page_template', 'template-custom.php'),
(236, 50, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:2:{s:5:"title";s:11:"My calendar";s:4:"info";a:4:{s:4:"grid";s:1:"0";s:4:"cell";s:1:"0";s:2:"id";s:1:"0";s:5:"class";s:18:"WP_Widget_Calendar";}}}s:5:"grids";a:1:{i:0;a:1:{s:5:"cells";s:1:"1";}}s:10:"grid_cells";a:1:{i:0;a:2:{s:6:"weight";s:1:"1";s:4:"grid";s:1:"0";}}}'),
(237, 53, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:2:{s:5:"title";s:11:"My calendar";s:4:"info";a:4:{s:4:"grid";s:1:"0";s:4:"cell";s:1:"0";s:2:"id";s:1:"0";s:5:"class";s:18:"WP_Widget_Calendar";}}}s:5:"grids";a:1:{i:0;a:1:{s:5:"cells";s:1:"1";}}s:10:"grid_cells";a:1:{i:0;a:2:{s:6:"weight";s:1:"1";s:4:"grid";s:1:"0";}}}'),
(238, 54, '_edit_last', '1'),
(240, 54, 'panels_data', 'a:0:{}'),
(241, 54, 'dw-grid', 'normal'),
(242, 54, '_edit_lock', '1405114237:1'),
(243, 50, '_wp_trash_meta_status', 'publish'),
(244, 50, '_wp_trash_meta_time', '1405119132'),
(254, 41, 'vantage_metaslider_slider', ''),
(255, 41, 'vantage_menu_icon', ''),
(256, 27, '_wp_trash_meta_status', 'publish'),
(257, 27, '_wp_trash_meta_time', '1405121941'),
(258, 41, '_wp_trash_meta_status', 'publish'),
(259, 41, '_wp_trash_meta_time', '1405121943'),
(260, 60, '_edit_last', '1'),
(261, 60, '_edit_lock', '1405353514:1'),
(262, 60, '_wp_page_template', 'default'),
(272, 60, 'panels_data', 'a:0:{}'),
(273, 60, '_wp_trash_meta_status', 'publish'),
(274, 60, '_wp_trash_meta_time', '1405353733'),
(275, 63, '_edit_last', '1'),
(276, 63, '_edit_lock', '1405358419:1'),
(277, 63, '_wp_page_template', 'template-custom.php'),
(287, 63, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:4:{s:5:"title";s:34:"Please vote on the following food:";s:4:"form";s:1:"2";s:4:"size";s:2:"20";s:4:"info";a:4:{s:4:"grid";s:1:"0";s:4:"cell";s:1:"0";s:2:"id";s:1:"1";s:5:"class";s:11:"FrmShowForm";}}}s:5:"grids";a:1:{i:0;a:1:{s:5:"cells";s:1:"1";}}s:10:"grid_cells";a:1:{i:0;a:2:{s:6:"weight";s:1:"1";s:4:"grid";s:1:"0";}}}'),
(288, 65, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:3:{s:5:"image";s:63:"http://www.logobird.com/wp-content/uploads/2011/01/nbc-logo.png";s:9:"animation";s:4:"fade";s:4:"info";a:4:{s:4:"grid";s:1:"0";s:4:"cell";s:1:"0";s:2:"id";s:1:"0";s:5:"class";s:39:"SiteOrigin_Panels_Widget_Animated_Image";}}}s:5:"grids";a:1:{i:0;a:1:{s:5:"cells";s:1:"1";}}s:10:"grid_cells";a:1:{i:0;a:2:{s:6:"weight";s:1:"1";s:4:"grid";s:1:"0";}}}'),
(289, 66, '_menu_item_type', 'post_type'),
(290, 66, '_menu_item_menu_item_parent', '0'),
(291, 66, '_menu_item_object_id', '63'),
(292, 66, '_menu_item_object', 'page'),
(293, 66, '_menu_item_target', ''),
(294, 66, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(295, 66, '_menu_item_xfn', ''),
(296, 66, '_menu_item_url', ''),
(297, 66, '_menu_item_orphaned', '1405355379'),
(298, 67, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:4:{s:5:"title";s:34:"Please vote on the following food:";s:4:"form";s:1:"2";s:4:"size";s:2:"20";s:4:"info";a:4:{s:4:"grid";s:1:"0";s:4:"cell";s:1:"0";s:2:"id";s:1:"1";s:5:"class";s:11:"FrmShowForm";}}}s:5:"grids";a:1:{i:0;a:1:{s:5:"cells";s:1:"1";}}s:10:"grid_cells";a:1:{i:0;a:2:{s:6:"weight";s:1:"1";s:4:"grid";s:1:"0";}}}'),
(299, 68, '_edit_last', '1'),
(300, 68, '_edit_lock', '1405362851:1'),
(301, 68, '_wp_page_template', 'template-custom.php'),
(311, 68, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:4:{s:5:"title";s:10:"Contact Us";s:4:"form";s:1:"5";s:4:"size";s:3:"100";s:4:"info";a:4:{s:4:"grid";s:1:"0";s:4:"cell";s:1:"0";s:2:"id";s:1:"1";s:5:"class";s:11:"FrmShowForm";}}}s:5:"grids";a:1:{i:0;a:1:{s:5:"cells";s:1:"1";}}s:10:"grid_cells";a:1:{i:0;a:2:{s:6:"weight";s:1:"1";s:4:"grid";s:1:"0";}}}'),
(312, 70, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:4:{s:5:"title";s:10:"Contact Us";s:4:"form";s:1:"3";s:4:"size";s:2:"20";s:4:"info";a:4:{s:4:"grid";s:1:"0";s:4:"cell";s:1:"0";s:2:"id";s:1:"0";s:5:"class";s:11:"FrmShowForm";}}}s:5:"grids";a:1:{i:0;a:1:{s:5:"cells";s:1:"1";}}s:10:"grid_cells";a:1:{i:0;a:2:{s:6:"weight";s:1:"1";s:4:"grid";s:1:"0";}}}'),
(313, 71, 'panels_data', 'a:3:{s:7:"widgets";a:1:{i:0;a:4:{s:5:"title";s:10:"Contact Us";s:4:"form";s:1:"5";s:4:"size";s:3:"100";s:4:"info";a:4:{s:4:"grid";s:1:"0";s:4:"cell";s:1:"0";s:2:"id";s:1:"1";s:5:"class";s:11:"FrmShowForm";}}}s:5:"grids";a:1:{i:0;a:1:{s:5:"cells";s:1:"1";}}s:10:"grid_cells";a:1:{i:0;a:2:{s:6:"weight";s:1:"1";s:4:"grid";s:1:"0";}}}'),
(314, 72, '_edit_last', '1'),
(315, 72, '_edit_lock', '1405371535:1'),
(316, 72, '_wp_page_template', 'template-new.php'),
(326, 72, 'panels_data', 'a:0:{}'),
(327, 75, '_menu_item_type', 'post_type'),
(328, 75, '_menu_item_menu_item_parent', '0'),
(329, 75, '_menu_item_object_id', '63'),
(330, 75, '_menu_item_object', 'page'),
(331, 75, '_menu_item_target', ''),
(332, 75, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(333, 75, '_menu_item_xfn', ''),
(334, 75, '_menu_item_url', ''),
(336, 76, '_menu_item_type', 'post_type'),
(337, 76, '_menu_item_menu_item_parent', '0'),
(338, 76, '_menu_item_object_id', '68'),
(339, 76, '_menu_item_object', 'page'),
(340, 76, '_menu_item_target', ''),
(341, 76, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(342, 76, '_menu_item_xfn', ''),
(343, 76, '_menu_item_url', ''),
(345, 77, '_menu_item_type', 'post_type'),
(346, 77, '_menu_item_menu_item_parent', '0'),
(347, 77, '_menu_item_object_id', '72'),
(348, 77, '_menu_item_object', 'page'),
(349, 77, '_menu_item_target', ''),
(350, 77, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(351, 77, '_menu_item_xfn', ''),
(352, 77, '_menu_item_url', ''),
(353, 77, '_menu_item_orphaned', '1405371057'),
(354, 78, '_menu_item_type', 'custom'),
(355, 78, '_menu_item_menu_item_parent', '0'),
(356, 78, '_menu_item_object_id', '78'),
(357, 78, '_menu_item_object', 'custom'),
(358, 78, '_menu_item_target', ''),
(359, 78, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(360, 78, '_menu_item_xfn', ''),
(361, 78, '_menu_item_url', 'http://localhost:8888/wordpress/'),
(363, 79, '_edit_last', '1'),
(364, 79, '_edit_lock', '1405487855:1'),
(365, 79, '_wp_page_template', 'template-menu.php'),
(375, 79, 'panels_data', 'a:0:{}'),
(376, 82, '_edit_last', '1'),
(377, 82, '_edit_lock', '1405443066:1'),
(378, 82, '_wp_page_template', 'template-new.php'),
(388, 82, 'panels_data', 'a:0:{}'),
(389, 85, '_menu_item_type', 'post_type'),
(390, 85, '_menu_item_menu_item_parent', '0'),
(391, 85, '_menu_item_object_id', '82'),
(392, 85, '_menu_item_object', 'page'),
(393, 85, '_menu_item_target', ''),
(394, 85, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(395, 85, '_menu_item_xfn', ''),
(396, 85, '_menu_item_url', ''),
(398, 86, '_menu_item_type', 'post_type'),
(399, 86, '_menu_item_menu_item_parent', '0'),
(400, 86, '_menu_item_object_id', '79'),
(401, 86, '_menu_item_object', 'page'),
(402, 86, '_menu_item_target', ''),
(403, 86, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(404, 86, '_menu_item_xfn', ''),
(405, 86, '_menu_item_url', ''),
(407, 87, '_menu_item_type', 'post_type'),
(408, 87, '_menu_item_menu_item_parent', '0'),
(409, 87, '_menu_item_object_id', '72'),
(410, 87, '_menu_item_object', 'page'),
(411, 87, '_menu_item_target', ''),
(412, 87, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(413, 87, '_menu_item_xfn', ''),
(414, 87, '_menu_item_url', ''),
(416, 88, '_menu_item_type', 'post_type'),
(417, 88, '_menu_item_menu_item_parent', '0'),
(418, 88, '_menu_item_object_id', '79'),
(419, 88, '_menu_item_object', 'page'),
(420, 88, '_menu_item_target', ''),
(421, 88, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(422, 88, '_menu_item_xfn', ''),
(423, 88, '_menu_item_url', ''),
(425, 89, '_menu_item_type', 'post_type'),
(426, 89, '_menu_item_menu_item_parent', '0'),
(427, 89, '_menu_item_object_id', '72'),
(428, 89, '_menu_item_object', 'page'),
(429, 89, '_menu_item_target', ''),
(430, 89, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(431, 89, '_menu_item_xfn', ''),
(432, 89, '_menu_item_url', ''),
(433, 89, '_menu_item_orphaned', '1405372627'),
(443, 91, '_menu_item_type', 'post_type'),
(444, 91, '_menu_item_menu_item_parent', '0'),
(445, 91, '_menu_item_object_id', '82'),
(446, 91, '_menu_item_object', 'page'),
(447, 91, '_menu_item_target', ''),
(448, 91, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(449, 91, '_menu_item_xfn', ''),
(450, 91, '_menu_item_url', ''),
(452, 94, '_edit_last', '1'),
(453, 94, '_edit_lock', '1405443017:1'),
(454, 98, '_edit_last', '1'),
(455, 98, '_edit_lock', '1405443042:1'),
(456, 98, '_wp_page_template', 'template-menu.php'),
(466, 98, 'panels_data', 'a:0:{}'),
(467, 98, '_wp_trash_meta_status', 'publish'),
(468, 98, '_wp_trash_meta_time', '1405443216'),
(469, 102, '_edit_last', '1'),
(470, 102, '_edit_lock', '1405444163:1'),
(471, 102, '_wp_page_template', 'template-andi.php'),
(481, 102, 'panels_data', 'a:0:{}'),
(482, 106, '_edit_last', '1'),
(483, 106, '_edit_lock', '1405488007:1'),
(484, 107, '_edit_last', '1'),
(485, 107, '_edit_lock', '1405487939:1'),
(486, 107, '_wp_page_template', 'template-new.php'),
(487, 107, 'panels_data', 'a:0:{}'),
(488, 107, '_wp_trash_meta_status', 'publish'),
(489, 107, '_wp_trash_meta_time', '1405488151');
-- --------------------------------------------------------
--
-- Table structure for table `wp_posts`
--
CREATE TABLE `wp_posts` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_author` bigint(20) unsigned NOT NULL DEFAULT '0',
`post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content` longtext NOT NULL,
`post_title` text NOT NULL,
`post_excerpt` text NOT NULL,
`post_status` varchar(20) NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) NOT NULL DEFAULT 'open',
`ping_status` varchar(20) NOT NULL DEFAULT 'open',
`post_password` varchar(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',
PRIMARY KEY (`ID`),
KEY `post_name` (`post_name`),
KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
KEY `post_parent` (`post_parent`),
KEY `post_author` (`post_author`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=109 ;
--
-- Dumping data for table `wp_posts`
--
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1, 1, '2014-07-10 22:45:42', '2014-07-10 22:45:42', 'Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!', 'Hello world!', '', 'trash', 'open', 'open', '', 'hello-world', '', '', '2014-07-10 23:02:20', '2014-07-10 23:02:20', '', 0, 'http://localhost:8888/wordpress/?p=1', 0, 'post', '', 0),
(2, 1, '2014-07-10 22:45:42', '2014-07-10 22:45:42', '', 'Contact Us', '', 'trash', 'open', 'open', '', 'sample-page', '', '', '2014-07-11 05:39:25', '2014-07-11 05:39:25', '', 0, 'http://localhost:8888/wordpress/?page_id=2', 0, 'page', '', 3),
(3, 1, '2014-07-10 22:45:58', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'open', 'open', '', '', '', '', '2014-07-10 22:45:58', '0000-00-00 00:00:00', '', 0, 'http://localhost:8888/wordpress/?p=3', 0, 'post', '', 0),
(5, 1, '2014-07-10 22:52:31', '0000-00-00 00:00:00', '', 'Home', '', 'draft', 'open', 'open', '', '', '', '', '2014-07-10 22:52:31', '0000-00-00 00:00:00', '', 0, 'http://localhost:8888/wordpress/?p=5', 1, 'nav_menu_item', '', 0),
(6, 1, '2014-07-10 22:52:31', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'open', 'open', '', '', '', '', '2014-07-10 22:52:31', '0000-00-00 00:00:00', '', 0, 'http://localhost:8888/wordpress/?p=6', 1, 'nav_menu_item', '', 0),
(9, 1, '2014-07-10 23:00:36', '0000-00-00 00:00:00', '', 'Home', '', 'draft', 'open', 'open', '', '', '', '', '2014-07-10 23:00:36', '0000-00-00 00:00:00', '', 0, 'http://localhost:8888/wordpress/?p=9', 1, 'nav_menu_item', '', 0),
(10, 1, '2014-07-10 23:00:36', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'open', 'open', '', '', '', '', '2014-07-10 23:00:36', '0000-00-00 00:00:00', '', 0, 'http://localhost:8888/wordpress/?p=10', 1, 'nav_menu_item', '', 0),
(11, 1, '2014-07-10 23:01:06', '2014-07-10 23:01:06', '', 'Contact Us', '', 'inherit', 'open', 'open', '', '2-revision-v1', '', '', '2014-07-10 23:01:06', '2014-07-10 23:01:06', '', 2, 'http://localhost:8888/wordpress/?p=11', 0, 'revision', '', 0),
(12, 1, '2014-07-10 23:02:20', '2014-07-10 23:02:20', 'Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!', 'Hello world!', '', 'inherit', 'open', 'open', '', '1-revision-v1', '', '', '2014-07-10 23:02:20', '2014-07-10 23:02:20', '', 1, 'http://localhost:8888/wordpress/?p=12', 0, 'revision', '', 0),
(13, 1, '2014-07-10 23:02:32', '0000-00-00 00:00:00', '', 'Home', '', 'draft', 'open', 'open', '', '', '', '', '2014-07-10 23:02:32', '0000-00-00 00:00:00', '', 0, 'http://localhost:8888/wordpress/?p=13', 1, 'nav_menu_item', '', 0),
(14, 1, '2014-07-10 23:02:32', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'open', 'open', '', '', '', '', '2014-07-10 23:02:32', '0000-00-00 00:00:00', '', 0, 'http://localhost:8888/wordpress/?p=14', 1, 'nav_menu_item', '', 0),
(16, 1, '2014-07-10 23:09:29', '0000-00-00 00:00:00', '', 'Home', '', 'draft', 'open', 'open', '', '', '', '', '2014-07-10 23:09:29', '0000-00-00 00:00:00', '', 0, 'http://localhost:8888/wordpress/?p=16', 1, 'nav_menu_item', '', 0),
(17, 1, '2014-07-10 23:09:29', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'open', 'open', '', '', '', '', '2014-07-10 23:09:29', '0000-00-00 00:00:00', '', 0, 'http://localhost:8888/wordpress/?p=17', 1, 'nav_menu_item', '', 0),
(18, 1, '2014-07-10 23:09:56', '0000-00-00 00:00:00', '', 'Home', '', 'draft', 'open', 'open', '', '', '', '', '2014-07-10 23:09:56', '0000-00-00 00:00:00', '', 0, 'http://localhost:8888/wordpress/?p=18', 1, 'nav_menu_item', '', 0),
(19, 1, '2014-07-10 23:09:56', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'open', 'open', '', '', '', '', '2014-07-10 23:09:56', '0000-00-00 00:00:00', '', 0, 'http://localhost:8888/wordpress/?p=19', 1, 'nav_menu_item', '', 0),
(20, 1, '2014-07-10 23:10:27', '2014-07-10 23:10:27', 'dasdasdasdasdas', 'Contact', '', 'trash', 'open', 'open', '', 'contact', '', '', '2014-07-10 23:43:40', '2014-07-10 23:43:40', '', 0, 'http://localhost:8888/wordpress/?page_id=20', 0, 'page', '', 0),
(21, 1, '2014-07-10 23:10:27', '2014-07-10 23:10:27', 'dasdasdasdasdas', 'Contact', '', 'inherit', 'open', 'open', '', '20-revision-v1', '', '', '2014-07-10 23:10:27', '2014-07-10 23:10:27', '', 20, 'http://localhost:8888/wordpress/?p=21', 0, 'revision', '', 0),
(22, 1, '2014-07-10 23:12:00', '2014-07-10 23:12:00', '', 'cropped-cropped-NBC_peacock2-300x176', '', 'inherit', 'open', 'open', '', 'cropped-cropped-nbc_peacock2-300x176', '', '', '2014-07-10 23:12:00', '2014-07-10 23:12:00', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2014/07/cropped-cropped-NBC_peacock2-300x1761.png', 0, 'attachment', 'image/png', 0),
(23, 1, '2014-07-10 23:12:26', '2014-07-10 23:12:26', '', 'cropped-NBC_peacock2-300x176', '', 'inherit', 'open', 'open', '', 'cropped-nbc_peacock2-300x176', '', '', '2014-07-10 23:12:26', '2014-07-10 23:12:26', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2014/07/cropped-NBC_peacock2-300x1761.png', 0, 'attachment', 'image/png', 0),
(24, 1, '2014-07-10 23:19:13', '2014-07-10 23:19:13', '', 'Media', '', 'private', 'closed', 'closed', '', 'media', '', '', '2014-07-10 23:19:13', '2014-07-10 23:19:13', '', 0, 'http://localhost:8888/wordpress/?option-tree=media', 0, 'option-tree', '', 0),
(25, 1, '2014-07-10 23:25:00', '2014-07-10 23:25:00', '', '', '', 'publish', 'closed', 'closed', '', '25', '', '', '2014-07-10 23:25:00', '2014-07-10 23:25:00', '', 0, 'http://localhost:8888/wordpress/?post_type=slider&p=25', 0, 'slider', '', 0),
(26, 1, '2014-07-10 23:30:04', '2014-07-10 23:30:04', 'http://localhost:8888/wordpress/wp-content/uploads/2014/07/copy-cropped-NBC_peacock2-1024x602.png', 'copy-cropped-NBC_peacock2-1024x602.png', '', 'inherit', 'open', 'open', '', 'copy-cropped-nbc_peacock2-1024x602-png', '', '', '2014-07-10 23:30:04', '2014-07-10 23:30:04', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2014/07/copy-cropped-NBC_peacock2-1024x602.png', 0, 'attachment', 'image/png', 0),
(27, 1, '2014-07-10 23:35:59', '2014-07-10 23:35:59', '<h4>Los Angeles</h4>\r\n<p class="text">Click the circle above or the link below to check out the menu for LA.</p> <a href="#" class="more-button">Los Angeles </a>\r\n\r\n<h4>New York</h4>\r\n<p class="text">Click the circle above or the link below to check out the menu for NY.</p> <a href="#" class="more-button">New York </a>\r\n\r\n<h4>Englewood Cliffs</h4>\r\n<p class="text">Click the circle above or the link below to check out the menu for EC.</p> <a href="#" class="more-button">Englewood Cliffs </a>', 'Home', '', 'trash', 'closed', 'closed', '', 'home', '', '', '2014-07-11 23:39:01', '2014-07-11 23:39:01', '', 0, 'http://localhost:8888/wordpress/?page_id=27', 0, 'page', '', 0),
(28, 1, '2014-07-10 23:44:01', '2014-07-10 23:44:01', '<h4>Los Angeles</h4>\n<p class="text">Click the circle above or the link below to check out the menu for LA.</p> <a href="#" class="more-button">Los Angeles </a>\n\n<h4>New York</h4>\n<p class="text">Click the circle above or the link below to check out the menu for NY.</p> <a href="#" class="more-button">New York </a>\n\n<h4>Englewood Cliffs</h4>\n<p class="text">Click the circle above or the link below to check out the menu for EC.</p> <a href="#" class="more-button">Englewood Cliffs </a>', 'Home', '', 'inherit', 'open', 'open', '', '27-autosave-v1', '', '', '2014-07-10 23:44:01', '2014-07-10 23:44:01', '', 27, 'http://localhost:8888/wordpress/?p=28', 0, 'revision', '', 0),
(29, 1, '2014-07-10 23:44:27', '2014-07-10 23:44:27', '<h4>Los Angeles</h4>\n<p class="text">Click the circle above or the link below to check out the menu for LA.</p> <a href="#" class="more-button">Los Angeles </a>\n\n<h4>New York</h4>\n<p class="text">Click the circle above or the link below to check out the menu for NY.</p> <a href="#" class="more-button">New York </a>\n\n<h4>Englewood Cliffs</h4>\n<p class="text">Click the circle above or the link below to check out the menu for EC.</p> <a href="#" class="more-button">Englewood Cliffs </a>', 'Home', '', 'inherit', 'open', 'open', '', '27-revision-v1', '', '', '2014-07-10 23:44:27', '2014-07-10 23:44:27', '', 27, 'http://localhost:8888/wordpress/?p=29', 0, 'revision', '', 0),
(30, 1, '2014-07-10 23:46:02', '2014-07-10 23:46:02', '', 'New Slider', '', 'publish', 'open', 'open', '', 'new-slider', '', '', '2014-07-10 23:48:08', '2014-07-10 23:48:08', '', 0, 'http://localhost:8888/wordpress/?post_type=ml-slider&p=30', 0, 'ml-slider', '', 0),
(31, 1, '2014-07-11 03:37:18', '2014-07-11 03:37:18', '<h3 class="widget-title">Monday Menu</h3>\nSelect Category', 'Los Angeles', '', 'trash', 'open', 'open', '', 'los-angeles', '', '', '2014-07-11 05:39:23', '2014-07-11 05:39:23', '', 0, 'http://localhost:8888/wordpress/?page_id=31', 0, 'page', '', 0),
(32, 1, '2014-07-11 03:18:29', '2014-07-11 03:18:29', '<h3 class="widget-title">Monday Menu</h3>\nSelect Category', 'Los Angeles', '', 'inherit', 'open', 'open', '', '31-revision-v1', '', '', '2014-07-11 03:18:29', '2014-07-11 03:18:29', '', 31, 'http://localhost:8888/wordpress/?p=32', 0, 'revision', '', 0),
(33, 1, '2014-07-11 03:25:24', '2014-07-11 03:25:24', '', '30rock_140617_07', '', 'inherit', 'open', 'open', '', '30rock_140617_07', '', '', '2014-07-11 03:25:24', '2014-07-11 03:25:24', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2014/07/30rock_140617_07.jpg', 0, 'attachment', 'image/jpeg', 0),
(36, 1, '2014-07-11 03:26:12', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'open', 'open', '', '', '', '', '2014-07-11 03:26:12', '0000-00-00 00:00:00', '', 0, 'http://localhost:8888/wordpress/?p=36', 1, 'nav_menu_item', '', 0),
(37, 1, '2014-07-11 03:36:22', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'open', 'open', '', '', '', '', '2014-07-11 03:36:22', '0000-00-00 00:00:00', '', 0, 'http://localhost:8888/wordpress/?p=37', 0, 'post', '', 0),
(38, 1, '2014-07-11 05:42:29', '2014-07-11 05:42:29', 'Here are our hours of operation for New York locations\r\n\r\nbs \r\nbs\r\nbs\r\n\r\n\r\nHere are our hours of operation for Los Angeles\r\n\r\nlorem \r\nlorem\r\nlorem\r\n\r\nHere are our hours of operation for EC\r\n\r\nextra credit \r\nbacon\r\nextra credit', 'Contact Us', '', 'trash', 'open', 'closed', '', 'contact-us', '', '', '2014-07-11 05:43:55', '2014-07-11 05:43:55', '', 0, 'http://localhost:8888/wordpress/?page_id=38', 0, 'page', '', 0),
(39, 1, '2014-07-11 05:41:27', '2014-07-11 05:41:27', 'Here are our hours of operation for New York locations\r\n\r\nbs \r\nbs\r\nbs\r\n\r\n\r\nHere are our hours of operation for Los Angeles\r\n\r\nlorem \r\nlorem\r\nlorem\r\n\r\nHere are our hours of operation for EC\r\n\r\nextra credit \r\nbacon\r\nextra credit', 'Contact Us', '', 'inherit', 'open', 'open', '', '38-revision-v1', '', '', '2014-07-11 05:41:27', '2014-07-11 05:41:27', '', 38, 'http://localhost:8888/wordpress/?p=39', 0, 'revision', '', 0),
(41, 1, '2014-07-11 05:48:02', '2014-07-11 05:48:02', '', 'Contact', '', 'trash', 'open', 'closed', '', 'contact-2', '', '', '2014-07-11 23:39:03', '2014-07-11 23:39:03', '', 0, 'http://localhost:8888/wordpress/?page_id=41', 0, 'page', '', 0),
(42, 1, '2014-07-11 05:47:02', '2014-07-11 05:47:02', 'ssdjbskjfbskdjnsdknv\r\nskfjbnskdfbds\r\nadkfjbsd\r\nsdlkjn', 'Contact ', '', 'inherit', 'open', 'open', '', '41-revision-v1', '', '', '2014-07-11 05:47:02', '2014-07-11 05:47:02', '', 41, 'http://localhost:8888/wordpress/?p=42', 0, 'revision', '', 0),
(43, 1, '2014-07-11 05:47:24', '2014-07-11 05:47:24', '<h3 class="widget-title">dasd,jnasdkasnkd</h3> asdnbasjkhdbaskjd a', 'Contact ', '', 'inherit', 'open', 'open', '', '41-revision-v1', '', '', '2014-07-11 05:47:24', '2014-07-11 05:47:24', '', 41, 'http://localhost:8888/wordpress/?p=43', 0, 'revision', '', 0),
(45, 1, '2014-07-11 06:58:08', '2014-07-11 06:58:08', '', 'cropped-NBC_peacock2-300x1761', '', 'inherit', 'open', 'open', '', 'cropped-nbc_peacock2-300x1761', '', '', '2014-07-11 06:58:08', '2014-07-11 06:58:08', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2014/07/cropped-NBC_peacock2-300x17611.png', 0, 'attachment', 'image/png', 0),
(46, 1, '2014-07-11 06:58:17', '2014-07-11 06:58:17', '', 'copy-cropped-NBC_peacock2-1024x602-700x300', '', 'inherit', 'open', 'open', '', 'copy-cropped-nbc_peacock2-1024x602-700x300', '', '', '2014-07-11 06:58:17', '2014-07-11 06:58:17', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2014/07/copy-cropped-NBC_peacock2-1024x602-700x3001.png', 0, 'attachment', 'image/png', 0),
(47, 1, '2014-07-11 06:58:48', '2014-07-11 06:58:48', '', 'cropped-NBC_peacock2-300x17611', '', 'inherit', 'open', 'open', '', 'cropped-nbc_peacock2-300x17611', '', '', '2014-07-11 06:58:48', '2014-07-11 06:58:48', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2014/07/cropped-NBC_peacock2-300x176111.png', 0, 'attachment', 'image/png', 0),
(48, 1, '2014-07-11 06:59:24', '2014-07-11 06:59:24', '', '20130222_142056', '', 'inherit', 'open', 'open', '', '20130222_142056', '', '', '2014-07-11 06:59:24', '2014-07-11 06:59:24', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2014/07/20130222_142056.jpg', 0, 'attachment', 'image/jpeg', 0),
(49, 1, '2014-07-11 07:00:01', '2014-07-11 07:00:01', '', '30rock_140617_07', '', 'inherit', 'open', 'open', '', '30rock_140617_07-2', '', '', '2014-07-11 07:00:01', '2014-07-11 07:00:01', '', 0, 'http://localhost:8888/wordpress/wp-content/uploads/2014/07/30rock_140617_071.jpg', 0, 'attachment', 'image/jpeg', 0),
(50, 1, '2014-07-11 18:57:21', '2014-07-11 18:57:21', '<h3 class="widget-title">My calendar</h3>', 'Survey', '', 'trash', 'open', 'open', '', 'survey', '', '', '2014-07-11 22:52:12', '2014-07-11 22:52:12', '', 0, 'http://localhost:8888/wordpress/?page_id=50', 0, 'page', '', 0),
(52, 1, '2014-07-11 18:57:21', '2014-07-11 18:57:21', '<p>Which location provides the best services? Vote below</p>', 'Survey', '', 'inherit', 'open', 'open', '', '50-revision-v1', '', '', '2014-07-11 18:57:21', '2014-07-11 18:57:21', '', 50, 'http://localhost:8888/wordpress/50-revision-v1/', 0, 'revision', '', 0),
(53, 1, '2014-07-11 21:24:06', '2014-07-11 21:24:06', '<h3 class="widget-title">My calendar</h3>', 'Survey', '', 'inherit', 'open', 'open', '', '50-revision-v1', '', '', '2014-07-11 21:24:06', '2014-07-11 21:24:06', '', 50, 'http://localhost:8888/wordpress/50-revision-v1/', 0, 'revision', '', 0),
(54, 1, '2014-07-11 21:32:55', '2014-07-11 21:32:55', 'asndasndas', 'post city', '', 'publish', 'open', 'open', '', 'post-city', '', '', '2014-07-11 21:32:55', '2014-07-11 21:32:55', '', 0, 'http://localhost:8888/wordpress/?p=54', 0, 'post', '', 0),
(55, 1, '2014-07-11 21:32:55', '2014-07-11 21:32:55', 'asndasndas', 'post city', '', 'inherit', 'open', 'open', '', '54-revision-v1', '', '', '2014-07-11 21:32:55', '2014-07-11 21:32:55', '', 54, 'http://localhost:8888/wordpress/54-revision-v1/', 0, 'revision', '', 0),
(56, 1, '2014-07-11 21:54:45', '2014-07-11 21:54:45', '<h3 class="widget-title">dasd,jnasdkasnkd</h3>', 'Contact ', '', 'inherit', 'open', 'open', '', '41-revision-v1', '', '', '2014-07-11 21:54:45', '2014-07-11 21:54:45', '', 41, 'http://localhost:8888/wordpress/41-revision-v1/', 0, 'revision', '', 0),
(58, 1, '2014-07-11 23:17:50', '2014-07-11 23:17:50', '', 'Contact', '', 'inherit', 'open', 'open', '', '41-revision-v1', '', '', '2014-07-11 23:17:50', '2014-07-11 23:17:50', '', 41, 'http://localhost:8888/wordpress/41-revision-v1/', 0, 'revision', '', 0),
(59, 1, '2014-07-12 02:57:11', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'open', 'open', '', '', '', '', '2014-07-12 02:57:11', '0000-00-00 00:00:00', '', 0, 'http://localhost:8888/wordpress/?page_id=59', 0, 'page', '', 0),
(60, 1, '2014-07-12 03:25:02', '2014-07-12 03:25:02', 'this page is page 2', 'page 2', '', 'trash', 'open', 'open', '', 'page-2', '', '', '2014-07-14 16:02:13', '2014-07-14 16:02:13', '', 0, 'http://localhost:8888/wordpress/?page_id=60', 0, 'page', '', 0),
(62, 1, '2014-07-12 03:25:02', '2014-07-12 03:25:02', 'this page is page 2', 'page 2', '', 'inherit', 'open', 'open', '', '60-revision-v1', '', '', '2014-07-12 03:25:02', '2014-07-12 03:25:02', '', 60, 'http://localhost:8888/wordpress/60-revision-v1/', 0, 'revision', '', 0),
(63, 1, '2014-07-14 16:28:56', '2014-07-14 16:28:56', '<h3 class="widget-title">Please vote on the following food:</h3>\n\nRadio Buttons\n\nBurgers\nSteak\nMac and Cheese\nSushi\ncake cake cake cake\n\n<img class="frm_ajax_loading" src="http://localhost:8888/wordpress/wp-content/plugins/formidable/images/ajax_loader.gif" alt="Sending" style="visibility:hidden;" />', 'Survey', '', 'publish', 'open', 'open', '', 'survey-2', '', '', '2014-07-14 17:22:41', '2014-07-14 17:22:41', '', 0, 'http://localhost:8888/wordpress/?page_id=63', 0, 'page', '', 0),
(65, 1, '2014-07-14 16:28:56', '2014-07-14 16:28:56', '<img src="http://www.logobird.com/wp-content/uploads/2011/01/nbc-logo.png" style="visibility:hidden" data-animation="fade" />', 'Survey', '', 'inherit', 'open', 'open', '', '63-revision-v1', '', '', '2014-07-14 16:28:56', '2014-07-14 16:28:56', '', 63, 'http://localhost:8888/wordpress/63-revision-v1/', 0, 'revision', '', 0),
(66, 1, '2014-07-14 16:29:39', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'open', 'open', '', '', '', '', '2014-07-14 16:29:39', '0000-00-00 00:00:00', '', 0, 'http://localhost:8888/wordpress/?p=66', 1, 'nav_menu_item', '', 0),
(67, 1, '2014-07-14 17:22:41', '2014-07-14 17:22:41', '<h3 class="widget-title">Please vote on the following food:</h3>\n\nRadio Buttons\n\nBurgers\nSteak\nMac and Cheese\nSushi\ncake cake cake cake\n\n<img class="frm_ajax_loading" src="http://localhost:8888/wordpress/wp-content/plugins/formidable/images/ajax_loader.gif" alt="Sending" style="visibility:hidden;" />', 'Survey', '', 'inherit', 'open', 'open', '', '63-revision-v1', '', '', '2014-07-14 17:22:41', '2014-07-14 17:22:41', '', 63, 'http://localhost:8888/wordpress/63-revision-v1/', 0, 'revision', '', 0),
(68, 1, '2014-07-14 18:21:37', '2014-07-14 18:21:37', '<h3 class="widget-title">Contact Us</h3>\n\nFirst Name\n*\n\nLast Name\n*\n\nEmail\n*\n\nMessage\n*\n\n<img class="frm_ajax_loading" src="http://localhost:8888/wordpress/wp-content/plugins/formidable/images/ajax_loader.gif" alt="Sending" style="visibility:hidden;" />', 'Contact Page', '', 'publish', 'open', 'open', '', 'contact-page', '', '', '2014-07-14 18:36:32', '2014-07-14 18:36:32', '', 0, 'http://localhost:8888/wordpress/?page_id=68', 0, 'page', '', 0),
(70, 1, '2014-07-14 18:21:37', '2014-07-14 18:21:37', '<h3 class="widget-title">Contact Us</h3>\n\nName\n*\n\nFirst\n\nLast\n*\n\nLast\n\nEmail\n*\n\nWebsite\n\nSubject\n*\n\nMessage\n*\n\n<img class="frm_ajax_loading" src="http://localhost:8888/wordpress/wp-content/plugins/formidable/images/ajax_loader.gif" alt="Sending" style="visibility:hidden;" />', 'Contact Page', '', 'inherit', 'open', 'open', '', '68-revision-v1', '', '', '2014-07-14 18:21:37', '2014-07-14 18:21:37', '', 68, 'http://localhost:8888/wordpress/68-revision-v1/', 0, 'revision', '', 0),
(71, 1, '2014-07-14 18:36:32', '2014-07-14 18:36:32', '<h3 class="widget-title">Contact Us</h3>\n\nFirst Name\n*\n\nLast Name\n*\n\nEmail\n*\n\nMessage\n*\n\n<img class="frm_ajax_loading" src="http://localhost:8888/wordpress/wp-content/plugins/formidable/images/ajax_loader.gif" alt="Sending" style="visibility:hidden;" />', 'Contact Page', '', 'inherit', 'open', 'open', '', '68-revision-v1', '', '', '2014-07-14 18:36:32', '2014-07-14 18:36:32', '', 68, 'http://localhost:8888/wordpress/68-revision-v1/', 0, 'revision', '', 0),
(72, 1, '2014-07-14 18:52:21', '2014-07-14 18:52:21', '', 'Los Angeles', '', 'publish', 'open', 'open', '', 'los-angeles-2', '', '', '2014-07-14 18:59:15', '2014-07-14 18:59:15', '', 0, 'http://localhost:8888/wordpress/?page_id=72', 0, 'page', '', 0),
(74, 1, '2014-07-14 18:52:21', '2014-07-14 18:52:21', '', 'Los Angeles', '', 'inherit', 'open', 'open', '', '72-revision-v1', '', '', '2014-07-14 18:52:21', '2014-07-14 18:52:21', '', 72, 'http://localhost:8888/wordpress/72-revision-v1/', 0, 'revision', '', 0),
(75, 1, '2014-07-14 20:51:04', '2014-07-14 20:51:04', ' ', '', '', 'publish', 'open', 'open', '', '75', '', '', '2014-07-15 18:55:55', '2014-07-15 18:55:55', '', 0, 'http://localhost:8888/wordpress/?p=75', 5, 'nav_menu_item', '', 0),
(76, 1, '2014-07-14 20:51:04', '2014-07-14 20:51:04', ' ', '', '', 'publish', 'open', 'open', '', '76', '', '', '2014-07-15 18:55:55', '2014-07-15 18:55:55', '', 0, 'http://localhost:8888/wordpress/?p=76', 4, 'nav_menu_item', '', 0),
(77, 1, '2014-07-14 20:50:57', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'open', 'open', '', '', '', '', '2014-07-14 20:50:57', '0000-00-00 00:00:00', '', 0, 'http://localhost:8888/wordpress/?p=77', 1, 'nav_menu_item', '', 0),
(78, 1, '2014-07-14 20:51:56', '2014-07-14 20:51:56', '', 'Home', '', 'publish', 'open', 'open', '', 'home', '', '', '2014-07-15 18:55:55', '2014-07-15 18:55:55', '', 0, 'http://localhost:8888/wordpress/?p=78', 1, 'nav_menu_item', '', 0),
(79, 1, '2014-07-14 20:52:31', '2014-07-14 20:52:31', '', 'Weekly Menu', '', 'publish', 'open', 'open', '', 'weekly-menu', '', '', '2014-07-15 01:12:21', '2014-07-15 01:12:21', '', 0, 'http://localhost:8888/wordpress/?page_id=79', 0, 'page', '', 0),
(81, 1, '2014-07-14 20:52:31', '2014-07-14 20:52:31', '', 'Weekly Menu', '', 'inherit', 'open', 'open', '', '79-revision-v1', '', '', '2014-07-14 20:52:31', '2014-07-14 20:52:31', '', 79, 'http://localhost:8888/wordpress/79-revision-v1/', 0, 'revision', '', 0),
(82, 1, '2014-07-14 20:52:47', '2014-07-14 20:52:47', 'This page is for NbcUniversal cafeteria employees only. Please do not attempt to log-in if you do not fall under the category.', 'Login ', '', 'publish', 'open', 'open', '', 'login', '', '', '2014-07-14 22:29:35', '2014-07-14 22:29:35', '', 0, 'http://localhost:8888/wordpress/?page_id=82', 0, 'page', '', 0),
(84, 1, '2014-07-14 20:52:47', '2014-07-14 20:52:47', '', 'Login ', '', 'inherit', 'open', 'open', '', '82-revision-v1', '', '', '2014-07-14 20:52:47', '2014-07-14 20:52:47', '', 82, 'http://localhost:8888/wordpress/82-revision-v1/', 0, 'revision', '', 0),
(85, 1, '2014-07-14 20:53:07', '2014-07-14 20:53:07', ' ', '', '', 'publish', 'open', 'open', '', '85', '', '', '2014-07-14 21:01:30', '2014-07-14 21:01:30', '', 0, 'http://localhost:8888/wordpress/?p=85', 1, 'nav_menu_item', '', 0),
(86, 1, '2014-07-14 20:53:07', '2014-07-14 20:53:07', ' ', '', '', 'publish', 'open', 'open', '', '86', '', '', '2014-07-14 21:01:30', '2014-07-14 21:01:30', '', 0, 'http://localhost:8888/wordpress/?p=86', 2, 'nav_menu_item', '', 0),
(87, 1, '2014-07-14 20:53:07', '2014-07-14 20:53:07', ' ', '', '', 'publish', 'open', 'open', '', '87', '', '', '2014-07-14 21:01:30', '2014-07-14 21:01:30', '', 0, 'http://localhost:8888/wordpress/?p=87', 3, 'nav_menu_item', '', 0),
(88, 1, '2014-07-14 21:17:14', '2014-07-14 21:17:14', ' ', '', '', 'publish', 'open', 'open', '', '88', '', '', '2014-07-15 18:55:55', '2014-07-15 18:55:55', '', 0, 'http://localhost:8888/wordpress/?p=88', 2, 'nav_menu_item', '', 0),
(89, 1, '2014-07-14 21:17:07', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'open', 'open', '', '', '', '', '2014-07-14 21:17:07', '0000-00-00 00:00:00', '', 0, 'http://localhost:8888/wordpress/?p=89', 1, 'nav_menu_item', '', 0),
(91, 1, '2014-07-14 22:28:13', '2014-07-14 22:28:13', ' ', '', '', 'publish', 'open', 'open', '', '91', '', '', '2014-07-15 18:55:55', '2014-07-15 18:55:55', '', 0, 'http://localhost:8888/wordpress/?p=91', 3, 'nav_menu_item', '', 0),
(92, 1, '2014-07-14 22:29:13', '2014-07-14 22:29:13', 'This page is for NbcUniversal cafeteria employees only. Please do not attempt to log-in if you do not fall under the category.', 'Login ', '', 'inherit', 'open', 'open', '', '82-revision-v1', '', '', '2014-07-14 22:29:13', '2014-07-14 22:29:13', '', 82, 'http://localhost:8888/wordpress/82-revision-v1/', 0, 'revision', '', 0),
(93, 1, '2014-07-15 16:50:09', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'open', 'open', '', '', '', '', '2014-07-15 16:50:09', '0000-00-00 00:00:00', '', 0, 'http://localhost:8888/wordpress/?p=93', 0, 'post', '', 0),
(94, 1, '2014-07-15 16:50:17', '0000-00-00 00:00:00', '', 'Log In', '', 'draft', 'open', 'open', '', '', '', '', '2014-07-15 16:50:17', '2014-07-15 16:50:17', '', 0, 'http://localhost:8888/wordpress/?page_id=94', 0, 'page', '', 0),
(95, 1, '2014-07-15 16:51:03', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'open', 'open', '', '', '', '', '2014-07-15 16:51:03', '0000-00-00 00:00:00', '', 0, 'http://localhost:8888/wordpress/?page_id=95', 0, 'page', '', 0),
(96, 1, '2014-07-15 16:52:07', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'open', 'open', '', '', '', '', '2014-07-15 16:52:07', '0000-00-00 00:00:00', '', 0, 'http://localhost:8888/wordpress/?page_id=96', 0, 'page', '', 0),
(97, 1, '2014-07-15 16:52:22', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'open', 'open', '', '', '', '', '2014-07-15 16:52:22', '0000-00-00 00:00:00', '', 0, 'http://localhost:8888/wordpress/?page_id=97', 0, 'page', '', 0),
(98, 1, '2014-07-15 16:53:03', '2014-07-15 16:53:03', '', 'Welcome', '', 'trash', 'open', 'open', '', 'welcome', '', '', '2014-07-15 16:53:36', '2014-07-15 16:53:36', '', 0, 'http://localhost:8888/wordpress/?page_id=98', 0, 'page', '', 0),
(100, 1, '2014-07-15 16:53:03', '2014-07-15 16:53:03', '', 'Welcome', '', 'inherit', 'open', 'open', '', '98-revision-v1', '', '', '2014-07-15 16:53:03', '2014-07-15 16:53:03', '', 98, 'http://localhost:8888/wordpress/98-revision-v1/', 0, 'revision', '', 0),
(101, 1, '2014-07-15 16:55:14', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'open', 'open', '', '', '', '', '2014-07-15 16:55:14', '0000-00-00 00:00:00', '', 0, 'http://localhost:8888/wordpress/?page_id=101', 0, 'page', '', 0),
(102, 1, '2014-07-15 17:11:09', '2014-07-15 17:11:09', '', 'template-andi', '', 'publish', 'open', 'open', '', 'template-andi', '', '', '2014-07-15 17:11:28', '2014-07-15 17:11:28', '', 0, 'http://localhost:8888/wordpress/?page_id=102', 0, 'page', '', 0),
(104, 1, '2014-07-15 17:11:09', '2014-07-15 17:11:09', '<?php\r\n$hostname = "sql2.njit.edu";\r\n$username = "am484";\r\n$password = "vd0HngQMx";\r\n$project = "am484";\r\n\r\n$db_connect = mysql_connect($hostname,$username,$password);\r\n\r\nif (!$db_connect) {\r\n die ("Unable to connect to database." . mysql_error());\r\n } else {\r\n echo "Successfully connected to db." . "<br>";\r\n }\r\n$db_select = mysql_select_db($project);\r\n\r\n $email = $_POST[''email''];\r\n $email = mysql_real_escape_string($email);\r\n\r\n $password = $_POST[''password''];\r\n $password = mysql_real_escape_string($password);\r\n $newpass = md5($password);\r\n\r\nif (isset($email)) \r\n {\r\n $sql = "select * from cafeteria where email = ''$email'' and password = ''$newpass'';";\r\n $result = mysql_query($sql) or die(mysql_error("Incorrect username or password!"));\r\n } \r\n?>', 'template-andi', '', 'inherit', 'open', 'open', '', '102-revision-v1', '', '', '2014-07-15 17:11:09', '2014-07-15 17:11:09', '', 102, 'http://localhost:8888/wordpress/102-revision-v1/', 0, 'revision', '', 0),
(105, 1, '2014-07-15 17:11:28', '2014-07-15 17:11:28', '', 'template-andi', '', 'inherit', 'open', 'open', '', '102-revision-v1', '', '', '2014-07-15 17:11:28', '2014-07-15 17:11:28', '', 102, 'http://localhost:8888/wordpress/102-revision-v1/', 0, 'revision', '', 0),
(106, 1, '2014-07-16 05:20:07', '0000-00-00 00:00:00', '', 'Edit Menu', '', 'draft', 'open', 'open', '', '', '', '', '2014-07-16 05:20:07', '2014-07-16 05:20:07', '', 0, 'http://localhost:8888/wordpress/?p=106', 0, 'post', '', 0),
(107, 1, '2014-07-16 05:21:21', '2014-07-16 05:21:21', '', 'Edit Menu', '', 'trash', 'open', 'open', '', 'edit-menu', '', '', '2014-07-16 05:22:31', '2014-07-16 05:22:31', '', 79, 'http://localhost:8888/wordpress/?page_id=107', 0, 'page', '', 0),
(108, 1, '2014-07-16 05:21:21', '2014-07-16 05:21:21', '', 'Edit Menu', '', 'inherit', 'open', 'open', '', '107-revision-v1', '', '', '2014-07-16 05:21:21', '2014-07-16 05:21:21', '', 107, 'http://localhost:8888/wordpress/107-revision-v1/', 0, 'revision', '', 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp_terms`
--
CREATE TABLE `wp_terms` (
`term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(200) NOT NULL DEFAULT '',