-
Notifications
You must be signed in to change notification settings - Fork 0
/
inbiomed_wp.sql
1475 lines (1417 loc) · 593 KB
/
inbiomed_wp.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
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
/*
Navicat MySQL Data Transfer
Source Server : localhost
Source Server Version : 50516
Source Host : localhost:3306
Source Database : inbiomed_wp
Target Server Type : MYSQL
Target Server Version : 50516
File Encoding : 65001
Date: 2014-02-28 00:38:18
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for wp_commentmeta
-- ----------------------------
DROP TABLE IF EXISTS `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;
-- ----------------------------
-- Records of wp_commentmeta
-- ----------------------------
-- ----------------------------
-- Table structure for wp_comments
-- ----------------------------
DROP TABLE IF EXISTS `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 AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of wp_comments
-- ----------------------------
INSERT INTO `wp_comments` VALUES ('1', '1', 'Sr WordPress', '', 'http://wordpress.org/', '', '2014-02-20 03:43:49', '2014-02-20 03:43:49', 'Hola, esto es un comentario.\nPara borrar un comentario simplemente accede y revisa los comentarios de la entrada. Ahí tendrás la opción de editarlo o borrarlo.', '0', '1', '', '', '0', '0');
-- ----------------------------
-- Table structure for wp_dynamic_widgets
-- ----------------------------
DROP TABLE IF EXISTS `wp_dynamic_widgets`;
CREATE TABLE `wp_dynamic_widgets` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`widget_id` varchar(60) NOT NULL,
`maintype` varchar(50) NOT NULL,
`name` varchar(40) NOT NULL,
`value` longtext NOT NULL,
PRIMARY KEY (`id`),
KEY `widget_id` (`widget_id`,`maintype`)
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4;
-- ----------------------------
-- Records of wp_dynamic_widgets
-- ----------------------------
INSERT INTO `wp_dynamic_widgets` VALUES ('3', 'text-2', 'page', 'default', '0');
INSERT INTO `wp_dynamic_widgets` VALUES ('4', 'text-2', 'page', '8', '1');
INSERT INTO `wp_dynamic_widgets` VALUES ('5', 'text-3', 'page', 'default', '0');
INSERT INTO `wp_dynamic_widgets` VALUES ('6', 'text-3', 'page', '8', '1');
INSERT INTO `wp_dynamic_widgets` VALUES ('7', 'widget_sp_image-2', 'page', 'default', '0');
INSERT INTO `wp_dynamic_widgets` VALUES ('8', 'widget_sp_image-2', 'page', '10', '1');
INSERT INTO `wp_dynamic_widgets` VALUES ('9', 'widget_sp_image-2', 'page', '14', '1');
INSERT INTO `wp_dynamic_widgets` VALUES ('10', 'widget_sp_image-2', 'page', '8', '1');
INSERT INTO `wp_dynamic_widgets` VALUES ('11', 'widget_sp_image-2', 'page', '16', '1');
INSERT INTO `wp_dynamic_widgets` VALUES ('12', 'widget_sp_image-2', 'page', '6', '1');
INSERT INTO `wp_dynamic_widgets` VALUES ('13', 'widget_sp_image-2', 'page', '12', '1');
INSERT INTO `wp_dynamic_widgets` VALUES ('14', 'widget_sp_image-3', 'page', 'default', '0');
INSERT INTO `wp_dynamic_widgets` VALUES ('15', 'widget_sp_image-3', 'page', '10', '1');
INSERT INTO `wp_dynamic_widgets` VALUES ('16', 'widget_sp_image-4', 'page', 'default', '0');
INSERT INTO `wp_dynamic_widgets` VALUES ('17', 'widget_sp_image-4', 'page', '12', '1');
-- ----------------------------
-- Table structure for wp_easycontactforms_acl
-- ----------------------------
DROP TABLE IF EXISTS `wp_easycontactforms_acl`;
CREATE TABLE `wp_easycontactforms_acl` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`objtype` varchar(50) NOT NULL,
`method` varchar(50) NOT NULL,
`name` varchar(50) NOT NULL,
`role` varchar(50) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=231 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of wp_easycontactforms_acl
-- ----------------------------
INSERT INTO `wp_easycontactforms_acl` VALUES ('1', 'CustomFormEntryFiles', 'new', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('2', 'Tasks', 'viewDetailed', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('3', 'ContactField2', 'show', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('4', 'TaskTypes', 'show', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('5', 'ContactField1', 'view', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('6', 'OrderFiles', 'viewDetailed', 'detailedMain', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('7', 'Products', 'new', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('8', 'Files', 'upload', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('9', 'OrderField1', 'view', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('10', 'ContactField1', 'show', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('11', 'CustomFormFields', 'fixOrder', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('12', 'DashBoardView', 'getDashboardAPIText', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('13', 'CustomFormEntryStatistics', 'dismissPointer', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('14', 'OrderField1', 'show', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('15', 'Users', 'show', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('16', 'CustomFormFields', 'addCustomField', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('17', 'OrderStatuses', 'view', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('18', 'Orders_MailingLists', 'view', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('19', 'CustomForms', 'add', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('20', 'Locales', 'new', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('21', 'OrderField2', 'view', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('22', 'OrderStatuses', 'show', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('23', 'CustomForms', 'new', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('24', 'ProductUnitTypes', 'view', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('25', 'CustomForms', 'val', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('26', 'CustomFormEntryStatistics', 'setFormPageStatisticsShowOnDashboard', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('27', 'OrderField1', 'new', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('28', 'ContactTypes', 'show', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('29', 'ProductUnitTypes', 'show', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('30', 'CustomFields', 'view', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('31', 'OrderStatuses', 'new', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('32', 'CustomFormFields', 'getSettingsForm', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('33', 'Tasks', 'viewDetailed', 'detailedMain', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('34', 'Priorities', 'show', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('35', 'CustomForms_MailingLists', 'view', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('36', 'CustomForms', 'val', 'main', 'Guest');
INSERT INTO `wp_easycontactforms_acl` VALUES ('37', 'CustomFields', 'show', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('38', 'Users', 'getUserASList', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('39', 'Roles', 'view', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('40', 'CustomFormsEntries', 'viewDetailed', 'detailedMain', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('41', 'CustomForms', 'preview', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('42', 'Options', 'new', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('43', 'Roles', 'show', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('44', 'ProductCategories', 'new', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('45', 'Orders', 'show', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('46', 'ApplicationSettings', 'allowPBLink', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('47', 'CustomFieldTemplates', 'show', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('48', 'CustomFieldTypes', 'new', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('49', 'CustomFields', 'viewDetailed', 'detailedMain', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('50', 'DashBoardView', 'getFormStatistics', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('51', 'DashBoardView', 'getFormPageStatistics', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('52', 'OrderField2', 'new', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('53', 'CustomFormEntryStatistics', 'show', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('54', 'CustomForms', 'installTemplate', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('55', 'CustomForms_MailingLists', 'view', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('56', 'Files', 'download', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('57', 'Templates', 'view', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('58', 'Files', 'deletefile', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('59', 'ApplicationSettings', 'view', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('60', 'CustomFormFieldTypes', 'new', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('61', 'TaskStatuses', 'view', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('62', 'ProductCategories', 'show', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('63', 'CustomForms', 'show', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('64', 'CustomFormsEntries', 'processEntry', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('65', 'Locales', 'show', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('66', 'Products', 'show', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('67', 'Orders_Products', 'view', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('68', 'ApplicationSettings', 'show', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('69', 'ContactFiles', 'view', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('70', 'TaskStatuses', 'show', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('71', 'Products', 'view', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('72', 'Roles', 'show', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('73', 'ContactFiles', 'show', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('74', 'CustomFormFields', 'moveFieldSet', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('75', 'DashBoardView', 'getEntryStatistics', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('76', 'Products', 'show', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('77', 'DashBoardView', 'getUserStatistics', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('78', 'TaskTypes', 'show', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('79', 'CustomForms', 'installTemplate', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('80', 'CustomFormFields', 'view', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('81', 'ProductUnitTypes', 'new', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('82', 'ContactTypes', 'view', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('83', 'DashBoardView', 'getFormStatistics', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('84', 'TaskTypes', 'new', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('85', 'CustomFormFields', 'fixOrder', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('86', 'Tasks', 'show', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('87', 'CustomFormFields', 'show', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('88', 'OrderField2', 'show', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('89', 'CustomForms', 'resetStatistics', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('90', 'OrderFiles', 'new', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('91', 'CustomFormFieldTypes', 'view', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('92', 'Users', 'getUserASList', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('93', 'CustomFormEntryStatistics', 'viewDetailed', 'detailedMain', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('94', 'Users', 'getEUserASList', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('95', 'CustomFormFields', 'getSettingsForm', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('96', 'CustomFormEntryStatistics', 'getImage', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('97', 'AppTranslations', 'new', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('98', 'Priorities', 'new', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('99', 'CustomForms', 'preview', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('100', 'CustomFormFields', 'moveFieldSet', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('101', 'CustomFormFieldTypes', 'show', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('102', 'CustomFormFields', 'updateFieldData', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('103', 'CustomFieldValues', 'show', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('104', 'CustomForms', 'copy', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('105', 'ContactFiles', 'viewDetailed', 'detailedMain', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('106', 'CustomFields', 'new', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('107', 'CustomFormEntryStatistics', 'getImage', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('108', 'CustomFields', 'show', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('109', 'Orders_MailingLists', 'view', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('110', 'ContactFiles', 'new', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('111', 'Templates', 'show', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('112', 'DashBoardView', 'getUserStatistics', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('113', 'CustomFormFields', 'deleteField', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('114', 'ApplicationSettings', 'show', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('115', 'ProductCategories', 'view', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('116', 'OrderFiles', 'show', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('117', 'CustomForms', 'view', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('118', 'CustomFormFields', 'viewDetailed', 'detailedMain', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('119', 'ProductCategories', 'show', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('120', 'DashBoardView', 'getFormPageStatistics', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('121', 'Orders', 'view', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('122', 'Orders', 'viewDetailed', 'detailedMain', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('123', 'CustomFieldTypes', 'view', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('124', 'CustomForms', 'show', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('125', 'DashBoardView', 'getEntryStatistics', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('126', 'ContactField1', 'new', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('127', 'CustomFormFields', 'copyField', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('128', 'DashBoardView', 'getDashboardAPIText', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('129', 'CustomFieldTypes', 'show', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('130', 'ApplicationSettings', 'allowPBLink', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('131', 'Orders', 'show', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('132', 'DashBoardView', 'show', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('133', 'CustomFormsEntries', 'view', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('134', 'ContactField1', 'show', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('135', 'ApplicationSettings', 'new', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('136', 'CustomForms', 'add', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('137', 'AppTranslations', 'view', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('138', 'ContactFiles', 'viewDetailed', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('139', 'CustomFormsEntries', 'show', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('140', 'ContactField2', 'view', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('141', 'Priorities', 'view', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('142', 'AppTranslations', 'show', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('143', 'OrderStatuses', 'show', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('144', 'CustomForms', 'refreshForm', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('145', 'ContactField2', 'show', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('146', 'Files', 'upload', 'main', 'Guest');
INSERT INTO `wp_easycontactforms_acl` VALUES ('147', 'CustomForms', 'add', 'main', 'Guest');
INSERT INTO `wp_easycontactforms_acl` VALUES ('148', 'OrderField2', 'show', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('149', 'Priorities', 'show', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('150', 'Tasks_MailingLists', 'view', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('151', 'TaskStatuses', 'show', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('152', 'ProductUnitTypes', 'show', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('153', 'ContactFiles', 'show', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('154', 'CustomFormEntryStatistics', 'setFormPageStatisticsShowOnDashboard', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('155', 'ContactField2', 'new', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('156', 'CustomFieldValues', 'view', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('157', 'CustomFormEntryStatistics', 'new', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('158', 'CustomFormEntryFiles', 'viewDetailed', 'detailedMain', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('159', 'CustomFormFields', 'deleteField', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('160', 'CustomFieldValues', 'show', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('161', 'CustomFieldValues', 'viewDetailed', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('162', 'TaskStatuses', 'new', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('163', 'CustomFieldValues', 'viewDetailed', 'detailedMain', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('164', 'CustomFormFields', 'new', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('165', 'CustomForms', 'val', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('166', 'Tasks_MailingLists', 'view', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('167', 'CustomForms', 'copy', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('168', 'CustomFormFields', 'updateFieldData', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('169', 'CustomFormsEntries', 'new', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('170', 'Users', 'getEUserASList', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('171', 'CustomFieldValues', 'new', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('172', 'CustomFormFields', 'updateOrder', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('173', 'CustomFormEntryStatistics', 'view', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('174', 'RemoteSites', 'show', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('175', 'CustomFormEntryFiles', 'view', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('176', 'Options', 'show', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('177', 'CustomFormEntryStatistics', 'dismissPointer', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('178', 'CustomFormEntryStatistics', 'show', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('179', 'Roles', 'new', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('180', 'Tasks', 'view', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('181', 'CustomFormEntryFiles', 'show', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('182', 'Templates', 'show', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('183', 'Files', 'deletefile', 'main', 'Guest');
INSERT INTO `wp_easycontactforms_acl` VALUES ('184', 'Tasks', 'show', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('185', 'CustomForms', 'getAvailableTemplates', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('186', 'Users', 'new', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('187', 'CustomFormEntryFiles', 'viewDetailed', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('188', 'ContactTypes', 'show', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('189', 'Orders', 'viewDetailed', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('190', 'TaskTypes', 'view', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('191', 'AppTranslations', 'show', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('192', 'Templates', 'new', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('193', 'Files', 'upload', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('194', 'OrderField1', 'show', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('195', 'CustomFormFields', 'viewDetailed', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('196', 'Files', 'view', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('197', 'CustomFormEntryStatistics', 'viewDetailed', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('198', 'ApplicationSettings', 'setOptionValue', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('199', 'CustomForms', 'getAvailableTemplates', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('200', 'CustomFormFields', 'updateOrder', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('201', 'CustomFieldTemplates', 'view', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('202', 'Options', 'view', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('203', 'OrderFiles', 'view', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('204', 'CustomFormEntryStatistics', 'resetFormPageStatistics', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('205', 'CustomFieldTemplates', 'show', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('206', 'ApplicationSettings', 'setOptionValue', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('207', 'Options', 'show', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('208', 'OrderFiles', 'show', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('209', 'CustomFormFields', 'copyField', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('210', 'Tasks', 'new', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('211', 'Users', 'view', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('212', 'Products', 'viewDetailed', 'detailedMain', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('213', 'Users', 'show', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('214', 'CustomFormsEntries', 'processEntry', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('215', 'ContactTypes', 'new', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('216', 'CustomFormEntryStatistics', 'resetFormPageStatistics', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('217', 'CustomFormFields', 'addCustomField', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('218', 'Files', 'download', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('219', 'Files', 'download', 'main', 'Guest');
INSERT INTO `wp_easycontactforms_acl` VALUES ('220', 'CustomFieldTypes', 'show', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('221', 'CustomFieldTemplates', 'new', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('222', 'Locales', 'view', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('223', 'Orders_Products', 'view', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('224', 'OrderFiles', 'viewDetailed', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('225', 'Locales', 'show', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('226', 'Orders', 'new', 'main', 'SuperAdmin');
INSERT INTO `wp_easycontactforms_acl` VALUES ('227', 'CustomFormEntryFiles', 'show', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('228', 'CustomForms', 'refreshForm', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('229', 'Files', 'show', 'main', 'Owner');
INSERT INTO `wp_easycontactforms_acl` VALUES ('230', 'Files', 'deletefile', 'main', 'SuperAdmin');
-- ----------------------------
-- Table structure for wp_easycontactforms_applicationsettings
-- ----------------------------
DROP TABLE IF EXISTS `wp_easycontactforms_applicationsettings`;
CREATE TABLE `wp_easycontactforms_applicationsettings` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`Description` varchar(200) NOT NULL DEFAULT '',
`TinyMCEConfig` text,
`UseTinyMCE` tinyint(1) DEFAULT NULL,
`ApplicationWidth` int(10) DEFAULT NULL,
`ApplicationWidth2` int(10) DEFAULT NULL,
`DefaultStyle` varchar(50) DEFAULT NULL,
`DefaultStyle2` varchar(50) DEFAULT NULL,
`SecretWord` varchar(50) DEFAULT NULL,
`NotLoggenInText` text,
`FileFolder` varchar(900) DEFAULT NULL,
`SendFrom` varchar(100) DEFAULT NULL,
`FixJSLoading` tinyint(1) DEFAULT NULL,
`FormCompletionMinTime` int(10) DEFAULT NULL,
`FormCompletionMaxTime` int(10) DEFAULT NULL,
`FixStatus0` tinyint(1) DEFAULT NULL,
`ProductVersion` varchar(25) DEFAULT NULL,
`PhoneRegEx` varchar(100) DEFAULT NULL,
`InitTime` int(11) DEFAULT NULL,
`ShowPoweredBy` tinyint(1) DEFAULT NULL,
`DateFormat` varchar(500) DEFAULT NULL,
`DateTimeFormat` varchar(500) DEFAULT NULL,
`FixStatus02` tinyint(1) DEFAULT NULL,
`w3cCompliant` tinyint(1) DEFAULT NULL,
`w3cStyle` varchar(50) DEFAULT NULL,
`FixJSLoading2` tinyint(1) DEFAULT NULL,
`AllowMarkupInEntries` tinyint(1) DEFAULT NULL,
`SkipWeeklyReport` tinyint(1) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `Description` (`Description`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of wp_easycontactforms_applicationsettings
-- ----------------------------
INSERT INTO `wp_easycontactforms_applicationsettings` VALUES ('1', 'AppSettings', '{theme_advanced_buttons4:\"\",mode:\"exact\",theme_advanced_statusbar_location:\"\",theme_advanced_toolbar_align:\"left\",theme_advanced_resizing:\"true\",plugins:\"fullscreen\",theme_advanced_toolbar_location:\"top\",theme_advanced_buttons1:\"bold,italic,underline,|,justifyleft,justifycenter,justifyright,justifyfull,|,formatselect,fontselect,fontsizeselect\",theme_advanced_buttons2:\"bullist,numlist,|,outdent,indent,|,undo,redo,|,link,unlink,anchor,image,cleanup,|,forecolor,backcolor,|,fullscreen\",theme_advanced_buttons3:\"\",theme:\"advanced\", relative_urls : false, remove_script_host: false}', '1', '900', '900', 'std2', 'std2', '66e522ded152802ad6aa7d22c141eb95', 'Please log in.', 'files', null, '0', null, null, '0', '1.4.9', '(\\+{0,1}\\d{1,2})*\\s*(\\(?\\d{3}\\)?\\s*)*\\d{3}(-{0,1}|\\s{0,1})\\d{2}(-{0,1}|\\s{0,1})\\d{2}$', '1393476253', '0', 'Y-m-d^%Y-%m-%d^\\d{4}-\\d{2}-\\d{2}$^2012-01-25', 'Y-m-d H:i^%Y-%m-%d %H:%M^\\d{4}-\\d{1,2}-\\d{1,2}\\s\\d{1,2}:\\d{1,2}^Y-m-d hh:mm', '0', '0', 'easyform', '0', '0', '0');
-- ----------------------------
-- Table structure for wp_easycontactforms_contacttypes
-- ----------------------------
DROP TABLE IF EXISTS `wp_easycontactforms_contacttypes`;
CREATE TABLE `wp_easycontactforms_contacttypes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`Description` varchar(200) NOT NULL DEFAULT '',
`Notes` text,
PRIMARY KEY (`id`),
KEY `Description` (`Description`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of wp_easycontactforms_contacttypes
-- ----------------------------
INSERT INTO `wp_easycontactforms_contacttypes` VALUES ('1', 'Client', 'Aliquam euismod tincidunt velit, in lobortis velit aliquam id. Morbi risus eros, fringilla et blandit at, semper sit amet magna.');
INSERT INTO `wp_easycontactforms_contacttypes` VALUES ('4', 'Employee', 'Nulla tincidunt justo nec diam molestie feugiat. Aenean et est non sapien ultrices posuere id a odio.');
-- ----------------------------
-- Table structure for wp_easycontactforms_customformentryfiles
-- ----------------------------
DROP TABLE IF EXISTS `wp_easycontactforms_customformentryfiles`;
CREATE TABLE `wp_easycontactforms_customformentryfiles` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`Description` varchar(200) NOT NULL DEFAULT '',
`Date` int(11) DEFAULT NULL,
`CustomFormsEntries` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `Description` (`Description`),
KEY `CustomFormsEntries` (`CustomFormsEntries`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of wp_easycontactforms_customformentryfiles
-- ----------------------------
-- ----------------------------
-- Table structure for wp_easycontactforms_customformentrystatistics
-- ----------------------------
DROP TABLE IF EXISTS `wp_easycontactforms_customformentrystatistics`;
CREATE TABLE `wp_easycontactforms_customformentrystatistics` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`PageName` varchar(300) DEFAULT NULL,
`TotalEntries` int(10) DEFAULT NULL,
`IncludeIntoReporting` tinyint(1) DEFAULT NULL,
`CustomForms` int(11) NOT NULL DEFAULT '0',
`Impressions` int(10) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `CustomForms` (`CustomForms`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of wp_easycontactforms_customformentrystatistics
-- ----------------------------
INSERT INTO `wp_easycontactforms_customformentrystatistics` VALUES ('1', 'contacto', '0', '0', '2', '29');
-- ----------------------------
-- Table structure for wp_easycontactforms_customformfields
-- ----------------------------
DROP TABLE IF EXISTS `wp_easycontactforms_customformfields`;
CREATE TABLE `wp_easycontactforms_customformfields` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`Description` varchar(200) NOT NULL DEFAULT '',
`Type` int(11) NOT NULL DEFAULT '0',
`Settings` text,
`Template` text,
`ListPosition` int(10) NOT NULL DEFAULT '0',
`CustomForms` int(11) NOT NULL DEFAULT '0',
`FieldSet` int(10) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `FieldSet` (`FieldSet`),
KEY `Description` (`Description`),
KEY `CustomForms` (`CustomForms`),
KEY `Type` (`Type`),
KEY `ListPosition` (`ListPosition`)
) ENGINE=InnoDB AUTO_INCREMENT=3334 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of wp_easycontactforms_customformfields
-- ----------------------------
INSERT INTO `wp_easycontactforms_customformfields` VALUES ('3315', 'Please fill in the fields below', '2', '<?xml version=\"1.0\"?>\n<form>\n \n \n <LabelTagName>h3</LabelTagName>\n <Advanced/>\n <LabelCSSClass/>\n <LabelCSSStyle/>\n <ShowDescription>off</ShowDescription>\n <Description/>\n <DescriptionPosition>top</DescriptionPosition>\n <DescriptionCSSClass>ufo-customfields-container-description</DescriptionCSSClass>\n <DescriptionCSSStyle/>\n <SetStyle>off</SetStyle>\n <CSSClass/>\n <CSSStyle/>\n <AddCF>off</AddCF>\n <SetSize>off</SetSize>\n <Width>230</Width>\n <WidthUnit>px</WidthUnit>\n<ShowLabel><![CDATA[off]]></ShowLabel><Label><![CDATA[Please fill in the fields below]]></Label></form>', '<field><Container containertag=\"div\" addcf=\"off\"><![CDATA[<div>]]></Container></field>', '3315', '1', '3315');
INSERT INTO `wp_easycontactforms_customformfields` VALUES ('3316', 'Section', '2', '<?xml version=\"1.0\"?>\n<form>\n \n \n <LabelTagName>h3</LabelTagName>\n <Advanced/>\n <LabelCSSClass/>\n <LabelCSSStyle/>\n \n <Description/>\n \n \n <DescriptionCSSStyle/>\n \n <CSSClass/>\n \n \n <Width>230</Width>\n <WidthUnit>px</WidthUnit>\n<DescriptionCSSClass><![CDATA[ufo-customfields-container-description]]></DescriptionCSSClass><DescriptionPosition><![CDATA[top-inside]]></DescriptionPosition><CSSStyle><![CDATA[]]></CSSStyle><SetStyle><![CDATA[off]]></SetStyle><SetSize><![CDATA[off]]></SetSize><ShowDescription><![CDATA[off]]></ShowDescription><ShowLabel><![CDATA[off]]></ShowLabel><AddCF>off</AddCF><Label><![CDATA[Section]]></Label></form>', '<field>\n <Container containertag=\"div\" addcf=\"off\"><![CDATA[<div>\n ]]></Container>\n</field>', '3316', '1', '3316');
INSERT INTO `wp_easycontactforms_customformfields` VALUES ('3318', 'First name', '4', '<?xml version=\"1.0\"?>\n<form>\n \n \n \n <Advanced/>\n <LabelCSSClass/>\n <LabelCSSStyle/>\n <ShowDescription>off</ShowDescription>\n <Description/>\n <DescriptionPosition>bottom</DescriptionPosition>\n <DescriptionCSSClass>ufo-customfields-field-description</DescriptionCSSClass>\n <DescriptionCSSStyle/>\n <SetDefaultValue>off</SetDefaultValue>\n <DefaultValue/>\n <IsBlankValue>on</IsBlankValue>\n <DefaultValueCSSClass/>\n \n \n \n <SetRequiredSuffix>on</SetRequiredSuffix>\n <RequiredSuffix>*</RequiredSuffix>\n <RequiredSuffixCSSClass>ufo-customfields-required-suffix</RequiredSuffixCSSClass>\n <RequiredSuffixCSSStyle/>\n \n <InvalidCSSClass/>\n <RequiredMessageCSSClass/>\n <RequiredMessageCSSStyle/>\n \n \n \n \n \n <ValidMessage/>\n <ValidMessagePosition>right</ValidMessagePosition>\n <ValidCSSClass/>\n <ValidCSSStyle/>\n <SetStyle>off</SetStyle>\n <CSSClass/>\n <CSSStyle/>\n <RowCSSClass/>\n <SetSize>off</SetSize>\n <Width>230</Width>\n <WidthUnit>px</WidthUnit>\n \n \n \n<Required><![CDATA[on]]></Required><Label><![CDATA[First name]]></Label><AbsolutePosition><![CDATA[on]]></AbsolutePosition><RequiredMessagePosition><![CDATA[right]]></RequiredMessagePosition><LabelPosition><![CDATA[left-align-left]]></LabelPosition><ShowLabel><![CDATA[on]]></ShowLabel><Validate><![CDATA[off]]></Validate><MinLength><![CDATA[0]]></MinLength><MaxLength><![CDATA[0]]></MaxLength><SetContactOptions><![CDATA[off]]></SetContactOptions><RegistredUsersOptions><![CDATA[none]]></RegistredUsersOptions><LinkToAppField><![CDATA[]]></LinkToAppField><RequiredMessage><![CDATA[This field is required]]></RequiredMessage><SetValidMessage><![CDATA[off]]></SetValidMessage><ValidMessageAbsolutePosition><![CDATA[off]]></ValidMessageAbsolutePosition></form>', '<field><ShowLabel position=\"left\"><![CDATA[<label for=\'ufo-field-id-3318\' style=\'text-align:left\'>First name<span class=\'ufo-customfields-required-suffix\'>*</span></label>]]></ShowLabel><RequiredMessage position=\"right\"><![CDATA[<div id=\'ufo-field-id-3318-invalid\' style=\'display:none\'></div>]]></RequiredMessage><Validation><![CDATA[<script type=\'text/javascript\'>ufoFormsConfig.validations.push({\"events\":{\"blur\":[\"required\"]},\"Required\":true,\"RequiredMessage\":\"This field is required\",\"AbsolutePosition\":true,\"RequiredMessagePosition\":\"right\",\"id\":\"ufo-field-id-3318\",\"form\":\"ufo-form-id-1\"});</script>]]></Validation><Input ><![CDATA[<input type=\'text\' id=\'ufo-field-id-3318\' value=\'{id-3318}\' name=\'id-3318\' />]]></Input></field>', '3318', '1', '3316');
INSERT INTO `wp_easycontactforms_customformfields` VALUES ('3319', 'Last name', '4', '<?xml version=\"1.0\"?>\n<form>\n \n \n <LabelPosition>left-align-left</LabelPosition>\n <Advanced/>\n <LabelCSSClass/>\n <LabelCSSStyle/>\n <ShowDescription>off</ShowDescription>\n <Description/>\n <DescriptionPosition>bottom</DescriptionPosition>\n <DescriptionCSSClass>ufo-customfields-field-description</DescriptionCSSClass>\n <DescriptionCSSStyle/>\n <SetDefaultValue>off</SetDefaultValue>\n <DefaultValue/>\n <IsBlankValue>on</IsBlankValue>\n <DefaultValueCSSClass/>\n \n \n \n <SetRequiredSuffix>on</SetRequiredSuffix>\n <RequiredSuffix>*</RequiredSuffix>\n <RequiredSuffixCSSClass>ufo-customfields-required-suffix</RequiredSuffixCSSClass>\n <RequiredSuffixCSSStyle/>\n \n <InvalidCSSClass/>\n <RequiredMessageCSSClass/>\n <RequiredMessageCSSStyle/>\n \n \n \n \n \n <ValidMessage/>\n <ValidMessagePosition>right</ValidMessagePosition>\n <ValidCSSClass/>\n <ValidCSSStyle/>\n <SetStyle>off</SetStyle>\n <CSSClass/>\n <CSSStyle/>\n <RowCSSClass/>\n <SetSize>off</SetSize>\n <Width>230</Width>\n <WidthUnit>px</WidthUnit>\n \n \n \n<Label><![CDATA[Last name]]></Label><Required><![CDATA[on]]></Required><AbsolutePosition><![CDATA[on]]></AbsolutePosition><RequiredMessagePosition><![CDATA[right]]></RequiredMessagePosition><ShowLabel><![CDATA[on]]></ShowLabel><Validate><![CDATA[off]]></Validate><MinLength><![CDATA[0]]></MinLength><MaxLength><![CDATA[0]]></MaxLength><SetContactOptions><![CDATA[off]]></SetContactOptions><RegistredUsersOptions><![CDATA[none]]></RegistredUsersOptions><LinkToAppField><![CDATA[]]></LinkToAppField><RequiredMessage><![CDATA[This field is required]]></RequiredMessage><SetValidMessage><![CDATA[off]]></SetValidMessage><ValidMessageAbsolutePosition><![CDATA[off]]></ValidMessageAbsolutePosition></form>', '<field><ShowLabel position=\"left\"><![CDATA[<label for=\'ufo-field-id-3319\' style=\'text-align:left\'>Last name<span class=\'ufo-customfields-required-suffix\'>*</span></label>]]></ShowLabel><RequiredMessage position=\"right\"><![CDATA[<div id=\'ufo-field-id-3319-invalid\' style=\'display:none\'></div>]]></RequiredMessage><Validation><![CDATA[<script type=\'text/javascript\'>ufoFormsConfig.validations.push({\"events\":{\"blur\":[\"required\"]},\"Required\":true,\"RequiredMessage\":\"This field is required\",\"AbsolutePosition\":true,\"RequiredMessagePosition\":\"right\",\"id\":\"ufo-field-id-3319\",\"form\":\"ufo-form-id-1\"});</script>]]></Validation><Input ><![CDATA[<input type=\'text\' id=\'ufo-field-id-3319\' value=\'{id-3319}\' name=\'id-3319\' />]]></Input></field>', '3319', '1', '3316');
INSERT INTO `wp_easycontactforms_customformfields` VALUES ('3320', 'Email', '5', '<?xml version=\"1.0\"?>\n<form>\n \n <Label>Email</Label>\n \n <Advanced/>\n <LabelCSSClass/>\n <LabelCSSStyle/>\n <ShowDescription>off</ShowDescription>\n <Description/>\n <DescriptionPosition>bottom</DescriptionPosition>\n <DescriptionCSSClass>ufo-customfields-field-description</DescriptionCSSClass>\n <DescriptionCSSStyle/>\n <SetDefaultValue>off</SetDefaultValue>\n <DefaultValue>Your email</DefaultValue>\n <IsBlankValue>on</IsBlankValue>\n <DefaultValueCSSClass/>\n <Required>on</Required>\n <RequiredMessage>Please enter you email</RequiredMessage>\n \n <SetRequiredSuffix>on</SetRequiredSuffix>\n <RequiredSuffix>*</RequiredSuffix>\n <RequiredSuffixCSSClass>ufo-customfields-required-suffix</RequiredSuffixCSSClass>\n <RequiredSuffixCSSStyle/>\n \n <InvalidCSSClass/>\n <RequiredMessageCSSClass/>\n <RequiredMessageCSSStyle/>\n <Validate>on</Validate>\n \n \n <ValidMessage/>\n <ValidMessagePosition>right</ValidMessagePosition>\n <ValidCSSClass/>\n <ValidCSSStyle/>\n <SetStyle>off</SetStyle>\n <CSSClass/>\n <CSSStyle/>\n <RowCSSClass/>\n <SetSize>off</SetSize>\n <Width>230</Width>\n <WidthUnit>px</WidthUnit>\n \n \n \n<AbsolutePosition><![CDATA[on]]></AbsolutePosition><LabelPosition><![CDATA[left-align-left]]></LabelPosition><RequiredMessagePosition><![CDATA[right]]></RequiredMessagePosition><ShowLabel><![CDATA[on]]></ShowLabel><RegistredUsersOptions><![CDATA[none]]></RegistredUsersOptions><LinkToAppField><![CDATA[]]></LinkToAppField><SetContactOptions><![CDATA[off]]></SetContactOptions><SetValidMessage><![CDATA[off]]></SetValidMessage><ValidMessageAbsolutePosition><![CDATA[off]]></ValidMessageAbsolutePosition></form>', '<field><ShowLabel position=\"left\"><![CDATA[<label for=\'ufo-field-id-3320\' style=\'text-align:left\'>Email<span class=\'ufo-customfields-required-suffix\'>*</span></label>]]></ShowLabel><RequiredMessage position=\"right\"><![CDATA[<div id=\'ufo-field-id-3320-invalid\' style=\'display:none\'></div>]]></RequiredMessage><Validation><![CDATA[<script type=\'text/javascript\'>ufoFormsConfig.validations.push({\"events\":{\"blur\":[\"required\",\"email\"]},\"Required\":true,\"Validate\":true,\"RequiredMessage\":\"Please enter you email\",\"AbsolutePosition\":true,\"RequiredMessagePosition\":\"right\",\"id\":\"ufo-field-id-3320\",\"form\":\"ufo-form-id-1\"});</script>]]></Validation><Input ><![CDATA[<input type=\'text\' id=\'ufo-field-id-3320\' value=\'{id-3320}\' name=\'id-3320\' />]]></Input></field>', '3320', '1', '3316');
INSERT INTO `wp_easycontactforms_customformfields` VALUES ('3321', 'Your request', '10', '<?xml version=\"1.0\"?>\n<form>\n \n \n \n <Advanced/>\n <LabelCSSClass/>\n <LabelCSSStyle/>\n \n \n \n <DescriptionCSSClass>ufo-customfields-field-description</DescriptionCSSClass>\n <DescriptionCSSStyle/>\n <SetDefaultValue>off</SetDefaultValue>\n <DefaultValue/>\n <IsBlankValue>on</IsBlankValue>\n <DefaultValueCSSClass/>\n \n <RequiredMessage>This field is required</RequiredMessage>\n <RequiredMessagePosition>right</RequiredMessagePosition>\n <SetRequiredSuffix>on</SetRequiredSuffix>\n <RequiredSuffix>*</RequiredSuffix>\n <RequiredSuffixCSSClass>ufo-customfields-required-suffix</RequiredSuffixCSSClass>\n <RequiredSuffixCSSStyle/>\n <AbsolutePosition>on</AbsolutePosition>\n <InvalidCSSClass/>\n <RequiredMessageCSSClass/>\n <RequiredMessageCSSStyle/>\n <Validate>off</Validate>\n <MinLength/>\n <MaxLength/>\n \n \n <ValidMessage/>\n <ValidMessagePosition>right</ValidMessagePosition>\n <ValidCSSClass/>\n <ValidCSSStyle/>\n \n <CSSClass/>\n <CSSStyle/>\n <RowCSSClass/>\n \n \n <WidthUnit>px</WidthUnit>\n \n <HeightUnit>px</HeightUnit>\n<Label><![CDATA[Your request]]></Label><Description><![CDATA[Please provide us with your request details]]></Description><DescriptionPosition><![CDATA[top]]></DescriptionPosition><Required><![CDATA[on]]></Required><SetSize><![CDATA[on]]></SetSize><LabelPosition><![CDATA[top-align-left]]></LabelPosition><ShowDescription><![CDATA[off]]></ShowDescription><Width><![CDATA[360]]></Width><ShowLabel><![CDATA[on]]></ShowLabel><SetContactOptions>off</SetContactOptions><SetStyle><![CDATA[off]]></SetStyle><Height><![CDATA[100]]></Height><SetValidMessage><![CDATA[off]]></SetValidMessage><ValidMessageAbsolutePosition><![CDATA[off]]></ValidMessageAbsolutePosition></form>', '<field><ShowLabel position=\"top\"><![CDATA[<label for=\'ufo-field-id-3321\' style=\'text-align:left\'>Your request<span class=\'ufo-customfields-required-suffix\'>*</span></label>]]></ShowLabel><RequiredMessage position=\"right\"><![CDATA[<div id=\'ufo-field-id-3321-invalid\' style=\'display:none\'></div>]]></RequiredMessage><Validation><![CDATA[<script type=\'text/javascript\'>ufoFormsConfig.validations.push({\"events\":{\"blur\":[\"required\"]},\"Required\":true,\"RequiredMessage\":\"This field is required\",\"AbsolutePosition\":true,\"RequiredMessagePosition\":\"right\",\"id\":\"ufo-field-id-3321\",\"form\":\"ufo-form-id-1\"});</script>]]></Validation><Input width=\"360px\"><![CDATA[<textarea id=\'ufo-field-id-3321\' name=\'id-3321\' style=\'height:100px;width:360px\'>{id-3321}</textarea>]]></Input></field>', '3321', '1', '3316');
INSERT INTO `wp_easycontactforms_customformfields` VALUES ('3322', 'Submit', '6', '<?xml version=\"1.0\"?>\n<form>\n \n \n \n <Advanced/>\n <LabelCSSClass/>\n <LabelCSSStyle/>\n <SetStyle>off</SetStyle>\n <CSSClass/>\n <CSSStyle/>\n <RowCSSClass/>\n \n <Width>100</Width>\n <WidthUnit>px</WidthUnit>\n<InputPosition><![CDATA[left]]></InputPosition><ShowLabel><![CDATA[on]]></ShowLabel><SetSize><![CDATA[off]]></SetSize><Label><![CDATA[Submit]]></Label></form>', '<field><Validation><![CDATA[<script type=\'text/javascript\'>var c = {};c.id = \'ufo-field-id-3322\';c.form = \'ufo-form-id-1\';c.Label = \'Submit\';ufoFormsConfig.submits.push(c);</script>]]></Validation><Input><![CDATA[<span id=\'ufo-field-id-3322-span\'><noscript><button type=\'submit\' id=\'ufo-field-id-3322\' name=\'id-3322\' >Submit</button></noscript></span>]]></Input></field>', '3322', '1', '3316');
INSERT INTO `wp_easycontactforms_customformfields` VALUES ('3323', 'Please fill in the fields below', '2', '<?xml version=\"1.0\"?>\n<form>\n \n \n <LabelTagName>h3</LabelTagName>\n <Advanced/>\n <LabelCSSClass/>\n <LabelCSSStyle/>\n \n \n \n \n <DescriptionCSSStyle/>\n \n <CSSClass/>\n \n \n <Width>230</Width>\n <WidthUnit>px</WidthUnit>\n<DescriptionCSSClass><![CDATA[ufo-customfields-container-description]]></DescriptionCSSClass><CSSStyle><![CDATA[]]></CSSStyle><SetStyle><![CDATA[off]]></SetStyle><SetSize><![CDATA[off]]></SetSize><AddCF>off</AddCF><Label><![CDATA[Please fill in the fields below]]></Label><Description><![CDATA[We are glad to hear from you]]></Description><DescriptionPosition><![CDATA[top-inside]]></DescriptionPosition><ShowLabel><![CDATA[off]]></ShowLabel><ShowDescription><![CDATA[off]]></ShowDescription></form>\n', '<field><Container containertag=\"div\" addcf=\"off\"><![CDATA[<div>]]></Container></field>', '1112', '2', '3323');
INSERT INTO `wp_easycontactforms_customformfields` VALUES ('3324', 'Nombres', '4', '<?xml version=\"1.0\"?>\n<form>\n \n \n \n <Advanced/>\n <LabelCSSClass/>\n <LabelCSSStyle/>\n <ShowDescription>off</ShowDescription>\n <Description/>\n <DescriptionPosition>bottom</DescriptionPosition>\n <DescriptionCSSClass>ufo-customfields-field-description</DescriptionCSSClass>\n <DescriptionCSSStyle/>\n <SetDefaultValue>off</SetDefaultValue>\n <DefaultValue/>\n <IsBlankValue>on</IsBlankValue>\n <DefaultValueCSSClass/>\n \n \n \n <SetRequiredSuffix>on</SetRequiredSuffix>\n <RequiredSuffix>*</RequiredSuffix>\n <RequiredSuffixCSSClass>ufo-customfields-required-suffix</RequiredSuffixCSSClass>\n <RequiredSuffixCSSStyle/>\n \n <InvalidCSSClass/>\n <RequiredMessageCSSClass/>\n <RequiredMessageCSSStyle/>\n \n \n \n \n \n <ValidMessage/>\n <ValidMessagePosition>right</ValidMessagePosition>\n <ValidCSSClass/>\n <ValidCSSStyle/>\n \n \n <CSSStyle/>\n \n \n \n <WidthUnit>px</WidthUnit>\n \n \n \n<ShowLabel><![CDATA[on]]></ShowLabel><Validate><![CDATA[off]]></Validate><MinLength><![CDATA[0]]></MinLength><MaxLength><![CDATA[0]]></MaxLength><SetValidMessage><![CDATA[off]]></SetValidMessage><ValidMessageAbsolutePosition><![CDATA[off]]></ValidMessageAbsolutePosition><SetContactOptions><![CDATA[off]]></SetContactOptions><RegistredUsersOptions><![CDATA[none]]></RegistredUsersOptions><LinkToAppField><![CDATA[]]></LinkToAppField><AbsolutePosition><![CDATA[off]]></AbsolutePosition><Required><![CDATA[on]]></Required><LabelPosition><![CDATA[top-align-left]]></LabelPosition><Width><![CDATA[300]]></Width><Label><![CDATA[Nombres]]></Label><RequiredMessage><![CDATA[]]></RequiredMessage><RequiredMessagePosition><![CDATA[right]]></RequiredMessagePosition><RowCSSClass><![CDATA[fila]]></RowCSSClass><SetSize><![CDATA[off]]></SetSize><CSSClass><![CDATA[ufo-cell-left]]></CSSClass><SetStyle><![CDATA[on]]></SetStyle></form>\n', '<field><ShowLabel position=\"top\"><![CDATA[<label for=\'ufo-field-id-3324\' style=\'text-align:left\'>Nombres<span class=\'ufo-customfields-required-suffix\'>*</span></label>]]></ShowLabel><Validation><![CDATA[<script type=\'text/javascript\'>ufoFormsConfig.validations.push({\"events\":{\"blur\":[\"required\"]},\"Required\":true,\"RequiredMessagePosition\":\"right\",\"id\":\"ufo-field-id-3324\",\"form\":\"ufo-form-id-2\"});</script>]]></Validation><Input rowclass=\"fila\"><![CDATA[<input type=\'text\' id=\'ufo-field-id-3324\' value=\'{id-3324}\' name=\'id-3324\' class=\'ufo-cell-left\'/>]]></Input></field>', '1113', '2', '3323');
INSERT INTO `wp_easycontactforms_customformfields` VALUES ('3325', 'Email', '5', '<?xml version=\"1.0\"?>\n<form>\n \n \n \n <Advanced/>\n <LabelCSSClass/>\n <LabelCSSStyle/>\n <ShowDescription>off</ShowDescription>\n <Description/>\n <DescriptionPosition>bottom</DescriptionPosition>\n <DescriptionCSSClass>ufo-customfields-field-description</DescriptionCSSClass>\n <DescriptionCSSStyle/>\n <SetDefaultValue>off</SetDefaultValue>\n <DefaultValue>Your email</DefaultValue>\n <IsBlankValue>on</IsBlankValue>\n <DefaultValueCSSClass/>\n <Required>on</Required>\n \n \n <SetRequiredSuffix>on</SetRequiredSuffix>\n <RequiredSuffix>*</RequiredSuffix>\n <RequiredSuffixCSSClass>ufo-customfields-required-suffix</RequiredSuffixCSSClass>\n <RequiredSuffixCSSStyle/>\n \n <InvalidCSSClass/>\n <RequiredMessageCSSClass/>\n <RequiredMessageCSSStyle/>\n <Validate>on</Validate>\n \n <ValidMessageAbsolutePosition>on</ValidMessageAbsolutePosition>\n <ValidMessage/>\n <ValidMessagePosition>right</ValidMessagePosition>\n <ValidCSSClass/>\n <ValidCSSStyle/>\n \n \n <CSSStyle/>\n \n \n \n <WidthUnit>px</WidthUnit>\n \n \n \n<ShowLabel><![CDATA[on]]></ShowLabel><SetContactOptions><![CDATA[off]]></SetContactOptions><RegistredUsersOptions><![CDATA[none]]></RegistredUsersOptions><LinkToAppField><![CDATA[]]></LinkToAppField><SetValidMessage><![CDATA[off]]></SetValidMessage><AbsolutePosition><![CDATA[off]]></AbsolutePosition><LabelPosition><![CDATA[top-align-left]]></LabelPosition><Width><![CDATA[300]]></Width><Label><![CDATA[Email]]></Label><RequiredMessage><![CDATA[]]></RequiredMessage><RequiredMessagePosition><![CDATA[right]]></RequiredMessagePosition><SetStyle><![CDATA[on]]></SetStyle><CSSClass><![CDATA[ufo-cell-left]]></CSSClass><RowCSSClass><![CDATA[fila]]></RowCSSClass><SetSize><![CDATA[off]]></SetSize></form>\n', '<field><ShowLabel position=\"top\"><![CDATA[<label for=\'ufo-field-id-3325\' style=\'text-align:left\'>Email<span class=\'ufo-customfields-required-suffix\'>*</span></label>]]></ShowLabel><Validation><![CDATA[<script type=\'text/javascript\'>ufoFormsConfig.validations.push({\"events\":{\"blur\":[\"required\",\"email\"]},\"Required\":true,\"Validate\":true,\"RequiredMessagePosition\":\"right\",\"id\":\"ufo-field-id-3325\",\"form\":\"ufo-form-id-2\"});</script>]]></Validation><Input rowclass=\"fila\"><![CDATA[<input type=\'text\' id=\'ufo-field-id-3325\' value=\'{id-3325}\' name=\'id-3325\' class=\'ufo-cell-left\'/>]]></Input></field>', '1114', '2', '3323');
INSERT INTO `wp_easycontactforms_customformfields` VALUES ('3326', 'Mensaje', '10', '<?xml version=\"1.0\"?>\n<form>\n \n \n \n <Advanced/>\n <LabelCSSClass/>\n <LabelCSSStyle/>\n \n \n \n <DescriptionCSSClass>ufo-customfields-field-description</DescriptionCSSClass>\n <DescriptionCSSStyle/>\n <SetDefaultValue>off</SetDefaultValue>\n <DefaultValue/>\n <IsBlankValue>on</IsBlankValue>\n <DefaultValueCSSClass/>\n \n \n \n <SetRequiredSuffix>on</SetRequiredSuffix>\n <RequiredSuffix>*</RequiredSuffix>\n <RequiredSuffixCSSClass>ufo-customfields-required-suffix</RequiredSuffixCSSClass>\n <RequiredSuffixCSSStyle/>\n \n <InvalidCSSClass/>\n <RequiredMessageCSSClass/>\n <RequiredMessageCSSStyle/>\n \n \n \n <SetValidMessage>off</SetValidMessage>\n <ValidMessageAbsolutePosition>on</ValidMessageAbsolutePosition>\n <ValidMessage/>\n <ValidMessagePosition>right</ValidMessagePosition>\n <ValidCSSClass/>\n <ValidCSSStyle/>\n \n \n <CSSStyle/>\n \n \n \n <WidthUnit>px</WidthUnit>\n \n <HeightUnit>px</HeightUnit>\n<Description><![CDATA[Please provide us with your request details]]></Description><DescriptionPosition><![CDATA[top]]></DescriptionPosition><SetSize><![CDATA[on]]></SetSize><LabelPosition><![CDATA[top-align-left]]></LabelPosition><ShowDescription><![CDATA[off]]></ShowDescription><ShowLabel><![CDATA[on]]></ShowLabel><SetContactOptions>off</SetContactOptions><Height><![CDATA[100]]></Height><AbsolutePosition><![CDATA[off]]></AbsolutePosition><Width><![CDATA[300]]></Width><Label><![CDATA[Mensaje]]></Label><Required><![CDATA[on]]></Required><Validate><![CDATA[on]]></Validate><MinLength><![CDATA[50]]></MinLength><MaxLength><![CDATA[500]]></MaxLength><RequiredMessage><![CDATA[]]></RequiredMessage><RequiredMessagePosition><![CDATA[right]]></RequiredMessagePosition><SetStyle><![CDATA[on]]></SetStyle><CSSClass><![CDATA[ufo-cell-left]]></CSSClass><RowCSSClass><![CDATA[fila]]></RowCSSClass></form>\n', '<field><ShowLabel position=\"top\"><![CDATA[<label for=\'ufo-field-id-3326\' style=\'text-align:left\'>Mensaje<span class=\'ufo-customfields-required-suffix\'>*</span></label>]]></ShowLabel><Validation><![CDATA[<script type=\'text/javascript\'>ufoFormsConfig.validations.push({\"events\":{\"blur\":[\"required\",\"minmax\"]},\"Required\":true,\"Validate\":true,\"RequiredMessagePosition\":\"right\",\"min\":\"50\",\"max\":\"500\",\"id\":\"ufo-field-id-3326\",\"form\":\"ufo-form-id-2\"});</script>]]></Validation><Input width=\"300px\" rowclass=\"fila\"><![CDATA[<textarea id=\'ufo-field-id-3326\' name=\'id-3326\' class=\'ufo-cell-left\' style=\'height:100px;width:300px\'>{id-3326}</textarea>]]></Input></field>', '1116', '2', '3323');
INSERT INTO `wp_easycontactforms_customformfields` VALUES ('3327', 'Enviar', '6', '<?xml version=\"1.0\"?>\n<form>\n \n \n \n <Advanced/>\n <LabelCSSClass/>\n <LabelCSSStyle/>\n \n \n <CSSStyle/>\n <RowCSSClass/>\n \n <Width>100</Width>\n <WidthUnit>px</WidthUnit>\n<InputPosition><![CDATA[left]]></InputPosition><ShowLabel><![CDATA[on]]></ShowLabel><SetSize><![CDATA[off]]></SetSize><Label><![CDATA[Enviar]]></Label><SetStyle><![CDATA[on]]></SetStyle><CSSClass><![CDATA[enviar]]></CSSClass></form>\n', '<field><Validation><![CDATA[<script type=\'text/javascript\'>var c = {};c.id = \'ufo-field-id-3327\';c.form = \'ufo-form-id-2\';c.Label = \'Enviar\';c.CSSClass = \'enviar\';ufoFormsConfig.submits.push(c);</script>]]></Validation><Input><![CDATA[<span id=\'ufo-field-id-3327-span\'><noscript><button type=\'submit\' id=\'ufo-field-id-3327\' name=\'id-3327\' class=\'enviar\'>Enviar</button></noscript></span>]]></Input></field>', '3333', '2', '3323');
INSERT INTO `wp_easycontactforms_customformfields` VALUES ('3328', 'Please fill in the fields below', '2', '<?xml version=\"1.0\"?>\n<form>\n \n \n <LabelTagName>h3</LabelTagName>\n <Advanced/>\n <LabelCSSClass/>\n <LabelCSSStyle/>\n \n \n \n \n <DescriptionCSSStyle/>\n \n <CSSClass/>\n \n \n <Width>230</Width>\n <WidthUnit>px</WidthUnit>\n<DescriptionCSSClass><![CDATA[ufo-customfields-container-description]]></DescriptionCSSClass><CSSStyle><![CDATA[]]></CSSStyle><SetStyle><![CDATA[off]]></SetStyle><SetSize><![CDATA[off]]></SetSize><AddCF>off</AddCF><Label><![CDATA[Please fill in the fields below]]></Label><ShowLabel><![CDATA[on]]></ShowLabel><ShowDescription><![CDATA[on]]></ShowDescription><Description><![CDATA[We are glad to hear from you]]></Description><DescriptionPosition><![CDATA[top-inside]]></DescriptionPosition></form>\n', '<field><ShowDescription position=\"top-inside\"><![CDATA[<div class=\'ufo-customfields-container-description\'>We are glad to hear from you</div>]]></ShowDescription><Container containertag=\"div\" addcf=\"off\"><![CDATA[<div><h3 >Please fill in the fields below</h3>]]></Container></field>', '1112', '3', '3328');
INSERT INTO `wp_easycontactforms_customformfields` VALUES ('3329', 'Your name', '4', '<?xml version=\"1.0\"?>\n<form>\n \n \n \n <Advanced/>\n <LabelCSSClass/>\n <LabelCSSStyle/>\n <ShowDescription>off</ShowDescription>\n <Description/>\n <DescriptionPosition>bottom</DescriptionPosition>\n <DescriptionCSSClass>ufo-customfields-field-description</DescriptionCSSClass>\n <DescriptionCSSStyle/>\n <SetDefaultValue>off</SetDefaultValue>\n <DefaultValue/>\n <IsBlankValue>on</IsBlankValue>\n <DefaultValueCSSClass/>\n \n \n \n <SetRequiredSuffix>on</SetRequiredSuffix>\n <RequiredSuffix>*</RequiredSuffix>\n <RequiredSuffixCSSClass>ufo-customfields-required-suffix</RequiredSuffixCSSClass>\n <RequiredSuffixCSSStyle/>\n \n <InvalidCSSClass/>\n <RequiredMessageCSSClass/>\n <RequiredMessageCSSStyle/>\n \n \n \n \n \n <ValidMessage/>\n <ValidMessagePosition>right</ValidMessagePosition>\n <ValidCSSClass/>\n <ValidCSSStyle/>\n <SetStyle>off</SetStyle>\n <CSSClass/>\n <CSSStyle/>\n <RowCSSClass/>\n \n \n <WidthUnit>px</WidthUnit>\n \n \n \n<ShowLabel><![CDATA[on]]></ShowLabel><Label><![CDATA[Your name]]></Label><RequiredMessage><![CDATA[This field is required]]></RequiredMessage><Validate><![CDATA[off]]></Validate><MinLength><![CDATA[0]]></MinLength><MaxLength><![CDATA[0]]></MaxLength><SetValidMessage><![CDATA[off]]></SetValidMessage><ValidMessageAbsolutePosition><![CDATA[off]]></ValidMessageAbsolutePosition><SetContactOptions><![CDATA[off]]></SetContactOptions><RegistredUsersOptions><![CDATA[none]]></RegistredUsersOptions><LinkToAppField><![CDATA[]]></LinkToAppField><AbsolutePosition><![CDATA[off]]></AbsolutePosition><Required><![CDATA[on]]></Required><LabelPosition><![CDATA[top-align-left]]></LabelPosition><SetSize><![CDATA[on]]></SetSize><Width><![CDATA[300]]></Width><RequiredMessagePosition><![CDATA[top]]></RequiredMessagePosition></form>\n', '<field><ShowLabel position=\"top\"><![CDATA[<label for=\'ufo-field-id-3329\' style=\'text-align:left\'>Your name<span class=\'ufo-customfields-required-suffix\'>*</span></label>]]></ShowLabel><RequiredMessage position=\"top\"><![CDATA[<div id=\'ufo-field-id-3329-invalid\' style=\'display:none\'></div>]]></RequiredMessage><Validation><![CDATA[<script type=\'text/javascript\'>ufoFormsConfig.validations.push({\"events\":{\"blur\":[\"required\"]},\"Required\":true,\"RequiredMessage\":\"This field is required\",\"RequiredMessagePosition\":\"top\",\"id\":\"ufo-field-id-3329\",\"form\":\"ufo-form-id-3\"});</script>]]></Validation><Input width=\"300px\"><![CDATA[<input type=\'text\' id=\'ufo-field-id-3329\' value=\'{id-3329}\' name=\'id-3329\' style=\'width:300px\'/>]]></Input></field>', '1113', '3', '3328');
INSERT INTO `wp_easycontactforms_customformfields` VALUES ('3330', 'Your Email', '5', '<?xml version=\"1.0\"?>\n<form>\n \n \n \n <Advanced/>\n <LabelCSSClass/>\n <LabelCSSStyle/>\n <ShowDescription>off</ShowDescription>\n <Description/>\n <DescriptionPosition>bottom</DescriptionPosition>\n <DescriptionCSSClass>ufo-customfields-field-description</DescriptionCSSClass>\n <DescriptionCSSStyle/>\n <SetDefaultValue>off</SetDefaultValue>\n <DefaultValue>Your email</DefaultValue>\n <IsBlankValue>on</IsBlankValue>\n <DefaultValueCSSClass/>\n <Required>on</Required>\n <RequiredMessage>Please enter you email</RequiredMessage>\n \n <SetRequiredSuffix>on</SetRequiredSuffix>\n <RequiredSuffix>*</RequiredSuffix>\n <RequiredSuffixCSSClass>ufo-customfields-required-suffix</RequiredSuffixCSSClass>\n <RequiredSuffixCSSStyle/>\n \n <InvalidCSSClass/>\n <RequiredMessageCSSClass/>\n <RequiredMessageCSSStyle/>\n <Validate>on</Validate>\n \n <ValidMessageAbsolutePosition>on</ValidMessageAbsolutePosition>\n <ValidMessage/>\n <ValidMessagePosition>right</ValidMessagePosition>\n <ValidCSSClass/>\n <ValidCSSStyle/>\n <SetStyle>off</SetStyle>\n <CSSClass/>\n <CSSStyle/>\n <RowCSSClass/>\n \n \n <WidthUnit>px</WidthUnit>\n \n \n \n<ShowLabel><![CDATA[on]]></ShowLabel><Label><![CDATA[Your Email]]></Label><SetContactOptions><![CDATA[off]]></SetContactOptions><RegistredUsersOptions><![CDATA[none]]></RegistredUsersOptions><LinkToAppField><![CDATA[]]></LinkToAppField><SetValidMessage><![CDATA[off]]></SetValidMessage><AbsolutePosition><![CDATA[off]]></AbsolutePosition><LabelPosition><![CDATA[top-align-left]]></LabelPosition><SetSize><![CDATA[on]]></SetSize><Width><![CDATA[300]]></Width><RequiredMessagePosition><![CDATA[top]]></RequiredMessagePosition></form>\n', '<field><ShowLabel position=\"top\"><![CDATA[<label for=\'ufo-field-id-3330\' style=\'text-align:left\'>Your Email<span class=\'ufo-customfields-required-suffix\'>*</span></label>]]></ShowLabel><RequiredMessage position=\"top\"><![CDATA[<div id=\'ufo-field-id-3330-invalid\' style=\'display:none\'></div>]]></RequiredMessage><Validation><![CDATA[<script type=\'text/javascript\'>ufoFormsConfig.validations.push({\"events\":{\"blur\":[\"required\",\"email\"]},\"Required\":true,\"Validate\":true,\"RequiredMessage\":\"Please enter you email\",\"RequiredMessagePosition\":\"top\",\"id\":\"ufo-field-id-3330\",\"form\":\"ufo-form-id-3\"});</script>]]></Validation><Input width=\"300px\"><![CDATA[<input type=\'text\' id=\'ufo-field-id-3330\' value=\'{id-3330}\' name=\'id-3330\' style=\'width:300px\'/>]]></Input></field>', '1114', '3', '3328');
INSERT INTO `wp_easycontactforms_customformfields` VALUES ('3331', 'Your request', '10', '<?xml version=\"1.0\"?>\n<form>\n \n \n \n <Advanced/>\n <LabelCSSClass/>\n <LabelCSSStyle/>\n \n \n \n <DescriptionCSSClass>ufo-customfields-field-description</DescriptionCSSClass>\n <DescriptionCSSStyle/>\n <SetDefaultValue>off</SetDefaultValue>\n <DefaultValue/>\n <IsBlankValue>on</IsBlankValue>\n <DefaultValueCSSClass/>\n \n <RequiredMessage>This field is required</RequiredMessage>\n \n <SetRequiredSuffix>on</SetRequiredSuffix>\n <RequiredSuffix>*</RequiredSuffix>\n <RequiredSuffixCSSClass>ufo-customfields-required-suffix</RequiredSuffixCSSClass>\n <RequiredSuffixCSSStyle/>\n \n <InvalidCSSClass/>\n <RequiredMessageCSSClass/>\n <RequiredMessageCSSStyle/>\n <Validate>off</Validate>\n <MinLength/>\n <MaxLength/>\n <SetValidMessage>off</SetValidMessage>\n <ValidMessageAbsolutePosition>on</ValidMessageAbsolutePosition>\n <ValidMessage/>\n <ValidMessagePosition>right</ValidMessagePosition>\n <ValidCSSClass/>\n <ValidCSSStyle/>\n \n <CSSClass/>\n <CSSStyle/>\n <RowCSSClass/>\n \n \n <WidthUnit>px</WidthUnit>\n \n <HeightUnit>px</HeightUnit>\n<Label><![CDATA[Your request]]></Label><Description><![CDATA[Please provide us with your request details]]></Description><DescriptionPosition><![CDATA[top]]></DescriptionPosition><SetSize><![CDATA[on]]></SetSize><LabelPosition><![CDATA[top-align-left]]></LabelPosition><ShowDescription><![CDATA[off]]></ShowDescription><ShowLabel><![CDATA[on]]></ShowLabel><SetContactOptions>off</SetContactOptions><SetStyle><![CDATA[off]]></SetStyle><Height><![CDATA[100]]></Height><RequiredMessagePosition><![CDATA[bottom]]></RequiredMessagePosition><AbsolutePosition><![CDATA[off]]></AbsolutePosition><Required><![CDATA[off]]></Required><Width><![CDATA[300]]></Width></form>\n', '<field><ShowLabel position=\"top\"><![CDATA[<label for=\'ufo-field-id-3331\' style=\'text-align:left\'>Your request</label>]]></ShowLabel><Input width=\"300px\"><![CDATA[<textarea id=\'ufo-field-id-3331\' name=\'id-3331\' style=\'height:100px;width:300px\'>{id-3331}</textarea>]]></Input></field>', '1115', '3', '3328');
INSERT INTO `wp_easycontactforms_customformfields` VALUES ('3332', 'Submit', '6', '<?xml version=\"1.0\"?>\n<form>\n \n \n \n <Advanced/>\n <LabelCSSClass/>\n <LabelCSSStyle/>\n <SetStyle>off</SetStyle>\n <CSSClass/>\n <CSSStyle/>\n <RowCSSClass/>\n \n <Width>100</Width>\n <WidthUnit>px</WidthUnit>\n<Label><![CDATA[Submit]]></Label><InputPosition><![CDATA[left]]></InputPosition><ShowLabel><![CDATA[on]]></ShowLabel><SetSize><![CDATA[off]]></SetSize></form>', '<field><Validation><![CDATA[<script type=\'text/javascript\'>var c = {};c.id = \'ufo-field-id-3332\';c.form = \'ufo-form-id-3\';c.Label = \'Submit\';ufoFormsConfig.submits.push(c);</script>]]></Validation><Input><![CDATA[<span id=\'ufo-field-id-3332-span\'><noscript><button type=\'submit\' id=\'ufo-field-id-3332\' name=\'id-3332\' >Submit</button></noscript></span>]]></Input></field>', '1116', '3', '3328');
INSERT INTO `wp_easycontactforms_customformfields` VALUES ('3333', 'Teléfono', '16', '<?xml version=\"1.0\"?>\n<form><ShowLabel>on</ShowLabel><LabelPosition>left-align-left</LabelPosition><Advanced/><LabelCSSClass/><LabelCSSStyle/><ShowDescription>off</ShowDescription><Description/><DescriptionPosition>bottom</DescriptionPosition><DescriptionCSSClass>ufo-customfields-field-description</DescriptionCSSClass><DescriptionCSSStyle/><SetDefaultValue>off</SetDefaultValue><DefaultValue/><IsBlankValue>on</IsBlankValue><DefaultValueCSSClass/><Required>on</Required><RequiredMessagePosition>right</RequiredMessagePosition><SetRequiredSuffix>on</SetRequiredSuffix><RequiredSuffix>*</RequiredSuffix><RequiredSuffixCSSClass>ufo-customfields-required-suffix</RequiredSuffixCSSClass><RequiredSuffixCSSStyle/><AbsolutePosition>on</AbsolutePosition><InvalidCSSClass/><RequiredMessageCSSClass/><RequiredMessageCSSStyle/><Validate>on</Validate><SetValidMessage>on</SetValidMessage><ValidMessageAbsolutePosition>on</ValidMessageAbsolutePosition><ValidMessage/><ValidMessagePosition>right</ValidMessagePosition><ValidCSSClass/><ValidCSSStyle/><CSSStyle/><SetSize>off</SetSize><Width>230</Width><WidthUnit>px</WidthUnit><Label><![CDATA[Teléfono]]></Label><RequiredMessage><![CDATA[]]></RequiredMessage><SetStyle><![CDATA[on]]></SetStyle><CSSClass><![CDATA[ufo-cell-left]]></CSSClass><RowCSSClass><![CDATA[fila]]></RowCSSClass></form>\n', '<field><ShowLabel position=\"left\"><![CDATA[<label for=\'ufo-field-id-3333\' style=\'text-align:left\'>Teléfono<span class=\'ufo-customfields-required-suffix\'>*</span></label>]]></ShowLabel><ValidMessage position=\"right\"><![CDATA[<div id=\'ufo-field-id-3333-valid\' style=\'display:none\'></div>]]></ValidMessage><Validation><![CDATA[<script type=\'text/javascript\'>ufoFormsConfig.validations.push({\"events\":{\"blur\":[\"required\",\"phonenumber\"]},\"Required\":true,\"Validate\":true,\"showValid\":true,\"ValidMessageAbsolutePosition\":true,\"ValidMessagePosition\":\"right\",\"AbsolutePosition\":true,\"RequiredMessagePosition\":\"right\",\"id\":\"ufo-field-id-3333\",\"form\":\"ufo-form-id-2\"});</script>]]></Validation><Input rowclass=\"fila\"><![CDATA[<input type=\'text\' id=\'ufo-field-id-3333\' value=\'{id-3333}\' name=\'id-3333\' class=\'ufo-cell-left\'/>]]></Input></field>', '1115', '2', '3323');
-- ----------------------------
-- Table structure for wp_easycontactforms_customformfieldtypes
-- ----------------------------
DROP TABLE IF EXISTS `wp_easycontactforms_customformfieldtypes`;
CREATE TABLE `wp_easycontactforms_customformfieldtypes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`Description` varchar(200) NOT NULL DEFAULT '',
`CssClass` varchar(100) DEFAULT NULL,
`Settings` text,
`Signature` text,
`ListPosition` int(10) NOT NULL DEFAULT '0',
`ValueField` tinyint(1) DEFAULT NULL,
`HelpLink` text,
PRIMARY KEY (`id`),
KEY `Description` (`Description`),
KEY `ListPosition` (`ListPosition`)
) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of wp_easycontactforms_customformfieldtypes
-- ----------------------------
INSERT INTO `wp_easycontactforms_customformfieldtypes` VALUES ('1', 'Fieldset', 'ufo-customfield-fieldset', '<form><ShowLabel>on</ShowLabel><Label>Fieldset</Label><Advanced/><LabelCSSClass/><LabelCSSStyle/><ShowDescription>off</ShowDescription><Description/><DescriptionPosition>top</DescriptionPosition><DescriptionCSSClass>ufo-customfields-container-description</DescriptionCSSClass><DescriptionCSSStyle/><SetStyle>off</SetStyle><CSSClass/><CSSStyle/><AddCF>off</AddCF><SetSize>off</SetSize><Width>230</Width><WidthUnit>px</WidthUnit></form>', null, '100', '0', null);
INSERT INTO `wp_easycontactforms_customformfieldtypes` VALUES ('2', 'Section', 'ufo-customfield-section', '<form><ShowLabel>on</ShowLabel><Label>Section</Label><LabelTagName>h3</LabelTagName><Advanced/><LabelCSSClass/><LabelCSSStyle/><ShowDescription>off</ShowDescription><Description/><DescriptionPosition>top</DescriptionPosition><DescriptionCSSClass>ufo-customfields-container-description</DescriptionCSSClass><DescriptionCSSStyle/><SetStyle>off</SetStyle><CSSClass/><CSSStyle/><AddCF>off</AddCF><SetSize>off</SetSize><Width>230</Width><WidthUnit>px</WidthUnit></form>', null, '200', '0', null);
INSERT INTO `wp_easycontactforms_customformfieldtypes` VALUES ('3', 'Select', 'ufo-customfield-select', '<form><ShowLabel>on</ShowLabel><Label>Select</Label><LabelPosition>left-align-left</LabelPosition><Advanced/><LabelCSSClass/><LabelCSSStyle/><ShowDescription>off</ShowDescription><Description/><DescriptionPosition>bottom</DescriptionPosition><DescriptionCSSClass>ufo-customfields-field-description</DescriptionCSSClass><DescriptionCSSStyle/><SetOptions>on</SetOptions><HasEmpty>off</HasEmpty><EmptyOption/><Options><option index=\"1\">Option1</option><option index=\"2\">Option2</option><option index=\"3\">Option3</option></Options><Required>off</Required><RequiredMessage>This field is required</RequiredMessage><RequiredMessagePosition>right</RequiredMessagePosition><SetRequiredSuffix>on</SetRequiredSuffix><RequiredSuffix>*</RequiredSuffix><RequiredSuffixCSSClass>ufo-customfields-required-suffix</RequiredSuffixCSSClass><RequiredSuffixCSSStyle/><AbsolutePosition>on</AbsolutePosition><InvalidCSSClass/><RequiredMessageCSSClass/><RequiredMessageCSSStyle/><SetStyle>off</SetStyle><CSSClass/><CSSStyle/><RowCSSClass/><SetSize>off</SetSize><Width>230</Width><WidthUnit>px</WidthUnit></form>', null, '800', '1', null);
INSERT INTO `wp_easycontactforms_customformfieldtypes` VALUES ('4', 'Text', 'ufo-customfield-text', '<form><ShowLabel>on</ShowLabel><Label>Text</Label><LabelPosition>left-align-left</LabelPosition><Advanced/><LabelCSSClass/><LabelCSSStyle/><ShowDescription>off</ShowDescription><Description/><DescriptionPosition>bottom</DescriptionPosition><DescriptionCSSClass>ufo-customfields-field-description</DescriptionCSSClass><DescriptionCSSStyle/><SetDefaultValue>off</SetDefaultValue><DefaultValue/><IsBlankValue>on</IsBlankValue><DefaultValueCSSClass/><Required>off</Required><RequiredMessage>This field is required</RequiredMessage><RequiredMessagePosition>right</RequiredMessagePosition><SetRequiredSuffix>on</SetRequiredSuffix><RequiredSuffix>*</RequiredSuffix><RequiredSuffixCSSClass>ufo-customfields-required-suffix</RequiredSuffixCSSClass><RequiredSuffixCSSStyle/><AbsolutePosition>on</AbsolutePosition><InvalidCSSClass/><RequiredMessageCSSClass/><RequiredMessageCSSStyle/><Validate>off</Validate><MinLength/><MaxLength/><SetValidMessage>off</SetValidMessage><ValidMessageAbsolutePosition>on</ValidMessageAbsolutePosition><ValidMessage/><ValidMessagePosition>right</ValidMessagePosition><ValidCSSClass/><ValidCSSStyle/><SetStyle>off</SetStyle><CSSClass/><CSSStyle/><RowCSSClass/><SetSize>off</SetSize><Width>230</Width><WidthUnit>px</WidthUnit><SetContactOptions>off</SetContactOptions><RegistredUsersOptions>none</RegistredUsersOptions><LinkToAppField/></form>', null, '300', '1', null);
INSERT INTO `wp_easycontactforms_customformfieldtypes` VALUES ('5', 'Email', 'ufo-customfield-email', '<form><ShowLabel>on</ShowLabel><Label>Email</Label><LabelPosition>left-align-left</LabelPosition><Advanced/><LabelCSSClass/><LabelCSSStyle/><ShowDescription>off</ShowDescription><Description/><DescriptionPosition>bottom</DescriptionPosition><DescriptionCSSClass>ufo-customfields-field-description</DescriptionCSSClass><DescriptionCSSStyle/><SetDefaultValue>off</SetDefaultValue><DefaultValue>Your email</DefaultValue><IsBlankValue>on</IsBlankValue><DefaultValueCSSClass/><Required>on</Required><RequiredMessage>Please enter your email</RequiredMessage><RequiredMessagePosition>right</RequiredMessagePosition><SetRequiredSuffix>on</SetRequiredSuffix><RequiredSuffix>*</RequiredSuffix><RequiredSuffixCSSClass>ufo-customfields-required-suffix</RequiredSuffixCSSClass><RequiredSuffixCSSStyle/><AbsolutePosition>on</AbsolutePosition><InvalidCSSClass/><RequiredMessageCSSClass/><RequiredMessageCSSStyle/><Validate>on</Validate><SetValidMessage>on</SetValidMessage><ValidMessageAbsolutePosition>on</ValidMessageAbsolutePosition><ValidMessage/><ValidMessagePosition>right</ValidMessagePosition><ValidCSSClass/><ValidCSSStyle/><SetStyle>off</SetStyle><CSSClass/><CSSStyle/><RowCSSClass/><SetSize>off</SetSize><Width>230</Width><WidthUnit>px</WidthUnit><SetContactOptions>off</SetContactOptions><RegistredUsersOptions>none</RegistredUsersOptions><LinkToAppField/></form>', null, '500', '1', null);
INSERT INTO `wp_easycontactforms_customformfieldtypes` VALUES ('6', 'Submit button', 'ufo-customfield-submitbutton', '<form><ShowLabel>on</ShowLabel><Label>Submit</Label><InputPosition>left</InputPosition><Advanced/><LabelCSSClass/><LabelCSSStyle/><SetStyle>off</SetStyle><CSSClass/><CSSStyle/><RowCSSClass/><WindowScroll/><SetSize>off</SetSize><Width>100</Width><WidthUnit>px</WidthUnit></form>', null, '1300', '0', null);
INSERT INTO `wp_easycontactforms_customformfieldtypes` VALUES ('9', 'Checkbox', 'ufo-customfield-checkbox', '<form><ShowLabel>on</ShowLabel><Label>Checkbox</Label><LabelPosition>right-align-left</LabelPosition><Advanced/><LabelCSSClass/><LabelCSSStyle>width:200px;</LabelCSSStyle><DisplayValueOn>on</DisplayValueOn><DisplayValueOff>off</DisplayValueOff><ShowDescription>off</ShowDescription><Description/><DescriptionPosition>bottom</DescriptionPosition><DescriptionCSSClass>ufo-customfields-field-description</DescriptionCSSClass><DescriptionCSSStyle/><Required>off</Required><RequiredMessage>This field is required</RequiredMessage><RequiredMessagePosition>right</RequiredMessagePosition><SetRequiredSuffix>on</SetRequiredSuffix><RequiredSuffix>*</RequiredSuffix><RequiredSuffixCSSClass>ufo-customfields-required-suffix</RequiredSuffixCSSClass><RequiredSuffixCSSStyle/><AbsolutePosition>on</AbsolutePosition><InvalidCSSClass/><RequiredMessageCSSClass/><RequiredMessageCSSStyle>width:200px;</RequiredMessageCSSStyle><SetStyle>off</SetStyle><CSSClass/><CSSStyle/><RowCSSClass/><SetSize>on</SetSize><Width>20</Width><WidthUnit>px</WidthUnit></form>', null, '700', '1', null);
INSERT INTO `wp_easycontactforms_customformfieldtypes` VALUES ('10', 'Text Area', 'ufo-customfield-textarea', '<form><ShowLabel>on</ShowLabel><Label>Text Area</Label><LabelPosition>left-align-left</LabelPosition><Advanced/><LabelCSSClass/><LabelCSSStyle/><ShowDescription>off</ShowDescription><Description/><DescriptionPosition>bottom</DescriptionPosition><DescriptionCSSClass>ufo-customfields-field-description</DescriptionCSSClass><DescriptionCSSStyle/><SetDefaultValue>off</SetDefaultValue><DefaultValue/><IsBlankValue>on</IsBlankValue><DefaultValueCSSClass/><Required>off</Required><RequiredMessage>This field is required</RequiredMessage><RequiredMessagePosition>right</RequiredMessagePosition><SetRequiredSuffix>on</SetRequiredSuffix><RequiredSuffix>*</RequiredSuffix><RequiredSuffixCSSClass>ufo-customfields-required-suffix</RequiredSuffixCSSClass><RequiredSuffixCSSStyle/><AbsolutePosition>on</AbsolutePosition><InvalidCSSClass/><RequiredMessageCSSClass/><RequiredMessageCSSStyle/><Validate>off</Validate><MinLength/><MaxLength/><SetValidMessage>off</SetValidMessage><ValidMessageAbsolutePosition>on</ValidMessageAbsolutePosition><ValidMessage/><ValidMessagePosition>right</ValidMessagePosition><ValidCSSClass/><ValidCSSStyle/><SetStyle>off</SetStyle><CSSClass/><CSSStyle/><RowCSSClass/><SetSize>on</SetSize><Width>230</Width><WidthUnit>px</WidthUnit><Height>100</Height><HeightUnit>px</HeightUnit></form>', null, '400', '1', null);
INSERT INTO `wp_easycontactforms_customformfieldtypes` VALUES ('11', 'Number', 'ufo-customfield-number', '<form><ShowLabel>on</ShowLabel><Label>Number</Label><LabelPosition>left-align-left</LabelPosition><Advanced/><LabelCSSClass/><LabelCSSStyle/><ShowDescription>off</ShowDescription><Description/><DescriptionPosition>bottom</DescriptionPosition><DescriptionCSSClass>ufo-customfields-field-description</DescriptionCSSClass><DescriptionCSSStyle/><SetDefaultValue>off</SetDefaultValue><DefaultValue/><IsBlankValue>on</IsBlankValue><DefaultValueCSSClass/><Required>on</Required><RequiredMessage>Please enter a valid number</RequiredMessage><RequiredMessagePosition>right</RequiredMessagePosition><SetRequiredSuffix>on</SetRequiredSuffix><RequiredSuffix>*</RequiredSuffix><RequiredSuffixCSSClass>ufo-customfields-required-suffix</RequiredSuffixCSSClass><RequiredSuffixCSSStyle/><AbsolutePosition>on</AbsolutePosition><InvalidCSSClass/><RequiredMessageCSSClass/><RequiredMessageCSSStyle/><Validate>on</Validate><SetValidMessage>on</SetValidMessage><ValidMessageAbsolutePosition>on</ValidMessageAbsolutePosition><ValidMessage/><ValidMessagePosition>right</ValidMessagePosition><ValidCSSClass/><ValidCSSStyle/><SetStyle>off</SetStyle><CSSClass/><CSSStyle/><RowCSSClass/><SetSize>off</SetSize><Width>230</Width><WidthUnit>px</WidthUnit></form>', null, '600', '1', null);
INSERT INTO `wp_easycontactforms_customformfieldtypes` VALUES ('12', 'Radio Group', 'ufo-customfield-radiogroup', '<form><ShowLabel>on</ShowLabel><Label>Radio Group</Label><LabelPosition>left-align-left</LabelPosition><Advanced/><LabelCSSClass/><LabelCSSStyle/><ShowDescription>off</ShowDescription><Description/><DescriptionPosition>bottom</DescriptionPosition><DescriptionCSSClass>ufo-customfields-field-description</DescriptionCSSClass><DescriptionCSSStyle/><SetOptions>on</SetOptions><Options><option index=\"1\">Option1</option><option index=\"2\">Option2</option><option index=\"3\">Option3</option></Options><Required>off</Required><RequiredMessage>This field is required</RequiredMessage><RequiredMessagePosition>right</RequiredMessagePosition><SetRequiredSuffix>on</SetRequiredSuffix><RequiredSuffix>*</RequiredSuffix><RequiredSuffixCSSClass>ufo-customfields-required-suffix</RequiredSuffixCSSClass><RequiredSuffixCSSStyle/><AbsolutePosition>on</AbsolutePosition><InvalidCSSClass/><RequiredMessageCSSClass/><RequiredMessageCSSStyle/><SetStyle>on</SetStyle><CSSClass/><CSSStyle>float:left</CSSStyle><RowCSSClass/><SetSize>off</SetSize><Width>230</Width><WidthUnit>px</WidthUnit></form>', null, '900', '1', null);
INSERT INTO `wp_easycontactforms_customformfieldtypes` VALUES ('13', 'reCaptcha', 'ufo-customfield-recaptcha', '<form><ShowLabel>off</ShowLabel><Label>ReCaptcha</Label><LabelPosition>left-align-left</LabelPosition><Advanced/><LabelCSSClass/><LabelCSSStyle/><ShowDescription>off</ShowDescription><Description/><DescriptionPosition>bottom</DescriptionPosition><DescriptionCSSClass>ufo-customfields-field-description</DescriptionCSSClass><DescriptionCSSStyle/><Required>off</Required><RequiredMessage>Please try again</RequiredMessage><RequiredMessagePosition>right</RequiredMessagePosition><SetRequiredSuffix>on</SetRequiredSuffix><RequiredSuffix>*</RequiredSuffix><RequiredSuffixCSSClass>ufo-customfields-required-suffix</RequiredSuffixCSSClass><RequiredSuffixCSSStyle/><AbsolutePosition>on</AbsolutePosition><InvalidCSSClass>none</InvalidCSSClass><RequiredMessageCSSClass/><RequiredMessageCSSStyle/><Validate>off</Validate><SetValidMessage>on</SetValidMessage><ValidMessageAbsolutePosition>on</ValidMessageAbsolutePosition><ValidMessage/><ValidMessagePosition>right</ValidMessagePosition><ValidCSSClass/><ValidCSSStyle/><SetStyle>off</SetStyle><CSSClass/><CSSStyle/><RowCSSClass/><SetSize>on</SetSize><Width>500</Width><WidthUnit>px</WidthUnit><SetReCaptchaOptions>off</SetReCaptchaOptions><ReCaptchaTheme>red</ReCaptchaTheme><ReCaptchaLanguage/><ReCaptchaPublicKey/><ReCaptchaPrivateKey/></form>', null, '1100', '0', null);
INSERT INTO `wp_easycontactforms_customformfieldtypes` VALUES ('14', 'Hidden', 'ufo-customfield-hidden', '<form><ShowLabel>on</ShowLabel><Label>Last Name</Label><LabelPosition>left-align-left</LabelPosition><Advanced/><LabelCSSClass/><LabelCSSStyle/><ShowDescription>off</ShowDescription><Description/><DescriptionPosition>bottom</DescriptionPosition><DescriptionCSSClass>ufo-customfields-field-description</DescriptionCSSClass><DescriptionCSSStyle/><SetDefaultValue>off</SetDefaultValue><DefaultValue/><IsBlankValue>on</IsBlankValue><DefaultValueCSSClass/><Required>off</Required><RequiredMessage>This field is required</RequiredMessage><RequiredMessagePosition>right</RequiredMessagePosition><SetRequiredSuffix>on</SetRequiredSuffix><RequiredSuffix>*</RequiredSuffix><RequiredSuffixCSSClass>ufo-customfields-required-suffix</RequiredSuffixCSSClass><RequiredSuffixCSSStyle/><AbsolutePosition>on</AbsolutePosition><InvalidCSSClass/><RequiredMessageCSSClass/><RequiredMessageCSSStyle/><Validate>off</Validate><MinLength/><MaxLength/><SetValidMessage>off</SetValidMessage><ValidMessageAbsolutePosition>on</ValidMessageAbsolutePosition><ValidMessage/><ValidMessagePosition>right</ValidMessagePosition><ValidCSSClass/><ValidCSSStyle/><SetStyle>off</SetStyle><CSSClass/><CSSStyle/><RowCSSClass/><SetSize>off</SetSize><Width>230</Width><WidthUnit>px</WidthUnit></form>', null, '1000', '0', null);
INSERT INTO `wp_easycontactforms_customformfieldtypes` VALUES ('16', 'Phone Number', 'ufo-customfield-phonenumber', '<form><ShowLabel>on</ShowLabel><Label>Phone Number</Label><LabelPosition>left-align-left</LabelPosition><Advanced/><LabelCSSClass/><LabelCSSStyle/><ShowDescription>off</ShowDescription><Description/><DescriptionPosition>bottom</DescriptionPosition><DescriptionCSSClass>ufo-customfields-field-description</DescriptionCSSClass><DescriptionCSSStyle/><SetDefaultValue>off</SetDefaultValue><DefaultValue/><IsBlankValue>on</IsBlankValue><DefaultValueCSSClass/><Required>on</Required><RequiredMessage>Please enter a valid phone number</RequiredMessage><RequiredMessagePosition>right</RequiredMessagePosition><SetRequiredSuffix>on</SetRequiredSuffix><RequiredSuffix>*</RequiredSuffix><RequiredSuffixCSSClass>ufo-customfields-required-suffix</RequiredSuffixCSSClass><RequiredSuffixCSSStyle/><AbsolutePosition>on</AbsolutePosition><InvalidCSSClass/><RequiredMessageCSSClass/><RequiredMessageCSSStyle/><Validate>on</Validate><SetValidMessage>on</SetValidMessage><ValidMessageAbsolutePosition>on</ValidMessageAbsolutePosition><ValidMessage/><ValidMessagePosition>right</ValidMessagePosition><ValidCSSClass/><ValidCSSStyle/><SetStyle>off</SetStyle><CSSClass/><CSSStyle/><RowCSSClass/><SetSize>off</SetSize><Width>230</Width><WidthUnit>px</WidthUnit></form>', null, '650', '1', null);
INSERT INTO `wp_easycontactforms_customformfieldtypes` VALUES ('19', 'Text Paragraph', 'ufo-customfield-textparagraph', '<form><ShowLabel>on</ShowLabel><Label>Text Paragraph</Label><LabelPosition>left-align-left</LabelPosition><Advanced/><LabelCSSClass/><LabelCSSStyle/><ShowDescription>off</ShowDescription><Description/><DescriptionCSSClass>ufo-customfields-field-description</DescriptionCSSClass><DescriptionCSSStyle/><SetSize>off</SetSize><Width>230</Width><WidthUnit>px</WidthUnit></form>', null, '450', '0', null);
INSERT INTO `wp_easycontactforms_customformfieldtypes` VALUES ('20', 'Google Map', 'ufo-customfield-googlemap', '<form><GoolgeMapSettings>on</GoolgeMapSettings><Latitude/><Longitude/><Zoom>16</Zoom><ShowLabel>on</ShowLabel><Label>Google Map</Label><LabelPosition>top-align-left</LabelPosition><Advanced/><LabelCSSClass/><LabelCSSStyle/><ShowDescription>off</ShowDescription><Description/><DescriptionPosition>top</DescriptionPosition><DescriptionCSSClass>ufo-customfields-field-description</DescriptionCSSClass><DescriptionCSSStyle/><SetStyle>off</SetStyle><CSSClass>ufo-google-map</CSSClass><CSSStyle/><RowCSSClass/><SetSize>on</SetSize><Width>400</Width><WidthUnit>px</WidthUnit><Height>500</Height><HeightUnit>px</HeightUnit></form>', null, '950', '0', null);
INSERT INTO `wp_easycontactforms_customformfieldtypes` VALUES ('22', 'File Upload', 'ufo-customfield-fileupload', '<form><FileSettings>on</FileSettings><ButtonText>Upload</ButtonText><UploadingText>Uploading...</UploadingText><OnlyAdminsCanDownload>on</OnlyAdminsCanDownload><AttachToConfirmation>off</AttachToConfirmation><AttachToNotification>off</AttachToNotification><ShowLabel>off</ShowLabel><Label>File Upload</Label><LabelPosition>left-align-left</LabelPosition><Advanced/><LabelCSSClass/><LabelCSSStyle/><ShowDescription>off</ShowDescription><Description/><DescriptionPosition>bottom</DescriptionPosition><DescriptionCSSClass>ufo-customfields-field-description</DescriptionCSSClass><DescriptionCSSStyle/><Required>off</Required><RequiredMessage>Please select a file</RequiredMessage><RequiredMessagePosition>right</RequiredMessagePosition><SetRequiredSuffix>on</SetRequiredSuffix><RequiredSuffix>*</RequiredSuffix><RequiredSuffixCSSClass>ufo-customfields-required-suffix</RequiredSuffixCSSClass><RequiredSuffixCSSStyle/><AbsolutePosition>on</AbsolutePosition><InvalidCSSClass/><RequiredMessageCSSClass/><RequiredMessageCSSStyle/><Validate>off</Validate><SetValidMessage>on</SetValidMessage><ValidMessageAbsolutePosition>on</ValidMessageAbsolutePosition><ValidMessage/><ValidMessagePosition>right</ValidMessagePosition><ValidCSSClass/><ValidCSSStyle/><SetStyle>on</SetStyle><CSSClass>ufo-frontendbutton blue</CSSClass><CSSStyle>width:130px;</CSSStyle><RowCSSClass/></form>', null, '925', '1', null);
-- ----------------------------
-- Table structure for wp_easycontactforms_customforms
-- ----------------------------
DROP TABLE IF EXISTS `wp_easycontactforms_customforms`;
CREATE TABLE `wp_easycontactforms_customforms` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`Description` varchar(200) NOT NULL DEFAULT '',
`NotificationSubject` varchar(200) DEFAULT NULL,
`SendFrom` varchar(200) DEFAULT NULL,
`SendConfirmation` tinyint(1) DEFAULT NULL,
`ConfirmationSubject` varchar(200) DEFAULT NULL,
`ConfirmationText` text,
`Redirect` tinyint(1) DEFAULT NULL,
`RedirectURL` text,
`ShortCode` varchar(300) DEFAULT NULL,
`Template` tinyint(1) DEFAULT NULL,
`ObjectOwner` int(11) NOT NULL DEFAULT '0',
`SubmissionSuccessText` text,
`StyleSheet` text,
`HTML` mediumtext,
`SendFromAddress` varchar(200) DEFAULT NULL,
`ShowSubmissionSuccess` tinyint(1) DEFAULT NULL,
`SuccessMessageClass` varchar(200) DEFAULT NULL,
`FailureMessageClass` varchar(200) DEFAULT NULL,
`Width` int(10) DEFAULT NULL,
`WidthUnit` varchar(5) DEFAULT NULL,
`LineHeight` int(10) DEFAULT NULL,
`LineHeightUnit` varchar(5) DEFAULT NULL,
`FormClass` varchar(200) DEFAULT NULL,
`FormStyle` text,
`Style` varchar(50) DEFAULT NULL,
`ConfirmationStyleSheet` text,
`TotalEntries` int(10) DEFAULT NULL,
`TotalProcessedEntries` int(10) DEFAULT NULL,
`Impressions` int(10) DEFAULT NULL,
`NotificationText` text,
`IncludeVisitorsAddressInReplyTo` tinyint(1) DEFAULT NULL,
`ReplyToNameTemplate` varchar(200) DEFAULT NULL,
`ConfirmationReplyToName` varchar(200) DEFAULT NULL,
`ConfirmationReplyToAddress` varchar(200) DEFAULT NULL,
`NotificationStyleSheet` text,
`SendConfirmationAsText` tinyint(1) DEFAULT NULL,
`SendNotificationAsText` tinyint(1) DEFAULT NULL,
`FadingDelay` int(10) DEFAULT NULL,
`MessageDelay` int(10) DEFAULT NULL,
`IncludeIntoReporting` tinyint(1) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `ObjectOwner` (`ObjectOwner`),
KEY `Description` (`Description`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of wp_easycontactforms_customforms
-- ----------------------------
INSERT INTO `wp_easycontactforms_customforms` VALUES ('1', 'Simple contact form', 'New request received', 'Champion Forms', '0', 'We have received your request', null, '0', null, '[easy_contact_forms fid=1]', '0', '286', 'Thank you for contacting us! We are glad to hear from you.', null, '<script type=\'text/javascript\'>if (typeof(ecfconfig) == \'undefined\'){var ecfconfig={};}ecfconfig[1]={};var ufobaseurl = \'http://localhost/wordpress-3.3/wp-admin/admin-ajax.php\';if (typeof(ufoFormsConfig) == \'undefined\') {var ufoFormsConfig = {};ufoFormsConfig.submits = [];ufoFormsConfig.resets = [];ufoFormsConfig.validations = [];}ufoFormsConfig.phonenumberre = /^(\\+{0,1}\\d{1,2})*\\s*(\\(?\\d{3}\\)?\\s*)*\\d{3}(-{0,1}|\\s{0,1})\\d{2}(-{0,1}|\\s{0,1})\\d{2}$/;</script><link href=\'http://localhost/wordpress-3.3/wp-content/plugins/easy-contact-forms/forms/styles/easyform/css/std.css?ver=1.4.9\' rel=\'stylesheet\' type=\'text/css\'/><div class=\'ufo-form\' id=\'ufo-form-id-1\'><noscript><form method=\'post\'><input type=\'hidden\' name=\'cf-no-script\' value=\'1\'/></noscript><input type=\'hidden\' value=\'ufo-form-id-1\' name=\'hidden-1\' id=\'ufo-form-hidden-1\'/><input type=\'hidden\' value=\'{__pagename}\' name=\'ufo-form-pagename\' id=\'ufo-form-pagename\'/>{preview}<input type=\'hidden\' value=\'{ufosignature}\' name=\'ufo-sign\' id=\'ufo-sign\'/><div></div><div>\n <div class=\'ufo-fieldtype-4 ufo-customform-row ufo-row-3318\' style=\'margin-top:2px;{display-3318}\'><div class=\'ufo-cell-3318-2-row\' id=\'ufo-cell-3318-2\'><span class=\'ufo-cell-left\' id=\'ufo-cell-3318-2-left\'><label for=\'ufo-field-id-3318\' style=\'text-align:left\'>First name<span class=\'ufo-customfields-required-suffix\'>*</span></label></span><span class=\'ufo-cell-center\' id=\'ufo-cell-3318-2-center\'><script type=\'text/javascript\'>ufoFormsConfig.validations.push({\"events\":{\"blur\":[\"required\"]},\"Required\":true,\"RequiredMessage\":\"This field is required\",\"AbsolutePosition\":true,\"RequiredMessagePosition\":\"right\",\"id\":\"ufo-field-id-3318\",\"form\":\"ufo-form-id-1\"});</script><input type=\'text\' id=\'ufo-field-id-3318\' value=\'{id-3318}\' name=\'id-3318\' /></span><span class=\'ufo-cell-right\' id=\'ufo-cell-3318-2-right\'><div id=\'ufo-field-id-3318-invalid\' style=\'display:none\'></div></span></div></div><div class=\'ufo-fieldtype-4 ufo-customform-row ufo-row-3319\' style=\'margin-top:2px;{display-3319}\'><div class=\'ufo-cell-3319-2-row\' id=\'ufo-cell-3319-2\'><span class=\'ufo-cell-left\' id=\'ufo-cell-3319-2-left\'><label for=\'ufo-field-id-3319\' style=\'text-align:left\'>Last name<span class=\'ufo-customfields-required-suffix\'>*</span></label></span><span class=\'ufo-cell-center\' id=\'ufo-cell-3319-2-center\'><script type=\'text/javascript\'>ufoFormsConfig.validations.push({\"events\":{\"blur\":[\"required\"]},\"Required\":true,\"RequiredMessage\":\"This field is required\",\"AbsolutePosition\":true,\"RequiredMessagePosition\":\"right\",\"id\":\"ufo-field-id-3319\",\"form\":\"ufo-form-id-1\"});</script><input type=\'text\' id=\'ufo-field-id-3319\' value=\'{id-3319}\' name=\'id-3319\' /></span><span class=\'ufo-cell-right\' id=\'ufo-cell-3319-2-right\'><div id=\'ufo-field-id-3319-invalid\' style=\'display:none\'></div></span></div></div><div class=\'ufo-fieldtype-5 ufo-customform-row ufo-row-3320\' style=\'margin-top:2px;{display-3320}\'><div class=\'ufo-cell-3320-2-row\' id=\'ufo-cell-3320-2\'><span class=\'ufo-cell-left\' id=\'ufo-cell-3320-2-left\'><label for=\'ufo-field-id-3320\' style=\'text-align:left\'>Email<span class=\'ufo-customfields-required-suffix\'>*</span></label></span><span class=\'ufo-cell-center\' id=\'ufo-cell-3320-2-center\'><script type=\'text/javascript\'>ufoFormsConfig.validations.push({\"events\":{\"blur\":[\"required\",\"email\"]},\"Required\":true,\"Validate\":true,\"RequiredMessage\":\"Please enter you email\",\"AbsolutePosition\":true,\"RequiredMessagePosition\":\"right\",\"id\":\"ufo-field-id-3320\",\"form\":\"ufo-form-id-1\"});</script><input type=\'text\' id=\'ufo-field-id-3320\' value=\'{id-3320}\' name=\'id-3320\' /></span><span class=\'ufo-cell-right\' id=\'ufo-cell-3320-2-right\'><div id=\'ufo-field-id-3320-invalid\' style=\'display:none\'></div></span></div></div><div class=\'ufo-fieldtype-10 ufo-customform-row ufo-row-3321\' style=\'margin-top:2px;{display-3321}\'><div class=\'ufo-cell-3321-1-row\' id=\'ufo-cell-3321-1\'><span class=\'ufo-cell-center\' style=\'width:360px\' id=\'ufo-cell-3321-1-center\'><label for=\'ufo-field-id-3321\' style=\'text-align:left\'>Your request<span class=\'ufo-customfields-required-suffix\'>*</span></label></span><span class=\'ufo-cell-right\' id=\'ufo-cell-3321-1-right\'><p style=\'display:none\'></p></span></div><div class=\'ufo-cell-3321-2-row\' id=\'ufo-cell-3321-2\'><span class=\'ufo-cell-center\' style=\'width:360px\' id=\'ufo-cell-3321-2-center\'><script type=\'text/javascript\'>ufoFormsConfig.validations.push({\"events\":{\"blur\":[\"required\"]},\"Required\":true,\"RequiredMessage\":\"This field is required\",\"AbsolutePosition\":true,\"RequiredMessagePosition\":\"right\",\"id\":\"ufo-field-id-3321\",\"form\":\"ufo-form-id-1\"});</script><textarea id=\'ufo-field-id-3321\' name=\'id-3321\' style=\'height:100px;width:360px\'>{id-3321}</textarea></span><span class=\'ufo-cell-right\' id=\'ufo-cell-3321-2-right\'><div id=\'ufo-field-id-3321-invalid\' style=\'display:none\'></div></span></div></div><div class=\'ufo-fieldtype-6 ufo-customform-row ufo-row-3322\' style=\'margin-top:2px;{display-3322}\'><div class=\'ufo-cell-3322-2-row\' id=\'ufo-cell-3322-2\'><span class=\'ufo-cell-center\' id=\'ufo-cell-3322-2-center\'><script type=\'text/javascript\'>var c = {};c.id = \'ufo-field-id-3322\';c.form = \'ufo-form-id-1\';c.Label = \'Submit\';ufoFormsConfig.submits.push(c);</script><span id=\'ufo-field-id-3322-span\'><noscript><button type=\'submit\' id=\'ufo-field-id-3322\' name=\'id-3322\' >Submit</button></noscript></span></span></div></div></div><div id=\'ufo-form-id-1-message\'></div><noscript></form></noscript></div>', null, '1', null, null, null, 'px', '2', 'px', null, null, 'easyform', null, '2', null, null, null, '0', null, null, null, null, '0', '0', null, null, '1');
INSERT INTO `wp_easycontactforms_customforms` VALUES ('2', 'Simple contact form vertical', 'New request received', 'Champion Forms', '0', 'We have received your request', '', '0', '', '[easy_contact_forms fid=2]', '0', '286', 'Thank you for contacting us! We are glad to hear from you.', '', '<script type=\'text/javascript\'>if (typeof(ecfconfig) == \'undefined\'){var ecfconfig={};}ecfconfig[2]={};var ufobaseurl = \'http://localhost/proyectos/medic/web/wp-admin/admin-ajax.php\';if (typeof(ufoFormsConfig) == \'undefined\') {var ufoFormsConfig = {};ufoFormsConfig.submits = [];ufoFormsConfig.resets = [];ufoFormsConfig.validations = [];}ufoFormsConfig.phonenumberre = /^(\\+{0,1}\\d{1,2})*\\s*(\\(?\\d{3}\\)?\\s*)*\\d{3}(-{0,1}|\\s{0,1})\\d{2}(-{0,1}|\\s{0,1})\\d{2}$/;</script><link href=\'http://localhost/proyectos/medic/web/wp-content/plugins/easy-contact-forms/forms/styles/easyform/css/std.css?ver=1.4.9\' rel=\'stylesheet\' type=\'text/css\'/><div class=\'ufo-form\' id=\'ufo-form-id-2\'><noscript><form method=\'post\'><input type=\'hidden\' name=\'cf-no-script\' value=\'1\'/></noscript><input type=\'hidden\' value=\'ufo-form-id-2\' name=\'hidden-2\' id=\'ufo-form-hidden-2\'/><input type=\'hidden\' value=\'{__pagename}\' name=\'ufo-form-pagename\' id=\'ufo-form-pagename\'/>{preview}<input type=\'hidden\' value=\'{ufosignature}\' name=\'ufo-sign\' id=\'ufo-sign\'/><div><div class=\'ufo-fieldtype-4 ufo-customform-row ufo-row-3324 fila\' style=\'margin-top:2px;{display-3324}\'><div class=\'ufo-cell-3324-1-row\' id=\'ufo-cell-3324-1\'><span class=\'ufo-cell-center\' id=\'ufo-cell-3324-1-center\'><label for=\'ufo-field-id-3324\' style=\'text-align:left\'>Nombres<span class=\'ufo-customfields-required-suffix\'>*</span></label></span></div><div class=\'ufo-cell-3324-2-row\' id=\'ufo-cell-3324-2\'><span class=\'ufo-cell-center\' id=\'ufo-cell-3324-2-center\'><script type=\'text/javascript\'>ufoFormsConfig.validations.push({\"events\":{\"blur\":[\"required\"]},\"Required\":true,\"RequiredMessagePosition\":\"right\",\"id\":\"ufo-field-id-3324\",\"form\":\"ufo-form-id-2\"});</script><input type=\'text\' id=\'ufo-field-id-3324\' value=\'{id-3324}\' name=\'id-3324\' class=\'ufo-cell-left\'/></span></div></div><div class=\'ufo-fieldtype-5 ufo-customform-row ufo-row-3325 fila\' style=\'margin-top:2px;{display-3325}\'><div class=\'ufo-cell-3325-1-row\' id=\'ufo-cell-3325-1\'><span class=\'ufo-cell-center\' id=\'ufo-cell-3325-1-center\'><label for=\'ufo-field-id-3325\' style=\'text-align:left\'>Email<span class=\'ufo-customfields-required-suffix\'>*</span></label></span></div><div class=\'ufo-cell-3325-2-row\' id=\'ufo-cell-3325-2\'><span class=\'ufo-cell-center\' id=\'ufo-cell-3325-2-center\'><script type=\'text/javascript\'>ufoFormsConfig.validations.push({\"events\":{\"blur\":[\"required\",\"email\"]},\"Required\":true,\"Validate\":true,\"RequiredMessagePosition\":\"right\",\"id\":\"ufo-field-id-3325\",\"form\":\"ufo-form-id-2\"});</script><input type=\'text\' id=\'ufo-field-id-3325\' value=\'{id-3325}\' name=\'id-3325\' class=\'ufo-cell-left\'/></span></div></div><div class=\'ufo-fieldtype-16 ufo-customform-row ufo-row-3333 fila\' style=\'margin-top:2px;{display-3333}\'><div class=\'ufo-cell-3333-2-row\' id=\'ufo-cell-3333-2\'><span class=\'ufo-cell-left\' id=\'ufo-cell-3333-2-left\'><label for=\'ufo-field-id-3333\' style=\'text-align:left\'>Teléfono<span class=\'ufo-customfields-required-suffix\'>*</span></label></span><span class=\'ufo-cell-center\' id=\'ufo-cell-3333-2-center\'><script type=\'text/javascript\'>ufoFormsConfig.validations.push({\"events\":{\"blur\":[\"required\",\"phonenumber\"]},\"Required\":true,\"Validate\":true,\"showValid\":true,\"ValidMessageAbsolutePosition\":true,\"ValidMessagePosition\":\"right\",\"AbsolutePosition\":true,\"RequiredMessagePosition\":\"right\",\"id\":\"ufo-field-id-3333\",\"form\":\"ufo-form-id-2\"});</script><input type=\'text\' id=\'ufo-field-id-3333\' value=\'{id-3333}\' name=\'id-3333\' class=\'ufo-cell-left\'/></span><span class=\'ufo-cell-right\' id=\'ufo-cell-3333-2-right\'><div id=\'ufo-field-id-3333-valid\' style=\'display:none\'></div></span></div></div><div class=\'ufo-fieldtype-10 ufo-customform-row ufo-row-3326 fila\' style=\'margin-top:2px;{display-3326}\'><div class=\'ufo-cell-3326-1-row\' id=\'ufo-cell-3326-1\'><span class=\'ufo-cell-center\' style=\'width:300px\' id=\'ufo-cell-3326-1-center\'><label for=\'ufo-field-id-3326\' style=\'text-align:left\'>Mensaje<span class=\'ufo-customfields-required-suffix\'>*</span></label></span></div><div class=\'ufo-cell-3326-2-row\' id=\'ufo-cell-3326-2\'><span class=\'ufo-cell-center\' style=\'width:300px\' id=\'ufo-cell-3326-2-center\'><script type=\'text/javascript\'>ufoFormsConfig.validations.push({\"events\":{\"blur\":[\"required\",\"minmax\"]},\"Required\":true,\"Validate\":true,\"RequiredMessagePosition\":\"right\",\"min\":\"50\",\"max\":\"500\",\"id\":\"ufo-field-id-3326\",\"form\":\"ufo-form-id-2\"});</script><textarea id=\'ufo-field-id-3326\' name=\'id-3326\' class=\'ufo-cell-left\' style=\'height:100px;width:300px\'>{id-3326}</textarea></span></div></div><div class=\'ufo-fieldtype-6 ufo-customform-row ufo-row-3327\' style=\'margin-top:2px;{display-3327}\'><div class=\'ufo-cell-3327-2-row\' id=\'ufo-cell-3327-2\'><span class=\'ufo-cell-center\' id=\'ufo-cell-3327-2-center\'><script type=\'text/javascript\'>var c = {};c.id = \'ufo-field-id-3327\';c.form = \'ufo-form-id-2\';c.Label = \'Enviar\';c.CSSClass = \'enviar\';ufoFormsConfig.submits.push(c);</script><span id=\'ufo-field-id-3327-span\'><noscript><button type=\'submit\' id=\'ufo-field-id-3327\' name=\'id-3327\' class=\'enviar\'>Enviar</button></noscript></span></span></div></div></div><div id=\'ufo-form-id-2-message\'></div><noscript></form></noscript></div>', '', '1', '', '', '0', 'px', '2', 'px', '', '', 'easyform', '', '0', '0', '29', '', '0', '', '', '', '', '0', '0', '0', '0', '1');
INSERT INTO `wp_easycontactforms_customforms` VALUES ('3', 'Simple contact form vertical', 'New request received', 'Champion Forms', '0', 'We have received your request', '', '0', '', '[easy_contact_forms fid=3]', '0', '286', 'Thank you for contacting us! We are glad to hear from you.', '', '<script type=\'text/javascript\'>if (typeof(ecfconfig) == \'undefined\'){var ecfconfig={};}ecfconfig[3]={};var ufobaseurl = \'http://localhost/proyectos/medic/web/wp-admin/admin-ajax.php\';if (typeof(ufoFormsConfig) == \'undefined\') {var ufoFormsConfig = {};ufoFormsConfig.submits = [];ufoFormsConfig.resets = [];ufoFormsConfig.validations = [];}ufoFormsConfig.phonenumberre = /^(\\+{0,1}\\d{1,2})*\\s*(\\(?\\d{3}\\)?\\s*)*\\d{3}(-{0,1}|\\s{0,1})\\d{2}(-{0,1}|\\s{0,1})\\d{2}$/;</script><link href=\'http://localhost/proyectos/medic/web/wp-content/plugins/easy-contact-forms/forms/styles/easyform/css/std.css?ver=1.4.9\' rel=\'stylesheet\' type=\'text/css\'/><div class=\'ufo-form\' id=\'ufo-form-id-3\'><noscript><form method=\'post\'><input type=\'hidden\' name=\'cf-no-script\' value=\'1\'/></noscript><input type=\'hidden\' value=\'ufo-form-id-3\' name=\'hidden-3\' id=\'ufo-form-hidden-3\'/><input type=\'hidden\' value=\'{__pagename}\' name=\'ufo-form-pagename\' id=\'ufo-form-pagename\'/>{preview}<input type=\'hidden\' value=\'{ufosignature}\' name=\'ufo-sign\' id=\'ufo-sign\'/><div><h3 >Please fill in the fields below</h3><div class=\'ufo-customfields-container-description\'>We are glad to hear from you</div><div class=\'ufo-fieldtype-4 ufo-customform-row ufo-row-3329\' style=\'margin-top:2px;{display-3329}\'><div class=\'ufo-cell-3329-1-row\' id=\'ufo-cell-3329-1\'><span class=\'ufo-cell-center\' style=\'width:300px\' id=\'ufo-cell-3329-1-center\'><label for=\'ufo-field-id-3329\' style=\'text-align:left\'>Your name<span class=\'ufo-customfields-required-suffix\'>*</span></label><div id=\'ufo-field-id-3329-invalid\' style=\'display:none\'></div></span></div><div class=\'ufo-cell-3329-2-row\' id=\'ufo-cell-3329-2\'><span class=\'ufo-cell-center\' style=\'width:300px\' id=\'ufo-cell-3329-2-center\'><script type=\'text/javascript\'>ufoFormsConfig.validations.push({\"events\":{\"blur\":[\"required\"]},\"Required\":true,\"RequiredMessage\":\"This field is required\",\"RequiredMessagePosition\":\"top\",\"id\":\"ufo-field-id-3329\",\"form\":\"ufo-form-id-3\"});</script><input type=\'text\' id=\'ufo-field-id-3329\' value=\'{id-3329}\' name=\'id-3329\' style=\'width:300px\'/></span></div></div><div class=\'ufo-fieldtype-5 ufo-customform-row ufo-row-3330\' style=\'margin-top:2px;{display-3330}\'><div class=\'ufo-cell-3330-1-row\' id=\'ufo-cell-3330-1\'><span class=\'ufo-cell-center\' style=\'width:300px\' id=\'ufo-cell-3330-1-center\'><label for=\'ufo-field-id-3330\' style=\'text-align:left\'>Your Email<span class=\'ufo-customfields-required-suffix\'>*</span></label><div id=\'ufo-field-id-3330-invalid\' style=\'display:none\'></div></span></div><div class=\'ufo-cell-3330-2-row\' id=\'ufo-cell-3330-2\'><span class=\'ufo-cell-center\' style=\'width:300px\' id=\'ufo-cell-3330-2-center\'><script type=\'text/javascript\'>ufoFormsConfig.validations.push({\"events\":{\"blur\":[\"required\",\"email\"]},\"Required\":true,\"Validate\":true,\"RequiredMessage\":\"Please enter you email\",\"RequiredMessagePosition\":\"top\",\"id\":\"ufo-field-id-3330\",\"form\":\"ufo-form-id-3\"});</script><input type=\'text\' id=\'ufo-field-id-3330\' value=\'{id-3330}\' name=\'id-3330\' style=\'width:300px\'/></span></div></div><div class=\'ufo-fieldtype-10 ufo-customform-row ufo-row-3331\' style=\'margin-top:2px;{display-3331}\'><div class=\'ufo-cell-3331-1-row\' id=\'ufo-cell-3331-1\'><span class=\'ufo-cell-center\' style=\'width:300px\' id=\'ufo-cell-3331-1-center\'><label for=\'ufo-field-id-3331\' style=\'text-align:left\'>Your request</label></span></div><div class=\'ufo-cell-3331-2-row\' id=\'ufo-cell-3331-2\'><span class=\'ufo-cell-center\' style=\'width:300px\' id=\'ufo-cell-3331-2-center\'><textarea id=\'ufo-field-id-3331\' name=\'id-3331\' style=\'height:100px;width:300px\'>{id-3331}</textarea></span></div></div><div class=\'ufo-fieldtype-6 ufo-customform-row ufo-row-3332\' style=\'margin-top:2px;{display-3332}\'><div class=\'ufo-cell-3332-2-row\' id=\'ufo-cell-3332-2\'><span class=\'ufo-cell-center\' id=\'ufo-cell-3332-2-center\'><script type=\'text/javascript\'>var c = {};c.id = \'ufo-field-id-3332\';c.form = \'ufo-form-id-3\';c.Label = \'Submit\';ufoFormsConfig.submits.push(c);</script><span id=\'ufo-field-id-3332-span\'><noscript><button type=\'submit\' id=\'ufo-field-id-3332\' name=\'id-3332\' >Submit</button></noscript></span></span></div></div></div><div id=\'ufo-form-id-3-message\'></div><noscript></form></noscript></div>', '', '1', '', '', '0', 'px', '2', 'px', '', '', 'easyform', '', '0', '0', '0', '', '0', '', '', '', '', '0', '0', '0', '0', '1');
-- ----------------------------
-- Table structure for wp_easycontactforms_customformsentries
-- ----------------------------
DROP TABLE IF EXISTS `wp_easycontactforms_customformsentries`;
CREATE TABLE `wp_easycontactforms_customformsentries` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`Date` int(11) DEFAULT NULL,
`Content` mediumtext,
`Header` text,
`Data` text,
`CustomForms` int(11) NOT NULL DEFAULT '0',
`Users` int(11) NOT NULL DEFAULT '0',
`Description` varchar(200) NOT NULL DEFAULT '',
`SiteUser` int(11) NOT NULL DEFAULT '0',
`PageName` varchar(300) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `Description` (`Description`),
KEY `CustomForms` (`CustomForms`),
KEY `Users` (`Users`),
KEY `SiteUser` (`SiteUser`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of wp_easycontactforms_customformsentries
-- ----------------------------
-- ----------------------------
-- Table structure for wp_easycontactforms_customforms_mailinglists
-- ----------------------------
DROP TABLE IF EXISTS `wp_easycontactforms_customforms_mailinglists`;
CREATE TABLE `wp_easycontactforms_customforms_mailinglists` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`CustomForms` int(11) NOT NULL DEFAULT '0',
`Contacts` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `CustomForms` (`CustomForms`),
KEY `Contacts` (`Contacts`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of wp_easycontactforms_customforms_mailinglists
-- ----------------------------
-- ----------------------------
-- Table structure for wp_easycontactforms_files
-- ----------------------------
DROP TABLE IF EXISTS `wp_easycontactforms_files`;
CREATE TABLE `wp_easycontactforms_files` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`Doctype` varchar(80) DEFAULT NULL,
`Docfield` varchar(80) DEFAULT NULL,
`Docid` int(10) DEFAULT NULL,
`Name` varchar(300) DEFAULT NULL,
`Type` varchar(80) DEFAULT NULL,
`Size` int(10) DEFAULT NULL,
`Protected` tinyint(1) DEFAULT NULL,
`Webdir` tinyint(1) DEFAULT NULL,
`Count` int(11) DEFAULT NULL,
`Storagename` varchar(300) DEFAULT NULL,
`ObjectOwner` int(11) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `Docid` (`Docid`),
KEY `typefieldid` (`Doctype`,`Docfield`,`Docid`),
KEY `ObjectOwner` (`ObjectOwner`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of wp_easycontactforms_files
-- ----------------------------
-- ----------------------------
-- Table structure for wp_easycontactforms_options
-- ----------------------------
DROP TABLE IF EXISTS `wp_easycontactforms_options`;
CREATE TABLE `wp_easycontactforms_options` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`Description` varchar(200) NOT NULL DEFAULT '',
`OptionGroup` varchar(20) DEFAULT NULL,
`Value` text,
PRIMARY KEY (`id`),
KEY `OptionGroup` (`OptionGroup`),
KEY `Description` (`Description`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of wp_easycontactforms_options
-- ----------------------------
INSERT INTO `wp_easycontactforms_options` VALUES ('1', '2012-01-25', 'dateformats', 'Y-m-d^%Y-%m-%d^\\d{4}-\\d{2}-\\d{2}$^2012-01-25');
INSERT INTO `wp_easycontactforms_options` VALUES ('2', 'Y-m-d hh:mm', 'datetimeformats', 'Y-m-d H:i^%Y-%m-%d %H:%M^\\d{4}-\\d{1,2}-\\d{1,2}\\s\\d{1,2}:\\d{1,2}^Y-m-d hh:mm');
INSERT INTO `wp_easycontactforms_options` VALUES ('3', '01/25/2012', 'dateformats', 'm/d/Y^%m/%d/%Y^\\d{2}\\/\\d{2}\\/\\d{4}$^01/25/2012');
INSERT INTO `wp_easycontactforms_options` VALUES ('4', 'd.m.Y hh:mm', 'datetimeformats', 'd.m.Y H:i^%d.%m.%Y %H:%M^\\d{1,2}\\.\\d{1,2}\\.\\d{4}\\s\\d{1,2}:\\d{1,2}^d.m.Y hh:mm');
INSERT INTO `wp_easycontactforms_options` VALUES ('5', '25/01/2012', 'dateformats', 'd/m/Y^%d/%m/%Y^\\d{2}\\/\\d{2}\\/\\d{4}$^25/01/2012');
INSERT INTO `wp_easycontactforms_options` VALUES ('6', '25.01.2012', 'dateformats', 'd.m.Y^%d.%m.%Y^\\d{2}\\.\\d{2}\\.\\d{4}$^25.01.2012');
INSERT INTO `wp_easycontactforms_options` VALUES ('7', '25-01-2012', 'dateformats', 'd-m-Y^%d-%m-%Y^\\d{2}-\\d{2}-\\d{4}$^25-01-2012');
-- ----------------------------
-- Table structure for wp_easycontactforms_roles
-- ----------------------------
DROP TABLE IF EXISTS `wp_easycontactforms_roles`;
CREATE TABLE `wp_easycontactforms_roles` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`Description` varchar(100) NOT NULL DEFAULT '',
`Admin` tinyint(1) DEFAULT NULL,
`Employee` tinyint(1) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of wp_easycontactforms_roles
-- ----------------------------
INSERT INTO `wp_easycontactforms_roles` VALUES ('1', 'SuperAdmin', '0', '0');
INSERT INTO `wp_easycontactforms_roles` VALUES ('2', 'Owner', '0', '0');
INSERT INTO `wp_easycontactforms_roles` VALUES ('4', 'Guest', '0', '0');
-- ----------------------------
-- Table structure for wp_easycontactforms_sessions
-- ----------------------------
DROP TABLE IF EXISTS `wp_easycontactforms_sessions`;
CREATE TABLE `wp_easycontactforms_sessions` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`opentime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`value` text,
`sid` char(32) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of wp_easycontactforms_sessions
-- ----------------------------
-- ----------------------------
-- Table structure for wp_easycontactforms_users
-- ----------------------------
DROP TABLE IF EXISTS `wp_easycontactforms_users`;
CREATE TABLE `wp_easycontactforms_users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`Description` varchar(200) NOT NULL DEFAULT '',
`Name` varchar(100) DEFAULT NULL,
`ContactType` int(11) NOT NULL DEFAULT '0',
`Birthday` int(11) DEFAULT NULL,
`Role` int(11) NOT NULL DEFAULT '0',
`CMSId` int(11) DEFAULT NULL,
`Notes` text,
`email` varchar(100) DEFAULT NULL,
`email2` varchar(100) DEFAULT NULL,
`Cell` varchar(30) DEFAULT NULL,
`Phone1` varchar(30) DEFAULT NULL,
`Phone2` varchar(30) DEFAULT NULL,
`Phone3` varchar(30) DEFAULT NULL,
`SkypeId` varchar(100) DEFAULT NULL,
`Website` varchar(200) DEFAULT NULL,
`ContactField3` text,
`ContactField4` text,
`Country` varchar(300) DEFAULT NULL,
`Address` text,
`City` varchar(300) DEFAULT NULL,
`State` varchar(300) DEFAULT NULL,
`Zip` varchar(20) DEFAULT NULL,
`Comment` text,
`History` text,
`Options` text,
PRIMARY KEY (`id`),
KEY `ContactType` (`ContactType`),
KEY `CMSId` (`CMSId`),
KEY `Description` (`Description`),
KEY `Role` (`Role`),
KEY `descriptionname` (`Description`,`Name`)
) ENGINE=InnoDB AUTO_INCREMENT=291 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of wp_easycontactforms_users
-- ----------------------------
INSERT INTO `wp_easycontactforms_users` VALUES ('285', 'Employee', 'Employee', '4', '300492000', '3', null, 'Ut auctor ultrices elementum. Donec quis velit quam, ac mattis turpis. Praesent venenatis auctor sagittis.<br /><br />Morbi pulvinar malesuada risus in tempor. Fusce eu sapien a sem aliquet pulvinar. Nullam elementum facilisis quam, sed sollicitudin tortor gravida et.', 'employee@championforms.example.com', 'employee2@championforms.example.com', '+65 446-8025', '+51 939-3961', '+17 383-6744', '+56 624-1157', null, null, 'Morbi pulvinar malesuada risus in tempor. Fusce eu sapien a sem aliquet pulvinar. Nullam elementum facilisis quam, sed sollicitudin tortor gravida et.', 'Etiam neque nunc, fermentum sit amet fermentum ut, ultrices vitae neque. Maecenas nibh enim, dictum a semper et, sagittis viverra purus.', 'USA', '239 Filbert Street', 'Ridley Park', 'PA', '19078', null, null, null);
INSERT INTO `wp_easycontactforms_users` VALUES ('286', 'SuperAdmin', 'SuperAdmin', '4', '299800800', '1', '1', 'Maecenas eget lectus ut odio mattis fringilla. Nunc sem leo, interdum id euismod sit amet, varius vel lorem.<br /><br />Ut auctor ultrices elementum. Donec quis velit quam, ac mattis turpis. Praesent venenatis auctor sagittis.', 'ing.renee.sis@gmail.com', null, '+67 709-8655', '+64 555-1383', '+99 040-6159', '+86 839-8655', null, null, 'Morbi quis magna urna, id viverra ipsum. Fusce nibh orci, interdum id pharetra ut, ultricies vel metus.', 'Nulla tincidunt justo nec diam molestie feugiat. Aenean et est non sapien ultrices posuere id a odio.', 'USA', '28 Victoria Court', 'Sanford', 'ME', '04073', null, null, null);
INSERT INTO `wp_easycontactforms_users` VALUES ('287', 'Pierce', 'Courtney', '4', '173570400', '4', null, 'Morbi quis magna urna, id viverra ipsum. Fusce nibh orci, interdum id pharetra ut, ultricies vel metus.<br /><br />Aliquam eu nisi vel lorem ultricies laoreet. Nulla eget mi ac leo porttitor luctus a nec purus. Phasellus in erat at nulla feugiat aliquam.', 'courtney@championforms.example.com', 'courtney2@championforms.example.com', '+13 566-5699', '+29 240-9540', '+79 799-9207', '+67 288-1822', null, null, 'Maecenas lacinia arcu nec nisl elementum nec cursus massa consequat.', 'Praesent vel quam nunc. Aliquam cursus blandit semper.', 'USA', '188 Seth Street', 'Fredonia', 'TX', '76842', null, null, null);
INSERT INTO `wp_easycontactforms_users` VALUES ('288', 'Hawkins', 'Josefina', '4', '237420000', '4', null, 'Maecenas egestas consectetur nisl quis convallis. Maecenas nisi sapien, molestie ac rutrum et, vehicula sed orci.<br /><br />Etiam neque nunc, fermentum sit amet fermentum ut, ultrices vitae neque. Maecenas nibh enim, dictum a semper et, sagittis viverra purus.', 'josefina@championforms.example.com', 'josefina2@championforms.example.com', '+41 946-6091', '+68 539-2340', '+58 360-0962', '+09 670-2242', null, null, 'Nullam a neque dolor. Pellentesque elementum, magna quis interdum volutpat, libero ipsum scelerisque turpis, porta pretium dolor lectus ac risus.', 'Morbi quis magna urna, id viverra ipsum. Fusce nibh orci, interdum id pharetra ut, ultricies vel metus.', 'USA', '20 Franklin Street', 'Montgomery', 'AL', '36107', null, null, null);
INSERT INTO `wp_easycontactforms_users` VALUES ('289', 'Maldonado', 'Nicole', '1', '364168800', '4', null, 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. In sagittis tincidunt tortor, non bibendum risus lobortis ac.<br /><br />Praesent ut facilisis odio. Maecenas congue neque ut nisi placerat vitae suscipit mauris fermentum.', 'nicole@championforms.example.com', 'nicole2@championforms.example.com', '+40 612-5881', '+34 120-0730', '+85 284-3971', '+45 100-8004', null, null, 'Ut auctor ultrices elementum. Donec quis velit quam, ac mattis turpis. Praesent venenatis auctor sagittis.', 'Maecenas lacinia arcu nec nisl elementum nec cursus massa consequat.', 'USA', '53 Graystone Lakes', 'Unadilla', 'GA', '31091', null, null, null);
INSERT INTO `wp_easycontactforms_users` VALUES ('290', 'Vega', 'Dan', '1', '112399200', '4', null, 'Maecenas eget lectus ut odio mattis fringilla. Nunc sem leo, interdum id euismod sit amet, varius vel lorem.<br /><br />Phasellus in metus in magna vestibulum ultricies. In nec metus mauris, vitae semper justo.', 'dan@championforms.example.com', 'dan2@championforms.example.com', '+55 667-1370', '+41 365-4503', '+92 160-0475', '+04 365-5904', null, null, 'Nulla tincidunt justo nec diam molestie feugiat. Aenean et est non sapien ultrices posuere id a odio.', 'Nunc molestie hendrerit arcu, non dapibus nulla suscipit ac. Nam eget nulla sit amet ante mollis pharetra.', 'USA', '149 Seneca Drive', 'Silverton', 'OR', '97381', null, null, null);
-- ----------------------------
-- Table structure for wp_links
-- ----------------------------
DROP TABLE IF EXISTS `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;
-- ----------------------------
-- Records of wp_links
-- ----------------------------
-- ----------------------------
-- Table structure for wp_options
-- ----------------------------
DROP TABLE IF EXISTS `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 AUTO_INCREMENT=282 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of wp_options
-- ----------------------------
INSERT INTO `wp_options` VALUES ('1', 'siteurl', 'http://localhost/proyectos/medic/web', 'yes');
INSERT INTO `wp_options` VALUES ('2', 'blogname', 'Inbiomedic', 'yes');
INSERT INTO `wp_options` VALUES ('3', 'blogdescription', 'Otro sitio realizado con WordPress', 'yes');
INSERT INTO `wp_options` VALUES ('4', 'users_can_register', '0', 'yes');
INSERT INTO `wp_options` VALUES ('5', 'admin_email', 'ing.renee.sis@gmail.com', 'yes');
INSERT INTO `wp_options` VALUES ('6', 'start_of_week', '1', 'yes');
INSERT INTO `wp_options` VALUES ('7', 'use_balanceTags', '0', 'yes');
INSERT INTO `wp_options` VALUES ('8', 'use_smilies', '1', 'yes');
INSERT INTO `wp_options` VALUES ('9', 'require_name_email', '1', 'yes');
INSERT INTO `wp_options` VALUES ('10', 'comments_notify', '1', 'yes');
INSERT INTO `wp_options` VALUES ('11', 'posts_per_rss', '10', 'yes');
INSERT INTO `wp_options` VALUES ('12', 'rss_use_excerpt', '0', 'yes');
INSERT INTO `wp_options` VALUES ('13', 'mailserver_url', 'mail.example.com', 'yes');
INSERT INTO `wp_options` VALUES ('14', 'mailserver_login', 'login@example.com', 'yes');
INSERT INTO `wp_options` VALUES ('15', 'mailserver_pass', 'password', 'yes');
INSERT INTO `wp_options` VALUES ('16', 'mailserver_port', '110', 'yes');
INSERT INTO `wp_options` VALUES ('17', 'default_category', '1', 'yes');
INSERT INTO `wp_options` VALUES ('18', 'default_comment_status', 'open', 'yes');
INSERT INTO `wp_options` VALUES ('19', 'default_ping_status', 'open', 'yes');
INSERT INTO `wp_options` VALUES ('20', 'default_pingback_flag', '1', 'yes');
INSERT INTO `wp_options` VALUES ('21', 'posts_per_page', '10', 'yes');
INSERT INTO `wp_options` VALUES ('22', 'date_format', 'j F, Y', 'yes');
INSERT INTO `wp_options` VALUES ('23', 'time_format', 'g:i a', 'yes');
INSERT INTO `wp_options` VALUES ('24', 'links_updated_date_format', 'j F, Y g:i a', 'yes');
INSERT INTO `wp_options` VALUES ('25', 'links_recently_updated_prepend', '<em>', 'yes');
INSERT INTO `wp_options` VALUES ('26', 'links_recently_updated_append', '</em>', 'yes');
INSERT INTO `wp_options` VALUES ('27', 'links_recently_updated_time', '120', 'yes');
INSERT INTO `wp_options` VALUES ('28', 'comment_moderation', '0', 'yes');
INSERT INTO `wp_options` VALUES ('29', 'moderation_notify', '1', 'yes');
INSERT INTO `wp_options` VALUES ('30', 'permalink_structure', '/%postname%/', 'yes');
INSERT INTO `wp_options` VALUES ('31', 'gzipcompression', '0', 'yes');
INSERT INTO `wp_options` VALUES ('32', 'hack_file', '0', 'yes');
INSERT INTO `wp_options` VALUES ('33', 'blog_charset', 'UTF-8', 'yes');
INSERT INTO `wp_options` VALUES ('34', 'moderation_keys', '', 'no');
INSERT INTO `wp_options` VALUES ('35', 'active_plugins', 'a:8:{i:0;s:29:\"acf-repeater/acf-repeater.php\";i:1;s:31:\"advanced-access-manager/aam.php\";i:2;s:67:\"advanced-custom-field-repeater-collapser/acf_repeater_collapser.php\";i:3;s:30:\"advanced-custom-fields/acf.php\";i:4;s:41:\"easy-contact-forms/easy-contact-forms.php\";i:5;s:29:\"image-widget/image-widget.php\";i:6;s:29:\"settings-api/settings-api.php\";i:7;s:24:\"wordpress-seo/wp-seo.php\";}', 'yes');
INSERT INTO `wp_options` VALUES ('36', 'home', 'http://localhost/proyectos/medic/web', 'yes');
INSERT INTO `wp_options` VALUES ('37', 'category_base', '', 'yes');
INSERT INTO `wp_options` VALUES ('38', 'ping_sites', 'http://rpc.pingomatic.com/', 'yes');
INSERT INTO `wp_options` VALUES ('39', 'advanced_edit', '0', 'yes');
INSERT INTO `wp_options` VALUES ('40', 'comment_max_links', '2', 'yes');
INSERT INTO `wp_options` VALUES ('41', 'gmt_offset', '0', 'yes');
INSERT INTO `wp_options` VALUES ('42', 'default_email_category', '1', 'yes');
INSERT INTO `wp_options` VALUES ('43', 'recently_edited', '', 'no');
INSERT INTO `wp_options` VALUES ('44', 'template', 'twentyfourteen', 'yes');
INSERT INTO `wp_options` VALUES ('45', 'stylesheet', 'twentyfourteen', 'yes');
INSERT INTO `wp_options` VALUES ('46', 'comment_whitelist', '1', 'yes');
INSERT INTO `wp_options` VALUES ('47', 'blacklist_keys', '', 'no');
INSERT INTO `wp_options` VALUES ('48', 'comment_registration', '0', 'yes');
INSERT INTO `wp_options` VALUES ('49', 'html_type', 'text/html', 'yes');
INSERT INTO `wp_options` VALUES ('50', 'use_trackback', '0', 'yes');
INSERT INTO `wp_options` VALUES ('51', 'default_role', 'subscriber', 'yes');
INSERT INTO `wp_options` VALUES ('52', 'db_version', '26691', 'yes');
INSERT INTO `wp_options` VALUES ('53', 'uploads_use_yearmonth_folders', '1', 'yes');
INSERT INTO `wp_options` VALUES ('54', 'upload_path', '', 'yes');
INSERT INTO `wp_options` VALUES ('55', 'blog_public', '1', 'yes');
INSERT INTO `wp_options` VALUES ('56', 'default_link_category', '2', 'yes');
INSERT INTO `wp_options` VALUES ('57', 'show_on_front', 'posts', 'yes');
INSERT INTO `wp_options` VALUES ('58', 'tag_base', '', 'yes');
INSERT INTO `wp_options` VALUES ('59', 'show_avatars', '1', 'yes');
INSERT INTO `wp_options` VALUES ('60', 'avatar_rating', 'G', 'yes');
INSERT INTO `wp_options` VALUES ('61', 'upload_url_path', '', 'yes');
INSERT INTO `wp_options` VALUES ('62', 'thumbnail_size_w', '150', 'yes');
INSERT INTO `wp_options` VALUES ('63', 'thumbnail_size_h', '150', 'yes');
INSERT INTO `wp_options` VALUES ('64', 'thumbnail_crop', '1', 'yes');
INSERT INTO `wp_options` VALUES ('65', 'medium_size_w', '300', 'yes');
INSERT INTO `wp_options` VALUES ('66', 'medium_size_h', '300', 'yes');
INSERT INTO `wp_options` VALUES ('67', 'avatar_default', 'mystery', 'yes');
INSERT INTO `wp_options` VALUES ('68', 'large_size_w', '1024', 'yes');
INSERT INTO `wp_options` VALUES ('69', 'large_size_h', '1024', 'yes');
INSERT INTO `wp_options` VALUES ('70', 'image_default_link_type', 'file', 'yes');
INSERT INTO `wp_options` VALUES ('71', 'image_default_size', '', 'yes');
INSERT INTO `wp_options` VALUES ('72', 'image_default_align', '', 'yes');
INSERT INTO `wp_options` VALUES ('73', 'close_comments_for_old_posts', '0', 'yes');
INSERT INTO `wp_options` VALUES ('74', 'close_comments_days_old', '14', 'yes');
INSERT INTO `wp_options` VALUES ('75', 'thread_comments', '1', 'yes');
INSERT INTO `wp_options` VALUES ('76', 'thread_comments_depth', '5', 'yes');
INSERT INTO `wp_options` VALUES ('77', 'page_comments', '0', 'yes');
INSERT INTO `wp_options` VALUES ('78', 'comments_per_page', '50', 'yes');
INSERT INTO `wp_options` VALUES ('79', 'default_comments_page', 'newest', 'yes');
INSERT INTO `wp_options` VALUES ('80', 'comment_order', 'asc', 'yes');
INSERT INTO `wp_options` VALUES ('81', 'sticky_posts', 'a:0:{}', 'yes');
INSERT INTO `wp_options` VALUES ('82', 'widget_categories', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes');
INSERT INTO `wp_options` VALUES ('83', 'widget_text', 'a:3:{i:2;a:3:{s:5:\"title\";s:9:\"Objetivos\";s:4:\"text\";s:409:\"La misión de INBIOMEDIC es identificar los problemas de salud pública y plantear mejoras basados en el análisis de la situación propia de cada región, evaluando las enfermedades prevalentes de la zona, condiciones de salubridad, situación y diagnostico poblacional, equipos médicos y de laboratorio, personal de salud, logística, y teniendo como parámetros los resultados de investigaciones previas.\";s:6:\"filter\";b:0;}i:3;a:3:{s:5:\"title\";s:9:\"Objetivos\";s:4:\"text\";s:409:\"La misión de INBIOMEDIC es identificar los problemas de salud pública y plantear mejoras basados en el análisis de la situación propia de cada región, evaluando las enfermedades prevalentes de la zona, condiciones de salubridad, situación y diagnostico poblacional, equipos médicos y de laboratorio, personal de salud, logística, y teniendo como parámetros los resultados de investigaciones previas.\";s:6:\"filter\";b:0;}s:12:\"_multiwidget\";i:1;}', 'yes');
INSERT INTO `wp_options` VALUES ('84', 'widget_rss', 'a:0:{}', 'yes');
INSERT INTO `wp_options` VALUES ('85', 'uninstall_plugins', 'a:2:{s:41:\"easy-contact-forms/easy-contact-forms.php\";a:2:{i:0;s:16:\"EasyContactForms\";i:1;s:9:\"uninstall\";}s:31:\"advanced-access-manager/aam.php\";a:2:{i:0;s:3:\"aam\";i:1;s:9:\"uninstall\";}}', 'no');
INSERT INTO `wp_options` VALUES ('86', 'timezone_string', '', 'yes');
INSERT INTO `wp_options` VALUES ('87', 'page_for_posts', '0', 'yes');
INSERT INTO `wp_options` VALUES ('88', 'page_on_front', '0', 'yes');
INSERT INTO `wp_options` VALUES ('89', 'default_post_format', '0', 'yes');
INSERT INTO `wp_options` VALUES ('90', 'link_manager_enabled', '0', 'yes');
INSERT INTO `wp_options` VALUES ('91', 'initial_db_version', '26691', 'yes');
INSERT INTO `wp_options` VALUES ('92', 'wp_user_roles', 'a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:62:{s:13:\"switch_themes\";i:1;s:11:\"edit_themes\";i:1;s:16:\"activate_plugins\";i:1;s:12:\"edit_plugins\";i:1;s:10:\"edit_users\";i:1;s:10:\"edit_files\";i:1;s:14:\"manage_options\";i:1;s:17:\"moderate_comments\";i:1;s:17:\"manage_categories\";i:1;s:12:\"manage_links\";i:1;s:12:\"upload_files\";i:1;s:6:\"import\";i:1;s:15:\"unfiltered_html\";i:1;s:10:\"edit_posts\";i:1;s:17:\"edit_others_posts\";i:1;s:20:\"edit_published_posts\";i:1;s:13:\"publish_posts\";i:1;s:10:\"edit_pages\";i:1;s:4:\"read\";i:1;s:8:\"level_10\";i:1;s:7:\"level_9\";i:1;s:7:\"level_8\";i:1;s:7:\"level_7\";i:1;s:7:\"level_6\";i:1;s:7:\"level_5\";i:1;s:7:\"level_4\";i:1;s:7:\"level_3\";i:1;s:7:\"level_2\";i:1;s:7:\"level_1\";i:1;s:7:\"level_0\";i:1;s:17:\"edit_others_pages\";i:1;s:20:\"edit_published_pages\";i:1;s:13:\"publish_pages\";i:1;s:12:\"delete_pages\";i:1;s:19:\"delete_others_pages\";i:1;s:22:\"delete_published_pages\";i:1;s:12:\"delete_posts\";i:1;s:19:\"delete_others_posts\";i:1;s:22:\"delete_published_posts\";i:1;s:20:\"delete_private_posts\";i:1;s:18:\"edit_private_posts\";i:1;s:18:\"read_private_posts\";i:1;s:20:\"delete_private_pages\";i:1;s:18:\"edit_private_pages\";i:1;s:18:\"read_private_pages\";i:1;s:12:\"delete_users\";i:1;s:12:\"create_users\";i:1;s:17:\"unfiltered_upload\";i:1;s:14:\"edit_dashboard\";i:1;s:14:\"update_plugins\";i:1;s:14:\"delete_plugins\";i:1;s:15:\"install_plugins\";i:1;s:13:\"update_themes\";i:1;s:14:\"install_themes\";i:1;s:11:\"update_core\";i:1;s:10:\"list_users\";i:1;s:12:\"remove_users\";i:1;s:9:\"add_users\";i:1;s:13:\"promote_users\";i:1;s:18:\"edit_theme_options\";i:1;s:13:\"delete_themes\";i:1;s:6:\"export\";i:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";i:1;s:17:\"manage_categories\";i:1;s:12:\"manage_links\";i:1;s:12:\"upload_files\";i:1;s:15:\"unfiltered_html\";i:1;s:10:\"edit_posts\";i:1;s:17:\"edit_others_posts\";i:1;s:20:\"edit_published_posts\";i:1;s:13:\"publish_posts\";i:1;s:10:\"edit_pages\";i:1;s:4:\"read\";i:1;s:7:\"level_7\";i:1;s:7:\"level_6\";i:1;s:7:\"level_5\";i:1;s:7:\"level_4\";i:1;s:7:\"level_3\";i:1;s:7:\"level_2\";i:1;s:7:\"level_1\";i:1;s:7:\"level_0\";i:1;s:17:\"edit_others_pages\";i:1;s:20:\"edit_published_pages\";i:1;s:13:\"publish_pages\";i:1;s:12:\"delete_pages\";i:1;s:19:\"delete_others_pages\";i:1;s:22:\"delete_published_pages\";i:1;s:12:\"delete_posts\";i:1;s:19:\"delete_others_posts\";i:1;s:22:\"delete_published_posts\";i:1;s:20:\"delete_private_posts\";i:1;s:18:\"edit_private_posts\";i:1;s:18:\"read_private_posts\";i:1;s:20:\"delete_private_pages\";i:1;s:18:\"edit_private_pages\";i:1;s:18:\"read_private_pages\";i: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');
INSERT INTO `wp_options` VALUES ('93', 'widget_search', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes');
INSERT INTO `wp_options` VALUES ('94', 'widget_recent-posts', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes');
INSERT INTO `wp_options` VALUES ('95', 'widget_recent-comments', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes');
INSERT INTO `wp_options` VALUES ('96', 'widget_archives', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes');
INSERT INTO `wp_options` VALUES ('97', 'widget_meta', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes');
INSERT INTO `wp_options` VALUES ('98', 'sidebars_widgets', 'a:8:{s:8:\"sidebar2\";a:1:{i:0;s:6:\"text-2\";}s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:1:{i:0;s:17:\"widget_sp_image-2\";}s:16:\"sidebar-forpages\";a:3:{i:0;s:6:\"text-3\";i:1;s:17:\"widget_sp_image-3\";i:2;s:17:\"widget_sp_image-4\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:12:\"sidebar-home\";a:5:{i:0;s:17:\"widget_sp_image-5\";i:1;s:17:\"widget_sp_image-6\";i:2;s:17:\"widget_sp_image-7\";i:3;s:17:\"widget_sp_image-8\";i:4;s:17:\"widget_sp_image-9\";}s:13:\"array_version\";i:3;}', 'yes');
INSERT INTO `wp_options` VALUES ('99', 'cron', 'a:6:{i:1393570800;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:1393602234;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:1393645466;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:1393645470;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1393647100;a:1:{s:14:\"yoast_tracking\";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');
INSERT INTO `wp_options` VALUES ('101', '_site_transient_update_core', 'O:8:\"stdClass\":4:{s:7:\"updates\";a:2:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:49:\"http://es.wordpress.org/wordpress-3.8.1-es_ES.zip\";s:6:\"locale\";s:5:\"es_ES\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:49:\"http://es.wordpress.org/wordpress-3.8.1-es_ES.zip\";s:10:\"no_content\";b:0;s:11:\"new_bundled\";b:0;s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"3.8.1\";s:7:\"version\";s:5:\"3.8.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:\"\";}i:1;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:41:\"https://wordpress.org/wordpress-3.8.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:41:\"https://wordpress.org/wordpress-3.8.1.zip\";s:10:\"no_content\";s:52:\"https://wordpress.org/wordpress-3.8.1-no-content.zip\";s:11:\"new_bundled\";s:53:\"https://wordpress.org/wordpress-3.8.1-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"3.8.1\";s:7:\"version\";s:5:\"3.8.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:1393560685;s:15:\"version_checked\";s:5:\"3.8.1\";s:12:\"translations\";a:0:{}}', 'yes');
INSERT INTO `wp_options` VALUES ('105', '_site_transient_update_themes', 'O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1393560688;s:7:\"checked\";a:1:{s:14:\"twentyfourteen\";s:0:\"\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}', 'yes');
INSERT INTO `wp_options` VALUES ('106', '_site_transient_timeout_browser_9c41ffd909c43f2498bea4574e73737b', '1393472643', 'yes');
INSERT INTO `wp_options` VALUES ('107', '_site_transient_browser_9c41ffd909c43f2498bea4574e73737b', 'a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"32.0.1700.107\";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');
INSERT INTO `wp_options` VALUES ('108', 'can_compress_scripts', '1', 'yes');
INSERT INTO `wp_options` VALUES ('131', 'theme_mods_twentyfourteen', 'a:1:{s:18:\"nav_menu_locations\";a:2:{s:7:\"primary\";i:2;s:9:\"secondary\";i:0;}}', 'yes');
INSERT INTO `wp_options` VALUES ('132', 'nav_menu_options', 'a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}', 'yes');
INSERT INTO `wp_options` VALUES ('137', 'recently_activated', 'a:2:{s:14:\"types/wpcf.php\";i:1393393718;s:55:\"wck-custom-fields-and-custom-post-types-creator/wck.php\";i:1393393714;}', 'yes');
INSERT INTO `wp_options` VALUES ('138', 'dynwid_version', '1.5.6', 'yes');
INSERT INTO `wp_options` VALUES ('139', 'dynwid_housekeeping_lastrun', '1392871316', 'yes');
INSERT INTO `wp_options` VALUES ('140', 'category_children', 'a:0:{}', 'yes');
INSERT INTO `wp_options` VALUES ('146', '_image_widget_version', '4.0.6', 'yes');
INSERT INTO `wp_options` VALUES ('147', 'widget_widget_sp_image', 'a:9:{i:2;a:12:{s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:5:\"width\";i:208;s:6:\"height\";i:334;s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:3:\"alt\";s:0:\"\";s:8:\"imageurl\";s:76:\"http://localhost/proyectos/medic/web/wp-content/uploads/2014/02/banner-c.jpg\";s:12:\"aspect_ratio\";d:0.622754491017964095789238854194991290569305419921875;s:13:\"attachment_id\";i:25;}i:3;a:12:{s:5:\"title\";s:25:\"Apoyo a la Investigación\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:5:\"width\";i:219;s:6:\"height\";i:145;s:4:\"size\";s:4:\"full\";s:5:\"align\";s:4:\"none\";s:3:\"alt\";s:0:\"\";s:8:\"imageurl\";s:77:\"http://localhost/proyectos/medic/web/wp-content/uploads/2014/02/ban-apoyo.jpg\";s:12:\"aspect_ratio\";d:1.5103448275862068062025400649872608482837677001953125;s:13:\"attachment_id\";i:40;}i:4;a:12:{s:5:\"title\";s:12:\"Equipamiento\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:5:\"width\";i:167;s:6:\"height\";i:113;s:4:\"size\";s:4:\"full\";s:5:\"align\";s:6:\"center\";s:3:\"alt\";s:0:\"\";s:8:\"imageurl\";s:81:\"http://localhost/proyectos/medic/web/wp-content/uploads/2014/02/equipamiento2.jpg\";s:12:\"aspect_ratio\";d:1.4778761061946903421215893104090355336666107177734375;s:13:\"attachment_id\";i:41;}i:5;a:12:{s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:5:\"width\";i:173;s:6:\"height\";i:216;s:4:\"size\";s:4:\"full\";s:5:\"align\";s:4:\"left\";s:3:\"alt\";s:0:\"\";s:8:\"imageurl\";s:70:\"http://localhost/proyectos/medic/web/wp-content/uploads/2014/02/im.jpg\";s:12:\"aspect_ratio\";d:0.80092592592592593003786305416724644601345062255859375;s:13:\"attachment_id\";i:56;}i:6;a:12:{s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:5:\"width\";i:173;s:6:\"height\";i:216;s:4:\"size\";s:4:\"full\";s:5:\"align\";s:4:\"left\";s:3:\"alt\";s:0:\"\";s:8:\"imageurl\";s:71:\"http://localhost/proyectos/medic/web/wp-content/uploads/2014/02/im2.jpg\";s:12:\"aspect_ratio\";d:0.80092592592592593003786305416724644601345062255859375;s:13:\"attachment_id\";i:57;}i:7;a:12:{s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:5:\"width\";i:173;s:6:\"height\";i:216;s:4:\"size\";s:4:\"full\";s:5:\"align\";s:4:\"left\";s:3:\"alt\";s:0:\"\";s:8:\"imageurl\";s:71:\"http://localhost/proyectos/medic/web/wp-content/uploads/2014/02/im3.jpg\";s:12:\"aspect_ratio\";d:0.80092592592592593003786305416724644601345062255859375;s:13:\"attachment_id\";i:58;}i:8;a:12:{s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:5:\"width\";i:173;s:6:\"height\";i:216;s:4:\"size\";s:4:\"full\";s:5:\"align\";s:4:\"left\";s:3:\"alt\";s:0:\"\";s:8:\"imageurl\";s:71:\"http://localhost/proyectos/medic/web/wp-content/uploads/2014/02/im4.jpg\";s:12:\"aspect_ratio\";d:0.80092592592592593003786305416724644601345062255859375;s:13:\"attachment_id\";i:59;}i:9;a:12:{s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"link\";s:0:\"\";s:10:\"linktarget\";s:5:\"_self\";s:5:\"width\";i:173;s:6:\"height\";i:216;s:4:\"size\";s:4:\"full\";s:5:\"align\";s:4:\"left\";s:3:\"alt\";s:0:\"\";s:8:\"imageurl\";s:72:\"http://localhost/proyectos/medic/web/wp-content/uploads/2014/02/im05.jpg\";s:12:\"aspect_ratio\";d:0.80092592592592593003786305416724644601345062255859375;s:13:\"attachment_id\";i:60;}s:12:\"_multiwidget\";i:1;}', 'yes');
INSERT INTO `wp_options` VALUES ('154', '_site_transient_timeout_browser_edb7b9457277a9d83328575668eec9e5', '1393996111', 'yes');
INSERT INTO `wp_options` VALUES ('155', '_site_transient_browser_edb7b9457277a9d83328575668eec9e5', 'a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"33.0.1750.117\";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');
INSERT INTO `wp_options` VALUES ('168', '_transient_timeout_plugin_slugs', '1393651275', 'no');
INSERT INTO `wp_options` VALUES ('169', '_transient_plugin_slugs', 'a:14:{i:0;s:31:\"advanced-access-manager/aam.php\";i:1;s:30:\"advanced-custom-fields/acf.php\";i:2;s:45:\"acf-flexible-content/acf-flexible-content.php\";i:3;s:27:\"acf-gallery/acf-gallery.php\";i:4;s:37:\"acf-options-page/acf-options-page.php\";i:5;s:29:\"acf-repeater/acf-repeater.php\";i:6;s:67:\"advanced-custom-field-repeater-collapser/acf_repeater_collapser.php\";i:7;s:19:\"akismet/akismet.php\";i:8;s:41:\"easy-contact-forms/easy-contact-forms.php\";i:9;s:9:\"hello.php\";i:10;s:29:\"image-widget/image-widget.php\";i:11;s:55:\"wck-custom-fields-and-custom-post-types-creator/wck.php\";i:12;s:24:\"wordpress-seo/wp-seo.php\";i:13;s:29:\"settings-api/settings-api.php\";}', 'no');
INSERT INTO `wp_options` VALUES ('186', 'acf_version', '4.3.4', 'yes');
INSERT INTO `wp_options` VALUES ('222', '_site_transient_timeout_theme_roots', '1393561074', 'yes');
INSERT INTO `wp_options` VALUES ('223', '_site_transient_theme_roots', 'a:1:{s:14:\"twentyfourteen\";s:7:\"/themes\";}', 'yes');
INSERT INTO `wp_options` VALUES ('225', '_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1393602621', 'no');
INSERT INTO `wp_options` VALUES ('226', '_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, 23 Jan 2014 20:54:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"http://wordpress.org/?v=3.9-alpha-27234\";s:7:\"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: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.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/01/wordpress-3-8-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/01/wordpress-3-8-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, 23 Jan 2014 20:37:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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=3063\";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:358:\"After six weeks and more than 9.3 million downloads of WordPress 3.8, we’re pleased to announce WordPress 3.8.1 is now available. Version 3.8.1 is a maintenance releases that addresses 31 bugs in 3.8, including various fixes and improvements for the new dashboard design and new themes admin screen. An issue with taxonomy queries in WP_Query […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:3809:\"<p>After six weeks and more than <a href=\"http://wordpress.org/download/counter/\">9.3 million downloads</a> of WordPress 3.8, we’re pleased to announce WordPress 3.8.1 is now available.</p>\n<p>Version 3.8.1 is a maintenance releases that addresses 31 bugs in 3.8, including various fixes and improvements for the new dashboard design and new themes admin screen. An issue with taxonomy queries in WP_Query was resolved. And if you’ve been frustrated by submit buttons that won’t do anything when you click on them (or thought you were going crazy, like some of us), we’ve found and fixed this “dead zone” on submit buttons.</p>\n<p>It also contains a fix for <strong>embedding tweets</strong> (by placing the URL to the tweet on its own line), which was broken due to a recent Twitter API change. (For more on Embeds, see <a href=\"http://codex.wordpress.org/Embeds\">the Codex</a>.)</p>\n<p>For a full list of changes, consult the <a href=\"http://core.trac.wordpress.org/query?milestone=3.8.1\">list of tickets</a> and <a href=\"https://core.trac.wordpress.org/log/branches/3.8?rev=27018&stop_rev=26862\">the changelog</a>. There’s also a <a href=\"http://make.wordpress.org/core/2014/01/22/wordpress-3-8-1-release-candidate/\">detailed summary</a> for developers on the development blog.</p>\n<p>If you are one of the millions already running WordPress 3.8, we will start rolling out automatic background updates for WordPress 3.8.1 in the next few hours. 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.8.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.8.1:</p>\n<p><a href=\"http://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"http://profiles.wordpress.org/collinsinternet\">Allan Collins</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/aubreypwd\">Aubrey Portwood</a>, <a href=\"http://profiles.wordpress.org/empireoflight\">Ben Dunkle</a>, <a href=\"http://profiles.wordpress.org/cojennin\">Connor Jennings</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/fboender\">fboender</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/joedolson\">Joe Dolson</a>, <a href=\"http://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"#\">José Pino</a>, <a href=\"http://profiles.wordpress.org/kovshenin\">Konstantin Kovshenin</a>, <a href=\"http://profiles.wordpress.org/matveb\">Matias Ventura</a>, <a href=\"http://profiles.wordpress.org/mattheu\">Matthew Haines-Young</a>, <a href=\"http://profiles.wordpress.org/iammattthomas\">Matt Thomas</a>, <a href=\"http://profiles.wordpress.org/melchoyce\">Mel Choyce</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/nivijah\">nivijah</a>, <a href=\"http://profiles.wordpress.org/wonderboymusic\">Scott Taylor</a>, <a href=\"http://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"http://profiles.wordpress.org/undergroundnetwork\">undergroundnetwork</a>, and <a href=\"http://profiles.wordpress.org/yurivictor\">Yuri Victor</a>.</p>\n<p><em>WordPress three eight one<br />\nWe heard you didn’t like bugs<br />\nSo we took them out</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/01/wordpress-3-8-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:26:\"WordPress 3.8 “Parker”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://wordpress.org/news/2013/12/parker/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"http://wordpress.org/news/2013/12/parker/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 12 Dec 2013 17:00:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a: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=2765\";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:354:\"Version 3.8 of WordPress, named “Parker” in honor of Charlie Parker, bebop innovator, is available for download or update in your WordPress dashboard. We hope you’ll think this is the most beautiful update yet. Introducing a modern new design WordPress has gotten a facelift. 3.8 brings a fresh new look to the entire admin dashboard. […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:18740:\"<p>Version 3.8 of WordPress, named “Parker” in honor of <a href=\"http://en.wikipedia.org/wiki/Charlie_Parker\">Charlie Parker</a>, bebop innovator, is available <a href=\"http://wordpress.org/download/\">for download</a> or update in your WordPress dashboard. We hope you’ll think this is the most beautiful update yet.</p>\n<div id=\"v-6wORgoGb-1\" class=\"video-player\"><embed id=\"v-6wORgoGb-1-video\" src=\"http://s0.videopress.com/player.swf?v=1.03&guid=6wORgoGb&isDynamicSeeking=true\" type=\"application/x-shockwave-flash\" width=\"692\" height=\"388\" wmode=\"direct\" seamlesstabbing=\"true\" allowfullscreen=\"true\" allowscriptaccess=\"always\" overstretch=\"true\"></embed></div>\n<h2 class=\"aligncenter\">Introducing a modern new design</h2>\n<p><img class=\"wp-image-2951 aligncenter\" alt=\"overview\" src=\"http://i0.wp.com/wpdotorg.files.wordpress.com/2013/12/overview.jpg?resize=623%2C193\" data-recalc-dims=\"1\" /></p>\n<p>WordPress has gotten a facelift. 3.8 brings a fresh new look to the entire admin dashboard. Gone are overbearing gradients and dozens of shades of grey — bring on a bigger, bolder, more colorful design!</p>\n<p><img class=\"aligncenter wp-image-2856\" style=\"margin-left: 0;margin-right: 0\" alt=\"about-modern-wordpress\" src=\"http://i2.wp.com/wpdotorg.files.wordpress.com/2013/12/design.png?resize=623%2C151\" data-recalc-dims=\"1\" /></p>\n<h3>Modern aesthetic</h3>\n<p>The new WordPress dashboard has a fresh, uncluttered design that embraces clarity and simplicity.</p>\n<h3>Clean typography</h3>\n<p>The Open Sans typeface provides simple, friendly text that is optimized for both desktop and mobile viewing. It’s even open source, just like WordPress.</p>\n<h3>Refined contrast</h3>\n<p>We think beautiful design should never sacrifice legibility. With superior contrast and large, comfortable type, the new design is easy to read and a pleasure to navigate.</p>\n<hr />\n<h2 class=\"aligncenter\">WordPress on every device</h2>\n<p><img class=\"alignright wp-image-2984\" alt=\"responsive\" src=\"http://i2.wp.com/wpdotorg.files.wordpress.com/2013/12/responsive.jpg?resize=255%2C255\" data-recalc-dims=\"1\" />We all access the internet in different ways. Smartphone, tablet, notebook, desktop — no matter what you use, WordPress will adapt and you’ll feel right at home.</p>\n<h3>High definition at high speed</h3>\n<p>WordPress is sharper than ever with new vector-based icons that scale to your screen. By ditching pixels, pages load significantly faster, too.</p>\n<hr />\n<h2 class=\"aligncenter\">Admin color schemes to match your personality</h2>\n<p><img class=\"aligncenter wp-image-2954\" alt=\"colors\" src=\"http://i0.wp.com/wpdotorg.files.wordpress.com/2013/12/colors.jpg?resize=623%2C339\" data-recalc-dims=\"1\" /></p>\n<p>WordPress just got a colorful new update. We’ve included eight new admin color schemes so you can pick the one that suits you best.</p>\n<p>Color schemes can be previewed and changed from your Profile page.</p>\n<hr />\n<h2 class=\"aligncenter\">Refined theme management</h2>\n<p><img class=\"alignright wp-image-2967\" alt=\"themes\" src=\"http://i0.wp.com/wpdotorg.files.wordpress.com/2013/12/themes.jpg?resize=360%2C344\" data-recalc-dims=\"1\" />The new themes screen lets you survey your themes at a glance. Or want more information? Click to discover more. Then sit back and use your keyboard’s navigation arrows to flip through every theme you’ve got.</p>\n<h3>Smoother widget experience</h3>\n<p>Drag-drag-drag. Scroll-scroll-scroll. Widget management can be complicated. With the new design, we’ve worked to streamline the widgets screen.</p>\n<p>Have a large monitor? Multiple widget areas stack side-by-side to use the available space. Using a tablet? Just tap a widget to add it.</p>\n<hr />\n<h2 class=\"aligncenter\">Twenty Fourteen, a sleek new magazine theme</h2>\n<p><img class=\"aligncenter size-large wp-image-2789\" alt=\"The new Twenty Fourteen theme displayed on a laptop. tablet and phone\" src=\"http://i0.wp.com/wpdotorg.files.wordpress.com/2013/12/twentyfourteen.jpg?resize=692%2C275\" data-recalc-dims=\"1\" /></p>\n<h3>Turn your blog into a magazine</h3>\n<p>Create a beautiful magazine-style site with WordPress and Twenty Fourteen. Choose a grid or a slider to display featured content on your homepage. Customize your site with three widget areas or change your layout with two page templates.</p>\n<p>With a striking design that does not compromise our trademark simplicity, Twenty Fourteen is our most intrepid default theme yet.</p>\n<hr />\n<h2>Beginning of a new era</h2>\n<p>This release was led by Matt Mullenweg. This is our second release using the new plugin-first development process, with a much shorter timeframe than in the past. We think it’s been going great. You can check out the features currently in production on the <a title=\"Make WordPress Core\" href=\"http://make.wordpress.org/core/\" target=\"_blank\">make/core blog</a>.</p>\n<p>There are 188 contributors with props in this release:</p>\n<p><a href=\"http://profiles.wordpress.org/aaronholbrook\">Aaron Holbrook</a>, <a href=\"http://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"http://profiles.wordpress.org/adamsilverstein\">adamsilverstein</a>, <a href=\"http://profiles.wordpress.org/admiralthrawn\">admiralthrawn</a>, <a href=\"http://profiles.wordpress.org/ahoereth\">Alexander Hoereth</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/nacin\">Andrew Nacin</a>, <a href=\"http://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"http://profiles.wordpress.org/aralbald\">Andrey Kabakchiev</a>, <a href=\"http://profiles.wordpress.org/apeatling\">Andy Peatling</a>, <a href=\"http://profiles.wordpress.org/ankitgadertcampcom\">Ankit Gade</a>, <a href=\"http://profiles.wordpress.org/atimmer\">Anton Timmermans</a>, <a href=\"http://profiles.wordpress.org/fliespl\">Arkadiusz Rzadkowolski</a>, <a href=\"http://profiles.wordpress.org/aubreypwd\">Aubrey Portwood</a>, <a href=\"http://profiles.wordpress.org/bassgang\">bassgang</a>, <a href=\"http://profiles.wordpress.org/empireoflight\">Ben Dunkle</a>, <a href=\"http://profiles.wordpress.org/bananastalktome\">Billy (bananastalktome)</a>, <a href=\"http://profiles.wordpress.org/binarymoon\">binarymoon</a>, <a href=\"http://profiles.wordpress.org/bradyvercher\">Brady Vercher</a>, <a href=\"http://profiles.wordpress.org/kraftbj\">Brandon Kraft</a>, <a href=\"http://profiles.wordpress.org/rzen\">Brian Richards</a>, <a href=\"http://profiles.wordpress.org/bpetty\">Bryan Petty</a>, <a href=\"http://profiles.wordpress.org/calin\">Calin Don</a>, <a href=\"http://profiles.wordpress.org/carldanley\">Carl Danley</a>, <a href=\"http://profiles.wordpress.org/sixhours\">Caroline Moore</a>, <a href=\"http://profiles.wordpress.org/caspie\">Caspie</a>, <a href=\"http://profiles.wordpress.org/chrisbliss18\">Chris Jean</a>, <a href=\"http://profiles.wordpress.org/iblamefish\">Clinton Montague</a>, <a href=\"http://profiles.wordpress.org/cojennin\">cojennin</a>, <a href=\"http://profiles.wordpress.org/corphi\">Corphi</a>, <a href=\"http://profiles.wordpress.org/dbernar1\">Dan Bernardic</a>, <a href=\"http://profiles.wordpress.org/danieldudzic\">Daniel Dudzic</a>, <a href=\"http://profiles.wordpress.org/koop\">Daryl Koopersmith</a>, <a href=\"http://profiles.wordpress.org/datafeedrcom\">datafeedr</a>, <a href=\"http://profiles.wordpress.org/lessbloat\">Dave Martin</a>, <a href=\"http://profiles.wordpress.org/drw158\">Dave Whitley</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/dziudek\">dziudek</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/ethitter\">Erick Hitter</a>, <a href=\"http://profiles.wordpress.org/evansolomon\">Evan Solomon</a>, <a href=\"http://profiles.wordpress.org/faison\">Faison</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/garyj\">Gary Jones</a>, <a href=\"http://profiles.wordpress.org/pento\">Gary Pendergast</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/gnarf37\">gnarf37</a>, <a href=\"http://profiles.wordpress.org/tivnet\">Gregory Karpinsky</a>, <a href=\"http://profiles.wordpress.org/hanni\">hanni</a>, <a href=\"http://profiles.wordpress.org/helen\">Helen Hou-Sandi</a>, <a href=\"http://profiles.wordpress.org/iandunn\">Ian Dunn</a>, <a href=\"http://profiles.wordpress.org/ipstenu\">Ipstenu (Mika Epstein)</a>, <a href=\"http://profiles.wordpress.org/isaackeyet\">Isaac Keyet</a>, <a href=\"http://profiles.wordpress.org/jdgrimes\">J.D. Grimes</a>, <a href=\"http://profiles.wordpress.org/jacklenox\">Jack Lenox</a>, <a href=\"http://profiles.wordpress.org/janhenckens\">janhenckens</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/jblz\">Jeff Bowen</a>, <a href=\"http://profiles.wordpress.org/jeffr0\">Jeff Chandler</a>, <a href=\"http://profiles.wordpress.org/jenmylo\">Jen Mylo</a>, <a href=\"http://profiles.wordpress.org/buffler\">Jeremy Buller</a>, <a href=\"http://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"http://profiles.wordpress.org/jeherve\">Jeremy Herve</a>, <a href=\"http://profiles.wordpress.org/jpry\">Jeremy Pry</a>, <a href=\"http://profiles.wordpress.org/jayjdk\">Jesper Johansen (jayjdk)</a>, <a href=\"http://profiles.wordpress.org/jhned\">jhned</a>, <a href=\"http://profiles.wordpress.org/jim912\">jim912</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/joen\">Joen Asmussen</a>, <a href=\"http://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"http://profiles.wordpress.org/johnafish\">John Fish</a>, <a href=\"http://profiles.wordpress.org/johnjamesjacoby\">John James Jacoby</a>, <a href=\"http://profiles.wordpress.org/duck_\">Jon Cave</a>, <a href=\"http://profiles.wordpress.org/joostdevalk\">Joost de Valk</a>, <a href=\"http://profiles.wordpress.org/joshuaabenazer\">Joshua Abenazer</a>, <a href=\"http://profiles.wordpress.org/nukaga\">Junko Nukaga</a>, <a href=\"http://profiles.wordpress.org/devesine\">Justin de Vesine</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/codebykat\">Kat Hagan</a>, <a href=\"http://profiles.wordpress.org/littlethingsstudio\">Kate Whitley</a>, <a href=\"http://profiles.wordpress.org/ryelle\">Kelly Dwan</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/koki4a\">Konstantin Dankov</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/lite3\">lite3</a>, <a href=\"http://profiles.wordpress.org/lucp\">Luc Princen</a>, <a href=\"http://profiles.wordpress.org/latz\">Lutz Schroer</a>, <a href=\"http://profiles.wordpress.org/mako09\">Mako</a>, <a href=\"http://profiles.wordpress.org/markjaquith\">Mark Jaquith</a>, <a href=\"http://profiles.wordpress.org/markmcwilliams\">Mark McWilliams</a>, <a href=\"http://profiles.wordpress.org/markoheijnen\">Marko Heijnen</a>, <a href=\"http://profiles.wordpress.org/matt\">Matt Mullenweg</a>, <a href=\"http://profiles.wordpress.org/iammattthomas\">Matt Thomas</a>, <a href=\"http://profiles.wordpress.org/mattwiebe\">Matt Wiebe</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/matveb\">Matías Ventura</a>, <a href=\"http://profiles.wordpress.org/megane9988\">megane9988</a>, <a href=\"http://profiles.wordpress.org/melchoyce\">Mel Choyce</a>, <a href=\"http://profiles.wordpress.org/micahwave\">micahwave</a>, <a href=\"http://profiles.wordpress.org/cainm\">Michael Cain</a>, <a href=\"http://profiles.wordpress.org/mitchoyoshitaka\">Michael Erlewine</a>, <a href=\"http://profiles.wordpress.org/michelwppi\">Michel - xiligroup dev</a>, <a href=\"http://profiles.wordpress.org/chellycat\">Michelle Langston</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/mikelittle\">Mike Little</a>, <a href=\"http://profiles.wordpress.org/dh-shredder\">Mike Schroder</a>, <a href=\"http://profiles.wordpress.org/dimadin\">Milan Dinic</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/mt8biz\">moto hachi</a>, <a href=\"http://profiles.wordpress.org/Nao\">Naoko Takano</a>, <a href=\"http://profiles.wordpress.org/neil_pie\">Neil Pie</a>, <a href=\"http://profiles.wordpress.org/nickdaugherty\">Nick Daugherty</a>, <a href=\"http://profiles.wordpress.org/celloexpressions\">Nick Halsey</a>, <a href=\"http://profiles.wordpress.org/nbachiyski\">Nikolay Bachiyski</a>, <a href=\"http://profiles.wordpress.org/ninio\">ninio</a>, <a href=\"http://profiles.wordpress.org/ninnypants\">ninnypants</a>, <a href=\"http://profiles.wordpress.org/nivijah\">nivijah</a>, <a href=\"http://profiles.wordpress.org/nofearinc\">nofearinc</a>, <a href=\"http://profiles.wordpress.org/nvwd\">Nowell VanHoesen</a>, <a href=\"http://profiles.wordpress.org/odysseygate\">odyssey</a>, <a href=\"http://profiles.wordpress.org/originalexe\">OriginalEXE</a>, <a href=\"http://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, <a href=\"http://profiles.wordpress.org/pauldewouters\">Paul de Wouters</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/senlin\">Piet</a>, <a href=\"http://profiles.wordpress.org/ptahdunbar\">Ptah Dunbar</a>, <a href=\"http://profiles.wordpress.org/raamdev\">Raam Dev</a>, <a href=\"http://profiles.wordpress.org/bamadesigner\">Rachel Carden</a>, <a href=\"http://profiles.wordpress.org/rachelbaker\">rachelbaker</a>, <a href=\"http://profiles.wordpress.org/radices\">Radices</a>, <a href=\"http://profiles.wordpress.org/mauryaratan\">Ram Ratan Maurya</a>, <a href=\"http://profiles.wordpress.org/defries\">Remkus de Vries</a>, <a href=\"http://profiles.wordpress.org/ounziw\">Rescuework Support</a>, <a href=\"http://profiles.wordpress.org/rickalee\">Ricky Lee Whittemore</a>, <a href=\"http://profiles.wordpress.org/rdall\">Robert Dall</a>, <a href=\"http://profiles.wordpress.org/wet\">Robert Wetzlmayr, PHP-Programmierer</a>, <a href=\"http://profiles.wordpress.org/rodrigosprimo\">Rodrigo Primo</a>, <a href=\"http://profiles.wordpress.org/ryan\">Ryan Boren</a>, <a href=\"http://profiles.wordpress.org/otto42\">Samuel Wood</a>, <a href=\"http://profiles.wordpress.org/sanchothefat\">sanchothefat</a>, <a href=\"http://profiles.wordpress.org/sboisvert\">sboisvert</a>, <a href=\"http://profiles.wordpress.org/scottbasgaard\">Scott Basgaard</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/scribu\">scribu</a>, <a href=\"http://profiles.wordpress.org/seanchayes\">Sean Hayes</a>, <a href=\"http://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"http://profiles.wordpress.org/shaunandrews\">Shaun Andrews</a>, <a href=\"http://profiles.wordpress.org/designsimply\">Sheri Bigelow (designsimply)</a>, <a href=\"http://profiles.wordpress.org/shinichin\">ShinichiN</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/sirbrillig\">sirbrillig</a>, <a href=\"http://profiles.wordpress.org/solarissmoke\">solarissmoke</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/stevenkword\">Steven Word</a>, <a href=\"http://profiles.wordpress.org/iamtakashi\">Takashi Irie</a>, <a href=\"http://profiles.wordpress.org/miyauchi\">Takayuki Miyauchi</a>, <a href=\"http://profiles.wordpress.org/tmtoy\">Takuma Morikawa</a>, <a href=\"http://profiles.wordpress.org/thomasguillot\">Thomas Guillot</a>, <a href=\"http://profiles.wordpress.org/tierra\">tierra</a>, <a href=\"http://profiles.wordpress.org/tillkruess\">Till Krüss</a>, <a href=\"http://profiles.wordpress.org/tlamedia\">TLA Media</a>, <a href=\"http://profiles.wordpress.org/tobiasbg\">TobiasBg</a>, <a href=\"http://profiles.wordpress.org/tommcfarlin\">tommcfarlin</a>, <a href=\"http://profiles.wordpress.org/zodiac1978\">Torsten Landsiedel</a>, <a href=\"http://profiles.wordpress.org/taupecat\">Tracy Rotton</a>, <a href=\"http://profiles.wordpress.org/trishasalas\">trishasalas</a>, <a href=\"http://profiles.wordpress.org/mbmufffin\">Tyler Smith</a>, <a href=\"http://profiles.wordpress.org/grapplerulrich\">Ulrich</a>, <a href=\"http://profiles.wordpress.org/undergroundnetwork\">undergroundnetwork</a>, <a href=\"http://profiles.wordpress.org/l10n\">Vladimir</a>, <a href=\"http://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"http://profiles.wordpress.org/yoavf\">Yoav Farhi</a>, <a href=\"http://profiles.wordpress.org/yonasy\">yonasy</a>, <a href=\"http://profiles.wordpress.org/yurivictor\">Yuri Victor</a>, and <a href=\"http://profiles.wordpress.org/tollmanz\">Zack Tollman</a>. Also thanks to <a href=\"http://benmorrison.org/\">Ben Morrison</a> and <a href=\"http://christineswebb.com/\">Christine Webb</a> for help with the video.</p>\n<p>Thanks for choosing WordPress. See you soon for version 3.9!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"http://wordpress.org/news/2013/12/parker/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: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:7:\"3.8 RC2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"http://wordpress.org/news/2013/12/3-8-rc2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"http://wordpress.org/news/2013/12/3-8-rc2/#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, 10 Dec 2013 01:08:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a: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=2805\";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:343:\"Release candidate 2 of WordPress 3.8 is now available for download. This is the last pre-release, and we expect it to be effectively identical to what’s officially released to the public on Thursday. This means if you are a plugin or theme developer, start your engines! (If they’re not going already.) Lots of admin code […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:1180:\"<p>Release candidate 2 of WordPress 3.8 is <a href=\"http://wordpress.org/wordpress-3.8-RC2.zip\">now available for download</a>. This is the last pre-release, and we expect it to be effectively identical to what’s officially released to the public on Thursday.</p>\n<p>This means if you are a plugin or theme developer, start your engines! (If they’re not going already.) Lots of admin code has changed so it’s especially important to see if your plugin works well within the new admin design and layout, and update <a href=\"http://wordpress.org/plugins/about/readme.txt\">the “Tested up to:” part of your plugin readme.txt</a>.</p>\n<p>If there is something in your plugin that you’re unable to fix, or if you think you’ve found a bug, join us <a href=\"http://codex.wordpress.org/IRC\">in #wordpress-dev in IRC</a>, especially if you’re able to join during the dev chat on Wednesday, or post in the <a href=\"http://wordpress.org/support/forum/alphabeta\">alpha/beta forum</a>. The developers and designers who worked on this release are happy to help anyone update their code before the 3.8 release.</p>\n<p>Happy hacking, everybody!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"http://wordpress.org/news/2013/12/3-8-rc2/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:17:\"WordPress 3.8 RC1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/news/2013/12/3-8-almost/\";s: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:54:\"http://wordpress.org/news/2013/12/3-8-almost/#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, 04 Dec 2013 09:54:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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=2760\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:345:\"We’re entering the quiet but busy part of a release, whittling down issues to bring you all of the new features you’re excited about with the stability you expect from WordPress. There are just a few days from the “code freeze” for our 3.8 release, which includes a number of exciting enhancements, so the focus […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:1873:\"<p>We’re entering the quiet but busy part of a release, whittling down issues to bring you all of the new features you’re excited about with the stability you expect from WordPress. There are just a few days from the “code freeze” for our 3.8 release, <a href=\"http://wordpress.org/news/2013/11/wordpress-3-8-beta-1/\">which includes a number of exciting enhancements</a>, so the focus is on identifying any major issues and resolving them as soon as possible.</p>\n<p>If you’ve ever wondered about how to contribute to WordPress, here’s a time you can: download this release candidate and use it in as many ways as you can imagine. Try to break it, and if you do, let us know how you did it so we can make sure it never happens again. If you work for a web host, this is the release you should test as much as possible and start getting your automatic upgrade systems and 1-click installers ready.</p>\n<p><a href=\"http://wordpress.org/wordpress-3.8-RC1.zip\">Download WordPress 3.8 RC1</a> (zip) or use the <a href=\"http://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”).</p>\n<p>If you think you’ve found a bug, 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=\"http://core.trac.wordpress.org/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"http://core.trac.wordpress.org/report/5\">a list of known bugs</a> and <a href=\"http://core.trac.wordpress.org/query?status=closed&group=component&milestone=3.8\">everything we’ve fixed</a> so far.</p>\n<p><em>We’re so close to the</em><br />\n<em>finish line, jump in and help</em><br />\n<em>good karma is yours.</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:50:\"http://wordpress.org/news/2013/12/3-8-almost/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:45:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 3.8 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/2013/11/wordpress-3-8-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/2013/11/wordpress-3-8-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, 21 Nov 2013 05:21: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: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=2754\";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:307:\"The first beta of the 3.8 is now available, and the next dates to watch out for are code freeze on December 5th and a final release on December 12th. 3.8 brings together several of the features as plugins projects and while this isn’t our first rodeo, expect this to be more beta than usual. […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:2236:\"<p>The first beta of the 3.8 is now available, and the next dates to watch out for are code freeze on December 5th and a final release on December 12th.</p>\n<p>3.8 brings together <a href=\"http://make.wordpress.org/core/features-as-plugins/\">several of the features as plugins projects</a> and while this isn’t our first rodeo, expect this to be more beta than usual. The headline things to test out in this release are:</p>\n<ul>\n<li>The new admin design, especially the responsive aspect of it. Try it out on different devices and browsers, see how it goes, especially the more complex pages like widgets or seldom-looked-at-places like Press This. Color schemes, which you can change on your profile, have also been spruced up.</li>\n<li>The dashboard homepage has been refreshed, poke and prod it.</li>\n<li>Choosing themes under Appearance is completely different, try to break it however possible.</li>\n<li>There’s a new default theme, Twenty Fourteen.</li>\n<li>Over 250 issues closed already.</li>\n</ul>\n<p>Given how many things in the admin have changed it’s extra super duper important to test as many plugins and themes with admin pages against the new stuff. Also if you’re a developer consider how you can make your admin interface fit the MP6 aesthetic better.</p>\n<p>As always, if you think you’ve found a bug, 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=\"http://core.trac.wordpress.org/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"http://core.trac.wordpress.org/report/5\">a list of known bugs</a> and <a href=\"http://core.trac.wordpress.org/query?status=closed&group=component&milestone=3.8\">everything we’ve fixed</a> so far.</p>\n<p><a href=\"http://wordpress.org/wordpress-3.8-beta-1.zip\">Download WordPress 3.8 Beta 1</a> (zip) or use the <a href=\"http://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”).</p>\n<p><em>Alphabet soup of</em><br />\n<em>Plugins as features galore</em><br />\n<em>The future is here</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/2013/11/wordpress-3-8-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: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:35:\"WordPress 3.7.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/2013/10/wordpress-3-7-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/2013/10/wordpress-3-7-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, 29 Oct 2013 21:04:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s: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=2745\";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:371:\"WordPress 3.7.1 is now available! This maintenance release addresses 11 bugs in WordPress 3.7, including: Images with captions no longer appear broken in the visual editor. Allow some sites running on old or poorly configured servers to continue to check for updates from WordPress.org. Avoid fatal errors with certain plugins that were incorrectly calling some […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:1594:\"<p>WordPress 3.7.1 is now available! This maintenance release addresses 11 bugs in WordPress 3.7, including:</p>\n<ul>\n<li>Images with captions no longer appear broken in the visual editor.</li>\n<li>Allow some sites running on old or poorly configured servers to continue to check for updates from WordPress.org.</li>\n<li>Avoid fatal errors with certain plugins that were incorrectly calling some WordPress functions too early.</li>\n<li>Fix hierarchical sorting in get_pages(), exclusions in wp_list_categories(), and in_category() when called with empty values.</li>\n<li>Fix a warning that may occur in certain setups while performing a search, and a few other notices.</li>\n</ul>\n<p>For a full list of changes, consult the <a href=\"http://core.trac.wordpress.org/query?milestone=3.7.1\">list of tickets</a> and <a href=\"http://core.trac.wordpress.org/log/branches/3.7?stop_rev=25914&rev=25986\">the changelog</a>.</p>\n<p>If you are one of the <a href=\"http://wordpress.org/download/counter/\">nearly two million</a> already running WordPress 3.7, we will start rolling out the all-new <a href=\"http://wordpress.org/news/2013/10/basie/\">automatic background updates</a> for WordPress 3.7.1 in the next few hours. 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.7.1</a> or venture over to <strong>Dashboard → Updates</strong> and simply click “Update Now.”</p>\n<p><em>Just a few fixes<br />\nYour new update attitude:<br />\nZero clicks given</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/2013/10/wordpress-3-7-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:6;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.7 “Basie”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2013/10/basie/\";s: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/2013/10/basie/#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, 24 Oct 2013 22:35: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: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=2736\";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:357:\"Version 3.7 of WordPress, named “Basie” in honor of Count Basie, is available for download or update in your WordPress dashboard. This release features some of the most important architectural updates we’ve made to date. Here are the big ones: Updates while you sleep: With WordPress 3.7, you don’t have to lift a finger to […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:17229:\"<p>Version 3.7 of WordPress, named “Basie” in honor of <a href=\"http://en.wikipedia.org/wiki/Count_basie\">Count Basie</a>, is available <a href=\"http://wordpress.org/download/\">for download</a> or update in your WordPress dashboard. This release features some of the most important architectural updates we’ve made to date. Here are the big ones:</p>\n<ul>\n<li><strong>Updates while you sleep</strong>: With WordPress 3.7, you don’t have to lift a finger to apply maintenance and security updates. Most sites are now able to automatically apply these updates in the background. The update process also has been made even more reliable and secure, with dozens of new checks and safeguards.</li>\n<li><strong>Stronger password recommendations</strong>: Your password is your site’s first line of defense. It’s best to create passwords that are complex, long, and unique. To that end, our password meter has been updated in WordPress 3.7 to recognize common mistakes that can weaken your password: dates, names, keyboard patterns (123456789), and even pop culture references.</li>\n<li><strong>Better global support</strong>: Localized versions of WordPress will receive faster and more complete translations. WordPress 3.7 adds support for automatically installing the right language files and keeping them up to date, a boon for the many millions who use WordPress in a language other than English.</li>\n</ul>\n<p>For developers there are lots of options around how to control the new updates feature, including allowing it to handle major upgrades as well as minor ones, more sophisticated date query support, and multisite improvements. As always, if you’re hungry for more <a href=\"http://codex.wordpress.org/Version_3.7\">dive into the Codex</a> or browse the <a href=\"http://core.trac.wordpress.org/query?status=closed&group=resolution&milestone=3.7\">over 400 closed tickets on Trac</a>.</p>\n<h3>A New Wave</h3>\n<p>This release was led by Andrew Nacin, backed up by Dion Hulse and Jon Cave. This is our first release using the new plugin-first development process, with a much shorter timeframe than in the past. (3.6 was released in August.) The 3.8 release, due in December, will continue this plugin-led development cycle that gives much more autonomy to plugin leads and allows us to decouple feature development from a release. You can follow this grand experiment, and what we’re learning from it, <a href=\"http://make.wordpress.org/core/\">on the make/core blog</a>. There are 211 contributors with props in this release:</p>\n<p><a href=\"http://profiles.wordpress.org/technosailor\">Aaron Brazell</a>, <a href=\"http://profiles.wordpress.org/aaroncampbell\">Aaron D. Campbell</a>, <a href=\"http://profiles.wordpress.org/aaronholbrook\">Aaron Holbrook</a>, <a href=\"http://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"http://profiles.wordpress.org/adamsilverstein\">adamsilverstein</a>, <a href=\"http://profiles.wordpress.org/ahoereth\">Alexander Hoereth</a>, <a href=\"http://profiles.wordpress.org/viper007bond\">Alex Mills (Viper007Bond)</a>, <a href=\"http://profiles.wordpress.org/sabreuse\">Amy Hendrix (sabreuse)</a>, <a href=\"http://profiles.wordpress.org/andg\">andg</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/andrewspittle\">Andrew Spittle</a>, <a href=\"http://profiles.wordpress.org/askapache\">askapache</a>, <a href=\"http://profiles.wordpress.org/atimmer\">atimmer</a>, <a href=\"http://profiles.wordpress.org/barry\">Barry</a>, <a href=\"http://profiles.wordpress.org/beaulebens\">Beau Lebens</a>, <a href=\"http://profiles.wordpress.org/benmoody\">ben.moody</a>, <a href=\"http://profiles.wordpress.org/bhengh\">Ben Miller</a>, <a href=\"http://profiles.wordpress.org/neoxx\">Bernhard Riedl</a>, <a href=\"http://profiles.wordpress.org/bftrick\">BFTrick</a>, <a href=\"http://profiles.wordpress.org/bananastalktome\">Billy (bananastalktome)</a>, <a href=\"http://profiles.wordpress.org/bmb\">bmb</a>, <a href=\"http://profiles.wordpress.org/kraftbj\">Brandon Kraft</a>, <a href=\"http://profiles.wordpress.org/brianhogg\">brianhogg</a>, <a href=\"http://profiles.wordpress.org/rzen\">Brian Richards</a>, <a href=\"http://profiles.wordpress.org/bpetty\">Bryan Petty</a>, <a href=\"http://profiles.wordpress.org/carldanley\">Carl Danley</a>, <a href=\"http://profiles.wordpress.org/charlesclarkson\">CharlesClarkson</a>, <a href=\"http://profiles.wordpress.org/chipbennett\">Chip Bennett</a>, <a href=\"http://profiles.wordpress.org/chouby\">Chouby</a>, <a href=\"http://profiles.wordpress.org/c3mdigital\">Chris Olbekson</a>, <a href=\"http://profiles.wordpress.org/chrisrudzki\">Chris Rudzki</a>, <a href=\"http://profiles.wordpress.org/aeg0125\">coderaaron</a>, <a href=\"http://profiles.wordpress.org/coenjacobs\">Coen Jacobs</a>, <a href=\"http://profiles.wordpress.org/crrobi01\">Colin Robinson</a>, <a href=\"http://profiles.wordpress.org/andreasnrb\">cyonite</a>, <a href=\"http://profiles.wordpress.org/daankortenbach\">Daan Kortenbach</a>, <a href=\"http://profiles.wordpress.org/danielbachhuber\">Daniel Bachhuber</a>, <a href=\"http://profiles.wordpress.org/convissor\">Daniel Convissor</a>, <a href=\"http://profiles.wordpress.org/dartiss\">dartiss</a>, <a href=\"http://profiles.wordpress.org/koop\">Daryl Koopersmith</a>, <a href=\"http://profiles.wordpress.org/csixty4\">Dave Ross</a>, <a href=\"http://profiles.wordpress.org/davidjlaietta\">David Laietta</a>, <a href=\"http://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"http://profiles.wordpress.org/dllh\">dllh</a>, <a href=\"http://profiles.wordpress.org/ocean90\">Dominik Schilling (ocean90)</a>, <a href=\"http://profiles.wordpress.org/dpash\">dpash</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/dzver\">dzver</a>, <a href=\"http://profiles.wordpress.org/cais\">Edward Caissie</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/evansolomon\">Evan Solomon</a>, <a href=\"http://profiles.wordpress.org/faishal\">faishal</a>, <a href=\"http://profiles.wordpress.org/faison\">Faison</a>, <a href=\"http://profiles.wordpress.org/foofy\">Foofy</a>, <a href=\"http://profiles.wordpress.org/fjarrett\">Frankie Jarrett</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/pento\">Gary Pendergast</a>, <a href=\"http://profiles.wordpress.org/gayadesign\">Gaya Kessler</a>, <a href=\"http://profiles.wordpress.org/georgestephanis\">George Stephanis</a>, <a href=\"http://profiles.wordpress.org/gizburdt\">Gizburdt</a>, <a href=\"http://profiles.wordpress.org/goldenapples\">goldenapples</a>, <a href=\"http://profiles.wordpress.org/gradyetc\">gradyetc</a>, <a href=\"http://profiles.wordpress.org/gcorne\">Gregory Cornelius</a>, <a href=\"http://profiles.wordpress.org/webord\">Gustavo Bordoni</a>, <a href=\"http://profiles.wordpress.org/hakre\">hakre</a>, <a href=\"http://profiles.wordpress.org/helen\">Helen Hou-Sandi</a>, <a href=\"http://profiles.wordpress.org/iandunn\">Ian Dunn</a>, <a href=\"http://profiles.wordpress.org/ipstenu\">Ipstenu (Mika Epstein)</a>, <a href=\"http://profiles.wordpress.org/creativeinfusion\">itinerant</a>, <a href=\"http://profiles.wordpress.org/jdgrimes\">J.D. Grimes</a>, <a href=\"http://profiles.wordpress.org/jakubtyrcha\">jakub.tyrcha</a>, <a href=\"http://profiles.wordpress.org/jamescollins\">James Collins</a>, <a href=\"http://profiles.wordpress.org/jenmylo\">Jen Mylo</a>, <a href=\"http://profiles.wordpress.org/buffler\">Jeremy Buller</a>, <a href=\"http://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"http://profiles.wordpress.org/jayjdk\">Jesper Johansen (jayjdk)</a>, <a href=\"http://profiles.wordpress.org/joehoyle\">Joe Hoyle</a>, <a href=\"http://profiles.wordpress.org/jkudish\">Joey Kudish</a>, <a href=\"http://profiles.wordpress.org/johnnyb\">John Beales</a>, <a href=\"http://profiles.wordpress.org/johnbillion\">John Blackbourn (johnbillion)</a>, <a href=\"http://profiles.wordpress.org/johnafish\">John Fish</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/jond3r\">Jonas Bolinder (jond3r)</a>, <a href=\"http://profiles.wordpress.org/jchristopher\">Jonathan Christopher</a>, <a href=\"http://profiles.wordpress.org/desrosj\">Jonathan Desrosiers</a>, <a href=\"http://profiles.wordpress.org/duck_\">Jon Cave</a>, <a href=\"http://profiles.wordpress.org/jonlynch\">Jon Lynch</a>, <a href=\"http://profiles.wordpress.org/joostdevalk\">Joost de Valk</a>, <a href=\"http://profiles.wordpress.org/josephscott\">Joseph Scott</a>, <a href=\"http://profiles.wordpress.org/betzster\">Josh Betz</a>, <a href=\"http://profiles.wordpress.org/devesine\">Justin de Vesine</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/ketwaroo\">Ketwaroo</a>, <a href=\"http://profiles.wordpress.org/kevinb\">kevinB</a>, <a href=\"http://profiles.wordpress.org/kpdesign\">Kim Parsell</a>, <a href=\"http://profiles.wordpress.org/kitchin\">kitchin</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/koopersmith\">koopersmith</a>, <a href=\"http://profiles.wordpress.org/kurtpayne\">Kurt Payne</a>, <a href=\"http://profiles.wordpress.org/lancewillett\">Lance Willett</a>, <a href=\"http://profiles.wordpress.org/leewillis77\">Lee Willis (leewillis77)</a>, <a href=\"http://profiles.wordpress.org/lessbloat\">lessbloat</a>, <a href=\"http://profiles.wordpress.org/layotte\">Lew Ayotte</a>, <a href=\"http://profiles.wordpress.org/lgedeon\">Luke Gedeon</a>, <a href=\"http://profiles.wordpress.org/iworks\">Marcin Pietrzak</a>, <a href=\"http://profiles.wordpress.org/cimmo\">Marco Cimmino</a>, <a href=\"http://profiles.wordpress.org/marco_teethgrinder\">Marco Galasso</a>, <a href=\"http://profiles.wordpress.org/markjaquith\">Mark Jaquith</a>, <a href=\"http://profiles.wordpress.org/markmcwilliams\">Mark McWilliams</a>, <a href=\"http://profiles.wordpress.org/markoheijnen\">Marko Heijnen</a>, <a href=\"http://profiles.wordpress.org/melchoyce\">Mel Choyce</a>, <a href=\"http://profiles.wordpress.org/tw2113\">Michael Beckwith</a>, <a href=\"http://profiles.wordpress.org/mikehansenme\">Mike Hansen</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/dimadin\">Milan Dinic</a>, <a href=\"http://profiles.wordpress.org/mitchoyoshitaka\">mitcho (Michael Yoshitaka Erlewine)</a>, <a href=\"http://profiles.wordpress.org/usermrpapa\">Mr Papa</a>, <a href=\"http://profiles.wordpress.org/Nao\">Naoko Takano</a>, <a href=\"http://profiles.wordpress.org/naomicbush\">Naomi</a>, <a href=\"http://profiles.wordpress.org/alex-ye\">Nashwan Doaqan</a>, <a href=\"http://profiles.wordpress.org/natejacobs\">NateJacobs</a>, <a href=\"http://profiles.wordpress.org/nathanrice\">nathanrice</a>, <a href=\"http://profiles.wordpress.org/niallkennedy\">Niall Kennedy</a>, <a href=\"http://profiles.wordpress.org/nickdaugherty\">Nick Daugherty</a>, <a href=\"http://profiles.wordpress.org/celloexpressions\">Nick Halsey</a>, <a href=\"http://profiles.wordpress.org/nickmomrik\">Nick Momrik</a>, <a href=\"http://profiles.wordpress.org/nikv\">Nikhil Vimal (NikV)</a>, <a href=\"http://profiles.wordpress.org/nbachiyski\">Nikolay Bachiyski</a>, <a href=\"http://profiles.wordpress.org/noahsilverstein\">noahsilverstein</a>, <a href=\"http://profiles.wordpress.org/nofearinc\">nofearinc</a>, <a href=\"http://profiles.wordpress.org/nukaga\">nukaga</a>, <a href=\"http://profiles.wordpress.org/nullvariable\">nullvariable</a>, <a href=\"http://profiles.wordpress.org/butuzov\">Oleg Butuzov</a>, <a href=\"http://profiles.wordpress.org/paolal\">Paolo Belcastro</a>, <a href=\"http://profiles.wordpress.org/xparham\">Parham</a>, <a href=\"http://profiles.wordpress.org/pbiron\">Paul Biron</a>, <a href=\"http://profiles.wordpress.org/pauldewouters\">Paul de Wouters</a>, <a href=\"http://profiles.wordpress.org/pavelevap\">pavelevap</a>, <a href=\"http://profiles.wordpress.org/peterjaap\">peterjaap</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/plocha\">plocha</a>, <a href=\"http://profiles.wordpress.org/pollett\">Pollett</a>, <a href=\"http://profiles.wordpress.org/ptahdunbar\">Ptah Dunbar</a>, <a href=\"http://profiles.wordpress.org/ramiy\">Rami Yushuvaev</a>, <a href=\"http://profiles.wordpress.org/rasheed\">Rasheed Bydousi</a>, <a href=\"http://profiles.wordpress.org/raybernard\">RayBernard</a>, <a href=\"http://profiles.wordpress.org/rboren\">rboren</a>, <a href=\"http://profiles.wordpress.org/greuben\">Reuben Gunday</a>, <a href=\"http://profiles.wordpress.org/rfair404\">rfair404</a>, <a href=\"http://profiles.wordpress.org/iamfriendly\">Richard Tape</a>, <a href=\"http://profiles.wordpress.org/r3df\">Rick Radko</a>, <a href=\"http://profiles.wordpress.org/miqrogroove\">Robert Chapin</a>, <a href=\"http://profiles.wordpress.org/rdall\">Robert Dall</a>, <a href=\"http://profiles.wordpress.org/rodrigosprimo\">Rodrigo Primo</a>, <a href=\"http://profiles.wordpress.org/wpmuguru\">Ron Rennick</a>, <a href=\"http://profiles.wordpress.org/rpattillo\">rpattillo</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/hotchkissconsulting\">Sam Hotchkiss</a>, <a href=\"http://profiles.wordpress.org/coffee2code\">Scott Reilly</a>, <a href=\"http://profiles.wordpress.org/scottsweb\">scottsweb</a>, <a href=\"http://profiles.wordpress.org/wonderboymusic\">Scott Taylor</a>, <a href=\"http://profiles.wordpress.org/scribu\">scribu</a>, <a href=\"http://profiles.wordpress.org/scruffian\">scruffian</a>, <a href=\"http://profiles.wordpress.org/tenpura\">Seisuke Kuraishi (tenpura)</a>, <a href=\"http://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</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/sillybean\">Stephanie Leary</a>, <a href=\"http://profiles.wordpress.org/netweb\">Stephen Edgar (@netweb)</a>, <a href=\"http://profiles.wordpress.org/stephenharris\">Stephen Harris</a>, <a href=\"http://profiles.wordpress.org/strangerstudios\">strangerstudios</a>, <a href=\"http://profiles.wordpress.org/sweetie089\">sweetie089</a>, <a href=\"http://profiles.wordpress.org/swissspidy\">swissspidy</a>, <a href=\"http://profiles.wordpress.org/miyauchi\">Takayuki Miyauchi</a>, <a href=\"http://profiles.wordpress.org/tmtoy\">Takuma Morikawa</a>, <a href=\"http://profiles.wordpress.org/tlovett1\">Taylor Lovett</a>, <a href=\"http://profiles.wordpress.org/tivnet\">tivnet</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/toscho\">toscho</a>, <a href=\"http://profiles.wordpress.org/wpsmith\">Travis Smith</a>, <a href=\"http://profiles.wordpress.org/sorich87\">Ulrich Sossou</a>, <a href=\"http://profiles.wordpress.org/vericgar\">vericgar</a>, <a href=\"http://profiles.wordpress.org/vinod-dalvi\">Vinod Dalvi</a>, <a href=\"http://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"http://profiles.wordpress.org/wikicms\">wikicms</a>, <a href=\"http://profiles.wordpress.org/willnorris\">Will Norris</a>, <a href=\"http://profiles.wordpress.org/wojtekszkutnik\">Wojtek Szkutnik</a>, <a href=\"http://profiles.wordpress.org/wycks\">wycks</a>, <a href=\"http://profiles.wordpress.org/yoavf\">Yoav Farhi</a>, and <a href=\"http://profiles.wordpress.org/yurivictor\">Yuri Victor</a>.</p>\n<p>Enjoy what may be one of your last few manual updates. See you soon for version 3.8!</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/2013/10/basie/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:33:\"WordPress 3.7 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/2013/10/wordpress-3-7-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/2013/10/wordpress-3-7-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:\"Wed, 23 Oct 2013 00:05:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a: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=2729\";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:417:\"The second release candidate of WordPress 3.7 is now available for testing! Those of you already testing WordPress 3.7 will be updated automatically to RC2. (Nice.) If you’d like to start testing, there’s no time like the present! Try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”) or download the release candidate here (zip). Please post to the Alpha/Beta […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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:1183:\"<p>The second release candidate of WordPress 3.7 is now available for testing!</p>\n<p>Those of you already testing WordPress 3.7 will be updated automatically to RC2. (<em>Nice.</em>) If you’d like to start testing, there’s no time like the present! Try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”) or <a href=\"http://wordpress.org/wordpress-3.7-RC2.zip\">download the release candidate here</a> (zip). Please post to the <a href=\"http://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area in the support forums</a> if you think you’ve found a bug, and if any known issues are raised, you’ll be able to <a href=\"http://core.trac.wordpress.org/report/5\">find them here</a>.</p>\n<p>Developers, please test your plugins and themes against WordPress 3.7. If there is a compatibility issue, let us know as soon as possible so we can deal with it before the final release.</p>\n<p>For more on WordPress 3.7, check out the <a href=\"http://wordpress.org/news/2013/10/wordpress-3-7-release-candidate/\">announcement post for Release Candidate 1</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:73:\"http://wordpress.org/news/2013/10/wordpress-3-7-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: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:18:\"Upcoming WordCamps\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2013/10/upcoming-wordcamps-4/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"http://wordpress.org/news/2013/10/upcoming-wordcamps-4/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 22 Oct 2013 19:25:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"WordCamp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2723\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:368:\"WordCamps are casual, locally-organized conferences that celebrate everything related to WordPress, and are a great opportunity to meet other WordPress users and professionals in your community. This has been a great year for WordCamps — there have been 56 so far in more than 20 countries, and there another 15 on the calendar before the year’s […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Jen Mylo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:3584:\"<p><a href=\"http://central.wordcamp.org/\">WordCamps</a> are casual, locally-organized conferences that celebrate everything related to WordPress, and are a great opportunity to meet other WordPress users and professionals in your community. This has been a great year for WordCamps — there have been 56 so far in more than 20 countries, and there another 15 on the calendar before the year’s over. If there’s one near you, check it out! In addition to getting to know your local WordPress community, most WordCamps attract some traveling visitors a well, giving you the chance to meet contributors to the WordPress open source project and <a href=\"http://make.wordpress.org/\">get involved</a> yourself.</p>\n<p>Here are the WordCamps on the schedule for the rest of this year.</p>\n<p>October 25-27: <strong><a href=\"http://2013.boston.wordcamp.org/\">WordCamp Boston</a></strong>, Boston, MA, USA<br />\nOctober 25-26: <strong><a href=\"http://2013.malaga.wordcamp.org/\">WordCamp Malaga</a></strong>, Spain<br />\nOctober 26: <strong><a href=\"http://2013.nepal.wordcamp.org/\">WordCamp Nepal</a></strong>, Kathmandu, Nepal<br />\nOctober 26: <strong><a href=\"http://2013.sofia.wordcamp.org/\">WordCamp Sofia</a></strong>, Bulgaria<br />\nNovember 7: <strong><a href=\"http://2013.capetown.wordcamp.org/\">WordCamp Cape Town</a></strong>, South Africa<br />\nNovember 9: <strong><a href=\"http://2013.porto.wordcamp.org/\">WordCamp Porto</a></strong>, Portugal<br />\nNovember 9-10: <strong><a href=\"http://2013.kenya.wordcamp.org/\">WordCamp Kenya</a></strong>, Nairobi, Kenya<br />\nNovember 15: <strong><a href=\"http://2013.edmonton.wordcamp.org/\">WordCamp Edmonton</a></strong>, AB, Canada<br />\nNovember 16-17: <strong><a href=\"http://2013.orlando.wordcamp.org/\">WordCamp Orlando</a></strong>, FL, USA<br />\nNovember 16: <strong><a href=\"http://2013.denver.wordcamp.org/\">WordCamp Denver</a></strong>, CO, USA<br />\nNovember 23-24: <strong><a href=\"http://2013.london.wordcamp.org/\">WordCamp London</a></strong>, UK<br />\nNovember 23-24: <strong><a href=\"http://2013.raleigh.wordcamp.org/\">WordCamp Raleigh</a></strong>, NC, USA<br />\nNovember 23: <strong><a href=\"http://2013.saopaulo.wordcamp.org/\">WordCamp São Paulo</a></strong>, Brazil<br />\nDecember 14: <strong><a href=\"http://2013.vegas.wordcamp.org/\">WordCamp Las Vegas</a></strong>, NV, USA<br />\nDecember 14-15: <strong><a href=\"http://2013.sevilla.wordcamp.org/\">WordCamp Sevilla</a></strong>, Spain</p>\n<p>No WordCamps on this list in your area? Not to worry! There are thriving <a href=\"http://wordpress.meetup.com/\">WordPress meetups</a> all over the world where you can meet like-minded people, and we maintain a library of <a href=\"http://wordpress.tv/category/wordcamptv/\">WordCamp videos</a> at <a href=\"http://wordpress.tv/\">WordPress.tv</a>.</p>\n<h3>Get Involved</h3>\n<ul>\n<li>If you’re interested in organizing a WordCamp in your area, check out our <a href=\"http://plan.wordcamp.org/\">WordCamp planning</a> site.</li>\n<li>If you’re interested in <a href=\"http://make.wordpress.org/community/meetup-interest-form/\">starting a WordPress meetup</a> in your area, let us know and we can set up a group on meetup.com for you.</li>\n<li>And speaking of WordCamp videos, we’ve recently enabled volunteer-generated subtitles/closed captioning of the videos on WordPress.tv to make them more accessible. Interested in helping? Check out the <a href=\"http://wordpress.tv/using-amara-org-to-caption-or-subtitle-a-wordpress-tv-video/\">WordPress.tv subtitling instructions</a>.</li>\n</ul>\n\";s: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/2013/10/upcoming-wordcamps-4/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:31:\"WordPress 3.7 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/2013/10/wordpress-3-7-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/2013/10/wordpress-3-7-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:\"Fri, 18 Oct 2013 19:52:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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=2718\";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:331:\"The first release candidate for WordPress 3.7 is now available! In RC 1, we’ve made some adjustments to the update process to make it more reliable than ever. We hope to ship WordPress 3.7 next week, but we need your help to get there. If you haven’t tested 3.7 yet, there’s no time like the present. (Please, […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:2274:\"<p>The first release candidate for WordPress 3.7 is now available!</p>\n<p>In RC 1, we’ve made some adjustments to the update process to make it more reliable than ever. We hope to ship WordPress 3.7 <em>next week</em>, but we need your help to get there. If you haven’t tested 3.7 yet, there’s no time like the present. (Please, not on a production site, unless you’re adventurous.)</p>\n<p>WordPress 3.7 introduces <strong>automatic background updates</strong> for security and minor releases (like updating from 3.7 to 3.7.1). These are really easy to test — RC 1 will update every 12 hours or so to the latest development version, and then email you the results. (You may get two emails: one for debugging, and one all users of 3.7 will receive.) If something went wrong, you can report it.</p>\n<p><strong>Think you’ve found a bug? </strong>Please post to the <a href=\"http://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=\"http://core.trac.wordpress.org/report/5\">find them here</a>.</p>\n<p>To test WordPress 3.7 RC1, 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.7-RC1.zip\">download the release candidate here</a> (zip). If you’d like to learn more about what’s new in WordPress 3.7, visit the awesome About screen in your dashboard (<strong><img alt=\"\" src=\"http://i0.wp.com/core.svn.wordpress.org/branches/3.6/wp-content/themes/twentyten/images/wordpress.png?w=692\" data-recalc-dims=\"1\" /> → About</strong> in the toolbar). There, you can also see if your install is eligible for background updates. WordPress won’t automatically update, for example, if you’re using version control like Subversion or Git.</p>\n<p><strong>Developers,</strong> please test your plugins and themes against WordPress 3.7, so that if there is a compatibility issue, we can figure it out before the final release. Make sure you post any issues to the support forums.</p>\n<p><em>WordPress three seven</em><br />\n<em>A self-updating engine</em><br />\n<em>Lies beneath the hood</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/2013/10/wordpress-3-7-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:\"\";}}}}}}}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:\"Fri, 28 Feb 2014 03:50:20 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, 23 Jan 2014 20:54:06 GMT\";s:4:\"x-nc\";s:11:\"HIT lax 249\";}s:5:\"build\";s:14:\"20130911090210\";}', 'no');
INSERT INTO `wp_options` VALUES ('227', '_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1393602621', 'no');
INSERT INTO `wp_options` VALUES ('228', '_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1393559421', 'no');
INSERT INTO `wp_options` VALUES ('229', '_transient_timeout_feed_867bd5c64f85878d03a060509cd2f92c', '1393602623', 'no');
INSERT INTO `wp_options` VALUES ('230', '_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:89:\"WPTavern: WordPress.com Partners With Hosted E-Commerce Solutions to Launch Online Stores\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=17767\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:222:\"http://wptavern.com/wordpress-com-partners-with-hosted-e-commerce-solutions-to-launch-online-stores?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-com-partners-with-hosted-e-commerce-solutions-to-launch-online-stores\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5095:\"<p>WordPress.com made a big move to branch out into hosted e-commerce this week. For $299/year, <a href=\"http://store.wordpress.com/plans/business/\" target=\"_blank\">Business users</a> get unlimited access to premium themes, unlimited storage, live chat and email support, custom domains, no ads and the newest feature: “hassle-free” e-commerce.</p>\n<p>The company opted to offer its new online stores via partnerships with three hosted e-commerce providers: <a href=\"http://en.support.wordpress.com/ecwid/\" target=\"_blank\">Ecwid</a>, <a href=\"http://en.support.wordpress.com/shopify/\" target=\"_blank\">Shopify</a>, and <a href=\"http://en.support.wordpress.com/shoplocket/\" target=\"_blank\">ShopLocket</a>. Additional and/or monthly fees are also applicable, depending on the store provider selected.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/02/ecommerce.png\" rel=\"prettyphoto[17767]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/ecommerce.png\" alt=\"ecommerce\" width=\"2424\" height=\"826\" class=\"aligncenter size-full wp-image-17959\" /></a></p>\n<h3>WordPress.com E-Commerce Excludes Native WordPress Solutions</h3>\n<p>Notably absent from its partners are any native WordPress e-commerce plugins. This isn’t surprising, given that Automattic has historically favored <a href=\"http://en.wikipedia.org/wiki/Software_as_a_service\" target=\"_blank\">SaaS</a> solutions when it comes to WordPress products.</p>\n<p>The new offering was not without criticism from those who had hoped to see a few of WordPress’ high quality e-commerce plugins thrown into the mix. Commenting on the <a href=\"http://en.blog.wordpress.com/2014/02/25/wordpress-business-ecommerce/\" target=\"_blank\">announcement post</a>, WordPress developer Brent Shepherd <a href=\"http://en.blog.wordpress.com/2014/02/25/wordpress-business-ecommerce/#comment-196231\" target=\"_blank\">said</a>:</p>\n<blockquote><p>It’s incredibly exciting to see WordPress.com offer eCommerce, but a real shame to see the many excellent open-source options snubbed (including those built specifically for WordPress).</p>\n<p>I understand the many very good reasons why it makes sense to partner with existing hosted services, but I hope that one day, we’ll see WooCommerce, Easy Digital Downloads (EDD) and other open-source eCommerce options alongside these initial launch partners.</p></blockquote>\n<p>This is a point of contention for those who would like to see more fluidity for users transitioning between WordPress.com and self-hosted WordPress installations. A native WordPress e-commerce option might make it easier to transition stores that have outgrown the hosted solution.</p>\n<p>Whereas some have perceived the decision to partner with outside e-commerce providers as an outright snubbing of WordPress’ home grown solutions, the reality is that most WordPress.com users probably don’t care what’s under the hood to power their stores. If they did, they would likely be more inclined to go the self-hosted route.</p>\n<p>WordPress.com was created to help make the process of setting up and hosting a WordPress blog virtually painless for those who don’t want to dive into the technical details of setup and maintenance. The e-commerce partners they have selected have a similar audience of sellers who do not wish to be bothered with the technical burden of hosting their own e-commerce installations.</p>\n<h3>The Rising Demand for Hosted E-Commerce</h3>\n<p>WordPress.com’s $299/year price point is actually quite tempting for those who simply want to marry a hosted WordPress blog to a hosted store under one domain. This product attracts those who prefer to offload the burden of PCI compliance, SSL certificates, payment gateway maintenance and everything else required for selling online.</p>\n<p>Granular control of individual product display is limited to shortcode attributes within the WordPress.com stores, but customers are more than happy to trade deeper level customization for convenience. Aside from slapping a “Pay Now” Paypal button on a website, most modern e-commerce implementations require a tech-savvy administrator who isn’t afraid to tackle a few challenges. A hosted storefront is a more approachable option than the prospect of having to learn everything involved. It’s also more affordable than hiring a developer.</p>\n<p>Last year we featured <a href=\"http://wptavern.com/cart66-launches-wordpress-managed-hosting-for-e-commerce\" target=\"_blank\">Cart66′s launch</a> as a fully managed WordPress e-commerce platform. With Automattic getting into the game, you know there’s a clear demand for this. People are looking to seamlessly couple the power of WordPress publishing with an online storefront and they’re willing to pay for convenience. As more retailers turn to the internet to expand their sales to a global audience, the demand for hosted e-commerce solutions will continue to rise. Any company that can provide a painless experience for customers will take a huge slice of this market.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 28 Feb 2014 00:58:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:75:\"WPTavern: How To Redirect Automatic Update Email Notifications 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://wptavern.com/?p=17934\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:194:\"http://wptavern.com/how-to-redirect-automatic-update-email-notifications-in-wordpress?utm_source=rss&utm_medium=rss&utm_campaign=how-to-redirect-automatic-update-email-notifications-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:4229:\"<p>One of the biggest features to land in WordPress 3.7 were automatic updates. When automatic updates are completed, an email notification is sent to the address specified within <strong>Settings > General</strong> which is typically the website administrator. However, if you maintain websites for clients, you probably want those notifications to be forwarded to you and not the client. Since other events are tied to the email address such as new user registrations, you can’t substitute the address with your own.</p>\n<div id=\"attachment_17937\" class=\"wp-caption aligncenter\"><a href=\"http://wptavern.com/wp-content/uploads/2014/02/BackgroundUpdateNotificationEmailAddress1.png\" rel=\"prettyphoto[17934]\"><img class=\"size-large wp-image-17937\" alt=\"Plugin Header\" src=\"http://wptavern.com/wp-content/uploads/2014/02/BackgroundUpdateNotificationEmailAddress1-500x139.png\" width=\"500\" height=\"139\" /></a><p class=\"wp-caption-text\">Plugin Header</p></div>\n<p>A new WordPress plugin called <a title=\"http://wordpress.org/plugins/background-update-notification-email-address/\" href=\"http://wordpress.org/plugins/background-update-notification-email-address/\">Background Update Notification Email Address</a> developed by <a title=\"http://profiles.wordpress.org/mustardbees/\" href=\"http://profiles.wordpress.org/mustardbees/\">Phil Wylie</a>, <a title=\"http://profiles.wordpress.org/lauravaq/\" href=\"http://profiles.wordpress.org/lauravaq/\">Laura Vaquero</a>, and <a title=\"http://profiles.wordpress.org/iwebsolutions/\" href=\"http://profiles.wordpress.org/iwebsolutions/\">Interactive Web Solutions</a> solves the problem by changing the email address update notifications are sent to when an automatic background update is completed. By only changing the email address for automatic update notifications, clients are able to continue receiving emails related to administering their website.</p>\n<div id=\"attachment_17938\" class=\"wp-caption aligncenter\"><a href=\"http://wptavern.com/wp-content/uploads/2014/02/BackgroundUpdateNotificationEmailAddress2.png\" rel=\"prettyphoto[17934]\"><img class=\"size-large wp-image-17938\" alt=\"Where Updates Will Go\" src=\"http://wptavern.com/wp-content/uploads/2014/02/BackgroundUpdateNotificationEmailAddress2-500x178.png\" width=\"500\" height=\"178\" /></a><p class=\"wp-caption-text\">Where Updates Will Go</p></div>\n<p>After activating the plugin, you’ll find the notification email address located in <strong>Settings > Update Notifications.</strong> Place the email address where update notifications will go into the field, save the changes and wait for a security or maintenance release of WordPress.</p>\n<h3>Filters and Hooks Are A Plugin Authors Best Friend</h3>\n<p>I asked Phil, how was he able to redirect update notifications without affecting the other administrative emails generated by WordPress. I also asked him why they created the plugin. His response:</p>\n<p><em>In terms of how we redirect only the background update emails, WordPress provides us with a handy filter (<code>auto_core_update_email</code> and <code>auto_core_update_send_email</code>) we hook into in order to replace the email address. The filter only fires during an automatic background update and so all other WordPress emails are unaffected.</p>\n<p>Background updates are a valuable feature of WordPress, ensuring sites receive bug/security fixes quickly. There are a number of plugins which control background update behaviour. However, to my knowledge there are no plugins which redirect the email notifications.</em></p>\n<p>Phil suggests if a number of client sites are under your control to create a set of email rules to help organize the notifications.</p>\n<blockquote><p>I’ve got this plugin setup in conjunction with a few email rules. Success notifications are archived and failed updates flagged for manual assessment.</p></blockquote>\n<h3>Great Plugin With One Drawback</h3>\n<p>The only drawback I see is the possibility of clients deactivating the plugin, preventing the email from reaching its intended target. Outside of that, this plugin is a neat example of how the presence of filters and hooks in WordPress give plugin authors the opportunity to bend WordPress to their will.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Feb 2014 22:40:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:96:\"WPTavern: Better WordPress Security Plugin Gets Major Update To Address Security Vulnerabilities\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=17946\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:236:\"http://wptavern.com/better-wordpress-security-plugin-gets-major-update-to-address-security-vulnerabilities?utm_source=rss&utm_medium=rss&utm_campaign=better-wordpress-security-plugin-gets-major-update-to-address-security-vulnerabilities\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1585:\"<p>Chris Wiegman of iThemes has <a title=\"http://ithemes.com/2014/02/25/better-wp-security-3-x-vulnerability/\" href=\"http://ithemes.com/2014/02/25/better-wp-security-3-x-vulnerability/\">announced</a> the latest update to the <a title=\"https://wordpress.org/plugins/better-wp-security/\" href=\"https://wordpress.org/plugins/better-wp-security/\">Better WP Security plugin</a> contains fixes for vulnerabilities discovered in 3.6.3. The updates address compatibility with <a title=\"http://infinitewp.com/\" href=\"http://infinitewp.com/\">InfiniteWP, </a>the removal of their in-dashboard support form, and <a title=\"http://fooplugins.com/\" href=\"http://fooplugins.com/\">FooPlugins</a> support form code.</p>\n<div id=\"attachment_17949\" class=\"wp-caption aligncenter\"><a href=\"http://wptavern.com/wp-content/uploads/2014/02/BetterWPSecurityScan.png\" rel=\"prettyphoto[17946]\"><img class=\"size-large wp-image-17949\" alt=\"Better WordPress Security Scan\" src=\"http://wptavern.com/wp-content/uploads/2014/02/BetterWPSecurityScan-500x167.png\" width=\"500\" height=\"167\" /></a><p class=\"wp-caption-text\">Better WordPress Security Scan</p></div>\n<p>While support for InfiniteWP was removed in 3.6.4, it’s been restored in 3.6.5 as they have since come up with a satisfactory solution eliminating the security risk. Wiegman goes into detail on each issue on the iThemes blog and assures everyone that as of version 3.6.5, the plugin contains no security vulnerabilities.</p>\n<p>Users of Better WordPress Security are encouraged to update to the latest version to receive the security patches.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Feb 2014 22:20:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:69:\"WordPress.tv: Vitaly Friedman: Behind the Scenes at Smashing Magazine\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=31506\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"http://wordpress.tv/2014/02/27/vitaly-friedman-behind-the-scenes-at-smashing-magazine/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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-eXtoTG8d-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/31506/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/31506/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=31506&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/02/27/vitaly-friedman-behind-the-scenes-at-smashing-magazine/\"><img alt=\"wceu – Kim Gjerstad1\" src=\"http://videos.videopress.com/eXtoTG8d/wceu-kim-gjerstad1_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, 27 Feb 2014 18:11:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"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:87:\"WPTavern: WordPress Accepted As A Mentoring Organization For Google Summer of Code 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=17895\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/wordpress-accepted-as-a-mentoring-organization-for-google-summer-of-code-2014?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-accepted-as-a-mentoring-organization-for-google-summer-of-code-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:2835:\"<p><a href=\"http://wptavern.com/wp-content/uploads/2014/02/gsoc.png\" rel=\"prettyphoto[17895]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/gsoc.png\" alt=\"gsoc\" width=\"924\" height=\"156\" class=\"aligncenter size-full wp-image-17909\" /></a></p>\n<p>WordPress has been <a href=\"http://make.wordpress.org/core/2014/02/24/weve-been-accepted-as-a-mentoring-organization-for/\" target=\"_blank\">approved</a> to participate in the <a href=\"http://www.google-melange.com/gsoc/homepage/google/gsoc2014\" target=\"_blank\">Google Summer of Code</a> (GSoC) as a mentoring organization for 2014. GSoC is a global program that offers promising students an opportunity to contribute code to open source projects with a stipend provided by Google.</p>\n<p>Last year 1,192 students were part of the program. The 2014 program marks the 10th year of GSoC and Google is expecting to sponsor 10% more students than it did in 2013. WordPress is a veteran organization entering its 7th year of participation and is one of <a href=\"http://www.google-melange.com/gsoc/org/list/public/google/gsoc2014\" title=\"GSoC mentoring organizations\" target=\"_blank\">190 mentoring organizations</a> that were selected this year.</p>\n<p>In 2012 WordPress was rejected as a mentoring organization due to a lack of ideas prepared for student projects. However, this year is a different story. The <a href=\"http://codex.wordpress.org/GSoC2014\" target=\"_blank\">GSoC 2014 codex page</a> is brimming with ideas and there are more than 20 potential mentors already on board. Here’s a quick sampling of some of the ideas put forth for this summer:</p>\n<ul>\n<li>Full-throttle Trac Annihilation</li>\n<li>Forms Plugin</li>\n<li>New BuddyPress Template Pack</li>\n<li>bbPress Per Forum Moderation</li>\n<li>WordCamp Mobile App</li>\n<li>Turn the Beta Testers Plugin into a QA Plugin</li>\n</ul>\n<p>What does WordPress hope to gain by participating in the GSoC project? This was one of the questions on the <a href=\"http://make.wordpress.org/community/2014/02/13/gsoc-2014-application/\" target=\"_blank\">application</a>, which was submitted by Jen Mylo. <strong>“It’s a good opportunity to reach students who might not otherwise have considered contributing to WordPress,”</strong> she said. “And even if they don’t stick around as frequent contributors, it helps us to evaluate how we ramp up and communicate with new contributors.” Several participants from prior years of GSoC have gone on to become valuable contributors to WordPress, including Dion Hulse, Daryl Koopersmith and Andrew Nacin, to name just a few.</p>\n<p>Student applications open on March 10th. If you’re interested to be part of the program, check out the <a href=\"http://codex.wordpress.org/GSoC2014\" target=\"_blank\">GSoC 2014 codex page</a> for information on how to apply.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Feb 2014 15:29:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:63:\"WordPress.tv: Bram Duvigneau: Practical WordPress Accessibility\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=31494\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"http://wordpress.tv/2014/02/27/bram-duvigneau-practical-wordpress-accessibility/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:646:\"<div id=\"v-Cbe8jOdp-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/31494/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/31494/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=31494&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/02/27/bram-duvigneau-practical-wordpress-accessibility/\"><img alt=\"wceu-BramDuvigneau\" src=\"http://videos.videopress.com/Cbe8jOdp/wceu-bramduvigneau_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, 27 Feb 2014 15:08: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: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:55:\"WordPress.tv: Sara Rosso: Why Big Brands Love 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=31501\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"http://wordpress.tv/2014/02/27/sara-rosso-why-big-brands-love-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:630:\"<div id=\"v-YSvfq6rZ-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/31501/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/31501/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=31501&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/02/27/sara-rosso-why-big-brands-love-wordpress/\"><img alt=\"wceu-SaraRosso\" src=\"http://videos.videopress.com/YSvfq6rZ/wceu-sararosso_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, 27 Feb 2014 13:00:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:83:\"WordPress.tv: Roció Valdivia: BuddyPress and Multisite Case Study: El Club Express\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=31492\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/02/26/rocio-valdivia-buddypress-and-multisite-case-study-el-club-express/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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-t9y6FIo1-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/31492/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/31492/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=31492&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/02/26/rocio-valdivia-buddypress-and-multisite-case-study-el-club-express/\"><img alt=\"wceu-RocioValdivia\" src=\"http://videos.videopress.com/t9y6FIo1/wceu-rociovaldivia_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, 27 Feb 2014 06:58:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:120:\"WordPress.tv: Vladimir Prelovac: From plugin developer to running a successful WordPress business: A ManageWP Case Study\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=31499\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:136:\"http://wordpress.tv/2014/02/26/vladimir-prelovac-from-plugin-developer-to-running-a-successful-wordpress-business-a-managewp-case-study/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:708:\"<div id=\"v-ViiIrjfP-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/31499/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/31499/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=31499&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/02/26/vladimir-prelovac-from-plugin-developer-to-running-a-successful-wordpress-business-a-managewp-case-study/\"><img alt=\"wceu-VladimirPrelovac\" src=\"http://videos.videopress.com/ViiIrjfP/wceu-vladimirprelovac_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, 27 Feb 2014 06:11: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: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:101:\"WordPress.tv: Samuel “Otto” Wood: On Internationalization: Plugins and themes for the whole world\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=31490\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"http://wordpress.tv/2014/02/26/samuel-otto-wood-on-internationalization-plugins-and-themes-for-the-whole-world/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:667:\"<div id=\"v-Uxbmfoap-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/31490/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/31490/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=31490&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/02/26/samuel-otto-wood-on-internationalization-plugins-and-themes-for-the-whole-world/\"><img alt=\"wceu-OttoWood\" src=\"http://videos.videopress.com/Uxbmfoap/wceu-ottowood_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, 27 Feb 2014 03:20: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: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:89:\"WPTavern: Theme Foundry Partners With Typekit to Add Commerical Fonts to WordPress Themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=17813\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:222:\"http://wptavern.com/theme-foundry-partners-with-typekit-to-add-commerical-fonts-to-wordpress-themes?utm_source=rss&utm_medium=rss&utm_campaign=theme-foundry-partners-with-typekit-to-add-commerical-fonts-to-wordpress-themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3529:\"<p>When WordPress theme shops build typography options into their themes, they almost universally opt for integrating <a href=\"https://www.google.com/fonts\" target=\"_blank\">Google Fonts</a>. It’s no wonder, given that Google fonts are free, easy to browse and generally fast-loading.</p>\n<p><a href=\"https://thethemefoundry.com/\" target=\"_blank\">The Theme Foundr</a>y is one of the first to step outside the box to integrate commercial fonts into their themes, via a partnership with <a href=\"https://typekit.com/\" target=\"_blank\">Typekit</a>. This is the first case of a theme shop selling a self-hosted WordPress theme that includes Typekit fonts right out of the box.</p>\n<p>While other themes may offer support for Typekit, none have included it within the purchase price of the theme until now. Theme Foundry’s <a href=\"https://thethemefoundry.com/wordpress-themes/oxford/\" target=\"_blank\">Oxford</a> theme is their first product to be bundled with Typekit support.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/02/oxford.jpg\" rel=\"prettyphoto[17813]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/oxford-500x493.jpg\" alt=\"oxford\" width=\"500\" height=\"493\" class=\"aligncenter size-large wp-image-17864\" /></a></p>\n<p>I spoke with Drew Strojny, founder of Theme Foundry, to find out why they sought a partnership with Typekit. He said that it was essentially a matter of providing convenience for the customer. “Asking someone to buy a Typekit subscription to get full value out of their theme isn’t fair,” Strojny said. “So we needed to find a different way.”</p>\n<p>Theme Foundry plans to roll out Typekit fonts across their entire collection over the next few weeks. Strojny said that Google Fonts, which they previously used, could no longer meet their design standards. “<span class=\"pullquote alignleft\">We pride ourselves on world-class design, and not having access to a library of commercial grade fonts was really holding us back</span>,” he said. “Adobe Typekit is the de facto standard for commercial fonts, and we really wanted to keep pushing ahead with better typography and better design.”</p>\n<p>Strojny would not disclose the details of the partnership with Typekit but said that it’s “pretty straightforward and it’s not based on sales or anything like that. Instead, we’re paying for Typekit fonts on behalf of our customers.” This removes the burden of the customer having to maintain his own subscription with Typekit. Instead, Theme Foundry keeps them on the hook with a $39 annual service fee that will allow the customer to continue to use the fonts.</p>\n<p>The technical challenges of integrating Typekit are invisible to the consumer. “As a customer, you just authorize using your Theme Foundry account credentials, and your fonts are turned on,” Strojny explained. “We’re using OAuth 2.0 with <a href=\"https://memberful.com\" target=\"_blank\">Memberful</a> and a custom WordPress plugin to handle all the hard stuff.” Theme Foundry customers who fail to renew will fall back to a predefined set of defaults.</p>\n<p>Theme Foundry is the first to employ a typography service partnership in order to add value to theme club subscriptions. Whereas a customer may not always opt to renew a theme club membership for the sake of support and updates, the notion of preserving the sophistication of the typography used within the themes may be more compelling.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 26 Feb 2014 23:19:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:54:\"WordPress.tv: Andrew Nacin: WordPress 3.7: Foundations\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=31497\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"http://wordpress.tv/2014/02/26/andrew-nacin-wordpress-3-7-foundations/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:622:\"<div id=\"v-AEEFBxGW-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/31497/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/31497/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=31497&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/02/26/andrew-nacin-wordpress-3-7-foundations/\"><img alt=\"wceu-ANacin\" src=\"http://videos.videopress.com/AEEFBxGW/wceu-anacin_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:\"Wed, 26 Feb 2014 22:55: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: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:103:\"WPTavern: WordPress Admin Bookmarks: Quickly Access Frequently Edited Pages, Posts or 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=17841\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:246:\"http://wptavern.com/wordpress-admin-bookmarks-quickly-access-frequently-edited-pages-posts-or-custom-post-types?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-admin-bookmarks-quickly-access-frequently-edited-pages-posts-or-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:3335:\"<p><a title=\"http://wordpress.org/plugins/my-admin-bookmarks/\" href=\"http://wordpress.org/plugins/my-admin-bookmarks/\">Admin Bookmarks</a> developed by <a title=\"http://profiles.wordpress.org/bradvin/\" href=\"http://profiles.wordpress.org/bradvin/\">Brad Vincent</a>, allows you easily bookmark posts, pages and custom post types. This is especially useful if you find yourself repeatedly editing the same pages or posts.</p>\n<p>Upon activation, a new dashicon in the shape of a star will appear next to the title of every <strong>post</strong>, <strong>page</strong>, and <strong>custom post type</strong>. The icon is what’s used to mark items as favorites. <a title=\"http://melchoyce.github.io/dashicons/\" href=\"http://melchoyce.github.io/dashicons/\">Dashicons</a> became a part of WordPress beginning with 3.8. This explains why WordPress 3.8 or above is required to run Admin Bookmarks.</p>\n<div id=\"attachment_17851\" class=\"wp-caption aligncenter\"><a href=\"http://wptavern.com/wp-content/uploads/2014/02/AdminBookmarks1.png\" rel=\"prettyphoto[17841]\"><img class=\"size-large wp-image-17851\" alt=\"Star Dashicon Used To Favorite Things\" src=\"http://wptavern.com/wp-content/uploads/2014/02/AdminBookmarks1-500x411.png\" width=\"500\" height=\"411\" /></a><p class=\"wp-caption-text\">Star Dashicon Used To Favorite Things</p></div>\n<p>When an item is marked as a favorite, a direct link to the item is added to the left hand menu. This helps to quickly find the post instead of having to search for it. By using <a title=\"http://en.wikipedia.org/wiki/Ajax_%28programming%29\" href=\"http://en.wikipedia.org/wiki/Ajax_%28programming%29\">AJAX</a>, the entire page doesn’t have to reload which is an added convenience.</p>\n<div id=\"attachment_17852\" class=\"wp-caption aligncenter\"><a href=\"http://wptavern.com/wp-content/uploads/2014/02/AdminBookmarks2.png\" rel=\"prettyphoto[17841]\"><img class=\"size-large wp-image-17852\" alt=\"Shortcuts To Posts Added To The Left Hand Menu\" src=\"http://wptavern.com/wp-content/uploads/2014/02/AdminBookmarks2-500x193.png\" width=\"500\" height=\"193\" /></a><p class=\"wp-caption-text\">Shortcuts To Posts Added To The Left Hand Menu</p></div>\n<p>Direct links to posts only show up in the left hand menu on the administration page for that item. For example, you won’t see links to favorites on the Appearance page. However, you’ll see them on the All Posts page or the Posts flyout menu. There’s also a dashboard widget with Edit and View links to quickly manage favorites.</p>\n<div id=\"attachment_17853\" class=\"wp-caption aligncenter\"><a href=\"http://wptavern.com/wp-content/uploads/2014/02/AdminBookmarks3.png\" rel=\"prettyphoto[17841]\"><img class=\"size-full wp-image-17853\" alt=\"Admin Bookmarks Dashboard Widget\" src=\"http://wptavern.com/wp-content/uploads/2014/02/AdminBookmarks3.png\" width=\"416\" height=\"245\" /></a><p class=\"wp-caption-text\">Admin Bookmarks Dashboard Widget</p></div>\n<p><a title=\"http://wordpress.org/plugins/my-admin-bookmarks/\" href=\"http://wordpress.org/plugins/my-admin-bookmarks/\">Admin Bookmarks</a> is an example of a great WordPress plugin. It’s simple to install, easy to use, and focuses on solving one problem. If you find yourself constantly having to find the same post or page to edit, give Admin Bookmarks a try and let me know what you think.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 26 Feb 2014 22:07: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: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: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:75:\"WPTavern: Jetpack 2.9 Introduces Multisite Support and Related Posts Module\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=17820\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:194:\"http://wptavern.com/jetpack-2-9-introduces-multisite-support-and-related-posts-module?utm_source=rss&utm_medium=rss&utm_campaign=jetpack-2-9-introduces-multisite-support-and-related-posts-module\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3897:\"<p>Jetpack 2.9 was <a href=\"http://jetpack.me/2014/02/26/jetpack-2-9/\" target=\"_blank\">released</a> today with the long-awaited Related Posts module, which was <a href=\"http://en.blog.wordpress.com/2013/11/11/related/\" target=\"_blank\">introduced on WordPress.com</a> in early November 2013.</p>\n<p>Server resource-intensive features such as stats tracking and related posts are very difficult to accomplish in an efficient way. Jetpack’s new <a href=\"http://jetpack.me/support/related-posts/\" target=\"_blank\">Related Posts</a> module uses WordPress.com resources to do this instead, which is undoubtedly a huge relief to hosting companies who have had to deal with the negative effects of customers using inefficient plugins.</p>\n<p>We’ve turned the module on for the Tavern website, as you can see below this post. When you configure the module, you’ll be presented with the option of using plain text for the related content or a more visually striking display that includes featured images:</p>\n<div id=\"attachment_17826\" class=\"wp-caption aligncenter\"><a href=\"http://wptavern.com/wp-content/uploads/2014/02/configure-related-posts.jpg\" rel=\"prettyphoto[17820]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/configure-related-posts.jpg\" alt=\"Configuration options for related posts module\" width=\"1170\" height=\"382\" class=\"size-full wp-image-17826\" /></a><p class=\"wp-caption-text\">Configuration options for related posts module</p></div>\n<h3>Customizing Related Posts</h3>\n<p>Related content is determined based on the content of the post and any tags or categories applied. The module also supports custom post types in that it defaults to posts of the same post type. This can be changed by using the <a href=\"https://github.com/Automattic/jetpack/blob/05dd3d3922ee9d05d23d1c2a52d36af842c675b6/modules/related-posts/jetpack-related-posts.php#L438\" target=\"_blank\">‘jetpack_relatedposts_filter_post_type’</a> filter.</p>\n<p>Additionally, you can customize this module by creating your own <a href=\"http://wordpress.org/plugins/functionality/\" target=\"_blank\">functionality plugin</a>, the preferred method for extending related posts. The Jetpack docs outline several examples for <a href=\"http://jetpack.me/support/customize-related-posts/\" target=\"_blank\">customizing related content</a> using the available filters. This allows you to easily change the number of related posts, modify where they are displayed, exclude specific posts and more.</p>\n<h3>New Multisite Support</h3>\n<p>Jetpack is now multisite-aware with the added ability to manage all multisite connections in the network admin. Previously, super admins had to manage the connections on an individual site basis, even though Jetpack could be activated network-wide. Network activating Jetpack allows you to administer all your connections from one master account and unlocks a new <strong>Jetpack > Settings</strong> tab in the network admin. This screen allows you to do three things:</p>\n<ul>\n<li>Manage all your sites’ connections</li>\n<li>Control whether individual site admins can reconnect with their own accounts</li>\n<li>Designate which Jetpack modules are activated by default</li>\n</ul>\n<h3>New Options Added to Single Sign On</h3>\n<p>Jetpack 2.9 gives site administrators a new whip to crack in order to ensure a higher level of security. Site admins using the <a href=\"http://jetpack.me/support/sso/\" target=\"_blank\">Single Sign On module</a> now have the option to require users to have two-step authentication enabled on their WordPress.com account before they are allowed to log in.</p>\n<p>This release also offers new shortcodes and oEmbed capabilities for Mixcloud and Gist content. For a full list of all the enhancements and bug fixes in 2.9, check out the Jetpack <a href=\"http://wordpress.org/plugins/jetpack/changelog/\" target=\"_blank\">changelog</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 26 Feb 2014 21:14:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:77:\"WPTavern: This Week On WPWeekly: Dre Armeda and Tony Perez of Sucuri 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:28:\"http://wptavern.com/?p=17773\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:196:\"http://wptavern.com/this-week-on-wpweekly-dre-armeda-and-tony-perez-of-sucuri-security?utm_source=rss&utm_medium=rss&utm_campaign=this-week-on-wpweekly-dre-armeda-and-tony-perez-of-sucuri-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3327:\"<p><a href=\"http://wptavern.com/wp-content/uploads/2011/11/sucurilogo.png\" rel=\"prettyphoto[17773]\"><img src=\"http://wptavern.com/wp-content/uploads/2011/11/sucurilogo.png\" alt=\"SucuriLogo\" width=\"100\" height=\"34\" class=\"alignright size-full wp-image-5763\" /></a>Tony Perez and Dre Armeda of <a href=\"http://sucuri.net/\" title=\"http://sucuri.net/\">Sucuri Security</a> will be our special guests on this weeks edition of WordPress Weekly. We’ll spend the majority of the episode talking about WordPress security and what users can do to protect themselves against the bad guys. We’ll also figure out why the company was founded and what trends they’ve noticed over the past year when it comes to attacks on sites powered by WordPress.</p>\n<p>I asked Perez to come up with three areas that website owners need to pay particular attention to. He responded with <strong>access control</strong>, <strong>software vulnerabilities</strong>, and <strong>layered defenses</strong>.</p>\n<p><strong>Access Control</strong> – There are two key issues in today’s attack. Access and vulnerabilities. For the everyday website owner, access is by far the most important to me. We are seeing too many attacks exploiting weak credentials, leaving website owners vulnerable to attacks. It’s why we continue to see a spike in Brute Force attacks.</p>\n<p><strong>Software Vulnerabilities</strong> – This one isn’t as actionable as access control for most website owners which is why it’s second to me. Today’s website owners are not developers, they are your uncles, moms and dads, starting online businesses or learning to write about their daily experiences. Either way, many are not technical, leaving them susceptible to the world of vulnerabilities. Untrusted sources continue to be leveraged, attackers continue to find ways to circumvent systems in place to keep users safe, and this has the potential to be catastrophic for website owners.</p>\n<p>It’s time website owners start looking beyond their existing plugin architectures and start leveraging Software as a Service based services that provide them a perimeter defense, or website firewall. Every network has it, every desktop should have one, and every website will require it in the future.</p>\n<p><strong>Layered Defenses</strong> – We have learned from our desktop and network predecessors, and we do this by thinking in the form of layers. Too many website owners are looking for one solution that will cure all its problems, but the problem is too big for that. They have been putting controls and layers in place that keep them in tune with what is going on with their website. Who is logging in? Who is changing what? Are things changing? Should they be? Website owners have to learn how to administer their website again. This idea of “<em>set and forget</em>” is harming us as much as it is helping.</p>\n<h3>Leave Your Questions In The Comments</h3>\n<p>This is a small sample of what we’ll be discussing this <a href=\"http://wptavern.com/wordpress-weekly\" title=\"http://wptavern.com/wordpress-weekly\">Friday at 3P.M. Eastern</a>. If you have any questions about Sucuri or WordPress security in general, leave them in the comments and we’ll ask them near the end of the show.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 26 Feb 2014 19:06: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: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:64:\"WPTavern: WordPress.org Profiles On Track to Be Totally Revamped\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=17755\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/wordpress-org-profiles-on-track-to-be-totally-revamped?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-org-profiles-on-track-to-be-totally-revamped\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4365:\"<div id=\"attachment_17801\" class=\"wp-caption aligncenter\"><a href=\"http://wptavern.com/wordpress-org-profiles-on-track-to-be-totally-revamped/wordpress-swag\" rel=\"attachment wp-att-17801\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/wordpress-swag.jpg\" alt=\"photo credit: Huasonic - cc\" width=\"1024\" height=\"441\" class=\"size-full wp-image-17801\" /></a><p class=\"wp-caption-text\">photo credit: <a href=\"http://www.flickr.com/photos/huasonic/3008912290/\">Huasonic</a> – <a href=\"http://creativecommons.org/licenses/by-nc/2.0/\">cc</a></p></div>\n<p>WordPress.org profiles are set to get a revamp in the very near future. Jen Mylo <a href=\"http://make.wordpress.org/community/2014/02/25/profiles-how-do-you-use-them-or-want-to/\" target=\"_blank\">posted</a> yeseterday, asking for thoughts and ideas about what to incorporate into the new profiles. She will be working with Mel Choyce to design a new UI for the profile data.</p>\n<p>Mylo also initiated an <a href=\"http://make.wordpress.org/community/2014/02/23/past-wordcamp-organizers-help/\" target=\"_blank\">effort</a> to get speaker information from past WordCamp organizers as part of the plan is to bring in data from a user’s involvement in WordPress activities outside of WordPress.org. One of the biggest challenges, however, is ensuring that the profiles will be attractive for all users, including those with very little activity.</p>\n<h3>More User Data to Be Added to the Activity Stream</h3>\n<p>The current profiles on WordPress.org track support forum topics, ideas, and various activities related to Trac. The team plans to add the following additions:</p>\n<ul>\n<li>International Forums – new topic or reply (for poster)</li>\n<li>Plugins Directory – released a new plugin (for plugin author)</li>\n<li>Themes Directory – released a new theme (for theme author)</li>\n<li>Make P2s – newly published post (for post author)</li>\n<li>Make P2s – new comment (for commenter)</li>\n<li>Trac – new comment (for commenter)</li>\n<li>Trac – new props (for user getting prop’d)</li>\n<li>WordCamps – new speaker added</li>\n<li>WordCamps – new organizer added</li>\n</ul>\n<p><a href=\"http://wptavern.com/wordpress-org-profiles-on-track-to-be-totally-revamped/profiles-sketch\" rel=\"attachment wp-att-17789\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/profiles-sketch-272x300.png\" alt=\"profiles-sketch\" width=\"272\" height=\"300\" class=\"alignright size-medium wp-image-17789\" /></a>The updated activity stream should be in place soon. Mylo floated <a href=\"http://make.wordpress.org/community/2014/02/26/profiles-a-sketch/\" target=\"_blank\">a working sketch</a> earlier today to illustrate some of the ideas they’ve been discussing. She emphasized that the changes to profiles are likely to be added over several iterations.</p>\n<p>Ultimately, the team plans to merge the new WordPress.org profiles with the forums profiles, but this will probably be completed further down the road.</p>\n<h3>Your WordPress Resume and Dashboard</h3>\n<p>The feedback on Mylo’s <a href=\"http://make.wordpress.org/community/2014/02/25/profiles-how-do-you-use-them-or-want-to/\" target=\"_blank\">post</a> regarding how people use their WordPress.org profiles indicates that contributors want to be able to easily find trac tickets and conversations they’re involved in. Others commented that contact information and contributions such as plugins and themes are high on the list of items they look for when viewing a person’s profile.</p>\n<p>“The way I’m looking at profiles from a UX perspective is that for a visitor, the profile serves as someone’s WP resume,” Mylo said. “While for the profile owner, it serves as the dashboard for their involvement in the open source project.”</p>\n<p>In the past, many people haven’t bothered to use or update their WordPress.org profiles, perhaps due to the lack of relevant information displayed about user activities. The planned changes will make WordPress.org profiles the go-to place for finding out about someone’s interactions and contributions to the WordPress project. If you’re looking to hire a WordPress professional who has a history of contributing back, the new WordPress.org profiles will soon be the best representation of a person’s involvement with 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, 26 Feb 2014 17:37: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: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:56:\"WordPress.tv: Panel: The State of Multilingual 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=31477\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/02/25/panel-the-state-of-multilingual-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:691:\"<div id=\"v-34ta7rDB-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/31477/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/31477/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=31477&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/02/25/panel-the-state-of-multilingual-wordpress/\"><img alt=\"wceu – The State of Multilingual WordPress\" src=\"http://videos.videopress.com/34ta7rDB/wceu-the-state-of-multilingual-wordpress_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:\"Wed, 26 Feb 2014 06:11:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"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:17;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"WPTavern: Quickly Navigate The WordPress Backend With WP Hotkeys\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=17713\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/quickly-navigate-the-wordpress-backend-with-wp-hotkeys?utm_source=rss&utm_medium=rss&utm_campaign=quickly-navigate-the-wordpress-backend-with-wp-hotkeys\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3094:\"<p><a title=\"http://wordpress.org/plugins/wp-hotkeys/\" href=\"http://wordpress.org/plugins/wp-hotkeys/\"><a href=\"http://wptavern.com/wp-content/uploads/2014/02/WPHotkeys1.png\" rel=\"prettyphoto[17713]\"><img class=\"alignright size-full wp-image-17765\" alt=\"WP hot Keys 1\" src=\"http://wptavern.com/wp-content/uploads/2014/02/WPHotkeys1.png\" width=\"145\" height=\"140\" /></a>WP Hotkeys</a> is a plugin developed by <a href=\"http://profiles.wordpress.org/mcguive7/\">McGuive7</a> and <a href=\"http://profiles.wordpress.org/mightyminnow/\">MIGHTYminnow</a> that adds the ability to navigate the backend of WordPress with just a keyboard using shortcuts. The plugin works out of the box with a predefined set of hotkeys for each standard dashboard menu item. If you don’t want to see the shortcut helpers in the menu, you can disable them from the settings page. You can also change existing hotkeys or create new ones.</p>\n<div id=\"attachment_17766\" class=\"wp-caption aligncenter\"><a href=\"http://wptavern.com/wp-content/uploads/2014/02/WPHotkeys2.png\" rel=\"prettyphoto[17713]\"><img class=\"size-large wp-image-17766\" alt=\"WP Hotkeys Settings Page\" src=\"http://wptavern.com/wp-content/uploads/2014/02/WPHotkeys2-500x427.png\" width=\"500\" height=\"427\" /></a><p class=\"wp-caption-text\">WP Hotkeys Settings Page</p></div>\n<p>This is a brand new plugin so don’t be surprised if you encounter an issue or two. I discovered a few bugs during testing but they were quickly fixed after reporting them.</p>\n<h3>Built-in Keyboard Shortcuts For Comment Moderation</h3>\n<p>Starting with <a title=\"https://codex.wordpress.org/Version_2.7\" href=\"https://codex.wordpress.org/Version_2.7\">2.7</a>, WordPress ships with <a title=\"https://codex.wordpress.org/Keyboard_Shortcuts\" href=\"https://codex.wordpress.org/Keyboard_Shortcuts\">built-in keyboard shortcuts</a> to moderate comments. In order to use them, you’ll need to browse to <strong>Users > Your Profile.</strong> Make sure the box for ‘<em>Enable keyboard shortcuts for comment moderation.</em>‘ is checked.</p>\n<div id=\"attachment_17769\" class=\"wp-caption aligncenter\"><a href=\"http://wptavern.com/wp-content/uploads/2014/02/CommentingKeyboardShortcuts.png\" rel=\"prettyphoto[17713]\"><img class=\"size-large wp-image-17769\" alt=\"Check The Box To Enable Keyboard Shortcuts\" src=\"http://wptavern.com/wp-content/uploads/2014/02/CommentingKeyboardShortcuts-500x30.png\" width=\"500\" height=\"30\" /></a><p class=\"wp-caption-text\">Check The Box To Enable Keyboard Shortcuts</p></div>\n<p>At this time, WordPress does not have a standard set of keyboard shortcuts for navigating the rest of the backend.</p>\n<h3>Conclusion:</h3>\n<p>Navigating through the WordPress administration area with the keyboard was a lot faster and more convenient than using the mouse. Pressing the wrong key and loading the wrong page induced panic. That’s when the mouse came in handy to browse back a page. I doubt there is a faster way to get to where you’re going in the backend of WordPress so long as you can remember the key combinations.</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, 25 Feb 2014 22: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:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"WordPress.tv: Frederick Townes: Business Optimization\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=31475\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"http://wordpress.tv/2014/02/25/frederick-townes-business-optimization-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:642:\"<div id=\"v-PawNpafO-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/31475/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/31475/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=31475&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/02/25/frederick-townes-business-optimization-2/\"><img alt=\"wceu-FrederickTownes\" src=\"http://videos.videopress.com/PawNpafO/wceu-fredericktownes_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:\"Tue, 25 Feb 2014 22:15: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: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:19;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"WPTavern: Manchester to Host Its First WordPress Contributor Day March 1st\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=17651\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:192:\"http://wptavern.com/manchester-to-host-its-first-wordpress-contributor-day-march-1st?utm_source=rss&utm_medium=rss&utm_campaign=manchester-to-host-its-first-wordpress-contributor-day-march-1st\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3026:\"<p><a href=\"http://wptavern.com/manchester-to-host-its-first-wordpress-contributor-day-march-1st/wpcontributorday\" rel=\"attachment wp-att-17655\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/wpcontributorday.png\" alt=\"wpcontributorday\" width=\"290\" height=\"428\" class=\"alignright size-full wp-image-17655\" /></a><a href=\"http://www.wpcontributorday.com/\" target=\"_blank\">WP Contributor Day</a> is a new WordPress event that is coming up this weekend. It will be held Saturday, March 1st, 2014, in Manchester, England from 10:00 – 18:00. The goal is to have eight solid hours of contributors working together to improve WordPress.</p>\n<p>Jenny Wong, the organizer of the event, regularly attends the WordPress user group in Manchester, which is led by Mike Little. Wong’s first contributor day experience happened at WordCamp London 2013. She enjoyed it so much that she spoke with Little about hosting a contributor day in Manchester. He loved idea and the event started to take shape.</p>\n<p>WP Contributor Day will have several experts on hand to help new contributors find their niches. Mike Little will be available to help with core contributions. Graham Armfield will assist with accessibility contributions and Noel Tock will be on hand for BuddyPress. Wong hopes to add more current contributors to help lead groups for the event, ideally, those who have experience contributing in themes, plugins, support and documentation.</p>\n<p><strong>“My hope is to remove the fear for newcomers who want to take the plunge to contribute to the WordPress project,”</strong> Wong said, explaining her vision for the event. She hopes that the experience will help new contributors to gain confidence in contributing back to the project.</p>\n<p>“For current contributors, I hope the event allows them to take a block of time from their busy lives and concentrate on one task,” she said. “I know from personal experience it sometimes takes an event for you to book time to do something you have been meaning to do.”</p>\n<p>They aim to keep the first Manchester Contributor Day event simple and learn from it before planning more. Wong hopes that in the future other WordPress user groups will set up their own contributor days and she is happy to promote them all on the WP Contributor Day site.</p>\n<p>“It would be super cool to have them on the same day / week to make it a global event similar to Start Up Weekend,” she said. “But that involves a lot of logistics. The bottom line is that this is a project which will grow organically and we’ll see where it takes us.”</p>\n<p>If you’d like to participate in the WordPress Contributor Day event in Manchester this weekend, sign up for a free ticket on the <a href=\"http://www.wpcontributorday.com/\" target=\"_blank\">website</a>. Current contributors who can help lead a group are encouraged to get in touch with <a href=\"https://twitter.com/miss_jwo\" target=\"_blank\">Jenny Wong</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 25 Feb 2014 19:04:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:64:\"WordPress.tv: David Coveney: Unlocking Enterprise 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=31473\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"http://wordpress.tv/2014/02/25/david-coveney-unlocking-enterprise-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:718:\"<div id=\"v-NaNwzJww-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/31473/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/31473/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=31473&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/02/25/david-coveney-unlocking-enterprise-with-wordpress/\"><img alt=\"wceu-Unlocking Enterprise with WordPress- Dave Coveney\" src=\"http://videos.videopress.com/NaNwzJww/wceu-unlocking-enterprise-with-wordpress-dave-coveney_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:\"Tue, 25 Feb 2014 18:11:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:72:\"WordPress.tv: Kim Gjerstad: Is the Freemium Model Right for Your Plugin?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=31471\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"http://wordpress.tv/2014/02/25/kim-gjerstad-is-the-freemium-model-right-for-your-plugin/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:662:\"<div id=\"v-eXtoTG8d-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/31471/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/31471/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=31471&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/02/25/kim-gjerstad-is-the-freemium-model-right-for-your-plugin/\"><img alt=\"wceu – Kim Gjerstad1\" src=\"http://videos.videopress.com/eXtoTG8d/wceu-kim-gjerstad1_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:\"Tue, 25 Feb 2014 16:09:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:70:\"WPTavern: Quickly Setup A WordPress Testing Environment With InstantWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=17514\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:184:\"http://wptavern.com/quickly-setup-a-wordpress-testing-environment-with-instantwp?utm_source=rss&utm_medium=rss&utm_campaign=quickly-setup-a-wordpress-testing-environment-with-instantwp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3229:\"<p><a title=\"http://www.instantwp.com/\" href=\"http://www.instantwp.com/\">InstantWP</a> is a free tool used to quickly and easily create a WordPress testing environment. It ships with everything you need to get a local install of WordPress up and running. Apache, PHP, MySQL, and WordPress 3.6 are prepackaged.</p>\n<p>You may be wondering why WordPress 3.6 is installed and not the latest version. Seamus Brady, developer of InstantWP, told me he keeps it a few versions behind since people use it to test upgrades. Upgrading to the latest version is accomplished from the backend of WordPress.</p>\n<div id=\"attachment_17650\" class=\"wp-caption aligncenter\"><a href=\"http://wptavern.com/wp-content/uploads/2014/02/InstantWPControlPanel.png\" rel=\"prettyphoto[17514]\"><img class=\"size-large wp-image-17650\" alt=\"Control Panel After Installation\" src=\"http://wptavern.com/wp-content/uploads/2014/02/InstantWPControlPanel-500x294.png\" width=\"500\" height=\"294\" /></a><p class=\"wp-caption-text\">Control Panel After Installation</p></div>\n<p>While InstantWP is compatible with Windows based machines, it doesn’t work on Macs and doesn’t support WordPress multisite. However, the software is portable as you can install and run it from a USB thumbdrive. I use <a title=\"http://www.wampserver.com/en/\" href=\"http://www.wampserver.com/en/\">WampServer</a> to handle my local WordPress install but InstantWP was faster to use. I didn’t have to create a database, administrator account or password. You can only run one instance of the software at a time. Creating a second test site is as simple as installing InstantWP into a different folder.</p>\n<p>It also comes with a set of demo content that comes in handy for testing plugins and themes.</p>\n<div id=\"attachment_17659\" class=\"wp-caption aligncenter\"><a href=\"http://wptavern.com/wp-content/uploads/2014/02/InstantWPTestSite.png\" rel=\"prettyphoto[17514]\"><img class=\"size-large wp-image-17659\" alt=\"Dummy Content Already In Place\" src=\"http://wptavern.com/wp-content/uploads/2014/02/InstantWPTestSite-500x401.png\" width=\"500\" height=\"401\" /></a><p class=\"wp-caption-text\">Dummy Content Already In Place</p></div>\n<p>Don’t mind the WordPress fauxgo in the dummy content. I’ve already notified Seamus and referred him to <a title=\"http://wordpress.org/about/logos/\" href=\"http://wordpress.org/about/logos/\">the proper logo</a> to use.</p>\n<h3>InstantWP Is Almost Instant</h3>\n<p><a title=\"http://wptavern.com/serverpress-a-quick-and-easy-way-to-create-local-wordpress-installs\" href=\"http://wptavern.com/serverpress-a-quick-and-easy-way-to-create-local-wordpress-installs\">ServerPress</a> which we covered a few months ago has more features and is cross-platform compatible but in terms of speed, InstantWP is close to living up to its name. It’s easier than installing WampServer or a different <a title=\"http://en.wikipedia.org/wiki/LAMP_%28software_bundle%29\" href=\"http://en.wikipedia.org/wiki/LAMP_%28software_bundle%29\">LAMP package</a>. If you primarily use Windows and just need a quick testing environment for WordPress, I recommend adding <a title=\"http://www.instantwp.com\" href=\"http://www.instantwp.com\">InstantWP</a> to your tool belt.</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, 25 Feb 2014 14:00:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"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: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:70:\"WPTavern: How to Add Subscript and Superscript Characters 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://wptavern.com/?p=17707\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:184:\"http://wptavern.com/how-to-add-subscript-and-superscript-characters-in-wordpress?utm_source=rss&utm_medium=rss&utm_campaign=how-to-add-subscript-and-superscript-characters-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:3554:\"<div id=\"attachment_17740\" class=\"wp-caption aligncenter\"><a href=\"http://wptavern.com/how-to-add-subscript-and-superscript-characters-in-wordpress/superscript-featured\" rel=\"attachment wp-att-17740\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/superscript-featured.jpg\" alt=\"photo credit: Lori Greig - cc\" width=\"1019\" height=\"554\" class=\"size-full wp-image-17740\" /></a><p class=\"wp-caption-text\">photo credit: <a href=\"http://www.flickr.com/photos/lori_greig/851696377/\">Lori Greig</a> – <a href=\"http://creativecommons.org/licenses/by-nc-nd/2.0/\">cc</a></p></div>\n<p>Did you know that WordPress has built-in support for <a href=\"http://en.wikipedia.org/wiki/Subscript_and_superscript\" target=\"_blank\">subscript and superscript</a> characters? This information is not easy to find, as it’s tucked away under the <a href=\"https://codex.wordpress.org/Help:Editing\" target=\"_blank\">Editing Help</a> page in the codex.</p>\n<p>Although the WordPress editor doesn’t show subscript and superscript buttons, you can add these characters anytime using the sub or sup tags. For example, to display H<sub>2</sub>0, you would write it like this:</p>\n<pre class=\"brush: php; light: true; title: ; notranslate\">H<sub>2</sub>0</pre>\n<p>Superscript characters can be added like this:</p>\n<pre class=\"brush: php; light: true; title: ; notranslate\">My reference<sup>1</sup></pre>\n<p>That above example would display: My reference<sup>1</sup></p>\n<h3>Add Subscript and Superscript Buttons to the Visual Editor</h3>\n<p>There are many TinyMCE buttons that are disabled by default so as not to clutter up the WordPress editor with buttons that most people rarely use. If you find that you often need to add characters above or below the normal line of type, you may want to consider adding the Subscript and Superscript buttons to the visual editor for your own convenience.</p>\n<p>The WordPress codex section on <a href=\"http://codex.wordpress.org/TinyMCE_Custom_Buttons#Enabling_hidden_MCE_buttons\" target=\"_blank\">enabling hidden MCE buttons</a>, which demonstrates how to filter the button list. You can create a quick functionality plugin using the snippet below:</p>\n<pre class=\"brush: php; title: ; notranslate\">function my_mce_buttons_2($buttons) { \n /**\n * Add in a core button that\'s disabled by default\n */\n $buttons[] = \'sup\';\n $buttons[] = \'sub\';\n\n return $buttons;\n}\nadd_filter(\'mce_buttons_2\', \'my_mce_buttons_2\');</pre>\n<p>Filtering mce_buttons_2 will add the buttons to the second line in the visual editor. Filtering mce_buttons_3 will display the added buttons on a third line.</p>\n<p><a href=\"http://wptavern.com/how-to-add-subscript-and-superscript-characters-in-wordpress/new-buttons\" rel=\"attachment wp-att-17733\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/new-buttons.png\" alt=\"new-buttons\" width=\"1309\" height=\"217\" class=\"aligncenter size-full wp-image-17733\" /></a></p>\n<p>For more technical writing that goes beyond basic subscript and superscript characters, you may need to employ an additional tool such as the open source <a href=\"http://www.latex-project.org/guides/\" target=\"_blank\">LaTeX</a> typesetting system. LaTeX makes it possible to post complex scientific and mathematical equations. Jetpack includes a <a href=\"http://jetpack.me/support/beautiful-math-with-latex/\" target=\"_blank\">LaTeX module</a> and the WordPress Plugin Directory also has a wide <a href=\"http://wordpress.org/plugins/search.php?q=LaTeX\" target=\"_blank\">assortment of LaTeX plugins</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 25 Feb 2014 13:01:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:73:\"WPTavern: Hexa: A Free Colorful WordPress Theme Highlighting Post Formats\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=17636\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:188:\"http://wptavern.com/hexa-a-free-colorful-wordpress-theme-highlighting-post-formats?utm_source=rss&utm_medium=rss&utm_campaign=hexa-a-free-colorful-wordpress-theme-highlighting-post-formats\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3547:\"<p>The latest trend in WordPress blogging themes is to put post formats on center stage with a colorful palette selected to highlight the variety of content. <a href=\"http://wordpress.org/themes/hex\" target=\"_blank\">Hexa</a> is a beautiful new example of this trend in action. The theme <a href=\"https://en.blog.wordpress.com/2014/02/18/tuned-balloon-yumblog-lens-hexa-singl-hm-magazine/\" target=\"_blank\">launched</a> last week on WordPress.com and hit WordPress.org over the weekend.</p>\n<p><a href=\"http://wptavern.com/hexa-a-free-colorful-wordpress-theme-highlighting-post-formats/hexa\" rel=\"attachment wp-att-17642\"><img class=\"aligncenter size-full wp-image-17642\" alt=\"hexa\" src=\"http://wptavern.com/wp-content/uploads/2014/02/hexa.png\" width=\"1024\" height=\"768\" /></a></p>\n<p>Named for the geometric shapes used throughout the theme, Hexa connects each post to the next with a colorful line extending from the hexagonal icon designated for each. This bright, geometric design is perfect for crystallizing your thoughts into structured posts.</p>\n<h3>Big Featured Images</h3>\n<p><a href=\"http://wptavern.com/hexa-a-free-colorful-wordpress-theme-highlighting-post-formats/hexa-featured\" rel=\"attachment wp-att-17678\"><img class=\"alignright size-full wp-image-17678\" alt=\"hexa-featured\" src=\"http://wptavern.com/wp-content/uploads/2014/02/hexa-featured.png\" width=\"300\" height=\"270\" /></a>One of the distinguishing features of this design is the large (842 pixels wide) featured image area above posts, as seen on the index and archive pages.</p>\n<p>If you’re switching to Hexa, appropriately-sized featured images are something important to consider. However, you can always <a href=\"http://wordpress.org/plugins/regenerate-thumbnails/\" target=\"_blank\">regenerate thumbnails</a>.</p>\n<h3>Hidden Extras</h3>\n<p><a href=\"http://wptavern.com/hexa-a-free-colorful-wordpress-theme-highlighting-post-formats/widget-areas\" rel=\"attachment wp-att-17681\"><img class=\"alignleft size-medium wp-image-17681\" alt=\"widget-areas\" src=\"http://wptavern.com/wp-content/uploads/2014/02/widget-areas-300x238.png\" width=\"300\" height=\"238\" /></a></p>\n<p>Hexa keeps its three widget areas neatly out of sight with a unique pull down section, activated by the corresponding icon in the header.</p>\n<p>The icon menu in the header also pulls down a hidden search bar, navigation and social icons. Anything peripheral to the content is kept out of sight unless opened by the visitor.</p>\n<h3>Custom Header, Background and Menu</h3>\n<p>Hexa’s customization options are built into WordPress’ native customizer. You can add your own header or background image. The theme has support for one custom menu and its design matches the color palette:</p>\n<p><a href=\"http://wptavern.com/hexa-a-free-colorful-wordpress-theme-highlighting-post-formats/hexa-menu-2\" rel=\"attachment wp-att-17698\"><img class=\"aligncenter size-full wp-image-17698\" alt=\"hexa-menu\" src=\"http://wptavern.com/wp-content/uploads/2014/02/hexa-menu.jpg\" width=\"837\" height=\"360\" /></a></p>\n<p>Check out the <a href=\"http://hexademo.wordpress.com/\">Hexa demo</a> to see this theme in action. Self-hosted WordPress sites can <a href=\"http://wordpress.org/themes/hex\" target=\"_blank\">download Hexa</a> for free via the “Add New” theme menu. If you like Hexa, you may also be interested in <a href=\"http://wptavern.com/sorbet-a-free-wordpress-theme-from-automattic\" target=\"_blank\">Sorbet</a>, another theme with a similar structure for widgets, post formats and social links.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 24 Feb 2014 23:14:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:48:\"WordPress.tv: Hanni Ros: Being Part of 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=31484\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/02/24/hanni-ros-being-part-of-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:689:\"<div id=\"v-7vk9HmrD-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/31484/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/31484/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=31484&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/02/24/hanni-ros-being-part-of-wordpress/\"><img alt=\"wceu – Being Part of WordPress – Hanni Ross\" src=\"http://videos.videopress.com/7vk9HmrD/wceu-being-part-of-wordpress-hanni-ross_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, 24 Feb 2014 18:11: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: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:23:\"Matt: WhatsApp Takeaway\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=43494\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"http://ma.tt/2014/02/whatsapp-takeaway/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3310:\"<p><img class=\"alignright size-thumbnail wp-image-43496\" src=\"http://i2.wp.com/s.ma.tt/files/2014/02/whatsapp.png?resize=195%2C195\" alt=\"whatsapp\" />For better or worse, a great deal of investment in technology is driven by <a href=\"http://cdixon.org/2012/03/07/the-problem-with-investing-based-on-pattern-recognition/\">pattern matching</a>. In that world any company (including <a href=\"http://automattic.com/\">Automattic</a>) that generally eschews hype, is largely subscription driven, and has a small number of employees relative to its audience should be thrilled at the <a href=\"http://recode.net/2014/02/19/facebook-price-for-having-no-phone-os-19-billion-a-must-have-apps-play-priceless/\">19 billion dollar acquisition of WhatsApp</a>. The deal is incredible.</p>\n<p>This has kicked off another round of pattern matching and <a href=\"http://www.economist.com/node/14299211\">halo effects</a>, which are currently incredibly favorable but will evolve over the coming years based on how things go post-integration, just like the public perceptions of Geocities, Youtube, Doubleclick, Bebo, and Skype wildly shifted based largely on the press coverage over their latest traded value.</p>\n<p>I’m thrilled with the outcome for <a href=\"http://www.whatsapp.com/\">WhatsApp</a> and the manner in which they built their company, their product, and I hope they bring more of that thinking to Facebook, but I don’t think they should become a playbook any more than Instagram should inspire a no-revenue playbook. The pattern we should take away from this story is that <strong>there is no pattern</strong>. (In Perl, “<a href=\"http://www.perl.com/pub/1999/03/pm.html\">there’s more than one way to do it</a>” or <a href=\"http://en.wikipedia.org/wiki/There\'s_more_than_one_way_to_do_it\">Tim Toady</a>.) As an entrepreneur making decisions for your company, always go back to your first principles of what’s important to you and why you started in the first place. As a journalist, try not to fit everyone into arcs you’ve seen before or ascribe value to previous coverage (or lack of coverage). As an investor try to evaluate every situation on its unique merits. Should founders be CEOs or not? Well, it depends on the founders, the company, and what it means to be CEO, not what an over-normalized sample of a few hundred companies did before in completely different contexts.</p>\n<p>There are also products that succeed with design that seems childish or terrible on the surface (Myspace, eBay, Snapchat). A lot of what it comes down to is <a href=\"http://paulgraham.com/good.html\">have you made something people want</a>, and are they finding out about it from their friends. That’s often the realm people think of as marketing. The best marketers in the world don’t fit our preconceptions of what that word means because they’re in hoodies instead of suits and create environments and ecosystems rather than the traditional trappings of marketing.</p>\n<p><ins datetime=\"2014-02-24T19:09:19+00:00\">Update: From <a href=\"https://twitter.com/dsa\">@dsa</a>, here’s a great follow-up read on Techcrunch: <a href=\"http://techcrunch.com/2014/02/02/flappy-bird-patterns-and-context/\">What Games Are: Flappy Bird, Patterns, And Context</a>.</ins></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 24 Feb 2014 17:52: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: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: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:76:\"WPTavern: Graph Paper Press Offers Customers WordPress Child Theme Generator\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=17549&preview_id=17549\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:196:\"http://wptavern.com/graph-paper-press-offers-customers-wordpress-child-theme-generator?utm_source=rss&utm_medium=rss&utm_campaign=graph-paper-press-offers-customers-wordpress-child-theme-generator\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4700:\"<p>A child theme is defined in the <a title=\"https://codex.wordpress.org/Child_Themes\" href=\"https://codex.wordpress.org/Child_Themes\">WordPress codex</a> as a theme that inherits the functionality of another theme, called the parent theme. Child themes allow you to modify, or add to the functionality of that parent theme. A child theme is the safest and easiest way to modify an existing theme, whether you want to make a few tiny changes or extensive changes. Instead of modifying the theme files directly, you can create a child theme and override within.</p>\n<div id=\"attachment_17585\" class=\"wp-caption aligncenter\"><a href=\"http://wptavern.com/wp-content/uploads/2014/02/ChildThemeGeneratorFeaturedImage.png\" rel=\"prettyphoto[17549]\"><img class=\"size-large wp-image-17585\" alt=\"Child theme Generator Featured Image\" src=\"http://wptavern.com/wp-content/uploads/2014/02/ChildThemeGeneratorFeaturedImage-500x189.png\" width=\"500\" height=\"189\" /></a><p class=\"wp-caption-text\">photo credit: <a href=\"http://www.flickr.com/photos/tambako/3103173930/\">Tambako the Jaguar</a> – <a href=\"http://creativecommons.org/licenses/by-nd/2.0/\">cc</a></p></div>\n<p>Graph Paper Press has created a WordPress <a title=\"https://graphpaperpress.com/blog/wordpress-child-theme-generator-intro/\" href=\"https://graphpaperpress.com/blog/wordpress-child-theme-generator-intro/\">child theme generator</a> for their customers. Unfortunately, too many people make changes to their theme without using the child theme technique. If the theme is upgraded, the changes are usually lost. Graph Paper Press has an excellent explanation on why using child themes is important.</p>\n<blockquote><p>But Jake had spent hours and hours customizing the theme he downloaded and upgrading to the latest version would wipe out all of his changes.</p>\n<p>Jake was stuck. He could either upgrade his theme to the new version so he could take advantage of all the new features or stick with his older customized version. That’s not a place we want anyone to be in.</p></blockquote>\n<p>I’ve seen a lot of theme companies provide documentation explaining to customers how to create a child theme. Graph Paper Press on the other hand is the first company I’ve seen create a generator for their customers to use. This greatly decreases the chance a customer will create the child theme in the wrong way or place the files in the wrong location.</p>\n<p>To use <a title=\"http://graphpaperpress.com/wordpress-child-theme-generator/\" href=\"http://graphpaperpress.com/wordpress-child-theme-generator/\">the generator</a>, customers put the child theme name into the appropriate field and then select the parent theme. The advanced options show fields to add an author name, author URI, and a description. Once the fields have been filled, click the generate button. This produces a zip file to download.</p>\n<div id=\"attachment_17584\" class=\"wp-caption aligncenter\"><a href=\"http://wptavern.com/wp-content/uploads/2014/02/GraphPaperPressGenerator1.png\" rel=\"prettyphoto[17549]\"><img class=\"size-large wp-image-17584\" alt=\"Step One Of The Generator\" src=\"http://wptavern.com/wp-content/uploads/2014/02/GraphPaperPressGenerator1-500x282.png\" width=\"500\" height=\"282\" /></a><p class=\"wp-caption-text\">Step One Of The Generator</p></div>\n<p>The zip file contains a properly formatted <strong>style.css</strong> and <strong>functions.php</strong> file based on the names provided in the generator. CSS code added to the style.css file will override any styles defined within the parent theme. You can also add template files from the parent theme such as <strong>home.php</strong> and tweak them to your liking. Once you’re satisfied with the changes, upload and activate the theme in WordPress as you would with any other theme.</p>\n<h3>The Beginning Of A Trend?</h3>\n<p>Child themes are an easy way to make changes to themes without having to worry them being lost if the parent theme needs to be upgraded. They’re also a great way to organize changes made to a parent theme. This is a great move by Graph Paper Press and is something I’d like to see become standard with other commercial theme shops.</p>\n<p>Child plugins work on the same concept but are created and implemented differently. <a title=\"http://wptavern.com/how-to-extend-a-wordpress-plugin-without-losing-your-changes\" href=\"http://wptavern.com/how-to-extend-a-wordpress-plugin-without-losing-your-changes\">Read our guide</a> to learn how to create a child plugin.</p>\n<p><strong>Do you know of other commercial WordPress theme companies that offer their customers a child theme generator? If so, let me know about them in the comments.</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:\"Mon, 24 Feb 2014 17:00:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:76:\"WPTavern: Give All Editors In WordPress A New Look With The WP Editor Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=17522\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:196:\"http://wptavern.com/give-all-editors-in-wordpress-a-new-look-with-the-wp-editor-plugin?utm_source=rss&utm_medium=rss&utm_campaign=give-all-editors-in-wordpress-a-new-look-with-the-wp-editor-plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4874:\"<p><a title=\"http://wordpress.org/plugins/wp-editor/\" href=\"http://wordpress.org/plugins/wp-editor/\">WP Editor</a> is a free WordPress plugin developed by <a title=\"http://profiles.wordpress.org/benjaminprojas/\" href=\"http://profiles.wordpress.org/benjaminprojas/\">Benjamin Projas.</a> It replaces the default<strong> plugin, theme, post, and page</strong> editors and is integrated with <a title=\"http://codemirror.net/\" href=\"http://codemirror.net/\">CodeMirror</a> and <a title=\"http://fancybox.net/\" href=\"http://fancybox.net/\">Fancybox</a>. By integrating these two technologies, the editor resembles an environment coders will be familiar with.</p>\n<p>The first thing I noticed when writing my first post with the plugin enabled was the inability to use the <strong>TAB key</strong> to move to the next line. I had to manually click inside the editor window to begin writing my post. I found out this plugin only manipulates the Text or HTML version of the editor. At first, I thought the editor-style.css file that’s part of Stargazer was overriding WP Post Editor. However, after I switched themes, I determined WP Editor doesn’t alter the Visual editor in any way.</p>\n<div id=\"attachment_17591\" class=\"wp-caption aligncenter\"><a href=\"http://wptavern.com/wp-content/uploads/2014/02/WPPostEditor1.png\" rel=\"prettyphoto[17522]\"><img class=\"size-large wp-image-17591\" alt=\"WordPress Text Editor Using Lesser Dark Theme\" src=\"http://wptavern.com/wp-content/uploads/2014/02/WPPostEditor1-500x169.png\" width=\"500\" height=\"169\" /></a><p class=\"wp-caption-text\">WordPress Text Editor Using Lesser Dark Theme</p></div>\n<p>The settings page contains five different sections: <strong>Main settings, Theme Editor, Plugin Editor, Post Editor, and Overview</strong>. They’re self-explanatory but you’ll want to visit the main settings page first. By default, WP Post Editor hides the WordPress version of the theme and plugin editor links and will load the WP Editor version of the theme and plugin editors. You can turn them back on from the main settings page.</p>\n<div id=\"attachment_17592\" class=\"wp-caption aligncenter\"><a href=\"http://wptavern.com/wp-content/uploads/2014/02/WPPostEditor2.png\" rel=\"prettyphoto[17522]\"><img class=\"size-large wp-image-17592\" alt=\"WP Post Editor Main Settings\" src=\"http://wptavern.com/wp-content/uploads/2014/02/WPPostEditor2-500x364.png\" width=\"500\" height=\"364\" /></a><p class=\"wp-caption-text\">WP Post Editor Main Settings</p></div>\n<p>WP Post Editor ships with twelve different themes. I’ve been looking for a way to darken the post editor and this plugin accomplishes that by offering twelve different themes. The downside to using this plugin is that each registered user who has access to the post editor will see the WP Post Editor version. It would be great if the editor and themes could be tied to users, perhaps through their profile. Also, depending on the post editor theme selected, some colors are hard to see.</p>\n<div id=\"attachment_17593\" class=\"wp-caption aligncenter\"><a href=\"http://wptavern.com/wp-content/uploads/2014/02/WPPostEditor3.png\" rel=\"prettyphoto[17522]\"><img class=\"size-large wp-image-17593\" alt=\"Some Colors Hard To See \" src=\"http://wptavern.com/wp-content/uploads/2014/02/WPPostEditor3-500x259.png\" width=\"500\" height=\"259\" /></a><p class=\"wp-caption-text\">Some Colors Hard To See</p></div>\n<p>The strength of this plugin lies within the plugin and theme editors. WP Post Editor has built-in support for file uploading. This is a killer feature because it enables files to be uploaded without the use of FTP. Uploading files is quick and painless. The code within the editor is a step up from what WordPress offers out of the box. It’s color coded and features line numbers. You can also download the file or the entire plugin from within the editor.</p>\n<div id=\"attachment_17594\" class=\"wp-caption aligncenter\"><a href=\"http://wptavern.com/wp-content/uploads/2014/02/WPPostEditor4.png\" rel=\"prettyphoto[17522]\"><img class=\"size-large wp-image-17594\" alt=\"WP Editor Version Of The Plugin Editor\" src=\"http://wptavern.com/wp-content/uploads/2014/02/WPPostEditor4-500x211.png\" width=\"500\" height=\"211\" /></a><p class=\"wp-caption-text\">WP Editor Version Of The Plugin Editor</p></div>\n<h3>Nice Plugin But Doesn’t Solve My Problem</h3>\n<p>Overall, WP Editor is a neat plugin containing a myriad of options to change the look and feel of each editor in WordPress. Since I’ve grown accustomed to the visual editor, thanks in large part to the use of <a title=\"https://codex.wordpress.org/Editor_Style\" href=\"https://codex.wordpress.org/Editor_Style\">style-editor.css</a>, I don’t see myself using this plugin in the future. My search for a plugin that changes the post editor to a darker background color without it being a global change continues.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 24 Feb 2014 14:00: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: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:59:\"WordPress.tv: Stanko Metodiev: WordPress – From the Start\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=30759\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"http://wordpress.tv/2014/02/24/stanko-metodiev-wordpress-from-the-start/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:669:\"<div id=\"v-Cx5HOJqA-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/30759/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/30759/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=30759&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/02/24/stanko-metodiev-wordpress-from-the-start/\"><img alt=\"Stanko Metodiev: WordPress – From the Start\" src=\"http://videos.videopress.com/Cx5HOJqA/video-11b80cfce2_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, 24 Feb 2014 12:29: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: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:124:\"WordPress.tv: Ruth Carter: Blogging And Social Media Horror Stories From The Legal Trenches (And How To Avoid The Same Fate)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=31454\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:139:\"http://wordpress.tv/2014/02/24/ruth-carter-blogging-and-social-media-horror-stories-from-the-legal-trenches-and-how-to-avoid-the-same-fate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:795:\"<div id=\"v-oOq9iMVj-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/31454/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/31454/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=31454&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/02/24/ruth-carter-blogging-and-social-media-horror-stories-from-the-legal-trenches-and-how-to-avoid-the-same-fate/\"><img alt=\"Ruth Carter: Blogging And Social Media Horror Stories From The Legal Trenches (And How To Avoid The Same Fate)\" src=\"http://videos.videopress.com/oOq9iMVj/video-c48f03d387_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, 24 Feb 2014 09:27: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: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: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:63:\"WPTavern: Big Performance Improvements Coming in BuddyPress 2.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=17571\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:170:\"http://wptavern.com/big-performance-improvements-coming-to-buddypress-2-0?utm_source=rss&utm_medium=rss&utm_campaign=big-performance-improvements-coming-to-buddypress-2-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:3920:\"<p>BuddyPress 2.0, due sometime in mid-April, officially <a href=\"http://wptavern.com/buddypress-2-0-development-kicks-off-today-release-set-for-mid-april\" target=\"_blank\">kicked off development</a> a couple weeks ago. This release will include some exciting, visible new features, including the ability to <a href=\"http://wptavern.com/buddypress-2-0-to-add-profile-editing-in-the-wordpress-admin\" target=\"_blank\">edit BuddyPress profiles in the WordPress admin</a>. But there are also some major improvements happening under the hood that will help BuddyPress to scale better in the near future.</p>\n<p>Moving the user ‘last_activity’ data out of the wp_usermeta table has been a on the <a href=\"https://buddypress.trac.wordpress.org/milestone/2.0\">roadmap</a> for awhile, but what does that really mean and who will it affect?</p>\n<p>The ‘last_activity’ data is what you see displayed on user profiles:</p>\n<p><a href=\"http://wptavern.com/big-performance-improvements-coming-to-buddypress-2-0/last-active\" rel=\"attachment wp-att-17575\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/last-active.jpg\" alt=\"last-active\" width=\"543\" height=\"330\" class=\"aligncenter size-full wp-image-17575\" /></a></p>\n<p>This data is also used within BuddyPress to sort results and to determine whether a user is a valid site member. In an <a href=\"http://bpdevel.wordpress.com/2014/02/21/user-last_activity-data-and-buddypress-2-0/\" target=\"_blank\">update</a> last week, BuddyPress core developer Boone Gorges explained why the issue has developed into what he calls “a perennial performance bottleneck”:</p>\n<blockquote><p>In the case of users, the information was stored in wp_usermeta. This table gets exceptionally bloated on busy sites, and it’s not properly indexed for the sorts of ORDER BY queries we were performing on it.</p></blockquote>\n<p>Gorges put <a href=\"https://buddypress.trac.wordpress.org/changeset/7860\" target=\"_blank\">a fix</a> in place to address the issue. BuddyPress 2.0 will now store user last_activity data in its own row within the wp_bp_activity table, even if the site has the Activity component disabled. <strong>“The performance improvements are pretty extreme,”</strong> Gorges said and promised to post benchmarks as development for BuddyPress 2.0 approaches release.</p>\n<p>When applying the <a href=\"https://buddypress.trac.wordpress.org/ticket/5128#comment:7\" target=\"_blank\">first patch</a> to the issue, Gorges shared a few preliminary metrics that should give you an idea of the performance improvements in this fix:</p>\n<blockquote><p>Basically, the main query went from about 57ms to .3ms. Roughly two orders of magnitude improvement. This will become more dramatic on larger sites (usermeta’s performance will degrade in a greater-than-linear fashion), especially where usermeta is filled with lots of other junk from other plugins.</p></blockquote>\n<p>‘Last_activty’ data will be indefinitely mirrored in both the old and new locations in order to maintain backwards compatibility with plugins. However, plugin authors are encouraged to update their extensions to get data via the BuddyPress API functions instead of the old method. Gorges offers an example in his <a href=\"http://bpdevel.wordpress.com/2014/02/21/user-last_activity-data-and-buddypress-2-0/\" target=\"_blank\">update</a> and lists a few plugins from the WordPress Plugin Directory that will need to be updated.</p>\n<p>Plugin developers who want to take advantage of these performance improvements have plenty of time to prepare an updated version to have on deck to coincide with the 2.0 release. Leave a comment on the <a href=\"http://bpdevel.wordpress.com/2014/02/21/user-last_activity-data-and-buddypress-2-0/\" target=\"_blank\">BuddyPress Development blog</a> if you have any questions regarding the changes or need help updating your code.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 24 Feb 2014 02:52:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:78:\"WordPress.tv: Hristo Chakarov: Choosing The Right JS Framework/Library/Toolkit\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=30009\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"http://wordpress.tv/2014/02/23/hristo-chakarov-choosing-the-right-js-frameworklibrarytoolkit/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:709:\"<div id=\"v-sMrd09RR-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/30009/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/30009/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=30009&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/02/23/hristo-chakarov-choosing-the-right-js-frameworklibrarytoolkit/\"><img alt=\"Hristo Chakarov: Choosing The Right JS Framework/Library/Toolkit\" src=\"http://videos.videopress.com/sMrd09RR/video-3c40dea0d5_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, 24 Feb 2014 00:40:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:54:\"WordPress.tv: Mario Peshev: Choosing A WordPress Theme\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=30757\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/02/23/mario-peshev-choosing-a-wordpress-theme/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:663:\"<div id=\"v-6WOFeiny-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/30757/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/30757/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=30757&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/02/23/mario-peshev-choosing-a-wordpress-theme/\"><img alt=\"Mario Peshev: Choosing A WordPress Theme\" src=\"http://videos.videopress.com/6WOFeiny/video-5d02f93ec2_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, 24 Feb 2014 00:37: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: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:37:\"WordPress.tv: Matt Mullenweg: Q&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=31487\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"http://wordpress.tv/2014/02/23/matt-mullenweg-qa/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:617:\"<div id=\"v-ylQ5fY3a-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/31487/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/31487/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=31487&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/02/23/matt-mullenweg-qa/\"><img alt=\"wceu-MattMullenweg1\" src=\"http://videos.videopress.com/ylQ5fY3a/wceu-mattmullenweg1_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, 23 Feb 2014 22:15: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: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: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:37:\"WordPress.tv: Svetlin Nakov: WPdotNet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=30751\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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.tv/2014/02/22/svetlin-nakov-wpdotnet/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:629:\"<div id=\"v-nCBqjMkC-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/30751/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/30751/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=30751&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/02/22/svetlin-nakov-wpdotnet/\"><img alt=\"Svetlin Nakov: WPdotNet\" src=\"http://videos.videopress.com/nCBqjMkC/video-e2499272cd_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, 23 Feb 2014 00:34: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: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: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:82:\"WordPress.tv: Hristo Pandjarov: How To Make WordPress Life Easier Using The WP-CLI\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=30735\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"http://wordpress.tv/2014/02/22/hristo-pandjarov-how-to-make-wordpress-life-easier-using-the-wp-cli/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:719:\"<div id=\"v-YpiB74jL-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/30735/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/30735/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=30735&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/02/22/hristo-pandjarov-how-to-make-wordpress-life-easier-using-the-wp-cli/\"><img alt=\"Hristo Pandjarov: How To Make WordPress Life Easier Using The WP-CLI\" src=\"http://videos.videopress.com/YpiB74jL/video-a8d3921fd8_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, 23 Feb 2014 00:26: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: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: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:86:\"WPTavern: WPWeekly Episode 139 – Interview With Chris Wallace Co-Founder Of UpThemes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=17578&preview_id=17578\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/wpweekly-episode-139-interview-with-chris-wallace-co-founder-of-upthemes?utm_source=rss&utm_medium=rss&utm_campaign=wpweekly-episode-139-interview-with-chris-wallace-co-founder-of-upthemes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4171:\"<p>In this episode, <a title=\"http://www.marcuscouch.com/\" href=\"http://www.marcuscouch.com/\">Marcus Couch</a> and I sat down with Chris Wallace, co-founder of <a title=\"https://upthemes.com\" href=\"https://upthemes.com\">UpThemes</a> and discussed in detail the reasons behind the <a title=\"https://upthemes.com/open-letter/\" href=\"https://upthemes.com/open-letter/\">open letter</a> published by the company. We learned how Chris got involved with WordPress theme development and the circumstances leading to the creation of UpThemes.</p>\n<p>Chris explained how hard it was to make a profit on commercial themes and how early development decisions played a large role in revenue disappearing nearly causing the company to fail. Last but not least, we talked about the trend of theme shops simplifying their products while relying on plugins to provide specific functionality.</p>\n<p>Near the end of the interview, Chris gave us a heads up on a new product they are working on called <a title=\"http://issuepress.co/\" href=\"http://issuepress.co/\">IssuePress</a>. It enables developers to use the Github repository issue tracker to provide support.</p>\n<h2>Stories Discussed:</h2>\n<p><a title=\"http://wptavern.com/duo-security-plugin-vulnerability-affecting-a-subset-of-wordpress-multisite-networks\" href=\"http://wptavern.com/duo-security-plugin-vulnerability-affecting-a-subset-of-wordpress-multisite-networks\">Duo Security Plugin Vulnerability Affecting A Subset Of WordPress Multisite Networks</a><br />\n<a title=\"http://wptavern.com/aesop-story-engine-now-available-on-wordpress-org\" href=\"http://wptavern.com/aesop-story-engine-now-available-on-wordpress-org\">Aesop Story Engine Now Available On WordPress.org</a><br />\n<a title=\"http://wptavern.com/tips-for-promoting-newly-released-wordpress-plugins\" href=\"http://wptavern.com/tips-for-promoting-newly-released-wordpress-plugins\">Tips For Promoting Newly Released WordPress Plugins</a><br />\n<a title=\"http://wptavern.com/adopt-me-plugin-tag-is-now-in-use-on-wordpress-org\" href=\"http://wptavern.com/adopt-me-plugin-tag-is-now-in-use-on-wordpress-org\">“Adopt-Me” Plugin Tag Is Now in Use in the WordPress Plugin Directory</a></p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a title=\"http://wordpress.org/plugins/wp-pipes/\" href=\"http://wordpress.org/plugins/wp-pipes/\">WP Pipes</a> makes a similar WordPress based “service” just like Yahoo Pipes!</p>\n<ul>\n<li>Here are things you can do with WP Pipes (just like Yahoo Pipes):</li>\n<li>Get Posts from WordPress Posts > Export as RSS Feed</li>\n<li>Get Posts from WordPress Posts > Export as iTunes Podcast</li>\n<li>Get Posts from WordPress Posts > Export as Google XML Sitemap</li>\n<li>Get Documents from WordPress > Export to Google Drive</li>\n<li>Get WooCommerce Products > Export as RSS Feed or Google XML Sitemap</li>\n</ul>\n<p><a title=\"http://wordpress.org/plugins/wp-construction-mode/\" href=\"http://wordpress.org/plugins/wp-construction-mode/\">WP Construction Mode</a> can set the entire website or specific pages under construction or maintenance. Admin can still view the site, perfect for developing new websites or pages</p>\n<p><a title=\"http://wordpress.org/plugins/link-images-to-none/\" href=\"http://wordpress.org/plugins/link-images-to-none/\">Link Images to None</a> – Automatically Link images to none in selecting and uploading images in WordPress.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Friday, February 28th 3 P.M. Eastern – Dre Armeda and Tony Perez Of <a title=\"http://sucuri.net/\" href=\"http://sucuri.net/\">Sucuri Security</a></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 #139:</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, 22 Feb 2014 01: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:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress.tv: Ivelina Dimova: WooCommerce Magic\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=30733\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/02/21/ivelina-dimova-woocommerce-magic/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:649:\"<div id=\"v-tk4N8AOv-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/30733/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/30733/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=30733&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/02/21/ivelina-dimova-woocommerce-magic/\"><img alt=\"Ivelina Dimova: WooCommerce Magic\" src=\"http://videos.videopress.com/tk4N8AOv/video-cfa6750973_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, 22 Feb 2014 00:17: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: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: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:63:\"WordPress.tv: Stefan Chekanov: How To Make Money 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=30755\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"http://wordpress.tv/2014/02/21/stefan-chekanov-how-to-make-money-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:681:\"<div id=\"v-r9GcymVX-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/30755/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/30755/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=30755&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/02/21/stefan-chekanov-how-to-make-money-with-wordpress/\"><img alt=\"Stefan Chekanov: How To Make Money With WordPress\" src=\"http://videos.videopress.com/r9GcymVX/video-7e532ad64b_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, 22 Feb 2014 00:11:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"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: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:51:\"WPTavern: How to Stop WordPress From Sending Emails\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=17552\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:146:\"http://wptavern.com/how-to-stop-wordpress-from-sending-emails?utm_source=rss&utm_medium=rss&utm_campaign=how-to-stop-wordpress-from-sending-emails\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3609:\"<p><a href=\"http://wptavern.com/how-to-stop-wordpress-from-sending-emails/empty-mailbox\" rel=\"attachment wp-att-17567\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/empty-mailbox.jpg\" alt=\"empty-mailbox\" width=\"1020\" height=\"550\" class=\"aligncenter size-full wp-image-17567\" /></a></p>\n<p>WordPress doesn’t send out too many emails. They’re usually only generated for an important notice, or when an action is required on your part. However, there are a few different circumstances under which you may not want WordPress to send any emails.</p>\n<p>For example, when working on a development site, or even a production site, you may inadvertently trigger emails that send to real users when testing or making changes.</p>\n<p>The best developers are able to stay invisible. Ideally, you don’t want any users to know or suspect that you are working on the site, so it’s important to suppress emails that might be triggered by your work. Fortunately, there are two plugins that will do this for you automatically.</p>\n<h3>Stop Emails</h3>\n<p>The <a href=\"http://wordpress.org/plugins/stop-emails/\" target=\"_blank\">Stop Emails</a> plugin, created by Sal Ferrarello, works silently to prevent any outgoing emails from being sent using wp_mail() function. WordPress will continue to act normally, as if the emails were sent successfully.</p>\n<p>When the plugin is active, you’ll see a notice in the admin area to remind you that emails are not currently being sent.</p>\n<p><a href=\"http://wptavern.com/how-to-stop-wordpress-from-sending-emails/no-emails-notice\" rel=\"attachment wp-att-17557\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/no-emails-notice.png\" alt=\"no-emails-notice\" width=\"995\" height=\"113\" class=\"aligncenter size-full wp-image-17557\" /></a></p>\n<p>Stop Emails also has a filter that you can use, which will allow you to log emails and send the information to the php_error.log:</p>\n<pre class=\"brush: php; title: ; notranslate\">add_filter(\'fe_stop_emails_log_email\', \'__return_true\');</pre>\n<h3>Disable Emails</h3>\n<p><a href=\"http://wordpress.org/plugins/disable-emails/\" target=\"_blank\">Disable Emails</a> is a similar plugin, created by WordPress plugin developer Ross McKay. It stops any and all emails, using the standard <a href=\"http://codex.wordpress.org/Function_Reference/wp_mail\" target=\"_blank\">wp_mail()</a> function by replacing it with an empty function. Disable Emails is different in that it is totally silent and does not show an admin notice to remind you that emails are stopped.</p>\n<p>It also has a more explanatory readme.txt file that cites several scenarios wherein you might consider shutting WordPress emails off:</p>\n<ul>\n<li>Demonstration websites that allow users to do things that normally send emails</li>\n<li>Development / test websites with live data that might email real customers</li>\n<li>Bulk-loading data into websites which might trigger emails</li>\n<li>Adding new sites into multisite installations</li>\n</ul>\n<p>Both of these plugins are aimed at developers who probably want to turn emails off temporarily or only on a development site. You could also use the plugin to create a totally silent WordPress site that never sends out any notifications, although this is probably not recommended.</p>\n<p>Email notifications are still one of the easiest ways to keep your finger on the pulse of your website when you don’t visit every day. If you opt to use one of these plugins temporarily on a live site, it’s important to remember to turn the plugin off when you’re finished working.</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, 21 Feb 2014 12:03:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:83:\"WPTavern: “Adopt-Me” Plugin Tag Is Now in Use in the WordPress Plugin Directory\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=17499\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:164:\"http://wptavern.com/adopt-me-plugin-tag-is-now-in-use-on-wordpress-org?utm_source=rss&utm_medium=rss&utm_campaign=adopt-me-plugin-tag-is-now-in-use-on-wordpress-org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4526:\"<p><a href=\"http://wptavern.com/adopt-me-plugin-tag-is-now-in-use-on-wordpress-org/adopt-me-yellow\" rel=\"attachment wp-att-17539\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/adopt-me-yellow.jpg\" alt=\"adopt-me-yellow\" width=\"700\" height=\"167\" class=\"aligncenter size-full wp-image-17539\" /></a></p>\n<p>Recently we explored the question of whether or not a clear path for WordPress.org plugin adoption could help to <a href=\"http://wptavern.com/could-wordpress-plugin-adoption-lower-the-rate-of-abandonment\" target=\"_blank\">lower the rate of abandonment</a>. Some have suggested that having a standard (unofficial) adoption tag might help to bring more exposure to plugins that need a new owner.</p>\n<p>“Adopt-Me” was suggested as one possible tag for developers to use to identify plugins that they would prefer to adopt out rather than abandon. WordPress developer <a href=\"http://www.foellmann.de/christian/\">Christian Foellmann</a> is the first to make use of the tag. If you visit the “<a href=\"http://wordpress.org/plugins/tags/adopt-me\" target=\"_blank\">adopt-me</a>” plugin tag page, you’ll find his <a href=\"http://wordpress.org/plugins/google-analytics-mu/\" target=\"_blank\">Google Analytics MU</a> plugin available for adoption.</p>\n<p>Foellmann put his plugin up for adoption because he was no longer able to provide adequate support for it. “<span class=\"pullquote alignleft\">I really believe that you have to ‘choose your battles’ when it comes to open source contribution</span>,” he said. “You need to make sure that you do not stretch yourself too thin. So I finally realized that I can only support a plugin (project) properly if I deploy it myself.”</p>\n<h3>“Free to a Good Home”</h3>\n<p>Foellmann has a rather unique reason for wanting to find the plugin a new home. “I run all my sites in multisite installations so the tracking of a complete network is something really appealing at first,” he said. “Until you realize the implications of EU and especially German privacy law. When it comes to user tracking the functionality of the plugin can get you into hot water – fast.” It’s for this reason that he’s decided to remove the plugin from his toolbox.</p>\n<p>Already on the lookout for a best practice for plugin adoption, Foellmann saw our recent <a href=\"http://wptavern.com/could-wordpress-plugin-adoption-lower-the-rate-of-abandonment\" target=\"_blank\">article</a> and decided to be the first to use the “adopt-me” tag in hopes of keeping his plugin alive. He said that the ideal new owner would be a current user who is wiling to keep development open on Github. Foellmann will happily transfer over the Github repo.</p>\n<h3>Will the “Adopt-Me” tag take off?</h3>\n<p>The “adopt-me” tag will never catch on if nobody knows about it. Though the tag is technically unofficial, it will require developers to use it and recommend it, if there’s any possibility of it becoming a useful designation on WordPress.org.</p>\n<p>When I discussed the matter of an unofficial tag with Samuel “Otto” Wood in a previous conversation, he had little hope of it gaining any traction. His thoughts:</p>\n<blockquote><p>I don’t think it will take off because it’s edge-casey and relies on authors giving away their plugins intentionally instead of simply letting them die from neglect.</p></blockquote>\n<p>His assessment would indicate that most developers who abandon their plugins are likely not motivated enough to put their extensions on the path to adoption, even if there is a known tag.</p>\n<p>Foellmann has more hope for his <a href=\"http://wordpress.org/plugins/google-analytics-mu/\" target=\"_blank\">Google Analytics MU</a> plugin, which is actually a fork of a plugin that he originally tried to adopt. Since there was no process at the time and the plugin’s author was unreachable, he was forced to fork the original plugin.</p>\n<p>This type of situation may be a contributing factor to the repository having so many plugins which seem to perform the same function. No path for adoption makes it easier to fork an existing work to make small changes or updates.</p>\n<p>When I asked Foellmann if he thinks the “adopt-me” tag will take off, he said, “I really hope so. It might reduce the number of corpses rotting away in the repo.”</p>\n<p>Is anyone else planning on making use of the tag?</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, 21 Feb 2014 01:57:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:67:\"WordPress.tv: Stefan Kanev: Test-Driven Development And Refactoring\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=30753\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/02/20/stefan-kanev-test-driven-development-and-refactoring/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:689:\"<div id=\"v-m7MbpFrF-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/30753/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/30753/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=30753&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/02/20/stefan-kanev-test-driven-development-and-refactoring/\"><img alt=\"Stefan Kanev: Test-Driven Development And Refactoring\" src=\"http://videos.videopress.com/m7MbpFrF/video-c99f0d694b_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, 20 Feb 2014 23:53:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:55:\"WPTavern: Bob Dunn Launches New WordPress Learning Site\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=17444\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/bob-dunn-launches-new-wordpress-learning-site?utm_source=rss&utm_medium=rss&utm_campaign=bob-dunn-launches-new-wordpress-learning-site\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9522:\"<p><a href=\"http://wptavern.com/wp-content/uploads/2014/02/BobDunn.jpg\" rel=\"prettyphoto[17444]\"><img class=\"alignright size-thumbnail wp-image-17504\" alt=\"Bob Dunn\" src=\"http://wptavern.com/wp-content/uploads/2014/02/BobDunn-150x150.jpg\" width=\"150\" height=\"150\" /></a>Bob Dunn, who’s been teaching WordPress for years, has launched an <a title=\"http://bobwptutorials.com/\" href=\"http://bobwptutorials.com/\">all new website</a> dedicated to helping people learn WordPress. The new site is filled with tutorials, up to date information about WordPress, and in the near future, complimentary eBooks. I got in touch with Bob and asked him a few questions about the new site.</p>\n<p><strong>How will Bobwptutorials differentiate itself from other WordPress learning sites?</strong></p>\n<p>When I was thinking about what this new service might look like, I kept hearing the voices of the thousands of people I have trained. They shared their frustrations with listening to audio without the visual references they needed. Some of them had tried other video tutorials but couldn’t keep up and absorb the information because the trainer’s pace was too fast.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/02/BobWPTutorialsFrontpage.png\" rel=\"prettyphoto[17444]\"><img class=\"aligncenter size-large wp-image-17502\" alt=\"Landing Page For BobWPTutorials\" src=\"http://wptavern.com/wp-content/uploads/2014/02/BobWPTutorialsFrontpage-500x114.png\" width=\"500\" height=\"114\" /></a></p>\n<p>Everyone learns differently and people need to find the instructional style that works best for them. My teaching style is different from other WordPress trainers. My tutorials are less formal, less scripted and more like I am having a conversation with my students. I give them a little more time to take in the information so it makes more sense. I provide screenshots as well, so students who learn better through visual styles can get what they need. That’s not everyone’s style of learning, but some people are naturally drawn to my approach.</p>\n<p>But what really sets <a title=\"http://bobwptutorials.com\" href=\"http://bobwptutorials.com\">BobWPTutorials</a> apart from the others is that I have a deep focus on two themes, <strong>Genesis Child Themes</strong> and <strong>WooThemes</strong> so members can explore the themes thoroughly and figure out what they need upfront, before they make a purchase. This has been a recurring issue with people who have come to me after having a bad experience. They have bought a theme and now they find it isn’t the one that will work best for their needs.</p>\n<div id=\"attachment_17506\" class=\"wp-caption aligncenter\"><a href=\"http://wptavern.com/wp-content/uploads/2014/02/FreeVideosOffered.png\" rel=\"prettyphoto[17444]\"><img class=\"size-large wp-image-17506\" alt=\"A Sample Of The Free Videos Available\" src=\"http://wptavern.com/wp-content/uploads/2014/02/FreeVideosOffered-500x257.png\" width=\"500\" height=\"257\" /></a><p class=\"wp-caption-text\">A Sample Of The Free Videos Available</p></div>\n<p>So I wanted to hit that pain point. For each theme, members get an overview tutorial that lets them know what they can and cannot do with it out-of-the-box, without customizations. (<em>Because most people who work with me fear code.</em>) One of the hardest things for users to do is to visualize what their site might look like by just looking at the theme demo. The second video helps members set up their chosen theme step by step, primarily that all-important home page. In this second video, I also give them other setup options, so they understand they are not stuck with the exact look of the theme provider’s demo.</p>\n<p>Lastly, I have added <strong>Video Highlights</strong>. This is a separate text and screenshot instruction that goes over the major points of the video. This way a member can revisit the important details without having to watch the entire video again.</p>\n<p><strong>Based on your experience, what is the most common area of WordPress people struggle with?</strong></p>\n<p>Wow, where do I start? I think in a general sense, it’s the non-intuitiveness of the interface. Lots of smart people get lost there and some of the simplest features are well-hidden. One example: During a training session, I shared how to expand the editor window by dragging the edged corner. You cannot imagine how many “<em>ah-ha’s</em>” I heard in the audience. One person even shared that they had been frustrated by that for six months.</p>\n<div id=\"attachment_17508\" class=\"wp-caption aligncenter\"><a href=\"http://wptavern.com/wp-content/uploads/2014/02/WordPressThemeRepositoryThemeCount.png\" rel=\"prettyphoto[17444]\"><img class=\"size-large wp-image-17508\" alt=\"Lots Of Themes To Choose From\" src=\"http://wptavern.com/wp-content/uploads/2014/02/WordPressThemeRepositoryThemeCount-500x130.png\" width=\"500\" height=\"130\" /></a><p class=\"wp-caption-text\">Lots Of Themes To Choose From</p></div>\n<p>Another thing people struggle with is theme choice. I know several WordPress people who say “<em>just grab one and start with it</em>”. But I have seen too many people struggle because they hadn’t thought through what they need their theme to do. Some will wallow in the sea of themes for months, frustrated and still not finding what they are looking for.</p>\n<p>Those are just two of the areas users struggle with. It really depends on the person and their comfort level with technology. I know some very smart people who have Masters and Doctorates, but, still, they find it all very confusing.</p>\n<p><strong>On average, what demographic represents the majority of your customers?</strong></p>\n<p>It’s all over the board, but my one-on-one training is skewed toward the 40+ crowd. If I had to choose, I’d say it’s stronger on the female side. Often, they are people who are at a certain age and changing careers, starting a new business, stepping into the world of technology, or wanting to grow their hobby or interest. A lot of people in that age bracket feel they have been left behind by technology. I tend to attract them probably because of my age and my patience, maybe. You need to be a very patient person to be a WordPress trainer.</p>\n<p>I have dealt with all ages, skill levels, genders and ethnic backgrounds. I’m a pretty laid-back guy with an open mind and a love for people.</p>\n<p><strong>WordPress is an ever-evolving piece of software. Are you finding it harder or easier to explain how it works to new users?</strong></p>\n<p>It’s true, it keeps me on the ball, keeping up with the changes and communicating them to my clients. But I wouldn’t say it’s any harder to explain as time passes. It can always be a challenge to teach an old dog a new trick. But it’s also what I love about my job. Constantly learning new things and finding ways to make the new and difficult easy for the next person to understand. I love that things change and evolve.</p>\n<p><strong>Out of curiosity, what membership plugin are you using for Bobwptutorials and why did you choose it over others?</strong></p>\n<p>I’m using <a title=\"http://www.woothemes.com/woocommerce/\" href=\"http://www.woothemes.com/woocommerce/\">Woo Commerce</a> and a combination of extensions, including <a title=\"http://www.woothemes.com/products/groups-woocommerce/\" href=\"http://www.woothemes.com/products/groups-woocommerce/\">Groups</a> and <a title=\"http://www.woothemes.com/products/woocommerce-subscriptions/\" href=\"http://www.woothemes.com/products/woocommerce-subscriptions/\">Subscriptions</a>. My choice had a lot to do with my history with WooThemes, and, yes, Genesis child themes. With my personal training and Bobwptutorials, I focus on Genesis child themes and WooThemes. Why? Because I have used them both since I started with WordPress back in 2008 and I know and trust them.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/02/WooCommerceGrey.png\" rel=\"prettyphoto[17444]\"><img class=\"aligncenter size-large wp-image-17507\" alt=\"Woo Commerce Grey\" src=\"http://wptavern.com/wp-content/uploads/2014/02/WooCommerceGrey-500x125.png\" width=\"500\" height=\"125\" /></a></p>\n<p>My site <a title=\"http://bobwp.com\" href=\"http://bobwp.com\">bobwp.com</a> is built on a Genesis child theme, so I wanted to make my second site with a WooTheme, you know, to share the love. When I first came up with the idea of this site, I contacted Matt at WooThemes, laid it out and said, can I make this work with a WooTheme and WooCommerce (<em>the latter of which I already had some experience with</em>)? He said yes, so that decided that. I love things that are simple, and if I can use something I already know well, I’m on it. I have tried a couple of membership plugins in the past on other sites, some I like, some not so much. But I can say there are some really good membership plugins out there. This was just the best route for me to go for this site.</p>\n<h3>Bob Is The Man</h3>\n<p>Be sure to check out the four free videos he’s made available. For example, <a title=\"http://bobwptutorials.com/free-video-tutorial-differences-posts-pages/\" href=\"http://bobwptutorials.com/free-video-tutorial-differences-posts-pages/\">this video</a> explains the differences between posts and pages. I found it to be informative without being boring. If you are having trouble learning WordPress and need a patient individual to help guide you through the trenches, Bob Dunn is an excellent choice.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 Feb 2014 23:28:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:65:\"WPTavern: Speed Up WordPress Development With The Titan 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=17167\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:174:\"http://wptavern.com/speed-up-wordpress-development-with-the-titan-framework?utm_source=rss&utm_medium=rss&utm_campaign=speed-up-wordpress-development-with-the-titan-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:7169:\"<p>The <a href=\"http://wordpress.org/plugins/titan-framework/\">Titan Framework</a> is a new WordPress options framework that was released on WordPress.org this week. This set of tools was created to make it easy for WordPress theme and plugin developers to add options to their projects. This first release contains more than 20 options, including meta boxes, Google font selector, a media uploader, multicheck categories and taxonomies, theme customizer options and more.</p>\n<p><a href=\"https://www.titanframework.net/\" target=\"_blank\">Titan</a> claims to be the easiest options framework you’ll ever use. With just a few simple lines of code you can quickly add customization options that are easy for clients to use and understand. For example, to get an instance of the Titan Framework for your plugin, you’d add just one line to the the main plugin file:</p>\n<pre class=\"brush: php; light: true; title: ; notranslate\">$titan = TitanFramework::getInstance( \'my-plugin\' );</pre>\n<p>Setting up an admin page and menu for your options is as easy as adding a couple lines of code:</p>\n<pre class=\"brush: php; title: ; notranslate\">$panel = $titan->createAdminPanel( array(\n name => \'Theme Options\',\n) );</pre>\n<p>This helps to keep your code clean with the Titan engine powering the details related to building options.</p>\n<h3>The Titan Framework Was Built For Efficiency</h3>\n<p><a href=\"http://wptavern.com/speed-up-wordpress-development-with-the-titan-framework/me2\" rel=\"attachment wp-att-17477\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/me2.jpg\" alt=\"me2\" width=\"250\" height=\"250\" class=\"alignright size-full wp-image-17477\" /></a>I had the chance to speak with <a href=\"http://www.gambit.ph/\" target=\"_blank\">Benjamin Intal</a>, Titan Framework’s creator, to ask him why he decided to put another WordPress options framework out into the wild, despite the fact that there are already so many. Intal said that Titan resulted from a bit of spring cleaning he completed on his themes.</p>\n<p>“When I started creating WordPress themes 4 years ago, as my number of projects grew, I had a hard time managing all the code from the different themes I had,” he said. “By instinct, I started unifying all the similar code to make things more manageable. After months of work, I ended up with a huge framework that handled everything the theme needed.”</p>\n<p>From there his private framework evolved as he learned more about WordPress best practices. Intal began removing much of the functionality and turning it into plugins:</p>\n<blockquote><p>My mindset was that every feature should be included with the theme. As I learned more and more about the ins and outs of WordPress, I learned that what I did was a big no no. So now, I’m dissecting those themes, and turning its innards into plugins. One of those is the Titan Framework.</p></blockquote>\n<p>Intal’s spring cleaning resulted in a powerful set of options that speed up development. He uses it regularly in client projects. In one example he needed to provide information on various locations on a map, so he created a custom post type for locations and Titan powers most of the meta box options for inputting custom fields such as latitude, longitude and other location properties.</p>\n<p>While Intal maintains the framework for the purpose of efficiency in his own work, it’s now something that anyone can use. “Titan Framework focuses on ease of use,” he said. <strong>“For me, that translates to minimal coding and fewer things to remember.”</strong></p>\n<p>When creating the Titan Framework, Intal wanted to make a standardized way of adding options, so that it’s easy for developers to remember how to accomplish common tasks. He described the problem he was trying to solve and how Titan can improve your workflow:</p>\n<blockquote><p>In WordPress, admin options, custom fields and theme customizer controls are all different from each other. These are set up differently and getting the saved values for each type is performed differently. Titan Framework unifies all these so that you won’t really have to know whether you’re using an admin option, a custom field or a customizer control. Everything is just an option. Because of this, getting your saved values is just one simple method: the getOption method.</p></blockquote>\n<h3>How to Include the Titan Framework in Your Project</h3>\n<p><a href=\"http://wptavern.com/speed-up-wordpress-development-with-the-titan-framework/options-2\" rel=\"attachment wp-att-17484\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/options.jpg\" alt=\"options\" width=\"918\" height=\"298\" class=\"aligncenter size-full wp-image-17484\" /></a><br />\nCurrently, if you want to use Titan with your work, you’ll need to have the plugin activated alongside your own theme or plugin. This will allow you to call the framework’s functions inside your project. Refer to the developers’ <a href=\"https://www.titanframework.net/docs/\" target=\"_blank\">documentation</a> on the Titan project page for further instructions and a snippet for checking to see if Titan has been activated.</p>\n<p>“Ideally, Titan should always be a plugin that’s separate from your theme or plugin so that Titan can be updated for bug fixes or new features,” Intal said. However, he recognizes that some developers might want to bundle the framework within their projects. He plans on performing an update soon that will make that possible.</p>\n<h3>Future Additions to the Titan Framework</h3>\n<p>Intal has plans to expand the number of options in the framework, which currently includes most of the basics. He’ll be adding a palette selector, widget area selector and menu selector further down the road.</p>\n<p>He also plans to include functionality for easily creating and selecting widget areas, as well as new functions for creating shortcodes.</p>\n<p>Ital said that what he’s trying to accomplish with Titan is not based on a desire to improve deficiencies he’s seen in other frameworks. “When I was in the process of creating Titan Framework, I honestly did not dive into the other existing frameworks since I already had everything I needed to complete it,” he said. “I’ve just started now to check out what’s out there and I’m finding that there are a lot of great frameworks such as Redux and OptionTree.”</p>\n<p>Of course, if you’re trying to learn how to code plugin and theme options from the inside out, then using an options framework is not the way to go. The idea behind using a framework is to save yourself time in development and focus on building your project. There’s no need to reinvent the wheel every time you need to add a few options. Titan saves you the hassle of having to code them from scratch. For more information and examples on how to use it, check out the Titan Framework <a href=\"https://www.titanframework.net/\" target=\"_blank\">homepage</a> and <a href=\"https://www.titanframework.net/docs/\" target=\"_blank\">documentation</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 Feb 2014 21:46:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:71:\"WordPress.tv: Brian Messenlehner: WordPress As An Application 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://wordpress.tv/?p=30745\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"http://wordpress.tv/2014/02/20/brian-messenlehner-wordpress-as-an-application-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:691:\"<div id=\"v-EyR8BIyI-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/30745/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/30745/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=30745&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/02/20/brian-messenlehner-wordpress-as-an-application-framework/\"><img alt=\"Brian Messenlehner: WordPress As An Application Framework\" src=\"http://videos.videopress.com/EyR8BIyI/video-d33bfb387f_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, 20 Feb 2014 19:34: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: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:67:\"WordPress.tv: Mike Little: 10 Years Of WordPress A Founder’s View\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=31554\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"http://wordpress.tv/2014/02/20/mike-little-10-years-of-wordpress-a-founders-view/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:684:\"<div id=\"v-XFJ3A7jd-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/31554/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/31554/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=31554&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/02/20/mike-little-10-years-of-wordpress-a-founders-view/\"><img alt=\"Mike Little: 10 Years Of WordPress A Founder’s View\" src=\"http://videos.videopress.com/XFJ3A7jd/video-1ca8b4cb55_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, 20 Feb 2014 19:23:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:71:\"WPTavern: WordPress Theme Shops Move Toward Preserving Data Portability\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=17381\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:188:\"http://wptavern.com/wordpress-theme-shops-move-towards-preserving-data-portability?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-theme-shops-move-towards-preserving-data-portability\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6572:\"<div id=\"attachment_17420\" class=\"wp-caption aligncenter\"><a href=\"http://wptavern.com/wordpress-theme-shops-move-towards-preserving-data-portability/blue-suitcase\" rel=\"attachment wp-att-17420\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/blue-suitcase.jpg\" alt=\"photo credit: kthread - cc\" width=\"800\" height=\"435\" class=\"size-full wp-image-17420\" /></a><p class=\"wp-caption-text\">photo credit: <a href=\"http://www.flickr.com/photos/kthread/3495877554/\">kthread</a> – <a href=\"http://creativecommons.org/licenses/by-sa/2.0/\">cc</a></p></div>\n<p>In the old days, WordPress theme developers used to build loads of specific functionality into their themes, i.e. recipes, portfolios, testimonials, analytics, fundraising capabilities, custom post types etc. Commercial theme providers competed fiercely with one another to see who could pack the most functionality into their offerings. Many companies sought to become a one-stop-shop for everything an individual or business might need in order to launch an online presence.</p>\n<p>The practice of locking users into using a theme by tying their content/data to the use of the theme is now highly discouraged. WordPress theme shops have slowly started to separate function from design in favor of preserving data portability.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/02/restaurant.png\" rel=\"prettyphoto[17381]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/restaurant1.png\" alt=\"restaurant\" width=\"400\" height=\"252\" class=\"alignright size-full wp-image-17408\" /></a>This past week we’ve seen more evidence of this trend as two major theme providers have released plugins for functionality that users might previously have expected to find within themes. Justin Tadlock, who has long been a vocal advocate of <a href=\"http://justintadlock.com/archives/2013/09/14/why-custom-post-types-belong-in-plugins\" target=\"_blank\">data portability in themes</a>, released a new free <a href=\"http://themehybrid.com/weblog/restaurant-wordpress-plugin\" target=\"_blank\">Restaurant</a> plugin. The plugin allows restaurants to manage a food and beverage menu and works as a companion to themes.</p>\n<p>WooThemes released <a href=\"http://www.woothemes.com/2014/02/introducing-projects-our-brand-new-portfolio-plugin-for-wordpress/\" target=\"_blank\">Projects</a> this week, a new plugin to handle portfolio capabilities. They said that preserving data portability is one of the main reasons behind this decision:</p>\n<blockquote><p>You’ve probably already noticed that our product strategy has deviated to separating features and code wherever possible, shifting our functionality into plugins, rather than bundling into each theme…It also ensures your data is portable, which aligns with a core WordPress philosophy.</p></blockquote>\n<p>UpThemes’ recent <a href=\"https://upthemes.com/open-letter/\" target=\"_blank\">open letter to the WordPress Community</a> is further demonstration that the tides are turning in favor of data portability. In it, they openly admit that it was impossible for them to continue to support all of the extra stuff that they had been building into themes:</p>\n<blockquote><p>Gone are the days of locking custom post types in a theme. No longer do we build pluginesque functionality into the core of a theme. We now build themes that rely on existing, awesome plugins that offer features that can be used with other themes, should you choose to update your design or build your own theme.</p></blockquote>\n<p>UpThemes is starting fresh and making use of plugins such as <a href=\"http://wordpress.org/plugins/church-theme-content/\" target=\"_blank\">Church Theme Content</a> and <a href=\"http://wordpress.org/plugins/recipe-schema/\" target=\"_blank\">Recipe Schema</a> to add extra functionality, instead of packing it all into themes.</p>\n<p>We’re witnessing the end of an era in WordPress theme development. Bloat is no longer acceptable. Theme authors are creating leaner products with a stronger focus on designing for specific use cases. Anything extra is plugin territory.</p>\n<p>This should be quite liberating for theme authors who no longer bear the pressure of having to pack all kinds of complex functionality and options into their products. Themes and plugins will no longer overlap as heavily as they have in the past but will act as compliments to one another.</p>\n<h3>Tips For Consumers</h3>\n<div id=\"attachment_17423\" class=\"wp-caption aligncenter\"><a href=\"http://wptavern.com/wordpress-theme-shops-move-towards-preserving-data-portability/portable\" rel=\"attachment wp-att-17423\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/portable.jpg\" alt=\"photo credit: Leo Reynolds - cc\" width=\"1018\" height=\"546\" class=\"size-full wp-image-17423\" /></a><p class=\"wp-caption-text\">photo credit: <a href=\"http://www.flickr.com/photos/lwr/3509878550/\">Leo Reynolds</a> – <a href=\"http://creativecommons.org/licenses/by-nc-sa/2.0/\">cc</a></p></div>\n<p>If you’re looking at this issue from a consumer standpoint, the most important thing to remember is that you are the guardian of your own data. If you choose a theme that locks you in, you are the one who will suffer the inconvenience of trying to transfer data when you change to a new theme.</p>\n<p>Before installing a new theme, whether its free or commercial, ask yourself if you’ll be able to take all of your data with you, if and when you decide to stop using that theme. If the theme advertises dozens of capabilities, examine each of them to make sure that they don’t tie you down.</p>\n<p>Last year we discussed this issue in a post about <a href=\"http://wptavern.com/why-you-should-never-add-analytics-code-to-your-wordpress-theme\" target=\"_blank\">why you should never add analytics code to your WordPress theme</a>. This is because analytics have nothing to do with the design of the theme. It’s a function that you’ll need to maintain throughout years of using WordPress with many different themes. You don’t want to have to transfer that data every time. Store it in a plugin and be done with it.</p>\n<p>The same goes for portfolios, testimonials, recipes and custom post types. You’re likely to want this data on your website for years to come. Make sure that the theme you choose will give you that freedom. Find plugin substitutes for any data-driven functionality that is built into your theme. It’s not as convenient, but ultimately you’ll be glad that you kept your data separate from the design.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 Feb 2014 13:01: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: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:61:\"WPTavern: Tips For Promoting Newly Released 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=17390\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:166:\"http://wptavern.com/tips-for-promoting-newly-released-wordpress-plugins?utm_source=rss&utm_medium=rss&utm_campaign=tips-for-promoting-newly-released-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:4939:\"<p>So you just created and released a cool WordPress plugin that solves a problem. It’s now among 29,000 other plugins on the <a href=\"http://wordpress.org/plugins/\" title=\"http://wordpress.org/plugins/\">plugin directory</a>. How do you tell the world your plugin exists? WordPress.org doesn’t have an area to publish press releases or announcements of new plugins.</p>\n<div id=\"attachment_16677\" class=\"wp-caption aligncenter\"><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/02/yellow-plug.jpg\" rel=\"prettyphoto[17390]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/02/yellow-plug.jpg?resize=500%2C235\" alt=\"photo credit: jono dot com - cc\" class=\"size-large wp-image-16677\" /></a><p class=\"wp-caption-text\">photo credit: <a href=\"http://www.flickr.com/photos/jono/4867550/\">jono dot com</a> – <a href=\"http://creativecommons.org/licenses/by-nc-sa/2.0/\">cc</a></p></div>\n<p>However, all plugins published to the repository show up on the <a href=\"http://wordpress.org/plugins/browse/new/\" title=\"http://wordpress.org/plugins/browse/new/\">newest plugins list</a>. This list has an RSS feed but you have to <a href=\"http://wordpress.org/plugins/rss/browse/new/\" title=\"http://wordpress.org/plugins/rss/browse/new/\">know where to look</a> to subscribe to it. In WordPress 3.8, the dashboard widget showing the newest plugins released was removed.</p>\n<div id=\"attachment_17393\" class=\"wp-caption aligncenter\"><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/02/NewestPluginsReleased.png\" rel=\"prettyphoto[17390]\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/02/NewestPluginsReleased.png?resize=500%2C212\" alt=\"News Plugins Released On WordPress.org\" class=\"size-large wp-image-17393\" /></a><p class=\"wp-caption-text\">News Plugins Released On WordPress.org</p></div>\n<h3>If Your Plugin Solves a Problem, We Want To Hear About It</h3>\n<p>The best way to get your plugin noticed is to contact authors of websites that primarily focus on WordPress. For example, you can <a href=\"http://wptavern.com/contact-me\" title=\"http://wptavern.com/contact-me\">contact us</a>. When pitching your plugin, don’t pretend it’s a sales pitch. Provide the name of the plugin, it’s target audience and the problem it solves. There is no guarantee that WPTavern or any other website will write about your plugin, even if that information is provided. But it’s worth a shot.</p>\n<p>When we write about plugins on WPTavern, they’re either cool, innovative, or solve a problem for a large number of users. One of the hardest things to do as a writer is to write about something that is not interesting. The plugins reviewed on WPTavern are seen by a huge audience. I love hearing stories from new plugin authors of how an article on WPTavern put their plugin on the map.</p>\n<h3>WordPress Podcast Dedicated To Plugins</h3>\n<p><a href=\"http://wppluginsatoz.com/\" title=\"http://wppluginsatoz.com/\">Plugins A-Z</a> is a podcast dedicated to WordPress plugins. Hosted by Marcus Couch and John Overall, they discuss new plugins that have caught their eye. You can get in touch with them via <a href=\"http://wppluginsatoz.com/contact/\" title=\"http://wppluginsatoz.com/contact/\">their contact form</a>. Don’t only submit information about your plugin, but extend an offer to be on their show as a guest. Who knows a plugin better than the person who created it?</p>\n<h3>Subreddit Dedicated To WordPress Plugins</h3>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/02/RedditLogo.jpg\" rel=\"prettyphoto[17390]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/02/RedditLogo.jpg?resize=118%2C44\" alt=\"Reddit Logo\" class=\"alignright size-full wp-image-16194\" /></a>A few weeks ago, <a href=\"http://wptavern.com/add-these-subreddits-to-your-list-of-wordpress-watering-holes\" title=\"http://wptavern.com/add-these-subreddits-to-your-list-of-wordpress-watering-holes\">we mentioned</a> Reddit was a good place to hang out if you enjoyed discussing WordPress topics. There is a <a href=\"http://www.reddit.com/r/WordpressPlugins\" title=\"http://www.reddit.com/r/WordpressPlugins\">subreddit available</a> dedicated to WordPress plugins. Developers are welcome to show off their plugins for feedback and offer custom development services when needed.</p>\n<h3>Plugin Developers Are Problem Solvers</h3>\n<p>In general, plugin developers are not looking for fame. Most plugins are solutions to a problem or scratch a developer’s itch. By releasing a plugin into the wild, the hope is it will solve the same problem for others. Thank you to every plugin developer who has placed their code onto the WordPress.org plugin repository. More often then not, those plugins are solutions to problems.</p>\n<p><strong>If you know any other outlets authors can use to promote their new plugins, please share them in the comments. </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:\"Thu, 20 Feb 2014 02:28: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:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"WPTavern: Own Your Content: Postcard Social Sharing App Launches With WordPress Integration\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=17326\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/own-your-content-postcard-social-sharing-app-launches-with-wordpress-integration?utm_source=rss&utm_medium=rss&utm_campaign=own-your-content-postcard-social-sharing-app-launches-with-wordpress-integration\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5397:\"<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/02/postcard-app.jpg\" rel=\"prettyphoto[17326]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/02/postcard-app.jpg?resize=301%2C500\" alt=\"postcard-app\" class=\"alignright size-large wp-image-17329\" /></a><a href=\"http://www.postcardsocial.net/\" target=\"_blank\">Postcard</a> is a new free social sharing <a href=\"https://itunes.apple.com/us/app/postcard-write-once-share/id589678038?ls=1&mt=8\" target=\"_blank\">app for iOS</a> that landed in the app store today. The app makes it easy for you to share content from your phone to multiple social networks at once.</p>\n<p>The golden feature of this app is its “Custom Network” capability, which allows you to share to your own website. Many times people will share content, such as a quick status or photo, to Facebook or Twitter. The content is then hosted on the social networks, which gobble up all the traffic.</p>\n<p>Postcard addresses this problem by allowing you to set your own website as the “host” network and direct all the traffic to your site where the content is hosted.</p>\n<h3>WordPress Plugin Connects Postcard to Your Website</h3>\n<p>Given that WordPress is the world’s leading publishing platform, Postcard’s creator decided to launch with WordPress integration available from day one.</p>\n<p>This plugin performs two main functions:</p>\n<ol>\n<li>Links the Postcard App to your WordPress site</li>\n<li>Makes it possible to display content sent via Postcard on your site</li>\n</ol>\n<p>When you send your content to be hosted on your site, you won’t have any of the character restrictions that come with sharing to other social networks. The plugin creates shareable permalinks attached to the messages that you share to Facebook, Twitter and other networks.</p>\n<p>The Postcard WordPress plugin also gives you a number of shortcodes to use in the post/page editor for inserting content that comes from the app. The shortcodes make it easy to display an archive, feed or gallery of your Postcard content. The content can also be filtered using the designated attributes, such as tags or count:</p>\n<pre>[postcard-feed tags=\"interesting,useful\"]</pre>\n<p>The <a href=\"http://wordpress.org/plugins/postcard-social/\" target=\"_blank\">Postcard Social Networking Plugin</a> is available for free on WordPress.org. With the plugin and the app working hand-in-hand, you can create an archive of all the data that you share to social networks from your phone, even if you don’t choose to use shortcodes to display it on the front-end.</p>\n<h3>Own Your Content and Boost Traffic to Your WordPress Site</h3>\n<p><a href=\"http://bitwit.ca/\" target=\"_blank\">Kyle Newsome</a>, the app’s creator, said that the ability to share to your own website is the feature that he is the most excited about: “It represents most strongly why I started building this app in the first place – to help people solve content ownership and control issues I see prevalent in the shape of social media today.”</p>\n<p>Newsome designed Postcard to be a tool that can help people to keep their website content fresh. <strong>“There is a big opportunity with this app to make sure your website doesn’t go stale as you post regular short form content to social networks,”</strong> he said. Since many people are already putting quite a bit of effort into updating their social networks, Postcard gives you a way to broadcast to all of them while passing the resulting traffic on to your own website.</p>\n<p>One important thing to note is that Postcard doesn’t store your content or use it to create a social network of any kind. I asked Newsome to clarify how it works. “It doesn’t store data or use 3rd party servers,” he said. “All credentials are local and securely stored on the phone.” This is an important distinction when comparing Postcard to other apps that claim to let you own your own data. If you use the Custom Network feature, the app simply couriers that data to your site where you own the content.</p>\n<h3>An App to Fundamentally Change How We Use Social Networks</h3>\n<p>Postcard presents a new way to interact with social networks. When announcing the upcoming launch, Newsome said, <strong>“For those of us who are active content creators, I think this marks a very important change in the way we use social media.”</strong> Having your own website as the canonical source for the content you create has value beyond the traffic that you gain. That link to your site and the fact that you host the data assigns ownership of that content to you. It also provides a lasting archive of your content that can be sorted and presented in any way that you choose.</p>\n<p>Right now <a href=\"https://itunes.apple.com/us/app/postcard-write-once-share/id589678038?ls=1&mt=8\" target=\"_blank\">Postcard</a> is only available for iOS. I asked Newsome if an Android app is in the works. He replied, “Yes, cross-platform is in the plan. I’m looking at ways to hit both desktop and more mobile platforms.” As soon as these tools are available, Postcard will be set to double, if not triple its user base, given that Android currently dominates the smartphone market. We’ll keep you updated as these tools continue to develop.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 19 Feb 2014 21:01:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Fri, 28 Feb 2014 03:50:22 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:14:\"content-length\";s:6:\"172233\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Fri, 28 Feb 2014 03:30:12 GMT\";s:4:\"x-nc\";s:11:\"HIT lax 249\";s:13:\"accept-ranges\";s:5:\"bytes\";}s:5:\"build\";s:14:\"20130911090210\";}', 'no');
INSERT INTO `wp_options` VALUES ('231', '_transient_timeout_feed_mod_867bd5c64f85878d03a060509cd2f92c', '1393602623', 'no');
INSERT INTO `wp_options` VALUES ('232', '_transient_feed_mod_867bd5c64f85878d03a060509cd2f92c', '1393559423', 'no');
INSERT INTO `wp_options` VALUES ('233', '_transient_timeout_feed_b9388c83948825c1edaef0d856b7b109', '1393602623', 'no');
INSERT INTO `wp_options` VALUES ('234', '_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:\"Fri, 28 Feb 2014 03:33:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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: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: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: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: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: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: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: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: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:30:\"Google Analytics for WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"http://wordpress.org/plugins/google-analytics-for-wordpress/#post-2316\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Sep 2007 12:15:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2316@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:145:\"Track your WordPress site easily and with lots of metadata: views per author & category, automatic tracking of outbound clicks and pageviews.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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: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: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: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: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: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:\"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:107:\"The easiest, most effective way to secure WordPress. Improve the security of any WordPress site 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: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:11:\"WP-PageNavi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"http://wordpress.org/plugins/wp-pagenavi/#post-363\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 23:17:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"363@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"Adds a more advanced paging navigation interface.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Lester Chan\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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: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:122:\"The most popular WordPress gallery plugin and one of the most popular plugins of all time with over 7.5 million downloads.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Alex Rabe\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:12:\"Contact Form\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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.org/plugins/contact-form-plugin/#post-26890\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 26 May 2011 07:34:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"26890@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:43:\"Add Contact Form to your WordPress website.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"bestwebsoft\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:24:\"Share Buttons by AddThis\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"http://wordpress.org/plugins/addthis/#post-8124\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 17 Dec 2008 16:03:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"8124@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"AddThis Share Buttons help drive traffic to your site by helping visitors share, bookmark and email your content to over 330 services.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"_mjk_\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:16:\"TinyMCE Advanced\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"http://wordpress.org/plugins/tinymce-advanced/#post-2082\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Jun 2007 15:00:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2082@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"Enables the advanced features of TinyMCE, the WordPress WYSIWYG editor.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Andrew Ozz\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}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:\"Fri, 28 Feb 2014 03:50:24 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:\"Fri, 28 Feb 2014 04:08:34 GMT\";s:13:\"cache-control\";s:0:\"\";s:6:\"pragma\";s:0:\"\";s:13:\"last-modified\";s:31:\"Fri, 28 Feb 2014 03:33:34 +0000\";s:4:\"x-nc\";s:11:\"HIT lax 249\";}s:5:\"build\";s:14:\"20130911090210\";}', 'no');
INSERT INTO `wp_options` VALUES ('235', '_transient_timeout_feed_mod_b9388c83948825c1edaef0d856b7b109', '1393602623', 'no');
INSERT INTO `wp_options` VALUES ('236', '_transient_feed_mod_b9388c83948825c1edaef0d856b7b109', '1393559423', 'no');
INSERT INTO `wp_options` VALUES ('237', '_transient_timeout_dash_4077549d03da2e451c8b5f002294ff51', '1393602623', 'no');
INSERT INTO `wp_options` VALUES ('238', '_transient_dash_4077549d03da2e451c8b5f002294ff51', '<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'http://wordpress.org/news/2014/01/wordpress-3-8-1/\' title=\'After six weeks and more than 9.3 million downloads of WordPress 3.8, we’re pleased to announce WordPress 3.8.1 is now available. Version 3.8.1 is a maintenance releases that addresses 31 bugs in 3.8, including various fixes and improvements for the new dashboard design and new themes admin screen. An issue with taxonomy queries in WP_Query […]\'>WordPress 3.8.1 Maintenance Release</a> <span class=\"rss-date\">23 enero, 2014</span><div class=\'rssSummary\'>After six weeks and more than 9.3 million downloads of WordPress 3.8, we’re pleased to announce WordPress 3.8.1 is now available. Version 3.8.1 is a maintenance releases that addresses 31 bugs in 3.8, including various fixes and improvements for the new dashboard design and new themes admin screen. An issue with taxonomy queries in WP_Query […]</div></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'http://wptavern.com/wordpress-com-partners-with-hosted-e-commerce-solutions-to-launch-online-stores?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-com-partners-with-hosted-e-commerce-solutions-to-launch-online-stores\' title=\'WordPress.com made a big move to branch out into hosted e-commerce this week. For $299/year, Business users get unlimited access to premium themes, unlimited storage, live chat and email support, custom domains, no ads and the newest feature: “hassle-free” e-commerce. The company opted to offer its new online stores via partnerships with three hosted e-commerce providers: Ecwid, Shopify, and ShopLocket. Additional and/or monthly fees are also applicable, depending on the store provider selected. WordPress.com E-Commerce Excludes Native WordPress Solutions Notably absent from its partners are any native WordPress e-commerce plugins. This isn’t surprising, given that Automattic has historically favored SaaS solutions when it comes to WordPress products. The new offering was not without criticism from those who had hoped to see a few of WordPress’ high quality e-commerce plugins thrown into the mix. Commenting on the announcement post, WordPress developer Brent Shepherd said: It’s incredibly exciting to see WordPress.com offer eCommerce, but a real shame to see the many excellent open-source options snubbed (including those built specifically for WordPress). I understand the many very good reasons why it makes sense to partner with existing hosted services, but I hope that one day, we’ll see WooCommerce, Easy Digital Downloads (EDD) and other open-source eCommerce options alongside these initial launch partners. This is a point of contention for those who would like to see more fluidity for users transitioning between WordPress.com and self-hosted WordPress installations. A native WordPress e-commerce option might make it easier to transition stores that have outgrown the hosted solution. Whereas some have perceived the decision to partner with outside e-commerce providers as an outright snubbing of WordPress’ home grown solutions, the reality is that most WordPress.com users probably don’t care what’s under the hood to power their stores. If they did, they would likely be more inclined to go the self-hosted route. WordPress.com was created to help make the process of setting up and hosting a WordPress blog virtually painless for those who don’t want to dive into the technical details of setup and maintenance. The e-commerce partners they have selected have a similar audience of sellers who do not wish to be bothered with the technical burden of hosting their own e-commerce installations. The Rising Demand for Hosted E-Commerce WordPress.com’s $299/year price point is actually quite tempting for those who simply want to marry a hosted WordPress blog to a hosted store under one domain. This product attracts those who prefer to offload the burden of PCI compliance, SSL certificates, payment gateway maintenance and everything else required for selling online. Granular control of individual product display is limited to shortcode attributes within the WordPress.com stores, but customers are more than happy to trade deeper level customization for convenience. Aside from slapping a “Pay Now” Paypal button on a website, most modern e-commerce implementations require a tech-savvy administrator who isn’t afraid to tackle a few challenges. A hosted storefront is a more approachable option than the prospect of having to learn everything involved. It’s also more affordable than hiring a developer. Last year we featured Cart66′s launch as a fully managed WordPress e-commerce platform. With Automattic getting into the game, you know there’s a clear demand for this. People are looking to seamlessly couple the power of WordPress publishing with an online storefront and they’re willing to pay for convenience. As more retailers turn to the internet to expand their sales to a global audience, the demand for hosted e-commerce solutions will continue to rise. Any company that can provide a painless experience for customers will take a huge slice of this market.\'>WPTavern: WordPress.com Partners With Hosted E-Commerce Solutions to Launch Online Stores</a></li><li><a class=\'rsswidget\' href=\'http://wptavern.com/how-to-redirect-automatic-update-email-notifications-in-wordpress?utm_source=rss&utm_medium=rss&utm_campaign=how-to-redirect-automatic-update-email-notifications-in-wordpress\' title=\'One of the biggest features to land in WordPress 3.7 were automatic updates. When automatic updates are completed, an email notification is sent to the address specified within Settings > General which is typically the website administrator. However, if you maintain websites for clients, you probably want those notifications to be forwarded to you and not the client. Since other events are tied to the email address such as new user registrations, you can’t substitute the address with your own. Plugin Header A new WordPress plugin called Background Update Notification Email Address developed by Phil Wylie, Laura Vaquero, and Interactive Web Solutions solves the problem by changing the email address update notifications are sent to when an automatic background update is completed. By only changing the email address for automatic update notifications, clients are able to continue receiving emails related to administering their website. Where Updates Will Go After activating the plugin, you’ll find the notification email address located in Settings > Update Notifications. Place the email address where update notifications will go into the field, save the changes and wait for a security or maintenance release of WordPress. Filters and Hooks Are A Plugin Authors Best Friend I asked Phil, how was he able to redirect update notifications without affecting the other administrative emails generated by WordPress. I also asked him why they created the plugin. His response: In terms of how we redirect only the background update emails, WordPress provides us with a handy filter (auto_core_update_email and auto_core_update_send_email) we hook into in order to replace the email address. The filter only fires during an automatic background update and so all other WordPress emails are unaffected. Background updates are a valuable feature of WordPress, ensuring sites receive bug/security fixes quickly. There are a number of plugins which control background update behaviour. However, to my knowledge there are no plugins which redirect the email notifications. Phil suggests if a number of client sites are under your control to create a set of email rules to help organize the notifications. I’ve got this plugin setup in conjunction with a few email rules. Success notifications are archived and failed updates flagged for manual assessment. Great Plugin With One Drawback The only drawback I see is the possibility of clients deactivating the plugin, preventing the email from reaching its intended target. Outside of that, this plugin is a neat example of how the presence of filters and hooks in WordPress give plugin authors the opportunity to bend WordPress to their will.\'>WPTavern: How To Redirect Automatic Update Email Notifications In WordPress</a></li><li><a class=\'rsswidget\' href=\'http://wptavern.com/better-wordpress-security-plugin-gets-major-update-to-address-security-vulnerabilities?utm_source=rss&utm_medium=rss&utm_campaign=better-wordpress-security-plugin-gets-major-update-to-address-security-vulnerabilities\' title=\'Chris Wiegman of iThemes has announced the latest update to the Better WP Security plugin contains fixes for vulnerabilities discovered in 3.6.3. The updates address compatibility with InfiniteWP, the removal of their in-dashboard support form, and FooPlugins support form code. Better WordPress Security Scan While support for InfiniteWP was removed in 3.6.4, it’s been restored in 3.6.5 as they have since come up with a satisfactory solution eliminating the security risk. Wiegman goes into detail on each issue on the iThemes blog and assures everyone that as of version 3.6.5, the plugin contains no security vulnerabilities. Users of Better WordPress Security are encouraged to update to the latest version to receive the security patches.\'>WPTavern: Better WordPress Security Plugin Gets Major Update To Address Security Vulnerabilities</a></li></ul></div><div class=\"rss-widget\"><ul><li class=\'dashboard-news-plugin\'><span>Plugin popular:</span> <a href=\'http://wordpress.org/plugins/contact-form-plugin/\' class=\'dashboard-news-plugin-link\'>Contact Form</a></h5> <span>(<a href=\'plugin-install.php?tab=plugin-information&plugin=contact-form-plugin&_wpnonce=f74831b49c&TB_iframe=true&width=600&height=800\' class=\'thickbox\' title=\'Contact Form\'>Instalar</a>)</span></li></ul></div>', 'no');
INSERT INTO `wp_options` VALUES ('242', '_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a', '1393570639', 'yes');
INSERT INTO `wp_options` VALUES ('243', '_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:\"3898\";}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"Post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";s:4:\"2456\";}s:6:\"plugin\";a:3:{s:4:\"name\";s:6:\"plugin\";s:4:\"slug\";s:6:\"plugin\";s:5:\"count\";s:4:\"2344\";}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";s:4:\"1930\";}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";s:4:\"1856\";}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";s:4:\"1583\";}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";s:4:\"1329\";}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";s:4:\"1325\";}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";s:4:\"1310\";}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";s:4:\"1260\";}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";s:4:\"1225\";}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";s:4:\"1121\";}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";s:4:\"1000\";}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"Facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";s:3:\"982\";}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";s:3:\"974\";}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";s:3:\"950\";}s:9:\"wordpress\";a:3:{s:4:\"name\";s:9:\"wordpress\";s:4:\"slug\";s:9:\"wordpress\";s:5:\"count\";s:3:\"844\";}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";s:3:\"821\";}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";s:3:\"780\";}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";s:3:\"722\";}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";s:3:\"686\";}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";s:3:\"681\";}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";s:3:\"678\";}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";s:3:\"623\";}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"AJAX\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";s:3:\"615\";}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";s:3:\"595\";}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";s:3:\"572\";}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";s:3:\"570\";}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";s:3:\"541\";}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";s:3:\"539\";}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";s:3:\"530\";}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";s:3:\"522\";}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";s:3:\"506\";}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";s:3:\"505\";}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";s:3:\"471\";}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";s:3:\"458\";}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";s:3:\"453\";}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";s:3:\"452\";}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";s:3:\"436\";}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";s:3:\"432\";}}', 'yes');
INSERT INTO `wp_options` VALUES ('244', 'aam_updated', '2.2', 'yes');
INSERT INTO `wp_options` VALUES ('246', 'aam_menu_role_administrator', 'a:42:{s:9:\"index.php\";s:1:\"0\";s:15:\"update-core.php\";s:1:\"0\";s:8:\"edit.php\";s:1:\"0\";s:12:\"post-new.php\";s:1:\"0\";s:31:\"edit-tags.php?taxonomy=category\";s:1:\"0\";s:31:\"edit-tags.php?taxonomy=post_tag\";s:1:\"0\";s:10:\"upload.php\";s:1:\"0\";s:13:\"media-new.php\";s:1:\"0\";s:23:\"edit.php?post_type=page\";s:1:\"0\";s:27:\"post-new.php?post_type=page\";s:1:\"0\";s:17:\"edit-comments.php\";s:1:\"0\";s:10:\"themes.php\";s:1:\"0\";s:13:\"customize.php\";s:1:\"0\";s:11:\"widgets.php\";s:1:\"0\";s:13:\"nav-menus.php\";s:1:\"0\";s:13:\"custom-header\";s:1:\"0\";s:17:\"custom-background\";s:1:\"0\";s:16:\"theme-editor.php\";s:1:\"0\";s:11:\"plugins.php\";s:1:\"0\";s:18:\"plugin-install.php\";s:1:\"0\";s:17:\"plugin-editor.php\";s:1:\"0\";s:9:\"users.php\";s:1:\"0\";s:12:\"user-new.php\";s:1:\"0\";s:11:\"profile.php\";s:1:\"0\";s:9:\"tools.php\";s:1:\"0\";s:10:\"import.php\";s:1:\"0\";s:10:\"export.php\";s:1:\"0\";s:19:\"options-general.php\";s:1:\"0\";s:19:\"options-writing.php\";s:1:\"0\";s:19:\"options-reading.php\";s:1:\"0\";s:22:\"options-discussion.php\";s:1:\"0\";s:17:\"options-media.php\";s:1:\"0\";s:21:\"options-permalink.php\";s:1:\"0\";s:22:\"edit.php?post_type=acf\";s:1:\"0\";s:10:\"acf-export\";s:1:\"0\";s:10:\"acf-addons\";s:1:\"0\";s:11:\"acf-upgrade\";s:1:\"0\";s:28:\"easy-contact-forms-main-page\";s:1:\"0\";s:26:\"easy-contact-forms-support\";s:1:\"0\";s:3:\"aam\";s:1:\"0\";s:15:\"aam-configpress\";s:1:\"0\";s:7:\"aam-ext\";s:1:\"0\";}', 'yes');
INSERT INTO `wp_options` VALUES ('247', 'aam_metabox_role_administrator', 'a:0:{}', 'yes');
INSERT INTO `wp_options` VALUES ('248', 'aam_event_role_administrator', 'a:0:{}', 'yes');
INSERT INTO `wp_options` VALUES ('249', 'aam_backup_role_administrator', 'a:1:{i:0;a:4:{s:4:\"menu\";a:42:{s:9:\"index.php\";s:1:\"0\";s:15:\"update-core.php\";s:1:\"0\";s:8:\"edit.php\";s:1:\"0\";s:12:\"post-new.php\";s:1:\"0\";s:31:\"edit-tags.php?taxonomy=category\";s:1:\"0\";s:31:\"edit-tags.php?taxonomy=post_tag\";s:1:\"0\";s:10:\"upload.php\";s:1:\"0\";s:13:\"media-new.php\";s:1:\"0\";s:23:\"edit.php?post_type=page\";s:1:\"0\";s:27:\"post-new.php?post_type=page\";s:1:\"0\";s:17:\"edit-comments.php\";s:1:\"0\";s:10:\"themes.php\";s:1:\"0\";s:13:\"customize.php\";s:1:\"0\";s:11:\"widgets.php\";s:1:\"0\";s:13:\"nav-menus.php\";s:1:\"0\";s:13:\"custom-header\";s:1:\"0\";s:17:\"custom-background\";s:1:\"0\";s:16:\"theme-editor.php\";s:1:\"0\";s:11:\"plugins.php\";s:1:\"0\";s:18:\"plugin-install.php\";s:1:\"0\";s:17:\"plugin-editor.php\";s:1:\"1\";s:9:\"users.php\";s:1:\"0\";s:12:\"user-new.php\";s:1:\"0\";s:11:\"profile.php\";s:1:\"0\";s:9:\"tools.php\";s:1:\"0\";s:10:\"import.php\";s:1:\"0\";s:10:\"export.php\";s:1:\"0\";s:19:\"options-general.php\";s:1:\"0\";s:19:\"options-writing.php\";s:1:\"0\";s:19:\"options-reading.php\";s:1:\"0\";s:22:\"options-discussion.php\";s:1:\"0\";s:17:\"options-media.php\";s:1:\"0\";s:21:\"options-permalink.php\";s:1:\"0\";s:22:\"edit.php?post_type=acf\";s:1:\"0\";s:10:\"acf-export\";s:1:\"0\";s:10:\"acf-addons\";s:1:\"0\";s:11:\"acf-upgrade\";s:1:\"0\";s:28:\"easy-contact-forms-main-page\";s:1:\"0\";s:26:\"easy-contact-forms-support\";s:1:\"0\";s:3:\"aam\";s:1:\"0\";s:15:\"aam-configpress\";s:1:\"0\";s:7:\"aam-ext\";s:1:\"0\";}s:10:\"capability\";a:63:{s:13:\"switch_themes\";i:1;s:11:\"edit_themes\";i:1;s:16:\"activate_plugins\";i:1;s:12:\"edit_plugins\";i:1;s:10:\"edit_users\";i:1;s:10:\"edit_files\";i:1;s:14:\"manage_options\";i:1;s:17:\"moderate_comments\";i:1;s:17:\"manage_categories\";i:1;s:12:\"manage_links\";i:1;s:12:\"upload_files\";i:1;s:6:\"import\";i:1;s:15:\"unfiltered_html\";i:1;s:10:\"edit_posts\";i:1;s:17:\"edit_others_posts\";i:1;s:20:\"edit_published_posts\";i:1;s:13:\"publish_posts\";i:1;s:10:\"edit_pages\";i:1;s:4:\"read\";i:1;s:8:\"level_10\";i:1;s:7:\"level_9\";i:1;s:7:\"level_8\";i:1;s:7:\"level_7\";i:1;s:7:\"level_6\";i:1;s:7:\"level_5\";i:1;s:7:\"level_4\";i:1;s:7:\"level_3\";i:1;s:7:\"level_2\";i:1;s:7:\"level_1\";i:1;s:7:\"level_0\";i:1;s:17:\"edit_others_pages\";i:1;s:20:\"edit_published_pages\";i:1;s:13:\"publish_pages\";i:1;s:12:\"delete_pages\";i:1;s:19:\"delete_others_pages\";i:1;s:22:\"delete_published_pages\";i:1;s:12:\"delete_posts\";i:1;s:19:\"delete_others_posts\";i:1;s:22:\"delete_published_posts\";i:1;s:20:\"delete_private_posts\";i:1;s:18:\"edit_private_posts\";i:1;s:18:\"read_private_posts\";i:1;s:20:\"delete_private_pages\";i:1;s:18:\"edit_private_pages\";i:1;s:18:\"read_private_pages\";i:1;s:12:\"delete_users\";i:1;s:12:\"create_users\";i:1;s:17:\"unfiltered_upload\";i:1;s:14:\"edit_dashboard\";i:1;s:14:\"update_plugins\";i:1;s:14:\"delete_plugins\";i:1;s:15:\"install_plugins\";i:1;s:13:\"update_themes\";i:1;s:14:\"install_themes\";i:1;s:11:\"update_core\";i:1;s:10:\"list_users\";i:1;s:12:\"remove_users\";i:1;s:9:\"add_users\";i:1;s:13:\"promote_users\";i:1;s:18:\"edit_theme_options\";i:1;s:13:\"delete_themes\";i:1;s:6:\"export\";i:1;s:13:\"administrator\";b:1;}s:7:\"metabox\";a:0:{}s:5:\"event\";a:0:{}}}', 'yes');
INSERT INTO `wp_options` VALUES ('250', 'aam_menu_role_editor', 'a:13:{s:9:\"index.php\";s:1:\"0\";s:8:\"edit.php\";s:1:\"0\";s:12:\"post-new.php\";s:1:\"0\";s:31:\"edit-tags.php?taxonomy=category\";s:1:\"0\";s:31:\"edit-tags.php?taxonomy=post_tag\";s:1:\"0\";s:10:\"upload.php\";s:1:\"0\";s:13:\"media-new.php\";s:1:\"0\";s:23:\"edit.php?post_type=page\";s:1:\"0\";s:27:\"post-new.php?post_type=page\";s:1:\"0\";s:17:\"edit-comments.php\";s:1:\"0\";s:9:\"users.php\";s:1:\"0\";s:11:\"profile.php\";s:1:\"0\";s:9:\"tools.php\";s:1:\"0\";}', 'yes');
INSERT INTO `wp_options` VALUES ('251', 'aam_metabox_role_editor', 'a:0:{}', 'yes');
INSERT INTO `wp_options` VALUES ('252', 'aam_event_role_editor', 'a:0:{}', 'yes');
INSERT INTO `wp_options` VALUES ('253', 'aam_backup_role_editor', 'a:1:{i:0;a:4:{s:4:\"menu\";a:13:{s:9:\"index.php\";s:1:\"0\";s:8:\"edit.php\";s:1:\"0\";s:12:\"post-new.php\";s:1:\"0\";s:31:\"edit-tags.php?taxonomy=category\";s:1:\"0\";s:31:\"edit-tags.php?taxonomy=post_tag\";s:1:\"0\";s:10:\"upload.php\";s:1:\"0\";s:13:\"media-new.php\";s:1:\"0\";s:23:\"edit.php?post_type=page\";s:1:\"0\";s:27:\"post-new.php?post_type=page\";s:1:\"0\";s:17:\"edit-comments.php\";s:1:\"0\";s:9:\"users.php\";s:1:\"0\";s:11:\"profile.php\";s:1:\"0\";s:9:\"tools.php\";s:1:\"0\";}s:10:\"capability\";a:35:{s:17:\"moderate_comments\";i:1;s:17:\"manage_categories\";i:1;s:12:\"manage_links\";i:1;s:12:\"upload_files\";i:1;s:15:\"unfiltered_html\";i:1;s:10:\"edit_posts\";i:1;s:17:\"edit_others_posts\";i:1;s:20:\"edit_published_posts\";i:1;s:13:\"publish_posts\";i:1;s:10:\"edit_pages\";i:1;s:4:\"read\";i:1;s:7:\"level_7\";i:1;s:7:\"level_6\";i:1;s:7:\"level_5\";i:1;s:7:\"level_4\";i:1;s:7:\"level_3\";i:1;s:7:\"level_2\";i:1;s:7:\"level_1\";i:1;s:7:\"level_0\";i:1;s:17:\"edit_others_pages\";i:1;s:20:\"edit_published_pages\";i:1;s:13:\"publish_pages\";i:1;s:12:\"delete_pages\";i:1;s:19:\"delete_others_pages\";i:1;s:22:\"delete_published_pages\";i:1;s:12:\"delete_posts\";i:1;s:19:\"delete_others_posts\";i:1;s:22:\"delete_published_posts\";i:1;s:20:\"delete_private_posts\";i:1;s:18:\"edit_private_posts\";i:1;s:18:\"read_private_posts\";i:1;s:20:\"delete_private_pages\";i:1;s:18:\"edit_private_pages\";i:1;s:18:\"read_private_pages\";i:1;s:6:\"editor\";b:1;}s:7:\"metabox\";a:0:{}s:5:\"event\";a:0:{}}}', 'yes');
INSERT INTO `wp_options` VALUES ('254', 'aam_metabox_cache', 'a:5:{s:7:\"widgets\";a:14:{s:15:\"WP_Widget_Pages\";a:2:{s:5:\"title\";s:8:\"Páginas\";s:2:\"id\";s:15:\"WP_Widget_Pages\";}s:18:\"WP_Widget_Calendar\";a:2:{s:5:\"title\";s:10:\"Calendario\";s:2:\"id\";s:18:\"WP_Widget_Calendar\";}s:18:\"WP_Widget_Archives\";a:2:{s:5:\"title\";s:8:\"Archivos\";s:2:\"id\";s:18:\"WP_Widget_Archives\";}s:14:\"WP_Widget_Meta\";a:2:{s:5:\"title\";s:4:\"Meta\";s:2:\"id\";s:14:\"WP_Widget_Meta\";}s:16:\"WP_Widget_Search\";a:2:{s:5:\"title\";s:6:\"Buscar\";s:2:\"id\";s:16:\"WP_Widget_Search\";}s:14:\"WP_Widget_Text\";a:2:{s:5:\"title\";s:5:\"Texto\";s:2:\"id\";s:14:\"WP_Widget_Text\";}s:20:\"WP_Widget_Categories\";a:2:{s:5:\"title\";s:11:\"Categorías\";s:2:\"id\";s:20:\"WP_Widget_Categories\";}s:22:\"WP_Widget_Recent_Posts\";a:2:{s:5:\"title\";s:18:\"Entradas recientes\";s:2:\"id\";s:22:\"WP_Widget_Recent_Posts\";}s:25:\"WP_Widget_Recent_Comments\";a:2:{s:5:\"title\";s:21:\"Comentarios recientes\";s:2:\"id\";s:25:\"WP_Widget_Recent_Comments\";}s:13:\"WP_Widget_RSS\";a:2:{s:5:\"title\";s:3:\"RSS\";s:2:\"id\";s:13:\"WP_Widget_RSS\";}s:19:\"WP_Widget_Tag_Cloud\";a:2:{s:5:\"title\";s:17:\"Nube de etiquetas\";s:2:\"id\";s:19:\"WP_Widget_Tag_Cloud\";}s:18:\"WP_Nav_Menu_Widget\";a:2:{s:5:\"title\";s:19:\"Menú personalizado\";s:2:\"id\";s:18:\"WP_Nav_Menu_Widget\";}s:18:\"Tribe_Image_Widget\";a:2:{s:5:\"title\";s:20:\"Widget de una imagen\";s:2:\"id\";s:18:\"Tribe_Image_Widget\";}s:31:\"Twenty_Fourteen_Ephemera_Widget\";a:2:{s:5:\"title\";s:24:\"Twenty Fourteen Efímera\";s:2:\"id\";s:31:\"Twenty_Fourteen_Ephemera_Widget\";}}s:9:\"dashboard\";a:4:{s:19:\"dashboard_right_now\";a:2:{s:2:\"id\";s:19:\"dashboard_right_now\";s:5:\"title\";s:13:\"De un vistazo\";}s:18:\"dashboard_activity\";a:2:{s:2:\"id\";s:18:\"dashboard_activity\";s:5:\"title\";s:9:\"Actividad\";}s:21:\"dashboard_quick_press\";a:2:{s:2:\"id\";s:21:\"dashboard_quick_press\";s:5:\"title\";s:27:\"Borrador rápido Borradores\";}s:17:\"dashboard_primary\";a:2:{s:2:\"id\";s:17:\"dashboard_primary\";s:5:\"title\";s:21:\"Noticias de WordPress\";}}s:4:\"post\";a:12:{s:9:\"submitdiv\";a:2:{s:2:\"id\";s:9:\"submitdiv\";s:5:\"title\";s:8:\"Publicar\";}s:9:\"formatdiv\";a:2:{s:2:\"id\";s:9:\"formatdiv\";s:5:\"title\";s:7:\"Formato\";}s:11:\"categorydiv\";a:2:{s:2:\"id\";s:11:\"categorydiv\";s:5:\"title\";s:11:\"Categorías\";}s:16:\"tagsdiv-post_tag\";a:2:{s:2:\"id\";s:16:\"tagsdiv-post_tag\";s:5:\"title\";s:9:\"Etiquetas\";}s:12:\"postimagediv\";a:2:{s:2:\"id\";s:12:\"postimagediv\";s:5:\"title\";s:16:\"Imagen destacada\";}s:11:\"postexcerpt\";a:2:{s:2:\"id\";s:11:\"postexcerpt\";s:5:\"title\";s:8:\"Extracto\";}s:13:\"trackbacksdiv\";a:2:{s:2:\"id\";s:13:\"trackbacksdiv\";s:5:\"title\";s:17:\"Enviar trackbacks\";}s:10:\"postcustom\";a:2:{s:2:\"id\";s:10:\"postcustom\";s:5:\"title\";s:21:\"Campos personalizados\";}s:16:\"commentstatusdiv\";a:2:{s:2:\"id\";s:16:\"commentstatusdiv\";s:5:\"title\";s:11:\"Comentarios\";}s:7:\"slugdiv\";a:2:{s:2:\"id\";s:7:\"slugdiv\";s:5:\"title\";s:4:\"Slug\";}s:9:\"authordiv\";a:2:{s:2:\"id\";s:9:\"authordiv\";s:5:\"title\";s:5:\"Autor\";}s:6:\"acf_32\";a:2:{s:2:\"id\";s:6:\"acf_32\";s:5:\"title\";s:19:\"Grupo para acordeon\";}}s:4:\"page\";a:8:{s:9:\"submitdiv\";a:2:{s:2:\"id\";s:9:\"submitdiv\";s:5:\"title\";s:8:\"Publicar\";}s:13:\"pageparentdiv\";a:2:{s:2:\"id\";s:13:\"pageparentdiv\";s:5:\"title\";s:20:\"Atributos de página\";}s:12:\"postimagediv\";a:2:{s:2:\"id\";s:12:\"postimagediv\";s:5:\"title\";s:16:\"Imagen destacada\";}s:10:\"postcustom\";a:2:{s:2:\"id\";s:10:\"postcustom\";s:5:\"title\";s:21:\"Campos personalizados\";}s:16:\"commentstatusdiv\";a:2:{s:2:\"id\";s:16:\"commentstatusdiv\";s:5:\"title\";s:11:\"Comentarios\";}s:7:\"slugdiv\";a:2:{s:2:\"id\";s:7:\"slugdiv\";s:5:\"title\";s:4:\"Slug\";}s:9:\"authordiv\";a:2:{s:2:\"id\";s:9:\"authordiv\";s:5:\"title\";s:5:\"Autor\";}s:6:\"acf_32\";a:2:{s:2:\"id\";s:6:\"acf_32\";s:5:\"title\";s:19:\"Grupo para acordeon\";}}s:3:\"acf\";a:5:{s:9:\"submitdiv\";a:2:{s:2:\"id\";s:9:\"submitdiv\";s:5:\"title\";s:8:\"Publicar\";}s:7:\"slugdiv\";a:2:{s:2:\"id\";s:7:\"slugdiv\";s:5:\"title\";s:4:\"Slug\";}s:10:\"acf_fields\";a:2:{s:2:\"id\";s:10:\"acf_fields\";s:5:\"title\";s:6:\"Fields\";}s:12:\"acf_location\";a:2:{s:2:\"id\";s:12:\"acf_location\";s:5:\"title\";s:8:\"Location\";}s:11:\"acf_options\";a:2:{s:2:\"id\";s:11:\"acf_options\";s:5:\"title\";s:8:\"Opciones\";}}}', 'yes');
INSERT INTO `wp_options` VALUES ('255', 'wpseo', 'a:6:{s:20:\"disableadvanced_meta\";s:2:\"on\";s:7:\"version\";s:6:\"1.4.25\";s:11:\"theme_check\";a:1:{s:11:\"description\";b:1;}s:14:\"tracking_popup\";s:4:\"done\";s:14:\"yoast_tracking\";s:2:\"on\";s:11:\"ignore_tour\";s:6:\"ignore\";}', 'yes');
INSERT INTO `wp_options` VALUES ('256', 'wpseo_titles', 'a:30:{s:17:\"forcerewritetitle\";s:2:\"on\";s:16:\"noindex-subpages\";s:2:\"on\";s:15:\"usemetakeywords\";s:2:\"on\";s:5:\"noodp\";s:2:\"on\";s:6:\"noydir\";s:2:\"on\";s:12:\"hide-rsdlink\";s:2:\"on\";s:16:\"hide-wlwmanifest\";s:2:\"on\";s:14:\"hide-shortlink\";s:2:\"on\";s:10:\"title-home\";s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";s:13:\"metadesc-home\";s:0:\"\";s:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-post\";s:0:\"\";s:10:\"title-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-page\";s:0:\"\";s:16:\"title-attachment\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-attachment\";s:0:\"\";s:14:\"title-category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:17:\"metadesc-category\";s:0:\"\";s:14:\"title-post_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:17:\"metadesc-post_tag\";s:0:\"\";s:17:\"title-post_format\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:20:\"metadesc-post_format\";s:0:\"\";s:19:\"noindex-post_format\";s:2:\"on\";s:12:\"title-author\";s:42:\"%%name%%, Author at %%sitename%% %%page%% \";s:15:\"metadesc-author\";s:0:\"\";s:13:\"title-archive\";s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";s:16:\"metadesc-archive\";s:0:\"\";s:15:\"noindex-archive\";s:2:\"on\";s:12:\"title-search\";s:63:\"You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%\";s:9:\"title-404\";s:35:\"Page Not Found %%sep%% %%sitename%%\";}', 'yes');
INSERT INTO `wp_options` VALUES ('258', 'wpseo_xml', 'a:2:{s:16:\"enablexmlsitemap\";s:2:\"on\";s:36:\"post_types-attachment-not_in_sitemap\";b:1;}', 'yes');
INSERT INTO `wp_options` VALUES ('259', 'wpseo_social', 'a:1:{s:9:\"opengraph\";s:2:\"on\";}', 'yes');
INSERT INTO `wp_options` VALUES ('260', 'wpseo_rss', 'a:1:{s:8:\"rssafter\";s:53:\"The post %%POSTLINK%% appeared first on %%BLOGLINK%%.\";}', 'yes');
INSERT INTO `wp_options` VALUES ('261', 'wpseo_permalinks', 'a:1:{s:10:\"cleanslugs\";s:2:\"on\";}', 'yes');
INSERT INTO `wp_options` VALUES ('262', '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');
INSERT INTO `wp_options` VALUES ('263', '_site_transient_update_plugins', 'O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1393564872;s:7:\"checked\";a:14:{s:31:\"advanced-access-manager/aam.php\";s:5:\"2.2.3\";s:30:\"advanced-custom-fields/acf.php\";s:5:\"4.3.4\";s:45:\"acf-flexible-content/acf-flexible-content.php\";s:5:\"1.0.0\";s:27:\"acf-gallery/acf-gallery.php\";s:5:\"1.0.0\";s:37:\"acf-options-page/acf-options-page.php\";s:5:\"1.0.1\";s:29:\"acf-repeater/acf-repeater.php\";s:5:\"1.1.1\";s:67:\"advanced-custom-field-repeater-collapser/acf_repeater_collapser.php\";s:5:\"1.1.0\";s:19:\"akismet/akismet.php\";s:5:\"2.5.9\";s:41:\"easy-contact-forms/easy-contact-forms.php\";s:5:\"1.4.9\";s:9:\"hello.php\";s:3:\"1.6\";s:29:\"image-widget/image-widget.php\";s:5:\"4.0.8\";s:55:\"wck-custom-fields-and-custom-post-types-creator/wck.php\";s:5:\"1.0.7\";s:24:\"wordpress-seo/wp-seo.php\";s:6:\"1.4.25\";s:29:\"settings-api/settings-api.php\";s:3:\"0.1\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}', 'yes');
INSERT INTO `wp_options` VALUES ('267', '_transient_is_multi_author', '0', 'yes');
INSERT INTO `wp_options` VALUES ('269', 'wedevs_basics', 'a:1:{s:11:\"widget_home\";s:2:\"no\";}', 'yes');
INSERT INTO `wp_options` VALUES ('270', 'wedevs_advanced', '', 'yes');
INSERT INTO `wp_options` VALUES ('271', 'wedevs_others', '', 'yes');
-- ----------------------------
-- Table structure for wp_postmeta
-- ----------------------------
DROP TABLE IF EXISTS `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 AUTO_INCREMENT=268 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of wp_postmeta
-- ----------------------------
INSERT INTO `wp_postmeta` VALUES ('2', '6', '_edit_last', '1');
INSERT INTO `wp_postmeta` VALUES ('3', '6', '_edit_lock', '1393391773:1');
INSERT INTO `wp_postmeta` VALUES ('4', '6', '_wp_page_template', 'page-templates/una-columna.php');
INSERT INTO `wp_postmeta` VALUES ('5', '8', '_edit_last', '1');
INSERT INTO `wp_postmeta` VALUES ('6', '8', '_wp_page_template', 'page-templates/dos-columna.php');
INSERT INTO `wp_postmeta` VALUES ('7', '8', '_edit_lock', '1393560829:1');
INSERT INTO `wp_postmeta` VALUES ('8', '10', '_edit_last', '1');
INSERT INTO `wp_postmeta` VALUES ('9', '10', '_edit_lock', '1393560766:1');
INSERT INTO `wp_postmeta` VALUES ('10', '10', '_wp_page_template', 'page-templates/dos-columna.php');
INSERT INTO `wp_postmeta` VALUES ('11', '12', '_edit_last', '1');
INSERT INTO `wp_postmeta` VALUES ('12', '12', '_edit_lock', '1393391384:1');
INSERT INTO `wp_postmeta` VALUES ('13', '12', '_wp_page_template', 'page-templates/dos-columna.php');
INSERT INTO `wp_postmeta` VALUES ('14', '14', '_edit_last', '1');
INSERT INTO `wp_postmeta` VALUES ('15', '14', '_edit_lock', '1393560802:1');
INSERT INTO `wp_postmeta` VALUES ('16', '14', '_wp_page_template', 'page-templates/una-columna.php');
INSERT INTO `wp_postmeta` VALUES ('17', '16', '_edit_last', '1');
INSERT INTO `wp_postmeta` VALUES ('18', '16', '_edit_lock', '1393476281:1');
INSERT INTO `wp_postmeta` VALUES ('19', '16', '_wp_page_template', 'page-templates/una-columna.php');
INSERT INTO `wp_postmeta` VALUES ('20', '18', '_menu_item_type', 'post_type');
INSERT INTO `wp_postmeta` VALUES ('21', '18', '_menu_item_menu_item_parent', '0');