-
Notifications
You must be signed in to change notification settings - Fork 0
/
chris.sql
2109 lines (1958 loc) · 606 KB
/
chris.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- phpMyAdmin SQL Dump
-- version 3.5.2.2
-- http://www.phpmyadmin.net
--
-- Host: 127.0.0.1
-- Generation Time: Sep 22, 2013 at 11:21 AM
-- Server version: 5.5.27
-- PHP Version: 5.4.7
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Database: `chris`
--
-- --------------------------------------------------------
--
-- Table structure for table `wp_commentmeta`
--
CREATE TABLE IF NOT EXISTS `wp_commentmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`meta_id`),
KEY `comment_id` (`comment_id`),
KEY `meta_key` (`meta_key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `wp_comments`
--
CREATE TABLE IF NOT EXISTS `wp_comments` (
`comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
`comment_author` tinytext NOT NULL,
`comment_author_email` varchar(100) NOT NULL DEFAULT '',
`comment_author_url` varchar(200) NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) NOT NULL DEFAULT '',
`comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_content` text NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT '0',
`comment_approved` varchar(20) NOT NULL DEFAULT '1',
`comment_agent` varchar(255) NOT NULL DEFAULT '',
`comment_type` varchar(20) NOT NULL DEFAULT '',
`comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`comment_ID`),
KEY `comment_post_ID` (`comment_post_ID`),
KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
KEY `comment_date_gmt` (`comment_date_gmt`),
KEY `comment_parent` (`comment_parent`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- Dumping data for table `wp_comments`
--
INSERT INTO `wp_comments` (`comment_ID`, `comment_post_ID`, `comment_author`, `comment_author_email`, `comment_author_url`, `comment_author_IP`, `comment_date`, `comment_date_gmt`, `comment_content`, `comment_karma`, `comment_approved`, `comment_agent`, `comment_type`, `comment_parent`, `user_id`) VALUES
(1, 1, 'Mr WordPress', '', 'http://wordpress.org/', '', '2013-09-21 23:05:24', '2013-09-21 23:05:24', '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);
-- --------------------------------------------------------
--
-- Table structure for table `wp_links`
--
CREATE TABLE IF NOT EXISTS `wp_links` (
`link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`link_url` varchar(255) NOT NULL DEFAULT '',
`link_name` varchar(255) NOT NULL DEFAULT '',
`link_image` varchar(255) NOT NULL DEFAULT '',
`link_target` varchar(25) NOT NULL DEFAULT '',
`link_description` varchar(255) NOT NULL DEFAULT '',
`link_visible` varchar(20) NOT NULL DEFAULT 'Y',
`link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
`link_rating` int(11) NOT NULL DEFAULT '0',
`link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`link_rel` varchar(255) NOT NULL DEFAULT '',
`link_notes` mediumtext NOT NULL,
`link_rss` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`link_id`),
KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `wp_mf_custom_fields`
--
CREATE TABLE IF NOT EXISTS `wp_mf_custom_fields` (
`id` int(19) NOT NULL AUTO_INCREMENT,
`name` varchar(150) NOT NULL,
`label` varchar(150) NOT NULL,
`description` text,
`post_type` varchar(120) NOT NULL,
`custom_group_id` int(19) NOT NULL,
`type` varchar(100) NOT NULL,
`required_field` tinyint(1) DEFAULT NULL,
`display_order` mediumint(9) DEFAULT '0',
`duplicated` tinyint(1) DEFAULT NULL,
`active` tinyint(1) DEFAULT '1',
`options` text,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;
--
-- Dumping data for table `wp_mf_custom_fields`
--
INSERT INTO `wp_mf_custom_fields` (`id`, `name`, `label`, `description`, `post_type`, `custom_group_id`, `type`, `required_field`, `display_order`, `duplicated`, `active`, `options`) VALUES
(1, 'expert_linkedin', 'LinkedIn profile URL', 'Full URL with http://', 'expert', 1, 'textbox', 0, 0, 0, 1, 'a:2:{s:9:"evalueate";s:1:"0";s:4:"size";s:2:"60";}'),
(2, 'expert_question', 'Question', '', 'expert', 1, 'related_type', 0, 0, 1, 1, 'a:4:{s:9:"post_type";s:8:"question";s:11:"field_order";s:2:"id";s:5:"order";s:3:"asc";s:6:"notype";s:0:"";}');
-- --------------------------------------------------------
--
-- Table structure for table `wp_mf_custom_groups`
--
CREATE TABLE IF NOT EXISTS `wp_mf_custom_groups` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`label` varchar(255) NOT NULL,
`post_type` varchar(255) NOT NULL,
`duplicated` tinyint(1) DEFAULT '0',
`expanded` tinyint(1) DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- Dumping data for table `wp_mf_custom_groups`
--
INSERT INTO `wp_mf_custom_groups` (`id`, `name`, `label`, `post_type`, `duplicated`, `expanded`) VALUES
(1, 'expert_fields', 'Expert fields', 'expert', 0, 1);
-- --------------------------------------------------------
--
-- Table structure for table `wp_mf_custom_taxonomy`
--
CREATE TABLE IF NOT EXISTS `wp_mf_custom_taxonomy` (
`id` mediumint(9) NOT NULL AUTO_INCREMENT,
`type` varchar(20) NOT NULL,
`name` varchar(50) NOT NULL,
`description` text,
`arguments` text,
`active` tinyint(1) DEFAULT '1',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `wp_mf_posttypes`
--
CREATE TABLE IF NOT EXISTS `wp_mf_posttypes` (
`id` mediumint(9) NOT NULL AUTO_INCREMENT,
`type` varchar(20) NOT NULL,
`name` varchar(50) NOT NULL,
`description` text,
`arguments` text,
`active` tinyint(1) DEFAULT '1',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;
--
-- Dumping data for table `wp_mf_posttypes`
--
INSERT INTO `wp_mf_posttypes` (`id`, `type`, `name`, `description`, `arguments`, `active`) VALUES
(1, 'expert', 'Experts', '', 'a:4:{s:4:"core";a:6:{s:2:"id";s:0:"";s:5:"label";s:7:"Experts";s:6:"labels";s:0:"";s:4:"type";s:6:"expert";s:11:"description";s:0:"";s:8:"quantity";s:1:"0";}s:7:"support";a:5:{s:5:"title";s:1:"1";s:6:"editor";s:1:"1";s:9:"thumbnail";s:1:"1";s:7:"excerpt";s:1:"1";s:8:"comments";s:1:"1";}s:6:"option";a:16:{s:6:"public";s:1:"1";s:18:"publicly_queryable";s:1:"1";s:19:"exclude_from_search";s:1:"0";s:7:"show_ui";s:1:"1";s:12:"show_in_menu";s:1:"1";s:13:"menu_position";s:0:"";s:15:"capability_type";s:4:"post";s:12:"hierarchical";s:1:"0";s:11:"has_archive";s:1:"0";s:16:"has_archive_slug";s:0:"";s:7:"rewrite";s:1:"0";s:12:"rewrite_slug";s:0:"";s:10:"with_front";s:1:"1";s:9:"query_var";s:1:"1";s:10:"can_export";s:1:"1";s:17:"show_in_nav_menus";s:1:"1";}s:5:"label";a:13:{s:4:"name";s:7:"Experts";s:13:"singular_name";s:7:"Experts";s:7:"add_new";s:11:"Add Experts";s:9:"all_items";s:11:"All Experts";s:12:"add_new_item";s:15:"Add New Experts";s:9:"edit_item";s:12:"Edit Experts";s:8:"new_item";s:11:"New Experts";s:9:"view_item";s:12:"View Experts";s:12:"search_items";s:14:"Search Experts";s:9:"not_found";s:16:"No Experts found";s:18:"not_found_in_trash";s:25:"No Experts found in Trash";s:17:"parent_item_colon";s:15:"Parent Experts:";s:9:"menu_name";s:7:"Experts";}}', 1),
(2, 'question', 'Expert questions', '', 'a:4:{s:4:"core";a:6:{s:2:"id";s:0:"";s:5:"label";s:16:"Expert questions";s:6:"labels";s:0:"";s:4:"type";s:8:"question";s:11:"description";s:0:"";s:8:"quantity";s:1:"0";}s:7:"support";a:4:{s:5:"title";s:1:"1";s:6:"editor";s:1:"1";s:7:"excerpt";s:1:"1";s:8:"comments";s:1:"1";}s:6:"option";a:16:{s:6:"public";s:1:"1";s:18:"publicly_queryable";s:1:"1";s:19:"exclude_from_search";s:1:"0";s:7:"show_ui";s:1:"1";s:12:"show_in_menu";s:1:"1";s:13:"menu_position";s:0:"";s:15:"capability_type";s:4:"post";s:12:"hierarchical";s:1:"0";s:11:"has_archive";s:1:"0";s:16:"has_archive_slug";s:0:"";s:7:"rewrite";s:1:"0";s:12:"rewrite_slug";s:0:"";s:10:"with_front";s:1:"1";s:9:"query_var";s:1:"1";s:10:"can_export";s:1:"1";s:17:"show_in_nav_menus";s:1:"1";}s:5:"label";a:13:{s:4:"name";s:16:"Expert questions";s:13:"singular_name";s:16:"Expert questions";s:7:"add_new";s:20:"Add Expert questions";s:9:"all_items";s:20:"All Expert questions";s:12:"add_new_item";s:24:"Add New Expert questions";s:9:"edit_item";s:21:"Edit Expert questions";s:8:"new_item";s:20:"New Expert questions";s:9:"view_item";s:21:"View Expert questions";s:12:"search_items";s:23:"Search Expert questions";s:9:"not_found";s:25:"No Expert questions found";s:18:"not_found_in_trash";s:34:"No Expert questions found in Trash";s:17:"parent_item_colon";s:24:"Parent Expert questions:";s:9:"menu_name";s:16:"Expert questions";}}', 1),
(3, 'service', 'Services', '', 'a:4:{s:4:"core";a:6:{s:2:"id";s:0:"";s:5:"label";s:8:"Services";s:6:"labels";s:0:"";s:4:"type";s:7:"service";s:11:"description";s:0:"";s:8:"quantity";s:1:"0";}s:7:"support";a:4:{s:5:"title";s:1:"1";s:6:"editor";s:1:"1";s:9:"thumbnail";s:1:"1";s:7:"excerpt";s:1:"1";}s:6:"option";a:16:{s:6:"public";s:1:"1";s:18:"publicly_queryable";s:1:"1";s:19:"exclude_from_search";s:1:"0";s:7:"show_ui";s:1:"1";s:12:"show_in_menu";s:1:"1";s:13:"menu_position";s:0:"";s:15:"capability_type";s:4:"post";s:12:"hierarchical";s:1:"0";s:11:"has_archive";s:1:"0";s:16:"has_archive_slug";s:0:"";s:7:"rewrite";s:1:"0";s:12:"rewrite_slug";s:0:"";s:10:"with_front";s:1:"1";s:9:"query_var";s:1:"1";s:10:"can_export";s:1:"1";s:17:"show_in_nav_menus";s:1:"1";}s:5:"label";a:13:{s:4:"name";s:8:"Services";s:13:"singular_name";s:8:"Services";s:7:"add_new";s:12:"Add Services";s:9:"all_items";s:12:"All Services";s:12:"add_new_item";s:16:"Add New Services";s:9:"edit_item";s:13:"Edit Services";s:8:"new_item";s:12:"New Services";s:9:"view_item";s:13:"View Services";s:12:"search_items";s:15:"Search Services";s:9:"not_found";s:17:"No Services found";s:18:"not_found_in_trash";s:26:"No Services found in Trash";s:17:"parent_item_colon";s:16:"Parent Services:";s:9:"menu_name";s:8:"Services";}}', 1);
-- --------------------------------------------------------
--
-- Table structure for table `wp_mf_post_meta`
--
CREATE TABLE IF NOT EXISTS `wp_mf_post_meta` (
`meta_id` int(11) NOT NULL,
`field_name` varchar(255) NOT NULL,
`field_count` int(11) NOT NULL,
`group_count` int(11) NOT NULL,
`post_id` int(11) NOT NULL,
PRIMARY KEY (`meta_id`),
KEY `idx_post_field` (`post_id`,`meta_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `wp_mf_post_meta`
--
INSERT INTO `wp_mf_post_meta` (`meta_id`, `field_name`, `field_count`, `group_count`, `post_id`) VALUES
(186, 'expert_linkedin', 1, 1, 32),
(416, 'expert_linkedin', 1, 1, 35),
(417, 'expert_question', 1, 1, 35),
(418, 'expert_question', 2, 1, 35),
(757, 'expert_linkedin', 1, 1, 37),
(758, 'expert_question', 1, 1, 37);
-- --------------------------------------------------------
--
-- Table structure for table `wp_options`
--
CREATE TABLE IF NOT EXISTS `wp_options` (
`option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`option_name` varchar(64) NOT NULL DEFAULT '',
`option_value` longtext NOT NULL,
`autoload` varchar(20) NOT NULL DEFAULT 'yes',
PRIMARY KEY (`option_id`),
UNIQUE KEY `option_name` (`option_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=318 ;
--
-- Dumping data for table `wp_options`
--
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1, 'siteurl', 'http://chris.dev', 'yes'),
(2, 'blogname', 'Skillz tests', 'yes'),
(3, 'blogdescription', 'Get you employed', 'yes'),
(4, 'users_can_register', '1', 'yes'),
(5, 'admin_email', 'slicer@sliceratwork.com', 'yes'),
(6, 'start_of_week', '1', 'yes'),
(7, 'use_balanceTags', '0', 'yes'),
(8, 'use_smilies', '1', 'yes'),
(9, 'require_name_email', '1', 'yes'),
(10, 'comments_notify', '1', 'yes'),
(11, 'posts_per_rss', '10', 'yes'),
(12, 'rss_use_excerpt', '0', 'yes'),
(13, 'mailserver_url', 'mail.example.com', 'yes'),
(14, 'mailserver_login', 'login@example.com', 'yes'),
(15, 'mailserver_pass', 'password', 'yes'),
(16, 'mailserver_port', '110', 'yes'),
(17, 'default_category', '1', 'yes'),
(18, 'default_comment_status', 'open', 'yes'),
(19, 'default_ping_status', 'open', 'yes'),
(20, 'default_pingback_flag', '1', 'yes'),
(21, 'posts_per_page', '10', 'yes'),
(22, 'date_format', 'F j, Y', 'yes'),
(23, 'time_format', 'g:i a', 'yes'),
(24, 'links_updated_date_format', 'F j, Y g:i a', 'yes'),
(25, 'links_recently_updated_prepend', '<em>', 'yes'),
(26, 'links_recently_updated_append', '</em>', 'yes'),
(27, 'links_recently_updated_time', '120', 'yes'),
(28, 'comment_moderation', '0', 'yes'),
(29, 'moderation_notify', '1', 'yes'),
(30, 'permalink_structure', '/%category%/%postname%', 'yes'),
(31, 'gzipcompression', '0', 'yes'),
(32, 'hack_file', '0', 'yes'),
(33, 'blog_charset', 'UTF-8', 'yes'),
(34, 'moderation_keys', '', 'no'),
(35, 'active_plugins', 'a:11:{i:0;s:59:"force-regenerate-thumbnails/force-regenerate-thumbnails.php";i:1;s:25:"go_pricing/go_pricing.php";i:2;s:58:"gravity-forms-css-ready-selector/gf-readyclasses-addon.php";i:3;s:29:"gravityforms/gravityforms.php";i:4;s:23:"magic-fields-2/main.php";i:5;s:47:"really-simple-captcha/really-simple-captcha.php";i:6;s:21:"s2member/s2member.php";i:7;s:37:"user-role-editor/user-role-editor.php";i:8;s:51:"visual-biography-editor/visual-editor-biography.php";i:9;s:24:"wordpress-seo/wp-seo.php";i:10;s:27:"wp-pro-quiz/wp-pro-quiz.php";}', 'yes'),
(36, 'home', 'http://chris.dev', 'yes'),
(37, 'category_base', '', 'yes'),
(38, 'ping_sites', 'http://rpc.pingomatic.com/', 'yes'),
(39, 'advanced_edit', '0', 'yes'),
(40, 'comment_max_links', '2', 'yes'),
(41, 'gmt_offset', '0', 'yes'),
(42, 'default_email_category', '1', 'yes'),
(43, 'recently_edited', '', 'no'),
(44, 'template', 'chris', 'yes'),
(45, 'stylesheet', 'chris', 'yes'),
(46, 'comment_whitelist', '1', 'yes'),
(47, 'blacklist_keys', '', 'no'),
(48, 'comment_registration', '0', 'yes'),
(49, 'html_type', 'text/html', 'yes'),
(50, 'use_trackback', '0', 'yes'),
(51, 'default_role', 'subscriber', 'yes'),
(52, 'db_version', '24448', 'yes'),
(53, 'uploads_use_yearmonth_folders', '1', 'yes'),
(54, 'upload_path', '', 'yes'),
(55, 'blog_public', '1', 'yes'),
(56, 'default_link_category', '2', 'yes'),
(57, 'show_on_front', 'page', 'yes'),
(58, 'tag_base', '', 'yes'),
(59, 'show_avatars', '1', 'yes'),
(60, 'avatar_rating', 'G', 'yes'),
(61, 'upload_url_path', '', 'yes'),
(62, 'thumbnail_size_w', '250', 'yes'),
(63, 'thumbnail_size_h', '250', 'yes'),
(64, 'thumbnail_crop', '1', 'yes'),
(65, 'medium_size_w', '300', 'yes'),
(66, 'medium_size_h', '300', 'yes'),
(67, 'avatar_default', 'mystery', 'yes'),
(68, 'large_size_w', '1024', 'yes'),
(69, 'large_size_h', '1024', 'yes'),
(70, 'image_default_link_type', '', 'yes'),
(71, 'image_default_size', '', 'yes'),
(72, 'image_default_align', '', 'yes'),
(73, 'close_comments_for_old_posts', '0', 'yes'),
(74, 'close_comments_days_old', '14', 'yes'),
(75, 'thread_comments', '1', 'yes'),
(76, 'thread_comments_depth', '5', 'yes'),
(77, 'page_comments', '0', 'yes'),
(78, 'comments_per_page', '50', 'yes'),
(79, 'default_comments_page', 'newest', 'yes'),
(80, 'comment_order', 'asc', 'yes'),
(81, 'sticky_posts', 'a:0:{}', 'yes'),
(82, 'widget_categories', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(83, 'widget_text', 'a:0:{}', 'yes'),
(84, 'widget_rss', 'a:0:{}', 'yes'),
(85, 'uninstall_plugins', 'a:0:{}', 'no'),
(86, 'timezone_string', '', 'yes'),
(87, 'page_for_posts', '0', 'yes'),
(88, 'page_on_front', '13', 'yes'),
(89, 'default_post_format', '0', 'yes'),
(90, 'link_manager_enabled', '0', 'yes'),
(91, 'initial_db_version', '24448', 'yes'),
(92, 'wp_user_roles', 'a:9:{s:13:"administrator";a:2:{s:4:"name";s:13:"Administrator";s:12:"capabilities";a:77:{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:22:"access_s2member_level0";b:1;s:22:"access_s2member_level1";b:1;s:22:"access_s2member_level2";b:1;s:22:"access_s2member_level3";b:1;s:22:"access_s2member_level4";b:1;s:14:"wpProQuiz_show";b:1;s:18:"wpProQuiz_add_quiz";b:1;s:19:"wpProQuiz_edit_quiz";b:1;s:21:"wpProQuiz_delete_quiz";b:1;s:25:"wpProQuiz_show_statistics";b:1;s:26:"wpProQuiz_reset_statistics";b:1;s:16:"wpProQuiz_import";b:1;s:16:"wpProQuiz_export";b:1;s:25:"wpProQuiz_change_settings";b:1;s:22:"wpProQuiz_toplist_edit";b:1;}}s:6:"editor";a:2:{s:4:"name";s:6:"Editor";s:12:"capabilities";a:39:{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:22:"access_s2member_level0";b:1;s:22:"access_s2member_level1";b:1;s:22:"access_s2member_level2";b:1;s:22:"access_s2member_level3";b:1;s:22:"access_s2member_level4";b:1;}}s:6:"author";a:2:{s:4:"name";s:6:"Author";s:12:"capabilities";a:15:{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:22:"access_s2member_level0";b:1;s:22:"access_s2member_level1";b:1;s:22:"access_s2member_level2";b:1;s:22:"access_s2member_level3";b:1;s:22:"access_s2member_level4";b:1;}}s:11:"contributor";a:2:{s:4:"name";s:11:"Contributor";s:12:"capabilities";a:10:{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:22:"access_s2member_level0";b:1;s:22:"access_s2member_level1";b:1;s:22:"access_s2member_level2";b:1;s:22:"access_s2member_level3";b:1;s:22:"access_s2member_level4";b:1;}}s:10:"subscriber";a:2:{s:4:"name";s:10:"Subscriber";s:12:"capabilities";a:3:{s:4:"read";b:1;s:7:"level_0";b:1;s:22:"access_s2member_level0";b:1;}}s:15:"s2member_level1";a:2:{s:4:"name";s:16:"s2Member Level 1";s:12:"capabilities";a:4:{s:4:"read";b:1;s:7:"level_0";b:1;s:22:"access_s2member_level0";b:1;s:22:"access_s2member_level1";b:1;}}s:15:"s2member_level2";a:2:{s:4:"name";s:16:"s2Member Level 2";s:12:"capabilities";a:5:{s:4:"read";b:1;s:7:"level_0";b:1;s:22:"access_s2member_level0";b:1;s:22:"access_s2member_level1";b:1;s:22:"access_s2member_level2";b:1;}}s:15:"s2member_level3";a:2:{s:4:"name";s:16:"s2Member Level 3";s:12:"capabilities";a:6:{s:4:"read";b:1;s:7:"level_0";b:1;s:22:"access_s2member_level0";b:1;s:22:"access_s2member_level1";b:1;s:22:"access_s2member_level2";b:1;s:22:"access_s2member_level3";b:1;}}s:15:"s2member_level4";a:2:{s:4:"name";s:16:"s2Member Level 4";s:12:"capabilities";a:7:{s:4:"read";b:1;s:7:"level_0";b:1;s:22:"access_s2member_level0";b:1;s:22:"access_s2member_level1";b:1;s:22:"access_s2member_level2";b:1;s:22:"access_s2member_level3";b:1;s:22:"access_s2member_level4";b:1;}}}', 'yes'),
(93, 'widget_search', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(94, 'widget_recent-posts', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(95, 'widget_recent-comments', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(96, 'widget_archives', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(97, 'widget_meta', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(98, 'sidebars_widgets', 'a:4:{s:19:"wp_inactive_widgets";a:0:{}s:9:"sidebar-1";a:0:{}s:9:"sidebar-2";a:0:{}s:13:"array_version";i:3;}', 'yes'),
(99, 'cron', 'a:6:{i:1379841949;a:1:{s:45:"ws_plugin__s2member_auto_eot_system__schedule";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:8:"every10m";s:4:"args";a:0:{}s:8:"interval";i:600;}}}i:1379847939;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:1379891152;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:1379896775;a:1:{s:14:"yoast_tracking";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1379896829;a:1:{s:30:"wp_scheduled_auto_draft_delete";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}s:7:"version";i:2;}', 'yes'),
(101, '_site_transient_update_core', 'O:8:"stdClass":3:{s:7:"updates";a:1:{i:0;O:8:"stdClass":9:{s:8:"response";s:6:"latest";s:8:"download";s:40:"http://wordpress.org/wordpress-3.6.1.zip";s:6:"locale";s:5:"en_US";s:8:"packages";O:8:"stdClass":4:{s:4:"full";s:40:"http://wordpress.org/wordpress-3.6.1.zip";s:10:"no_content";s:51:"http://wordpress.org/wordpress-3.6.1-no-content.zip";s:11:"new_bundled";s:52:"http://wordpress.org/wordpress-3.6.1-new-bundled.zip";s:7:"partial";b:0;}s:7:"current";s:5:"3.6.1";s:11:"php_version";s:5:"5.2.4";s:13:"mysql_version";s:3:"5.0";s:11:"new_bundled";s:3:"3.6";s:15:"partial_version";s:0:"";}}s:12:"last_checked";i:1379804745;s:15:"version_checked";s:5:"3.6.1";}', 'yes'),
(105, '_site_transient_update_themes', 'O:8:"stdClass":3:{s:12:"last_checked";i:1379834975;s:7:"checked";a:1:{s:5:"chris";s:10:"2.0 (WP3+)";}s:8:"response";a:0:{}}', 'yes'),
(106, '_site_transient_timeout_browser_27148f6f2bcb830897e8114862fabe25', '1380409547', 'yes'),
(107, '_site_transient_browser_27148f6f2bcb830897e8114862fabe25', 'a:9:{s:8:"platform";s:7:"Windows";s:4:"name";s:7:"Firefox";s:7:"version";s:4:"23.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'),
(108, 'dashboard_widget_options', 'a:4:{s:25:"dashboard_recent_comments";a:1:{s:5:"items";i:5;}s:24:"dashboard_incoming_links";a:5:{s:4:"home";s:16:"http://chris.dev";s:4:"link";s:92:"http://blogsearch.google.com/blogsearch?scoring=d&partner=wordpress&q=link:http://chris.dev/";s:3:"url";s:125:"http://blogsearch.google.com/blogsearch_feeds?scoring=d&ie=utf-8&num=10&output=rss&partner=wordpress&q=link:http://chris.dev/";s:5:"items";i:10;s:9:"show_date";b:0;}s:17:"dashboard_primary";a:7:{s:4:"link";s:26:"http://wordpress.org/news/";s:3:"url";s:31:"http://wordpress.org/news/feed/";s:5:"title";s:14:"WordPress Blog";s:5:"items";i:2;s:12:"show_summary";i:1;s:11:"show_author";i:0;s:9:"show_date";i:1;}s:19:"dashboard_secondary";a:7:{s:4:"link";s:28:"http://planet.wordpress.org/";s:3:"url";s:33:"http://planet.wordpress.org/feed/";s:5:"title";s:20:"Other WordPress News";s:5:"items";i:5;s:12:"show_summary";i:0;s:11:"show_author";i:0;s:9:"show_date";i:0;}}', 'yes'),
(109, '_transient_timeout_feed_082c48ccdf9f609e56745b0fb9a61c37', '1379847949', 'no'),
(110, '_transient_feed_082c48ccdf9f609e56745b0fb9a61c37', 'a:4:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:4:"\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:83:"\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:4:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:43:"link:http://chris.dev/ - Google Blog Search";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://www.google.com/search?ie=utf-8&q=link:http://chris.dev/&tbm=blg&tbs=sbd:1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:23:"About 2,080,000 results";s:7:"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:47:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:3:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:83:"AAPL Stock Quote - Apple Inc. Stock Price Today (AAPL:NASDAQ <b>...</b>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:47:"http://www.marketwatch.com/investing/stock/aapl";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:279:"<b>...</b> Indices (SM) from Dow Jones & Company, Inc. SEHK intraday data is provided by SIX Financial Information and is at least 60-minutes delayed. All quotes are in local exchange time. MarketWatch Top Stories. <em>Link</em> to MarketWatch's Slice. 15 <b>...</b>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:3:{s:9:"publisher";a:1:{i:0;a:5:{s:4:"data";s:37:"MarketWatch.com - Real-time Headlines";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:7:"unknown";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"date";a:1:{i:0;a:5:{s:4:"data";s:29:"Sat, 21 Sep 2013 22:17:12 GMT";s: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:47:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:3:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:47:"Fast – Drum Solo by Tim Samuelson | I am Drum";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://www.iamdrum.com/fast-drum-solo-by-tim-samuelson/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:520:"<em>Dev</em> – Kiss My Lips (Drum Cover by Tim Samuelson) 1 min ago No Comments <b>...</b> Nicolas Lowczowski Drum Practice Loops Calvin Bakelaar I am drum Drum Robot Brant J Cole <em>Chris</em> Gamberg Brooks Holt Alec Tackmann Glen Brooks Skillz Drum Academy Soul Tone Cymbals Mike Vecchione Cameron Alidor Rikki Woods <b>...</b> <em>http</em>://www.reverbnation.com/store/ind… Click the <em>link</em> above to visit my online store where you can listen to and purchase my albums “True” and “Fire In Me”…";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:3:{s:9:"publisher";a:1:{i:0;a:5:{s:4:"data";s:9:"I am Drum";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:5:"admin";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"date";a:1:{i:0;a:5:{s:4:"data";s:29:"Sat, 21 Sep 2013 21:21:16 GMT";s: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:47:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:3:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:79:"Da Poi son: NEW MIXTAPE MAX DOLLA$ &amp; PIREX BEATS <b>...</b>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:75:"http://dapoison.blogspot.com/2013/09/new-mixtape-max-dolla-pirex-beats.html";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:263:"NEW MIXTAPE MAX DOLLA$ & PIREX BEATS PRESENTS "BACK IN THE LAB" INSTRUMENTAL HIT THE <em>LINK</em> AND DOWNLOAD TODAY <em>http</em>://t.co/VsTz1V2rAS. Posted by DaPoison at 4:32 PM · Email ThisBlogThis!Share to TwitterShare to <b>...</b>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:3:{s:9:"publisher";a:1:{i:0;a:5:{s:4:"data";s:10:"Da Poi son";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:8:"DaPoison";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"date";a:1:{i:0;a:5:{s:4:"data";s:29:"Sat, 21 Sep 2013 20:32:00 GMT";s: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:47:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:3:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:105:"Call of Duty <b>dev</b>: “games are becoming harder to make and more <b>...</b>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:106:"http://www.allgamenews.info/call-of-duty-dev-games-are-becoming-harder-to-make-and-more-expensive-to-make/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:768:"<b>...</b> 7 Days To Die · 8BitMMO · a certain magical index · A Certain Scientific Accelerator · A Certain Scientific Railgun · A Clone in the Dark · A DC Comics Adventure · a jolly corpse · A <em>Link</em> Between Worlds · A New Beginning · A Realm Reborn <b>.....</b> chinatown wars · chinyuki: taro to yakaina nakama taichi · Chivalry: Deadliest Warrior · chivalry: medieval warfare · <em>Chris</em> Avellone · <em>Chris</em> Butcher · <em>Chris</em> Hecker · <em>Chris</em> Ho · <em>Chris</em> Ho · <em>Chris</em> Keenan · <em>chris</em> lewis · <em>Chris</em> Mielke · <em>Chris</em> Priestly <b>...</b>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:3:{s:9:"publisher";a:1:{i:0;a:5:{s:4:"data";s:13:"All Game 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:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:9:"Phil Owen";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"date";a:1:{i:0;a:5:{s:4:"data";s:29:"Sat, 21 Sep 2013 19:28:27 GMT";s: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:47:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:3:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:81:"Investigative report: In the footsteps of GTA 5&#39;s PC version | inGamer.cz";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:183:"http://www.ingamer.cz/investigative-report-in-the-footsteps-of-gta-5s-pc-version/?utm_source=rss&utm_medium=rss&utm_campaign=investigative-report-in-the-footsteps-of-gta-5s-pc-version";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:247:"Trustworthy source who wished to remain anonymous sent us an e-mail containing screenshot of Steam friendlist, in which you can see PC version of GTA 5 launched by one of the „friends“. Specifically we talk about <em>Dev</em> Beta of the game.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:3:{s:9:"publisher";a:1:{i:0;a:5:{s:4:"data";s:10:"inGamer.cz";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Martin Paytok";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"date";a:1:{i:0;a:5:{s:4:"data";s:29:"Sat, 21 Sep 2013 17:04:00 GMT";s: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:47:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:3:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:60:"Lay the Smackdown in WWE 2K14&#39;s Universe Era Matches";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://www.qj.net/ps3/news/lay-the-smackdown-in-wwe-2k14s-universe-era-matches.html";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:295:"Randy Orton; WrestleMania 26: <em>Chris</em> Jericho (c) vs. <b>...</b> To get started, use the LOGIN boxes, or the REGISTER <em>link</em> at the top right! <b>...</b> To get started, use the LOGIN boxes, or the REGISTER <em>link</em> below! <b>...</b> Naughty Dog <em>Dev</em> Says Women.. (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:32:"http://purl.org/dc/elements/1.1/";a:3:{s:9:"publisher";a:1:{i:0;a:5:{s:4:"data";s:6:"QJ.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:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Brett Huffman";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"date";a:1:{i:0;a:5:{s:4:"data";s:29:"Sat, 21 Sep 2013 16:45:00 GMT";s: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:47:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:3:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:87:"Downgrade from IOS7 to IOS6 - iPhone, iPad, iPod Forums at iMore <b>...</b>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:64:"http://forums.imore.com/iphone-4/262550-downgrade-ios7-ios6.html";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:286:"According to the post via the following <em>link</em>, there's no going back at this point. <em>http</em>://forums.imore.com/ios-7/262501-ios-7-no-looking-back.html#post2085087. Just Me, D <b>....</b> Rich <em>Dev</em>, Poor <em>Dev</em>: Why some succeed where others fail.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:3:{s:9:"publisher";a:1:{i:0;a:5:{s:4:"data";s:38:"iPhone, iPad, iPod Forums at iMore.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:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:9:"raysivley";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"date";a:1:{i:0;a:5:{s:4:"data";s:29:"Sat, 21 Sep 2013 12:30:59 GMT";s: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:47:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:3:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:83:"IndieGames.com - The Weblog Tokyo Game Show: Nigoro talks La <b>...</b>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:65:"http://indiegames.com/2013/09/la-mulana_2_announced_still_di.html";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:305:"IndieGames Podcast #26: E3 2012 · <em>Link</em> | iTunes <b>...</b> Sometimes game consoles are a better place for indies, says Retro City Rampage <em>dev</em> -September 18, 2013 10:28 AM <b>...</b> Project Zomboid's <em>Chris</em> Simpson's guide to alpha funding -July 17 <b>...</b>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:3:{s:9:"publisher";a:1:{i:0;a:5:{s:4:"data";s:27:"IndieGames.com - The Weblog";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:10:"Lena LeRay";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"date";a:1:{i:0;a:5:{s:4:"data";s:29:"Fri, 20 Sep 2013 23:05:56 GMT";s: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:47:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:3:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:65:"Tech and Internet Industry News - HuffPost Tech - Huffington Post";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:41:"http://www.huffingtonpost.com/technology/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"Get the latest tech industry news about the Internet's top Web sites, innovative technologies, high-tech companies, and current technology trends.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:3:{s:9:"publisher";a:1:{i:0;a:5:{s:4:"data";s:8:"Switched";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:38:"switchedtips@gmail.com (Caleb Johnson)";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"date";a:1:{i:0;a:5:{s:4:"data";s:29:"Fri, 20 Sep 2013 18:51:19 GMT";s: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:47:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:3:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:55:"NVIDIA GeForce Video Card Drivers v327.23 Now Available";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:79:"http://pcsupport.about.com/b/2013/09/20/nvidia-drivers-windows-7-8-vista-xp.htm";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:554:"All <em>links</em> are to PDF files. Download <em>Links</em>: Most NVIDIA GPUs are fully supported with the v320.49 driver in most current versions of Windows, like Windows 8 (including Windows 8.1), Windows 7, and Windows Vista. The following two downloads <b>.....</b> @<em>Chris</em>: That's probably not why. Since NVIDIA Inspector isn't an official NVIDIA program, I'd suggest contacting the developer for help. [v314.07]. February 24, 2013 at 4:00 am. (66) mukil <em>dev</em> says: after updating my graphic card version <b>...</b>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:3:{s:9:"publisher";a:1:{i:0;a:5:{s:4:"data";s:29:"About.com Focus on PC 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:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:7:"unknown";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"date";a:1:{i:0;a:5:{s:4:"data";s:29:"Fri, 20 Sep 2013 17:31:07 GMT";s: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://a9.com/-/spec/opensearch/1.1/";a:3:{s:12:"totalResults";a:1:{i:0;a:5:{s:4:"data";s:7:"2080000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:10:"startIndex";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:12:"itemsPerPage";a:1:{i:0;a:5:{s:4:"data";s:2:"10";s:7:"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:12:"content-type";s:28:"text/xml; charset=ISO-8859-1";s:4:"date";s:29:"Sat, 21 Sep 2013 23:05:53 GMT";s:7:"expires";s:2:"-1";s:13:"cache-control";s:18:"private, max-age=0";s:10:"set-cookie";a:2:{i:0;s:143:"PREF=ID=54a0594ef54d59fb:FF=0:TM=1379804753:LM=1379804753:S=gZJXu_SThVKcKTa8; expires=Mon, 21-Sep-2015 23:05:53 GMT; path=/; domain=.google.com";i:1;s:212:"NID=67=OhahmOqbGhooOfXtxtTYESkQwhBZ2Cdh1zp5bnMamn6AJ3NEqfB0puN2MhbRbk7bOVyLYgN1YipGUknhqaoAWKnmQiDDwIUq4z73N5N7bSLB31ZG30TtutbxVjibRm_c; expires=Sun, 23-Mar-2014 23:05:53 GMT; path=/; domain=.google.com; HttpOnly";}s:3:"p3p";s:122:"CP="This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657 for more info."";s:6:"server";s:3:"gws";s:16:"x-xss-protection";s:13:"1; mode=block";s:15:"x-frame-options";s:10:"SAMEORIGIN";s:18:"alternate-protocol";s:7:"80:quic";}s:5:"build";s:14:"20130708141016";}', 'no'),
(111, '_transient_timeout_feed_mod_082c48ccdf9f609e56745b0fb9a61c37', '1379847949', 'no'),
(112, '_transient_feed_mod_082c48ccdf9f609e56745b0fb9a61c37', '1379804749', 'no'),
(113, '_transient_timeout_dash_20494a3d90a6669585674ed0eb8dcd8f', '1379847949', 'no'),
(114, '_transient_dash_20494a3d90a6669585674ed0eb8dcd8f', '<ul>\n <li><strong>unknown</strong> linked here <a href="http://www.marketwatch.com/investing/stock/aapl">saying</a>, "... Indices (SM) from Dow Jones & Company, Inc …"</li>\n <li><strong>admin</strong> linked here <a href="http://www.iamdrum.com/fast-drum-solo-by-tim-samuelson/">saying</a>, "Dev – Kiss My Lips (Drum Cover by Tim Samuelson) 1 …"</li>\n <li><strong>DaPoison</strong> linked here <a href="http://dapoison.blogspot.com/2013/09/new-mixtape-max-dolla-pirex-beats.html">saying</a>, "NEW MIXTAPE MAX DOLLA$ & PIREX BEATS PRESENTS …"</li>\n <li><strong>Phil Owen</strong> linked here <a href="http://www.allgamenews.info/call-of-duty-dev-games-are-becoming-harder-to-make-and-more-expensive-to-make/">saying</a>, "... 7 Days To Die · 8BitMMO · a cert …"</li>\n <li><strong>Martin Paytok</strong> linked here <a href="http://www.ingamer.cz/investigative-report-in-the-footsteps-of-gta-5s-pc-version/?utm_source=rss&utm_medium=rss&utm_campaign=investigative-report-in-the-footsteps-of-gta-5s-pc-version">saying</a>, "Trustworthy source who wished to remain anonymous …"</li>\n <li><strong>Brett Huffman</strong> linked here <a href="http://www.qj.net/ps3/news/lay-the-smackdown-in-wwe-2k14s-universe-era-matches.html">saying</a>, "Randy Orton; WrestleMania 26: Chris Jericho (c) vs …"</li>\n <li><strong>raysivley</strong> linked here <a href="http://forums.imore.com/iphone-4/262550-downgrade-ios7-ios6.html">saying</a>, "According to the post via the following link, ther …"</li>\n <li><strong>Lena LeRay</strong> linked here <a href="http://indiegames.com/2013/09/la-mulana_2_announced_still_di.html">saying</a>, "IndieGames Podcast #26: E3 2012 · Link | iT …"</li>\n <li><strong>switchedtips@gmail.com (Caleb Johnson)</strong> linked here <a href="http://www.huffingtonpost.com/technology/">saying</a>, "Get the latest tech industry news about the Intern …"</li>\n <li><strong>unknown</strong> linked here <a href="http://pcsupport.about.com/b/2013/09/20/nvidia-drivers-windows-7-8-vista-xp.htm">saying</a>, "All links are to PDF files. Download Links: Most N …"</li>\n</ul>\n', 'no'),
(115, '_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1379847950', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(116, '_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:50:"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:3:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:14:"WordPress News";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:25:"http://wordpress.org/news";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:14:"WordPress News";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:13:"lastBuildDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 11 Sep 2013 21:01: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:"language";a:1:{i:0;a:5:{s:4:"data";s:5:"en-US";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"generator";a:1:{i:0;a:5:{s:4:"data";s:39:"http://wordpress.org/?v=3.7-alpha-25343";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"item";a:10:{i:0;a:6:{s:4:"data";s:45:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:48:"WordPress 3.6.1 Maintenance and Security Release";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:50:"http://wordpress.org/news/2013/09/wordpress-3-6-1/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:59:"http://wordpress.org/news/2013/09/wordpress-3-6-1/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 11 Sep 2013 20:48: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: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=2675";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:"After nearly 7 million downloads of WordPress 3.6, we are pleased to announce the availability of version 3.6.1. This maintenance release fixes 13 bugs in version 3.6, which was a very smooth release. WordPress 3.6.1 is also a security release for all previous WordPress versions and we strongly encourage you to update your sites immediately. […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s: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:2033:"<p>After <a href="http://wordpress.org/download/counter/">nearly 7 million downloads</a> of WordPress 3.6, we are pleased to announce the availability of version 3.6.1. This maintenance release <a href="http://core.trac.wordpress.org/query?status=closed&group=resolution&milestone=3.6.1">fixes 13 bugs</a> in version 3.6, which was a very smooth release.</p>\n<p><strong>WordPress 3.6.1 is also a security release for all previous WordPress versions</strong> and we strongly encourage you to update your sites immediately. It addresses three issues fixed by the WordPress security team:</p>\n<ul>\n<li>Block unsafe PHP unserialization that could occur in limited situations and setups, which can lead to remote code execution. Reported by <a href="http://vagosec.org/" rel="nofollow">Tom Van Goethem</a>.</li>\n<li>Prevent a user with an Author role, using a specially crafted request, from being able to create a post “written by” another user. Reported by <a href="http://anakornk.wordpress.com/" rel="nofollow">Anakorn Kyavatanakij</a>.</li>\n<li>Fix insufficient input validation that could result in redirecting or leading a user to another website. Reported by Dave Cummo, a Northrup Grumman subcontractor for the <a href="http://www.cdc.gov/" rel="nofollow">U.S. Centers for Disease Control and Prevention</a>.</li>\n</ul>\n<p>Additionally, we’ve adjusted security restrictions around file uploads to mitigate the potential for cross-site scripting.</p>\n<p>We appreciated <a href="http://codex.wordpress.org/FAQ_Security">responsible disclosure</a> of these issues directly to our security team. For more information on the changes, see the <a href="http://codex.wordpress.org/Version_3.6.1">release notes</a> or consult <a href="http://core.trac.wordpress.org/log/branches/3.6?stop_rev=24972&rev=25345">the list of changes</a>.</p>\n<p><a href="http://wordpress.org/wordpress-3.6.1.zip">Download WordPress 3.6.1</a> or update now from the Dashboard → Updates menu in your site’s admin area.</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:55:"http://wordpress.org/news/2013/09/wordpress-3-6-1/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:1;a:6:{s:4:"data";s:42:"\n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:25:"WordPress 3.6 “Oscar”";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:40:"http://wordpress.org/news/2013/08/oscar/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:49:"http://wordpress.org/news/2013/08/oscar/#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, 01 Aug 2013 21:43:22 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a: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=2661";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:368:"The latest and greatest WordPress, version 3.6, is now live to the world and includes a beautiful new blog-centric theme, bullet-proof autosave and post locking, a revamped revision browser, native support for audio and video embeds, and improved integrations with Spotify, Rdio, and SoundCloud. Here’s a video that shows off some of the features using […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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:18626:"<p>The latest and greatest WordPress, version 3.6, is now <a href="http://wordpress.org/download/">live to the world</a> and includes a beautiful new blog-centric theme, bullet-proof autosave and post locking, a revamped revision browser, native support for audio and video embeds, and improved integrations with Spotify, Rdio, and SoundCloud. Here’s a video that shows off some of the features using our cast of professional actors:</p>\n<div id="v-UmhwbWJH-1" class="video-player"><embed id="v-UmhwbWJH-1-video" src="http://s0.videopress.com/player.swf?v=1.03&guid=UmhwbWJH&isDynamicSeeking=true" type="application/x-shockwave-flash" width="692" height="388" title="Introducing WordPress 3.6 "Oscar"" wmode="direct" seamlesstabbing="true" allowfullscreen="true" allowscriptaccess="always" overstretch="true"></embed></div>\n<p>We’re calling this release “Oscar” in honor of the great jazz pianist <a href="http://en.wikipedia.org/wiki/Oscar_Peterson">Oscar Peterson</a>. Here’s a bit more about some of the new features, which you can also find on the about page in your dashboard after you upgrade.</p>\n<h3>User Features</h3>\n<p><img class="alignright" alt="" src="https://wordpress.org/images/core/3.6/twentythirteen.png" width="300" /></p>\n<ul>\n<li>The <strong>new Twenty Thirteen theme</strong> inspired by modern art puts focus on your content with a colorful, single-column design made for media-rich blogging.</li>\n<li><strong>Revamped Revisions</strong> save every change and the new interface allows you to scroll easily through changes to see line-by-line who changed what and when.</li>\n<li><strong>Post Locking</strong> and <strong>Augmented Autosave</strong> will especially be a boon to sites where more than a single author is working on a post. Each author now has their own autosave stream, which stores things locally as well as on the server (so much harder to lose something) and there’s an interface for taking over editing of a post, as demonstrated beautifully by our bearded buddies in the video above.</li>\n<li><strong>Built-in HTML5 media player</strong> for native audio and video embeds with no reliance on external services.</li>\n<li>The <strong>Menu Editor</strong> is now much easier to understand and use.</li>\n</ul>\n<h3>Developer features</h3>\n<ul>\n<li>A new audio/video API gives you access to metadata like ID3 tags.</li>\n<li>You can now choose HTML5 markup for things like comment and search forms, and comment lists.</li>\n<li>Better filters for how revisions work, so you can store a different amount of history for different post types.</li>\n<li>Tons more <a href="http://codex.wordpress.org/Version_3.6">listed on the Codex</a>, and of course you can always <a href="http://core.trac.wordpress.org/query?status=closed&group=resolution&milestone=3.6">browse the over 700 closed tickets</a>.</li>\n</ul>\n<h3>The Band</h3>\n<p>This release was led by <a href="http://markjaquith.com/">Mark Jaquith</a> and <a href="http://geekreprieve.com/">Aaron Campbell</a>, and included contributions from the following fine folks. Pull up some Oscar Peterson on your music service of choice, or vinyl if you have it, and check out some of their profiles:</p>\n<p><a href="http://profiles.wordpress.org/technosailor">Aaron Brazell</a>, <a href="http://profiles.wordpress.org/aaroncampbell">Aaron D. Campbell</a>, <a href="http://profiles.wordpress.org/aaronholbrook">Aaron Holbrook</a>, <a href="http://profiles.wordpress.org/jorbin">Aaron Jorbin</a>, <a href="http://profiles.wordpress.org/kawauso">Adam Harley</a>, <a href="http://profiles.wordpress.org/adamsilverstein">adamsilverstein</a>, <a href="http://profiles.wordpress.org/akted">AK Ted</a>, <a href="http://profiles.wordpress.org/xknown">Alex Concha</a>, <a href="http://profiles.wordpress.org/alexkingorg">Alex King</a>, <a href="http://profiles.wordpress.org/viper007bond">Alex Mills (Viper007Bond)</a>, <a href="http://profiles.wordpress.org/momo360modena">Amaury Balmer</a>, <a href="http://profiles.wordpress.org/sabreuse">Amy Hendrix (sabreuse)</a>, <a href="http://profiles.wordpress.org/anatolbroder">Anatol Broder</a>, <a href="http://profiles.wordpress.org/nacin">Andrew Nacin</a>, <a href="http://profiles.wordpress.org/azaozz">Andrew Ozz</a>, <a href="http://profiles.wordpress.org/andrewryno">Andrew Ryno</a>, <a href="http://profiles.wordpress.org/andy">Andy Skelton</a>, <a href="http://profiles.wordpress.org/gorgoglionemeister">Antonio</a>, <a href="http://profiles.wordpress.org/apimlott">apimlott</a>, <a href="http://profiles.wordpress.org/awellis13">awellis13</a>, <a href="http://profiles.wordpress.org/barry">Barry</a>, <a href="http://profiles.wordpress.org/beaulebens">Beau Lebens</a>, <a href="http://profiles.wordpress.org/belloswan">BelloSwan</a>, <a href="http://profiles.wordpress.org/bilalcoder">bilalcoder</a>, <a href="http://profiles.wordpress.org/bananastalktome">Billy (bananastalktome)</a>, <a href="http://profiles.wordpress.org/bobbingwide">bobbingwide</a>, <a href="http://profiles.wordpress.org/bobbravo2">Bob Gregor</a>, <a href="http://profiles.wordpress.org/bradparbs">bradparbs</a>, <a href="http://profiles.wordpress.org/bradyvercher">Brady Vercher</a>, <a href="http://profiles.wordpress.org/kraftbj">Brandon Kraft</a>, <a href="http://profiles.wordpress.org/brianlayman">Brian Layman</a>, <a href="http://profiles.wordpress.org/beezeee">Brian Zeligson</a>, <a href="http://profiles.wordpress.org/bpetty">Bryan Petty</a>, <a href="http://profiles.wordpress.org/chmac">Callum Macdonald</a>, <a href="http://profiles.wordpress.org/carldanley">Carl Danley</a>, <a href="http://profiles.wordpress.org/caspie">Caspie</a>, <a href="http://profiles.wordpress.org/charlestonsw">Charleston Software Associates</a>, <a href="http://profiles.wordpress.org/cheeserolls">cheeserolls</a>, <a href="http://profiles.wordpress.org/chipbennett">Chip Bennett</a>, <a href="http://profiles.wordpress.org/c3mdigital">Chris Olbekson</a>, <a href="http://profiles.wordpress.org/cochran">Christopher Cochran</a>, <a href="http://profiles.wordpress.org/cfinke">Christopher Finke</a>, <a href="http://profiles.wordpress.org/chriswallace">Chris Wallace</a>, <a href="http://profiles.wordpress.org/corvannoorloos">Cor van Noorloos</a>, <a href="http://profiles.wordpress.org/crazycoders">crazycoders</a>, <a href="http://profiles.wordpress.org/danielbachhuber">Daniel Bachhuber</a>, <a href="http://profiles.wordpress.org/mzaweb">Daniel Dvorkin (MZAWeb)</a>, <a href="http://profiles.wordpress.org/redsweater">Daniel Jalkut (Red Sweater)</a>, <a href="http://profiles.wordpress.org/daniloercoli">daniloercoli</a>, <a href="http://profiles.wordpress.org/dannydehaan">Danny de Haan</a>, <a href="http://profiles.wordpress.org/csixty4">Dave Ross</a>, <a href="http://profiles.wordpress.org/dfavor">David Favor</a>, <a href="http://profiles.wordpress.org/jdtrower">David Trower</a>, <a href="http://profiles.wordpress.org/davidwilliamson">David Williamson</a>, <a href="http://profiles.wordpress.org/dd32">Dion Hulse</a>, <a href="http://profiles.wordpress.org/dllh">dllh</a>, <a href="http://profiles.wordpress.org/ocean90">Dominik Schilling (ocean90)</a>, <a href="http://profiles.wordpress.org/dovyp">dovyp</a>, <a href="http://profiles.wordpress.org/drewapicture">Drew Jaynes (DrewAPicture)</a>, <a href="http://profiles.wordpress.org/dvarga">dvarga</a>, <a href="http://profiles.wordpress.org/cais">Edward Caissie</a>, <a href="http://profiles.wordpress.org/elfin">elfin</a>, <a href="http://profiles.wordpress.org/empireoflight">Empireoflight</a>, <a href="http://profiles.wordpress.org/ericlewis">Eric Andrew Lewis</a>, <a href="http://profiles.wordpress.org/ethitter">Erick Hitter</a>, <a href="http://profiles.wordpress.org/ericmann">Eric Mann</a>, <a href="http://profiles.wordpress.org/evansolomon">Evan Solomon</a>, <a href="http://profiles.wordpress.org/faishal">faishal</a>, <a href="http://profiles.wordpress.org/feedmeastraycat">feedmeastraycat</a>, <a href="http://profiles.wordpress.org/frank-klein">Frank Klein</a>, <a href="http://profiles.wordpress.org/f-j-kaiser">Franz Josef Kaiser</a>, <a href="http://profiles.wordpress.org/fstop">FStop</a>, <a href="http://profiles.wordpress.org/mintindeed">Gabriel Koen</a>, <a href="http://profiles.wordpress.org/garyc40">Gary Cao</a>, <a href="http://profiles.wordpress.org/garyj">Gary Jones</a>, <a href="http://profiles.wordpress.org/gcorne">gcorne</a>, <a href="http://profiles.wordpress.org/geertdd">GeertDD</a>, <a href="http://profiles.wordpress.org/soulseekah">Gennady Kovshenin</a>, <a href="http://profiles.wordpress.org/georgestephanis">George Stephanis</a>, <a href="http://profiles.wordpress.org/gish">gish</a>, <a href="http://profiles.wordpress.org/tivnet">Gregory Karpinsky</a>, <a href="http://profiles.wordpress.org/hakre">hakre</a>, <a href="http://profiles.wordpress.org/hbanken">hbanken</a>, <a href="http://profiles.wordpress.org/hebbet">hebbet</a>, <a href="http://profiles.wordpress.org/helen">Helen Hou-Sandi</a>, <a href="http://profiles.wordpress.org/helgatheviking">helgatheviking</a>, <a href="http://profiles.wordpress.org/hirozed">hirozed</a>, <a href="http://profiles.wordpress.org/hurtige">hurtige</a>, <a href="http://profiles.wordpress.org/hypertextranch">hypertextranch</a>, <a href="http://profiles.wordpress.org/iandunn">Ian Dunn</a>, <a href="http://profiles.wordpress.org/ipstenu">Ipstenu (Mika Epstein)</a>, <a href="http://profiles.wordpress.org/jakub">jakub</a>, <a href="http://profiles.wordpress.org/h4ck3rm1k3">James Michael DuPont</a>, <a href="http://profiles.wordpress.org/jbutkus">jbutkus</a>, <a href="http://profiles.wordpress.org/jeremyfelt">Jeremy Felt</a>, <a href="http://profiles.wordpress.org/jerrysarcastic">Jerry Bates (JerrySarcastic)</a>, <a href="http://profiles.wordpress.org/jayjdk">Jesper Johansen (Jayjdk)</a>, <a href="http://profiles.wordpress.org/joehoyle">Joe Hoyle</a>, <a href="http://profiles.wordpress.org/joen">Joen Asmussen</a>, <a href="http://profiles.wordpress.org/jkudish">Joey Kudish</a>, <a href="http://profiles.wordpress.org/johnbillion">John Blackbourn (johnbillion)</a>, <a href="http://profiles.wordpress.org/johnjamesjacoby">John James Jacoby</a>, <a href="http://profiles.wordpress.org/jond3r">Jonas Bolinder (jond3r)</a>, <a href="http://profiles.wordpress.org/desrosj">Jonathan Desrosiers</a>, <a href="http://profiles.wordpress.org/jonbishop">Jon Bishop</a>, <a href="http://profiles.wordpress.org/duck_">Jon Cave</a>, <a href="http://profiles.wordpress.org/jcastaneda">Jose Castaneda</a>, <a href="http://profiles.wordpress.org/josephscott">Joseph Scott</a>, <a href="http://profiles.wordpress.org/jvisick77">Josh Visick</a>, <a href="http://profiles.wordpress.org/jrbeilke">jrbeilke</a>, <a href="http://profiles.wordpress.org/jrf">jrf</a>, <a href="http://profiles.wordpress.org/devesine">Justin de Vesine</a>, <a href="http://profiles.wordpress.org/justinsainton">Justin Sainton</a>, <a href="http://profiles.wordpress.org/kadamwhite">kadamwhite</a>, <a href="http://profiles.wordpress.org/trepmal">Kailey (trepmal)</a>, <a href="http://profiles.wordpress.org/karmatosed">karmatosed</a>, <a href="http://profiles.wordpress.org/ryelle">Kelly Dwan</a>, <a href="http://profiles.wordpress.org/keoshi">keoshi</a>, <a href="http://profiles.wordpress.org/kovshenin">Konstantin Kovshenin</a>, <a href="http://profiles.wordpress.org/obenland">Konstantin Obenland</a>, <a href="http://profiles.wordpress.org/ktdreyer">ktdreyer</a>, <a href="http://profiles.wordpress.org/kurtpayne">Kurt Payne</a>, <a href="http://profiles.wordpress.org/kwight">kwight</a>, <a href="http://profiles.wordpress.org/lancewillett">Lance Willett</a>, <a href="http://profiles.wordpress.org/leewillis77">Lee Willis (leewillis77)</a>, <a href="http://profiles.wordpress.org/lessbloat">lessbloat</a>, <a href="http://profiles.wordpress.org/settle">Mantas Malcius</a>, <a href="http://profiles.wordpress.org/maor">Maor Chasen</a>, <a href="http://profiles.wordpress.org/macbrink">Marcel Brinkkemper</a>, <a href="http://profiles.wordpress.org/marcuspope">MarcusPope</a>, <a href="http://profiles.wordpress.org/mark-k">Mark-k</a>, <a href="http://profiles.wordpress.org/markjaquith">Mark Jaquith</a>, <a href="http://profiles.wordpress.org/markmcwilliams">Mark McWilliams</a>, <a href="http://profiles.wordpress.org/markoheijnen">Marko Heijnen</a>, <a href="http://profiles.wordpress.org/mjbanks">Matt Banks</a>, <a href="http://profiles.wordpress.org/mboynes">Matthew Boynes</a>, <a href="http://profiles.wordpress.org/matthewruddy">MatthewRuddy</a>, <a href="http://profiles.wordpress.org/mattwiebe">Matt Wiebe</a>, <a href="http://profiles.wordpress.org/maxcutler">Max Cutler</a>, <a href="http://profiles.wordpress.org/melchoyce">Mel Choyce</a>, <a href="http://profiles.wordpress.org/mgibbs189">mgibbs189</a>, <a href="http://profiles.wordpress.org/fanquake">Michael</a>, <a href="http://profiles.wordpress.org/mdawaffe">Michael Adams (mdawaffe)</a>, <a href="http://profiles.wordpress.org/tw2113">Michael Beckwith</a>, <a href="http://profiles.wordpress.org/mfields">Michael Fields</a>, <a href="http://profiles.wordpress.org/mikehansenme">Mike Hansen</a>, <a href="http://profiles.wordpress.org/dh-shredder">Mike Schroder</a>, <a href="http://profiles.wordpress.org/dimadin">Milan Dinic</a>, <a href="http://profiles.wordpress.org/mitchoyoshitaka">mitcho (Michael Yoshitaka Erlewine)</a>, <a href="http://profiles.wordpress.org/batmoo">Mohammad Jangda</a>, <a href="http://profiles.wordpress.org/najamelan">najamelan</a>, <a href="http://profiles.wordpress.org/Nao">Naoko Takano</a>, <a href="http://profiles.wordpress.org/alex-ye">Nashwan Doaqan</a>, <a href="http://profiles.wordpress.org/niallkennedy">Niall Kennedy</a>, <a href="http://profiles.wordpress.org/nickdaugherty">Nick Daugherty</a>, <a href="http://profiles.wordpress.org/celloexpressions">Nick Halsey</a>, <a href="http://profiles.wordpress.org/ninnypants">ninnypants</a>, <a href="http://profiles.wordpress.org/norcross">norcross</a>, <a href="http://profiles.wordpress.org/paradiseporridge">ParadisePorridge</a>, <a href="http://profiles.wordpress.org/pauldewouters">Paul</a>, <a href="http://profiles.wordpress.org/pdclark">Paul Clark</a>, <a href="http://profiles.wordpress.org/pavelevap">pavelevap</a>, <a href="http://profiles.wordpress.org/petemall">Pete Mall</a>, <a href="http://profiles.wordpress.org/westi">Peter Westwood</a>, <a href="http://profiles.wordpress.org/phill_brown">Phill Brown</a>, <a href="http://profiles.wordpress.org/mordauk">Pippin Williamson</a>, <a href="http://profiles.wordpress.org/pollett">Pollett</a>, <a href="http://profiles.wordpress.org/nprasath002">Prasath Nadarajah</a>, <a href="http://profiles.wordpress.org/programmin">programmin</a>, <a href="http://profiles.wordpress.org/rachelbaker">rachelbaker</a>, <a href="http://profiles.wordpress.org/ramiy">Rami Yushuvaev</a>, <a href="http://profiles.wordpress.org/redpixelstudios">redpixelstudios</a>, <a href="http://profiles.wordpress.org/reidburke">reidburke</a>, <a href="http://profiles.wordpress.org/retlehs">retlehs</a>, <a href="http://profiles.wordpress.org/greuben">Reuben Gunday</a>, <a href="http://profiles.wordpress.org/rlerdorf">rlerdorf</a>, <a href="http://profiles.wordpress.org/rodrigosprimo">Rodrigo Primo</a>, <a href="http://profiles.wordpress.org/roulandf">roulandf</a>, <a href="http://profiles.wordpress.org/rovo89">rovo89</a>, <a href="http://profiles.wordpress.org/ryanduff">Ryan Duff</a>, <a href="http://profiles.wordpress.org/ryanhellyer">Ryan Hellyer</a>, <a href="http://profiles.wordpress.org/rmccue">Ryan McCue</a>, <a href="http://profiles.wordpress.org/zeo">Safirul Alredha</a>, <a href="http://profiles.wordpress.org/saracannon">sara cannon</a>, <a href="http://profiles.wordpress.org/scholesmafia">scholesmafia</a>, <a href="http://profiles.wordpress.org/sc0ttkclark">Scott Kingsley Clark</a>, <a href="http://profiles.wordpress.org/coffee2code">Scott Reilly</a>, <a href="http://profiles.wordpress.org/wonderboymusic">Scott Taylor</a>, <a href="http://profiles.wordpress.org/scribu">scribu</a>, <a href="http://profiles.wordpress.org/tenpura">Seisuke Kuraishi (tenpura)</a>, <a href="http://profiles.wordpress.org/sergej">Sergej</a>, <a href="http://profiles.wordpress.org/sergeybiryukov">Sergey Biryukov</a>, <a href="http://profiles.wordpress.org/sim">Simon Hampel</a>, <a href="http://profiles.wordpress.org/simonwheatley">Simon Wheatley</a>, <a href="http://profiles.wordpress.org/siobhan">Siobhan</a>, <a href="http://profiles.wordpress.org/sirzooro">sirzooro</a>, <a href="http://profiles.wordpress.org/slene">slene</a>, <a href="http://profiles.wordpress.org/solarissmoke">solarissmoke</a>, <a href="http://profiles.wordpress.org/srinig">SriniG</a>, <a href="http://profiles.wordpress.org/stephenh1988">Stephen Harris</a>, <a href="http://profiles.wordpress.org/storkontheroof">storkontheroof</a>, <a href="http://profiles.wordpress.org/sunnyratilal">Sunny Ratilal</a>, <a href="http://profiles.wordpress.org/sweetie089">sweetie089</a>, <a href="http://profiles.wordpress.org/tar">Tar</a>, <a href="http://profiles.wordpress.org/tlovett1">Taylor Lovett</a>, <a href="http://profiles.wordpress.org/thomasvanderbeek">Thomas van der Beek</a>, <a href="http://profiles.wordpress.org/n7studios">Tim Carr</a>, <a href="http://profiles.wordpress.org/tjsingleton">tjsingleton</a>, <a href="http://profiles.wordpress.org/tobiasbg">TobiasBg</a>, <a href="http://profiles.wordpress.org/toscho">toscho</a>, <a href="http://profiles.wordpress.org/taupecat">Tracy Rotton</a>, <a href="http://profiles.wordpress.org/travishoffman">TravisHoffman</a>, <a href="http://profiles.wordpress.org/uuf6429">uuf6429</a>, <a href="http://profiles.wordpress.org/lightningspirit">Vitor Carvalho</a>, <a href="http://profiles.wordpress.org/wojtek">wojtek</a>, <a href="http://profiles.wordpress.org/wpewill">wpewill</a>, <a href="http://profiles.wordpress.org/wraithkenny">WraithKenny</a>, <a href="http://profiles.wordpress.org/wycks">wycks</a>, <a href="http://profiles.wordpress.org/xibe">Xavier Borderie</a>, <a href="http://profiles.wordpress.org/yoavf">Yoav Farhi</a>, <a href="http://profiles.wordpress.org/thelastcicada">Zachary Brown</a>, <a href="http://profiles.wordpress.org/tollmanz">Zack Tollman</a>, <a href="http://profiles.wordpress.org/zekeweeks">zekeweeks</a>, <a href="http://profiles.wordpress.org/ziegenberg">ziegenberg</a>, and <a href="http://profiles.wordpress.org/viniciusmassuchetto">viniciusmassuchetto</a>.</p>\n<p>Time to upgrade!</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:45:"http://wordpress.org/news/2013/08/oscar/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:33:"WordPress 3.6 Release Candidate 2";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:68:"http://wordpress.org/news/2013/07/wordpress-3-6-release-candidate-2/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:77:"http://wordpress.org/news/2013/07/wordpress-3-6-release-candidate-2/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 24 Jul 2013 07:25:10 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:7:"Testing";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=2649";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 second release candidate for WordPress 3.6 is now available for download and testing. We’re down to only a few remaining issues, and the final release should be available in a matter of days. In RC2, we’ve tightened up some aspects of revisions, autosave, and the media player, and fixed some bugs that were spotted […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"Mark Jaquith";s: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:1325:"<p>The second release candidate for WordPress 3.6 is now available for download and testing.</p>\n<p>We’re down to only a few remaining issues, and the final release should be available in a matter of days. In RC2, we’ve tightened up some aspects of revisions, autosave, and the media player, and fixed some bugs that were spotted in RC1. Please test this release candidate as much as you can, so we can deliver a smooth final release!</p>\n<p><strong>Think you’ve found a bug?</strong> Please post to the <a href="http://wordpress.org/support/forum/alphabeta/">Alpha/Beta area in the support forums</a>.</p>\n<p><strong>Developers,</strong> please continue to test your plugins and themes, so that if there is a compatibility issue, we can figure it out before the final release. You can find our <a href="http://core.trac.wordpress.org/report/6">list of known issues here</a>.</p>\n<p>To test WordPress 3.6, try the <a href="http://wordpress.org/extend/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href="http://wordpress.org/wordpress-3.6-RC2.zip">download the release candidate here (zip)</a>.</p>\n<p><em>Revisions so smooth</em><br />\n<em>We autosave your changes</em><br />\n<em>Data loss begone!</em></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:73:"http://wordpress.org/news/2013/07/wordpress-3-6-release-candidate-2/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:31:"WordPress 3.6 Release Candidate";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:66:"http://wordpress.org/news/2013/07/wordpress-3-6-release-candidate/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:75:"http://wordpress.org/news/2013/07/wordpress-3-6-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:"Sat, 13 Jul 2013 03:23: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: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:7:"Testing";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=2639";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:344:"The first release candidate for WordPress 3.6 is now available. We hope to ship WordPress 3.6 in a couple weeks. But to do that, we really need your help! If you haven’t tested 3.6 yet, there’s no time like the present. (But please: not on a live production site, unless you’re feeling especially adventurous.) Think […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"Mark Jaquith";s: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:1504:"<p>The first release candidate for WordPress 3.6 is now available.</p>\n<p>We hope to ship WordPress 3.6 in a couple weeks. But to do that, we really need your help! If you haven’t tested 3.6 yet, there’s no time like the present. (But please: not on a live production site, unless you’re feeling especially adventurous.)</p>\n<p><strong>Think you’ve found a bug?</strong> Please post to the <a href="http://wordpress.org/support/forum/alphabeta/">Alpha/Beta area in the support forums</a>. If any known issues come up, you’ll be able to <a href="http://core.trac.wordpress.org/report/6">find them here</a>. <strong>Developers,</strong> please test your plugins and themes, so that if there is a compatibility issue, we can sort it out before the final release.</p>\n<p>To test WordPress 3.6, try the <a href="http://wordpress.org/extend/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href="http://wordpress.org/wordpress-3.6-RC1.zip">download the release candidate here (zip)</a>.</p>\n<p>As you may have heard, we backed the Post Format UI feature out of the release. On the other hand, our slick new revisions browser had some extra time to develop. You should see it with 200+ revisions loaded — scrubbing back and forth at lightning speed is a thing of beauty.</p>\n<p><em>Delayed, but still loved</em><br />\n<em>The release will be out soon</em><br />\n<em>Test it, por favor</em></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:71:"http://wordpress.org/news/2013/07/wordpress-3-6-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:4;a:6:{s:4:"data";s:45:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:34:"Annual WordPress Survey & WCSF";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:63:"http://wordpress.org/news/2013/07/annual-wordpress-survey-wcsf/";s: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:72:"http://wordpress.org/news/2013/07/annual-wordpress-survey-wcsf/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 09 Jul 2013 23:50:29 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s: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:6:"Events";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=2625";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:347:"It’s time for our third annual user and developer survey! If you’re a WordPress user, developer, or business, we want your feedback. Just like previous years, we’ll share the data at the upcoming WordCamp San Francisco (WCSF). Results will also be sent to each survey respondent. It only takes a few minutes to fill out […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:1242:"<p><img class="alignright" alt="" align="right" src="http://wpdotorg.files.wordpress.com/2013/07/wcsf-2013.jpg" width="278" height="185" />It’s time for our third annual user and developer survey! If you’re a WordPress user, developer, or business, we want your feedback. Just like previous years, we’ll share the data at the upcoming <a href="http://2013.sf.wordcamp.org/">WordCamp San Francisco</a> (WCSF). Results will also be sent to each survey respondent.</p>\n<p>It only takes a few minutes to <a href="http://wp-survey.polldaddy.com/s/wp-2013">fill out the survey</a>, which will provide an overview of how people use WordPress.</p>\n<p>If you missed past State of the Word keynotes, be sure to check out them out for survey results from <a href="http://wordpress.org/news/2011/08/state-of-the-word/">2011</a> and <a href="http://ma.tt/2012/08/state-of-the-word-2012/">2012</a>.</p>\n<p>Speaking of WCSF, if you didn’t get a ticket or are too far away to attend, you can still <a href="http://2013.sf.wordcamp.org/tickets/">get a ticket for the live stream</a>! Watch the live video stream from the comfort of your home on July 26 and 27; WCSF t-shirt, or any shirt, optional.</p>\n<p>I hope to see you there.</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:68:"http://wordpress.org/news/2013/07/annual-wordpress-survey-wcsf/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:48:"WordPress 3.5.2 Maintenance and Security Release";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:50:"http://wordpress.org/news/2013/06/wordpress-3-5-2/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:59:"http://wordpress.org/news/2013/06/wordpress-3-5-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:"Fri, 21 Jun 2013 19:54:26 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s: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=2612";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:380:"WordPress 3.5.2 is now available. This is the second maintenance release of 3.5, fixing 12 bugs. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. The WordPress security team resolved seven security issues, and this release also contains some additional security hardening. The security fixes included: […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:2549:"<p>WordPress 3.5.2 is now available. This is the second maintenance release of 3.5, fixing <a href="http://core.trac.wordpress.org/query?status=closed&group=resolution&milestone=3.5.2">12 bugs</a>. <strong>This is a security release for all previous versions and we strongly encourage you to update your sites immediately.</strong> The WordPress security team resolved seven security issues, and this release also contains some additional security hardening.</p>\n<p>The security fixes included:</p>\n<ul>\n<li>Blocking server-side request forgery attacks, which could potentially enable an attacker to gain access to a site.</li>\n<li>Disallow contributors from improperly publishing posts, reported by <a href="http://kovshenin.com/">Konstantin Kovshenin</a>, or reassigning the post’s authorship, reported by <a href="http://www.sharefaith.com/">Luke Bryan</a>.</li>\n<li>An update to the SWFUpload external library to fix cross-site scripting vulnerabilities. Reported by <a href="http://ma.la">mala</a> and <a href="http://mars.iti.pk.edu.pl/~grucha/">Szymon Gruszecki</a>. (Developers: More on SWFUpload <a href="http://make.wordpress.org/core/2013/06/21/secure-swfupload/">here</a>.)</li>\n<li>Prevention of a denial of service attack, affecting sites using password-protected posts.</li>\n<li>An update to an external TinyMCE library to fix a cross-site scripting vulnerability. Reported by <a href="http://twitter.com/rinakikun">Wan Ikram</a>.</li>\n<li>Multiple fixes for cross-site scripting. Reported by <a href="http://webapplicationsecurity.altervista.org/">Andrea Santese</a> and Rodrigo.</li>\n<li>Avoid disclosing a full file path when a upload fails. Reported by <a href="http://hauntit.blogspot.de/">Jakub Galczyk</a>.</li>\n</ul>\n<p>We appreciated <a href="http://codex.wordpress.org/FAQ_Security">responsible disclosure</a> of these issues directly to our security team. For more information on the changes, see the <a href="http://codex.wordpress.org/Version_3.5.2">release notes</a> or consult <a href="http://core.trac.wordpress.org/log/branches/3.5?rev=24498&stop_rev=23347">the list of changes</a>.</p>\n<p><a href="http://wordpress.org/wordpress-3.5.2.zip">Download WordPress 3.5.2</a> or update now from the Dashboard → Updates menu in your site’s admin area.</p>\n<p><em>Also:</em> <strong>WordPress 3.6 Beta 4:</strong> If you are testing WordPress 3.6, please note that <a href="http://wordpress.org/wordpress-3.6-beta4.zip">WordPress 3.6 Beta 4</a> (zip) includes fixes for these security issues.</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:55:"http://wordpress.org/news/2013/06/wordpress-3-5-2/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:14:"Ten Good Years";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:49:"http://wordpress.org/news/2013/05/ten-good-years/";s: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:58:"http://wordpress.org/news/2013/05/ten-good-years/#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, 31 May 2013 17:54:35 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:1:{i:0;a:5:{s:4:"data";s:4:"Meta";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=2606";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:343:"It’s been ten years since we started this thing, and what a long way we’ve come. From a discussion between myself and Mike Little about forking our favorite blogging software, to powering 18% of the web. It’s been a crazy, exciting, journey, and one that won’t stop any time soon. At ten years, it’s fun […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:9852:"<p><img class="alignright" alt="" align="right" src="http://wpdotorg.files.wordpress.com/2013/05/wp10.jpg" width="316" height="164" />It’s been ten years since we started this thing, and what a long way we’ve come. From a discussion between myself and <a href="http://mikelittle.org/">Mike Little</a> about <a href="http://ma.tt/2003/01/the-blogging-software-dilemma/">forking our favorite blogging software</a>, to powering 18% of the web. It’s been a crazy, exciting, journey, and one that won’t stop any time soon.</p>\n<p>At ten years, it’s fun to reflect on our beginnings. We launched WordPress on 27th May 2003, but that wasn’t inception. Go back far enough, and you can <a href="http://zengun.org/weblog/archives/2001/06/post1958/">read a post by Michel Valdrighi</a> who, frustrated by the self-hosted blogging platforms available, decided to write his own software; “b2, a PHP+MySQL alternative to Blogger and GreyMatter.” b2 was easy to install, easy to configure, and easy for developers to extend. Of all the blogging platforms out there, <a href="http://cafelog.com">b2</a> was the right one for me: I could write my content and get it on the web quickly and painlessly.</p>\n<p>Sometimes, however, life gets in the way. In 2002, Michel stopped maintaining b2. Over time, security flaws became apparent and updates were needed and, while the b2 community could write patches and fixes, no one was driving the software forward. We were lucky that Michel decided to release b2 under the GPL; the software may have been abandoned, but we weren’t without options. A fork was always a possibility. That was where it stood in January 2003, when <a href="http://ma.tt/2003/01/the-blogging-software-dilemma/">I posted about forking b2</a> and <a href="http://ma.tt/2003/01/the-blogging-software-dilemma/#comment-445">Mike responded</a>. The rest, as they say, is history.</p>\n<p>From the very beginning to the present day, I’ve been impressed by the thought, care, and dedication that WordPress’ developers have demonstrated. Each one has brought his or her unique perspective, each individual has strengthened the whole. It would be impossible to thank each of them here individually, but their achievements speak for themselves. In WordPress 1.2 the new Plugin API made it easy for developers to extend WordPress. In the same release <code>gettext()</code> internationalization opened WordPress up to every language (hat tip: <a href="http://ryan.boren.me/">Ryan Boren</a> for spending hours wrapping strings with gettext). In WordPress 1.5 our Theme system made it possible for WordPress users to quickly change their site’s design: there was huge resistance to the theme system from the wider community at the time, but can you imagine WordPress without it? Versions 2.7, 2.8, and 2.9 saw improvements that let users install and update their plugins and themes with one click. WordPress has seen a redesign by <a href="http://v2.happycog.com/create/wordpress/?p=design/wordpress/">happycog</a> (2.3) and gone under extensive user testing and redesign (<a href="http://www.slideshare.net/edanzico/riding-the-crazyhorse-future-generation-wordpress-presentation">Crazyhorse</a>, Liz Danzico and Jen Mylo, WordPress 2.5). In WordPress 3.0 we merged WordPress MU with WordPress — a huge job but 100% worth it. And in WordPress 3.5 we revamped the media uploader to make it easier for people to get their images, video, and media online.</p>\n<p>In sticking to our commitment to user experience, we’ve done a few things that have made us unpopular. The <a href="http://tech.gaeatimes.com/index.php/archive/wordpress-wysiwyg-editor-is-a-disaster/">WYSIWYG editor</a> was hated by many, especially those who felt that if you have a blog you should know HTML. Some developers hated that we stuck with our code, refusing to rewrite, but it’s always been the users that matter: better a developer lose sleep than a site break for a user. Our code isn’t always beautiful, after all, when WordPress was created most of us were still learning PHP, but we try to make a flawless experience for users.</p>\n<p>It’s not all about developers. WordPress’ strength lies in the diversity of its community. From the start, we wanted a low barrier to entry and we came up with our “famous 5 minute install”. This brought on board users from varied technical background: people who didn’t write code wanted to help make WordPress better. If you couldn’t write code, it didn’t matter: you could answer a question in the support forums, write documentation, translate WordPress, or build your friends and family a WordPress website. There is <a href="https://make.wordpress.org/">space in the community</a> for anyone with a passion for WordPress.</p>\n<p>It’s been wonderful to see all of the people who have used WordPress to build their home on the internet. Early on <a href="http://wordpress.org/news/2004/04/switchers/">we got excited</a> by <a href="http://wordpress.org/news/2004/04/more-switchers/">switchers</a>. From a community of tinkerers we grew, as writers such as <a href="http://ma.tt/2004/05/om-malik/">Om Malik</a>, <a href="http://dougal.gunters.org/blog/2004/05/15/mark-pilgrim-switches/">Mark Pilgrim</a>, and <a href="http://ma.tt/2004/07/mollycom-switches/">Molly Holzschlag</a> made the switch to WordPress. Our commitment to effortless publishing quickly paid off and has continued to do so: <strong>the WordPress 1.2 release saw 822 downloads per day, our latest release, WordPress 3.5, has seen 145,692 per day.</strong></p>\n<p>I’m continually amazed by what people have built with WordPress. I’ve seen <a href="http://justintimberlake.com/main/">musicians</a> and <a href="http://ma.tt/2013/01/neil-leifer-on-wordpress/">photographers</a>, magazines such as <a href="http://life.time.com/">Life</a>, <a href="http://boingboing.net/">BoingBoing</a>, and the <a href="http://observer.com/">New York Observer</a>, <a href="http://www.compliance.gov/">government websites</a>, a <a href="http://josephscott.org/archives/2011/05/pressfs-a-wordpress-filesystem/">filesystem</a>, <a href="http://www.ymcanyc.org/association/pages/y-mvp"> mobile applications</a>, and even <a href="http://www.viper007bond.com/2010/06/12/so-apparently-wordpress-can-guide-missiles/">seen WordPress guide missiles</a>.</p>\n<p>As the web evolves, WordPress evolves. Factors outside of our control will always influence WordPress’ development: today it’s mobile devices and retina display, tomorrow it could be Google Glass or technology not yet conceived. A lot can happen in ten years! As technology changes and advances, WordPress has to change with it while remaining true to its core values: making publishing online easy for everyone. How we rise to these challenges will be what defines WordPress over the coming ten years.</p>\n<p><strong>To celebrate ten years of WordPress, we’re working on a book about our history.</strong> We’re carrying out interviews with people who have involved with the community from the very beginning, those who are still around, and those who have left. It’s a huge project, but we wanted to have something to share with you on the 10th anniversary. To learn about the very early days of WordPress, just after Mike and I forked b2 <a href="http://wordpress.org/about/history/">you can download Chapter 3 right here</a>. We’ll be releasing the rest of the book serially, so watch out as the story of the last ten years emerges.</p>\n<p>In the meantime, <a href="http://ma.tt/2013/05/dear-wordpress/"> I penned my own letter to WordPress</a> and other community members have been sharing their thoughts:</p>\n<ul>\n<li><a href="http://zed1.com/journalized/archives/2013/01/25/wordpress-a-10-year-journey/">Mike Little on our Ten Year Journey</a>.</li>\n<li>Core contributor Helen Hou-Sandi <a href="http://helen.wordpress.com/2013/05/27/happy-10th-wordpress-and-thanks-from-my-little-family/">wishes WordPress happy birthday</a>.</li>\n<li>Peter Westwood on <a href="http://blog.ftwr.co.uk/archives/2013/05/27/a-decade-gone-more-to-come/">a decade gone</a>.</li>\n<li>Support rep Mika Epstein <a href="http://ipstenu.org/2013/you-me-and-wp/">on her WordPress journey</a>.</li>\n<li>Dougal Campbell <a href="http://dougal.gunters.org/blog/2013/05/27/instagram-my-wife-suzecampbell-and-i-celebrating-the-wordpress-10th-anniversary-with-bbq-in-our-wordpress-shirts-wp10/">celebrating with his wife, Suze</a>.</li>\n<li>Otto on <a href="http://ottodestruct.com/blog/2013/how-wp-affected-me/">how WordPress affected him</a>.</li>\n</ul>\n<p>You can see how WordPress’ 10th Anniversary was celebrated all over the world <a href="http://wp10.wordpress.net/">by visiting the wp10 website</a>, according to Meetup we had 4,999 celebrators.</p>\n<p>To finish, I just want to say thank you to everyone: to the developers who write the code, to the designers who make WordPress sing, to the worldwide community translating WordPress into so many languages, to volunteers who answer support questions, to those who make WordPress accessible, to the systems team and the plugin and theme reviewers, to documentation writers, event organisers, evangelists, detractors, supporters and friends. Thanks to the jazzers whose music inspired us and whose names are at the heart of WordPress. Thanks to everyone who uses WordPress to power their blog or website, and to everyone who will in the future. Thanks to WordPress and its community that I’m proud to be part of.</p>\n<p>Thank you. I can’t wait to see what the next ten years bring.</p>\n<p><em>Final thanks to <a href="http://siobhanmckeown.com/">Siobhan McKeown</a> for help with this post.</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:54:"http://wordpress.org/news/2013/05/ten-good-years/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: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:22:"The Next 10 Starts Now";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:57:"http://wordpress.org/news/2013/05/the-next-10-starts-now/";s: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:66:"http://wordpress.org/news/2013/05/the-next-10-starts-now/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 27 May 2013 20:47: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: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:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=2594";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:365:"All around the globe today, people are celebrating the 10th anniversary of the first WordPress release, affectionately known as #wp10. Watching the feed of photos, tweets, and posts from Auckland to Zambia is incredible; from first-time bloggers to successful WordPress-based business owners, people are coming out in droves to raise a glass and share the […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:8:"Jen Mylo";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:3901:"<p>All around the globe today, people are celebrating the 10th anniversary of the first WordPress release, affectionately known as #wp10. <a href="http://wp10.wordpress.net">Watching the feed</a> of photos, tweets, and posts from Auckland to Zambia is incredible; from first-time bloggers to successful WordPress-based business owners, people are coming out in droves to raise a glass and share the “holiday” with their local communities. With hundreds of parties going on today, it’s more visible than ever just how popular WordPress has become.</p>\n<p><strong>Thank you to everyone who has ever contributed to this project: your labors of love made this day possible.</strong></p>\n<p>But today isn’t just about reflecting on how we got this far (though I thought <a href="http://ma.tt/2013/05/dear-wordpress/">Matt’s reflection on the first ten years</a> was lovely). We are constantly moving forward. As each release cycle begins and ends (3.6 will be here soon, promise!), we always see an ebb and flow in the contributor pool. Part of ensuring the longevity of WordPress means mentoring new contributors, continually bringing new talent and fresh points of view to our family table.</p>\n<p>I am beyond pleased to announce that this summer we will be mentoring 8 interns, most of them new contributors, through <a href="http://www.google-melange.com/gsoc/homepage/google/gsoc2013">Google Summer of Code</a> and the <a href="https://live.gnome.org/OutreachProgramForWomen/2013/JuneSeptember">Gnome Outreach Program for Women</a>. Current contributors, who already volunteer their time working on WordPress, will provide the guidance and oversight for a variety of exciting projects this summer. Here are the people/projects involved in the summer internships:</p>\n<ul>\n<li><strong><strong>Ryan McCue</strong>, </strong>from Australia, working on a JSON-based REST API. Mentors will be Bryan Petty and Eric Mann, with a reviewer assist from Andrew Norcross.</li>\n<li><strong>Kat Hagan</strong>, from the United States, working on a Post by Email plugin to replace the core function. Mentors will be Justin Shreve and George Stephanis, with an assist from Peter Westwood.</li>\n<li><strong>Siobhan Bamber</strong>, from Wales, working on a support (forums, training, documentation) internship. Mentors will be Mika Epstein and Hanni Ross.</li>\n<li><strong>Frederick Ding</strong>, from the United States, working on improving portability. Mentors will be Andrew Nacin and Mike Schroder.</li>\n<li><strong>Sayak Sakar</strong>, from India, working on porting WordPress for WebOS to Firefox OS. Mentor will be Eric Johnson.</li>\n<li><strong>Alex Höreth</strong>, from Germany, working on adding WordPress native revisions to the theme and plugin code editors. Mentors will be Dominik Schilling and Aaron Campbell, with a reviewer assist from Daniel Bachhuber.</li>\n<li><strong>Mert Yazicioglu</strong>, from Turkey, working on ways to improve our community profiles at profiles.wordpress.org. Mentors will be Scott Reilly and Boone Gorges.</li>\n<li><strong>Daniele Maio</strong>, from Italy, working on a native WordPress app for Blackberry 10. Mentor will be Danilo Ercoli.</li>\n</ul>\n<p>Did you notice that our summer cohort is as international as the #wp10 parties going on today? I can only think that this is a good sign.</p>\n<p>It’s always a difficult process to decide which projects to mentor through these programs. There are always more applicants with interesting ideas with whom we’d like to work than there are opportunities. Luckily, WordPress is a free/libre open source software project, and anyone can begin contributing at any time. Is this the year for you? We’d love for you to join us as we work toward #wp20. <img src=''http://wordpress.org/news/wp-includes/images/smilies/icon_wink.gif'' alt='';)'' class=''wp-smiley'' /> </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:62:"http://wordpress.org/news/2013/05/the-next-10-starts-now/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: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:20:"WordPress 3.6 Beta 3";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:55:"http://wordpress.org/news/2013/05/wordpress-3-6-beta-3/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:64:"http://wordpress.org/news/2013/05/wordpress-3-6-beta-3/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 11 May 2013 03:44:41 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:1:{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:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=2584";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:374:"WordPress 3.6 Beta 3 is now available! This is software still in development and we really don’t recommend that you run it on a production site — set up a test site just to play with the new version. To test WordPress 3.6, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the beta here (zip). Beta […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"Mark Jaquith";s: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:2452:"<p>WordPress 3.6 Beta 3 is now available!</p>\n<p>This is software still in development and <strong>we <em>really</em> don’t recommend that you run it on a production site</strong> — set up a test site just to play with the new version. To test WordPress 3.6, try the <a href="http://wordpress.org/extend/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href="http://wordpress.org/wordpress-3.6-beta3.zip">download the beta here</a> (zip).</p>\n<p>Beta 3 contains about a hundred changes, including improvements to the image Post Format flow (yay, drag-and-drop image upload!), a more polished revision comparison screen, and a more quote-like quote format for Twenty Thirteen.</p>\n<p>As a bonus, we now have oEmbed support for the popular music-streaming services <a href="http://www.rdio.com/">Rdio</a> and <a href="http://www.spotify.com/">Spotify</a> (the latter of which kindly created an oEmbed endpoint a mere 24 hours after we lamented their lack of one). Here’s an album that’s been getting a lot of play as I’ve been working on WordPress 3.6:</p>\n<p><iframe width="500" height="250" src="https://rd.io/i/Qj5r8SE//?source=oembed" frameborder="0"></iframe></p>\n<p><iframe src="https://embed.spotify.com/?uri=spotify:album:6dJZDZMNdBPZrJcNv57bEq" width="300" height="380" frameborder="0" allowtransparency="true"></iframe></p>\n<p>Plugin developers, theme developers, and WordPress hosts should be testing beta 3 extensively. The more you test the beta, the more stable our release candidates and our final release will be.</p>\n<p>As always, if you think you’ve found a bug, you can post to the <a href="http://wordpress.org/support/forum/alphabeta">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a reproducible bug report, <a href="http://core.trac.wordpress.org/">file one on the WordPress Trac</a>. There, you can also find <a href="http://core.trac.wordpress.org/report/5">a list of known bugs</a> and <a href="http://core.trac.wordpress.org/query?status=closed&group=component&milestone=3.6">everything we’ve fixed</a> so far.</p>\n<p>We’re looking forward to your feedback. If you find a bug, please report it, and if you’re a developer, try to help us fix it. We’ve already had more than 150 contributors to version 3.6 — it’s not too late to join in!</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:60:"http://wordpress.org/news/2013/05/wordpress-3-6-beta-3/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:9;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:20:"WordPress 3.6 Beta 2";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:55:"http://wordpress.org/news/2013/04/wordpress-3-6-beta-2/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:64:"http://wordpress.org/news/2013/04/wordpress-3-6-beta-2/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 29 Apr 2013 22:48:55 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:1:{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:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=2579";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:373:"WordPress 3.6 Beta 2 is now available! This is software still in development and we really don’t recommend that you run it on a production site — set up a test site just to play with the new version. To test WordPress 3.6, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the beta here (zip). The […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"Mark Jaquith";s: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:2057:"<p>WordPress 3.6 Beta 2 is now available!</p>\n<p>This is software still in development and <strong>we <em>really</em> don’t recommend that you run it on a production site</strong> — set up a test site just to play with the new version. To test WordPress 3.6, try the <a href="http://wordpress.org/extend/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href="http://wordpress.org/wordpress-3.6-beta2.zip">download the beta here</a> (zip).</p>\n<p>The longer-than-usual delay between beta 1 and beta 2 was due to poor user testing results with the Post Formats UI. Beta 2 contains a modified approach for format choosing and switching, which has done well in user testing. We’ve also made the Post Formats UI hide-able via Screen Options, and set a reasonable default based on what your theme supports.</p>\n<p>There were a lot of bug fixes and polishing tweaks done for beta 2 as well, so definitely check it out if you had an issues with beta 1.</p>\n<p>Plugin developers, theme developers, and WordPress hosts should be testing beta 2 extensively. The more you test the beta, the more stable our release candidates and our final release will be.</p>\n<p>As always, if you think you’ve found a bug, you can post to the <a href="http://wordpress.org/support/forum/alphabeta">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a reproducible bug report, <a href="http://core.trac.wordpress.org/">file one on the WordPress Trac</a>. There, you can also find <a href="http://core.trac.wordpress.org/report/5">a list of known bugs</a> and <a href="http://core.trac.wordpress.org/query?status=closed&group=component&milestone=3.6">everything we’ve fixed</a> so far.</p>\n<p>We’re looking forward to your feedback. If you find a bug, please report it, and if you’re a developer, try to help us fix it. We’ve already had more than 150 contributors to version 3.6 — it’s not too late to join in!</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:60:"http://wordpress.org/news/2013/04/wordpress-3-6-beta-2/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:3:{s:4:"href";s:31:"http://wordpress.org/news/feed/";s:3:"rel";s:4:"self";s:4:"type";s:19:"application/rss+xml";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:44:"http://purl.org/rss/1.0/modules/syndication/";a:2:{s:12:"updatePeriod";a:1:{i:0;a:5:{s:4:"data";s:6:"hourly";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:15:"updateFrequency";a:1:{i:0;a:5:{s:4:"data";s:1:"1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}}}}}}s:4:"type";i:128;s:7:"headers";a:8:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Sat, 21 Sep 2013 23:05:53 GMT";s:12:"content-type";s:23:"text/xml; charset=UTF-8";s:10:"connection";s:5:"close";s:4:"vary";s:15:"Accept-Encoding";s:10:"x-pingback";s:36:"http://wordpress.org/news/xmlrpc.php";s:13:"last-modified";s:29:"Wed, 11 Sep 2013 21:01:43 GMT";s:4:"x-nc";s:11:"HIT lax 249";}s:5:"build";s:14:"20130708141016";}', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(117, '_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1379847950', 'no'),
(118, '_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1379804750', 'no'),
(119, '_transient_timeout_dash_4077549d03da2e451c8b5f002294ff51', '1379847950', 'no'),
(120, '_transient_dash_4077549d03da2e451c8b5f002294ff51', '<div class="rss-widget"><ul><li><a class=''rsswidget'' href=''http://wordpress.org/news/2013/09/wordpress-3-6-1/'' title=''After nearly 7 million downloads of WordPress 3.6, we are pleased to announce the availability of version 3.6.1. This maintenance release fixes 13 bugs in version 3.6, which was a very smooth release. WordPress 3.6.1 is also a security release for all previous WordPress versions and we strongly encourage you to update your sites immediately. […]''>WordPress 3.6.1 Maintenance and Security Release</a> <span class="rss-date">September 11, 2013</span><div class=''rssSummary''>After nearly 7 million downloads of WordPress 3.6, we are pleased to announce the availability of version 3.6.1. This maintenance release fixes 13 bugs in version 3.6, which was a very smooth release. WordPress 3.6.1 is also a security release for all previous WordPress versions and we strongly encourage you to update your sites immediately. […]</div></li><li><a class=''rsswidget'' href=''http://wordpress.org/news/2013/08/oscar/'' title=''The latest and greatest WordPress, version 3.6, is now live to the world and includes a beautiful new blog-centric theme, bullet-proof autosave and post locking, a revamped revision browser, native support for audio and video embeds, and improved integrations with Spotify, Rdio, and SoundCloud. Here’s a video that shows off some of the features using […]''>WordPress 3.6 “Oscar”</a> <span class="rss-date">August 1, 2013</span><div class=''rssSummary''>The latest and greatest WordPress, version 3.6, is now live to the world and includes a beautiful new blog-centric theme, bullet-proof autosave and post locking, a revamped revision browser, native support for audio and video embeds, and improved integrations with Spotify, Rdio, and SoundCloud. Here’s a video that shows off some of the features using […]</div></li></ul></div>', 'no'),
(121, '_transient_timeout_feed_b9388c83948825c1edaef0d856b7b109', '1379847950', 'no'),
(122, '_transient_feed_b9388c83948825c1edaef0d856b7b109', 'a:4:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:3:"\n \n";s:7:"attribs";a:1:{s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:72:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:39:"WordPress Plugins » View: Most Popular";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:44:"http://wordpress.org/plugins/browse/popular/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:39:"WordPress Plugins » View: Most Popular";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"language";a:1:{i:0;a:5:{s:4:"data";s:5:"en-US";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 21 Sep 2013 22:32:49 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s: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:48:"http://wordpress.org/plugins/jetpack/#post-23862";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 20 Jan 2011 02:21:38 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"23862@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:104:"Supercharge your WordPress site with powerful features previously only available to WordPress.com users.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:24:"Michael Adams (mdawaffe)";s: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:7:"Akismet";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:45:"http://wordpress.org/plugins/akismet/#post-15";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 09 Mar 2007 22:11:30 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:32:"15@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:98:"Akismet checks your comments against the Akismet web service to see if they look like spam or not.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Matt Mullenweg";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:15:"NextGEN Gallery";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:55:"http://wordpress.org/plugins/nextgen-gallery/#post-1169";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 23 Apr 2007 20:08:06 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"1169@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:122:"The most popular WordPress gallery plugin and one of the most popular plugins of all time with over 7.5 million downloads.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:9:"Alex Rabe";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:14:"Contact Form 7";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:54:"http://wordpress.org/plugins/contact-form-7/#post-2141";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 02 Aug 2007 12:45:03 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"2141@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:54:"Just another contact form plugin. Simple but flexible.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:16:"Takayuki Miyoshi";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:4;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:22:"WordPress SEO by Yoast";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:53:"http://wordpress.org/plugins/wordpress-seo/#post-8321";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 01 Jan 2009 20:34:44 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"8321@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:131:"Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using the WordPress SEO plugin by Yoast.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Joost de Valk";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:5;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:19:"All in One SEO Pack";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:58:"http://wordpress.org/plugins/all-in-one-seo-pack/#post-753";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 30 Mar 2007 20:08:18 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"753@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:86:"WordPress SEO plugin to automatically optimize your Wordpress blog for Search Engines.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:18:"WordPress Importer";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:59:"http://wordpress.org/plugins/wordpress-importer/#post-18101";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 20 May 2010 17:42:45 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"18101@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:101:"Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Brian Colinger";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:7;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:33:"WooCommerce - excelling eCommerce";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:52:"http://wordpress.org/plugins/woocommerce/#post-29860";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 05 Sep 2011 08:13:36 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"29860@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:97:"WooCommerce is a powerful, extendable eCommerce plugin that helps you sell anything. Beautifully.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:9:"WooThemes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:8;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:7:"Captcha";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:48:"http://wordpress.org/plugins/captcha/#post-26129";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 27 Apr 2011 05:53:50 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"26129@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:79:"This plugin allows you to implement super security captcha form into web forms.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:11:"bestwebsoft";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:8:"Facebook";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:49:"http://wordpress.org/plugins/facebook/#post-37351";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 02 May 2012 19:36:35 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"37351@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:131:"Add Facebook social plugins and the ability to publish new posts to a Facebook Timeline or Facebook Page. Official Facebook 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:18:"Samuel Wood (Otto)";s: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:19:"Google XML Sitemaps";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:63:"http://wordpress.org/plugins/google-sitemap-generator/#post-132";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 09 Mar 2007 22:31:32 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"132@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:105:"This plugin will generate a special XML sitemap which will help search engines to better index your blog.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:5:"Arnee";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:14:"W3 Total Cache";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:55:"http://wordpress.org/plugins/w3-total-cache/#post-12073";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 29 Jul 2009 18:46:31 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"12073@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:132:"Easy Web Performance Optimization (WPO) using caching: browser, page, object, database, minify and content delivery network support.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:16:"Frederick Townes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:16:"Ultimate TinyMCE";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:57:"http://wordpress.org/plugins/ultimate-tinymce/#post-32088";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 14 Nov 2011 09:06: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:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"32088@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:94:"Description: Beef up the WordPress TinyMCE content editor with a plethora of advanced options.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:19:"Josh (Ult. Tinymce)";s: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:12:"Contact Form";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:60:"http://wordpress.org/plugins/contact-form-plugin/#post-26890";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 26 May 2011 07:34:58 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"26890@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:43:"Add Contact Form to your WordPress website.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:11:"bestwebsoft";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:21:"Really Simple CAPTCHA";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:61:"http://wordpress.org/plugins/really-simple-captcha/#post-9542";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 09 Mar 2009 02:17:35 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"9542@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:138:"Really Simple CAPTCHA is a CAPTCHA module intended to be called from other plugins. It is originally created for my Contact Form 7 plugin.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:16:"Takayuki Miyoshi";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:3:{s:4:"href";s:45:"http://wordpress.org/plugins/rss/view/popular";s:3:"rel";s:4:"self";s:4:"type";s:19:"application/rss+xml";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}}}}}}s:4:"type";i:128;s:7:"headers";a:10:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Sat, 21 Sep 2013 23:05:54 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:"Sat, 21 Sep 2013 23:07:49 GMT";s:13:"cache-control";s:0:"";s:6:"pragma";s:0:"";s:13:"last-modified";s:31:"Sat, 21 Sep 2013 22:32:49 +0000";s:4:"x-nc";s:11:"HIT lax 249";}s:5:"build";s:14:"20130708141016";}', 'no'),
(123, '_transient_timeout_feed_mod_b9388c83948825c1edaef0d856b7b109', '1379847950', 'no'),
(124, '_transient_feed_mod_b9388c83948825c1edaef0d856b7b109', '1379804750', 'no'),
(125, '_transient_timeout_feed_77fa140e07ce53fe8c87136636f83d72', '1379847950', 'no'),
(126, '_transient_feed_77fa140e07ce53fe8c87136636f83d72', '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:33:"WordPress Plugins » View: Newest";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:40:"http://wordpress.org/plugins/browse/new/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:33:"WordPress Plugins » View: Newest";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"language";a:1:{i:0;a:5:{s:4:"data";s:5:"en-US";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 21 Sep 2013 22:39:09 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s: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:13:"Bulk Category";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:54:"http://wordpress.org/plugins/bulk-category/#post-58369";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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 Sep 2013 21:02: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:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"58369@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:85:"Bulk Category allows you to import, export and delete categories from a csv/txt 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:17:"christopherdubeau";s: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:13:"oik-batchmove";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:54:"http://wordpress.org/plugins/oik-batchmove/#post-55615";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 07 Jul 2013 14:46:04 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"55615@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:46:"Batch change post categories or published date";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"bobbingwide";s: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:26:"Super Simple Related Posts";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"http://wordpress.org/plugins/super-simple-related-posts/#post-57467";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 22 Aug 2013 01:24: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:"57467@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:94:"A super simple widget to output related posts based on categories, tags, or custom taxonomies.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"McGuive7";s: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:17:"WP Event Schedule";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:58:"http://wordpress.org/plugins/wp-event-schedule/#post-58013";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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 Sep 2013 05:11:10 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"58013@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:26:"Create the event schedule.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"rnsk";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:4;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:22:"Nova Dashboard Cleanup";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:63:"http://wordpress.org/plugins/nova-dashboard-cleanup/#post-58506";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 19 Sep 2013 09:25:50 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"58506@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:72:"The Nova Dashboard Cleanup removes all those unwanted dashboard Widgets.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"Conor Lyons";s: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:"SmartSimian Creator";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:60:"http://wordpress.org/plugins/smartsimian-creator/#post-58520";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 19 Sep 2013 18:46:26 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"58520@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:105:"Take website management to the next level with custom content types, fields, taxonomies, and connections.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"Michael 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:"";}}}}}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:34:"APPA World Rankings Display Plugin";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:75:"http://wordpress.org/plugins/appa-world-rankings-display-plugin/#post-58411";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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 Sep 2013 15:02:02 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"58411@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:124:"Display the APPA / PSP World Rankings via shortcode. Displays current season by default, or a previous season if specified.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}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:"jmrieger";s: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:20:"WPEX Replace DB Urls";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:53:"http://wordpress.org/plugins/wpex-replace/#post-58050";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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 Sep 2013 11:39:08 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"58050@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:74:"The easiest, most effective way to replace urls in the wordpress database.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:8:"dstoever";s: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:28:"Default Post Thumbnail Image";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:69:"http://wordpress.org/plugins/default-post-thumbnail-image/#post-58471";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 18 Sep 2013 08:08:38 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"58471@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:109:"Set a default thumbnail using an image from your gallery or use your gravatar for posts with no thumbnail set";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:7:"roganty";s: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:22:"Dynamic Featured Image";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:63:"http://wordpress.org/plugins/dynamic-featured-image/#post-58514";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 19 Sep 2013 16:17:53 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"58514@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:110:"Dynamically adds multiple featured image (post thumbnail) functionality to posts, pages and custom post types.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Ankit Pokhrel";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:10;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:22:"Genesis Agent Profiles";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:63:"http://wordpress.org/plugins/genesis-agent-profiles/#post-57261";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_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, 16 Aug 2013 19:30:29 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"57261@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:75:"This plugin creates a real estate agent directory for Genesis child 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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"agentevolution";s: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:19:"Amazon Web Services";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:60:"http://wordpress.org/plugins/amazon-web-services/#post-58517";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 19 Sep 2013 18:04: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:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"58517@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:106:"Houses the Amazon Web Services (AWS) PHP libraries and manages access keys. Required by other AWS plugins.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Brad Touesnard";s: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:20:"Motivation Generator";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:61:"http://wordpress.org/plugins/motivation-generator/#post-58498";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 18 Sep 2013 22:15:41 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"58498@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:88:"Motivation Generator allows you to create (de)motivational posters right on your website";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:10:"stepan1010";s: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:26:"Yet Another Weather Plugin";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:67:"http://wordpress.org/plugins/yet-another-weather-plugin/#post-58497";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 18 Sep 2013 22:13:48 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"58497@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:111:"Yet Another Weather Plugin (Yawp) allows you to retrive weather information from openweathermap to your website";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:10:"stepan1010";s: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:11:"Shempa 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:"link";a:1:{i:0;a:5:{s:4:"data";s:52:"http://wordpress.org/plugins/shempa-core/#post-58476";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 18 Sep 2013 12:06:37 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"58476@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:78:"The Shempa Core Plugin provides core functionality for Shempa Wordpress Theme.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"creativeflat";s: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:41:"http://wordpress.org/plugins/rss/view/new";s:3:"rel";s:4:"self";s:4:"type";s:19:"application/rss+xml";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}}}}}}s:4:"type";i:128;s:7:"headers";a:10:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Sat, 21 Sep 2013 23:05:54 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:"Sat, 21 Sep 2013 23:14:09 GMT";s:13:"cache-control";s:0:"";s:6:"pragma";s:0:"";s:13:"last-modified";s:31:"Sat, 21 Sep 2013 22:39:09 +0000";s:4:"x-nc";s:11:"HIT lax 249";}s:5:"build";s:14:"20130708141016";}', 'no'),
(127, '_transient_timeout_feed_mod_77fa140e07ce53fe8c87136636f83d72', '1379847950', 'no'),
(128, '_transient_feed_mod_77fa140e07ce53fe8c87136636f83d72', '1379804750', 'no'),
(129, '_transient_timeout_plugin_slugs', '1379913962', 'no'),
(130, '_transient_plugin_slugs', 'a:15:{i:0;s:19:"akismet/akismet.php";i:1;s:59:"force-regenerate-thumbnails/force-regenerate-thumbnails.php";i:2;s:25:"go_pricing/go_pricing.php";i:3;s:29:"gravityforms/gravityforms.php";i:4;s:58:"gravity-forms-css-ready-selector/gf-readyclasses-addon.php";i:5;s:23:"magic-fields-2/main.php";i:6;s:47:"really-simple-captcha/really-simple-captcha.php";i:7;s:21:"s2member/s2member.php";i:8;s:26:"fatpanda-singly/plugin.php";i:9;s:23:"user-meta/user-meta.php";i:10;s:37:"user-role-editor/user-role-editor.php";i:11;s:51:"visual-biography-editor/visual-editor-biography.php";i:12;s:24:"wordpress-seo/wp-seo.php";i:13;s:27:"wp-pro-quiz/wp-pro-quiz.php";i:14;s:51:"wp-survey-and-quiz-tool/wp-survey-and-quiz-tool.php";}', 'no'),
(131, '_transient_timeout_dash_de3249c4736ad3bd2cd29147c4a0d43e', '1379847951', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(132, '_transient_dash_de3249c4736ad3bd2cd29147c4a0d43e', '<h4>Most Popular</h4>\n<h5><a href=''http://wordpress.org/plugins/contact-form-plugin/''>Contact Form</a></h5> <span>(<a href=''plugin-install.php?tab=plugin-information&plugin=contact-form-plugin&_wpnonce=29890ccc7f&TB_iframe=true&width=600&height=800'' class=''thickbox'' title=''Contact Form''>Install</a>)</span>\n<p>Add Contact Form to your WordPress website.</p>\n<h4>Newest Plugins</h4>\n<h5><a href=''http://wordpress.org/plugins/nova-dashboard-cleanup/''>Nova Dashboard Cleanup</a></h5> <span>(<a href=''plugin-install.php?tab=plugin-information&plugin=nova-dashboard-cleanup&_wpnonce=086b6b36f6&TB_iframe=true&width=600&height=800'' class=''thickbox'' title=''Nova Dashboard Cleanup''>Install</a>)</span>\n<p>The Nova Dashboard Cleanup removes all those unwanted dashboard Widgets.</p>\n', 'no'),
(133, 'can_compress_scripts', '1', 'yes'),
(134, '_transient_timeout_feed_867bd5c64f85878d03a060509cd2f92c', '1379847951', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(135, '_transient_feed_867bd5c64f85878d03a060509cd2f92c', 'a:4:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:3:"\n\n\n";s:7:"attribs";a:1:{s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:61:"\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:16:"WordPress Planet";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:28:"http://planet.wordpress.org/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"language";a:1:{i:0;a:5:{s:4:"data";s:2:"en";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:47:"WordPress Planet - http://planet.wordpress.org/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"item";a:50:{i:0;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:57:"WP iPhone: WordPress Featured in 90+ App Stores Worldwide";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:32:"http://ios.wordpress.org/?p=1487";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://ios.wordpress.org/2013/09/20/wordpress-featured/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3010:"<p><a href="http://wpiphone.files.wordpress.com/2013/09/wordpress-ios-social-networking-featured-screenshot-large.png"><img src="http://wpiphone.files.wordpress.com/2013/09/wordpress-ios-social-networking-featured-screenshot-take3.png?w=594&h=323" alt="WordPress for iOS featured in the US App Store on September 20, 2013" width="594" height="323" class="alignnone size-full wp-image-1488" /></a></p>\n<p>It’s been an exciting few days for us working on the WordPress app for iOS. With the launch of iOS 7, the app ended up in the spotlight of a flurry of similar announcements and was listed among the best iOS 7 apps in several publications — one example: <a href="http://www.businessinsider.com/ios-7-app-design-2013-9?op=1"><br />\n“Here’s How iOS 7 Has Already Changed The Look Of Your Apps” (Business Insider)</a>.</p>\n<p>Today we’re excited to share another reason to celebrate. We just found out that the app is featured as one of the top apps in the Social Networking category in the U.S. App Store! This, along with the app being highlighted in the “Apps Designed for iOS 7″ section in 92 stores worldwide to date. Of course we’re extremely proud of this achievement. Major kudos once again to <a href="http://profiles.wordpress.org/hugobaeta">Hugo Baeta</a> and <a href="http://profiles.wordpress.org/sendhil">Sendhil Panchadsaram</a> who worked together making this release happen.</p>\n<h3>The Beauty and the Beast</h3>\n<p>While we’re super excited to see the app getting recognized in both App Stores and all around the web, the iOS 7 release still had some <a href="https://github.com/wordpress-mobile/WordPress-iOS/issues?milestone=5&state=open">lingering issues</a> — some more severe than others. We’re working hard on fixing these and have already issued a quick bug fix update (<a href="http://itunes.apple.com/us/app/wordpress/id335703880?mt=8">3.8.1</a>) that, among other things, takes care of the annoying categories bug for those of you still running iOS 6.</p>\n<p>To see a full list of open issues and follow our progress crunching through them, <a href="https://github.com/wordpress-mobile/WordPress-iOS/issues?milestone=5&state=open">check out the GitHub project</a>. If you have any more details on any of the bugs or — heaven forbid — you find a new one, please let us know <a href="http://ios.forums.wordpress.org">in the forums</a> or directly on <a href="https://github.com/wordpress-mobile/WordPress-iOS/issues?milestone=5&state=open">GitHub</a> as soon as you see it. The more details we know the sooner we can get to work.</p>\n<br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wpiphone.wordpress.com/1487/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wpiphone.wordpress.com/1487/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ios.wordpress.org&blog=3882653&post=1487&subd=wpiphone&ref=&feed=1" width="1" height="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 20 Sep 2013 21:08: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:11:"Isaac Keyet";s: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:73:"WPTavern: Introducing WordPress Post Forking: Version Control For Writers";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"http://www.wptavern.com/?p=9336";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:124:"http://feedproxy.google.com/~r/WordpressTavern/~3/7wQSVIW3OJE/introducing-wordpress-post-forking-version-control-for-writers";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:9583:"<p>The WordPress platform has been helping writers publish their thoughts to the web for years. Though it now powers many large newsrooms and other organizations, the posting process still caters entirely to the individual writer working by himself on a post. Collaboration for multiple content creators is non-existent within the core right now.</p>\n<p>The WordPress Editorial workflow is one dimensional in that only one person can be editing at a time. Although WordPress has a fancy new way of showing you who’s working on the post, you actually have to kick that person out to take over editing. The new Post Locking feature in WordPress 3.6, though useful to prevent overwriting, is actually the antithesis of collaboration:<span id="more-9336"></span></p>\n<p><a href="http://i2.wp.com/www.wptavern.com/wp-content/uploads/2013/09/post-locking.png" rel="thumbnail"><img src="http://i2.wp.com/www.wptavern.com/wp-content/uploads/2013/09/post-locking.png?resize=560%2C181" alt="post-locking" class="aligncenter size-full wp-image-9350" /></a></p>\n<p>There is also a limitation in the current WordPress publishing process that you may not have noticed. Once a post is published, the only way to make edits is to push changes immediately, which precludes scheduling updates to the content and/or further collaboration. </p>\n<p>These limitations are what drove <a href="http://aaron.jorb.in" target="_blank">Aaron Jorbin</a> and a small group of developers to create the <a href="http://wordpress.org/plugins/post-forking/">Post Forking</a> plugin.</p>\n<h3>What is Post Forking?</h3>\n<p>Post Forking is the solution to one-dimensional content creation. It opens the door for collaboration between multiple writers in WordPress. Essentially, the idea is that you can create a “fork” of the current post and make your own changes which can be submitted as a proposed revision and merged back into the final version.</p>\n<p><a href="http://i1.wp.com/www.wptavern.com/wp-content/uploads/2013/09/jorbin.jpeg" rel="thumbnail"><img src="http://i0.wp.com/www.wptavern.com/wp-content/uploads/2013/09/jorbin.jpeg?resize=150%2C150" alt="jorbin" class="alignright size-thumbnail wp-image-9346" /></a>I had the chance to chat with Aaron Jorbin and asked him what inspired the creation of a plugin that would offer git-style version control for words. He replied, “The first person I heard talk about this concept was Greg Linch, who spoke about <a href="http://www.greglinch.com/2010/07/quick-thoughts-on-journalism-and-version-control.html" target="_blank">Journalism and Version Control</a> at Bar Camp News Innovation Philadelphia. Fast Forward to my friend and former Google Summer of Code mentee, Ben Balter, mentioning that he had started coding something up and asking if I wanted to take a look. It was a working prototype of what became version 0.1.”</p>\n<p>The <a href="http://wordpress.org/plugins/post-forking/" target="_blank">Post Forking</a> plugin’s current features enable some new and interesting ways for online publishers to collaborate:</p>\n<ul>\n<li>Allowing users without edit or publish post capabilities to edit and submit changes to content (similar to GitHub’s pull request system)</li>\n<li>Collaborative editing (by resolving two users’ conflicted saves – Wired’s example)</li>\n<li>Saving draft changes of already-published content</li>\n<li>Scheduling pending changes to already-published content</li>\n</ul>\n<p>This is a basic set of features. Sure, it’s better than nothing but Jorbin recognizes the current usability defects in the plugin and has a vision for much more.</p>\n<h3>Taking Post Forking to the Next Level</h3>\n<p>The Post Forking plugin has been downloaded more than 1,000 times and the community is starting to become more interested in the potential of this new way to collaborate. But Jorbin wants to take the plugin to the next level. He recently listed the project on <a href="http://www.indiegogo.com/projects/wordpress-post-forking" target="_blank">Indiegogo</a> and has chosen to adopt the <a href="http://teleogistic.net/2012/05/the-patronage-model-for-free-software-freelancers/" target="_blank">patronage model</a> to help fund improvements to the plugin. His reasoning is, “Creating software costs money. I want to do user testing, which costs money and also want to be able to focus on it for a little while without needing to worry about how to pay my rent. When people contribute, in code, documentation, support or with cash, it makes them a part of the team.” </p>\n<p>Getting funding this way is a smart approach. Rather than sit around being frustrated by a lack of time to work on the project, he is allowing the WordPress community to demonstrate its interest and become part of something larger. Collaboration is the whole idea, after all, and Jorbin said that he has been inspired by the response: “Seeing how the community has responded has felt amazing. I know my goal isn’t low and getting 20% of the way there after one day validated the idea that the community can fund open source plugins and a commercial model isn’t the only way to develop great plugins.” </p>\n<p>What new features will be added to the plugin with this round of funding? Jorbin’s first priority is usability, followed by better support for meta and taxonomies:</p>\n<blockquote><p>The first goal is to make it more usable and easily understandable by writers and contents creators. Unless you are a developer or have spent a lot of time around developers, the concept of forking and merging might be foreign. Features such as scheduling merges can be hard to find and the manual merging page is hard to use. Once the usability concerns are addressed, the highest priorities are integration with revisions and forking/merging meta, taxonomies and everything else connected to posts and pages. </p></blockquote>\n<h3>Practical Uses For Post Forking</h3>\n<p><a href="http://i1.wp.com/www.wptavern.com/wp-content/uploads/2013/09/fork.png" rel="thumbnail"><img src="http://i1.wp.com/www.wptavern.com/wp-content/uploads/2013/09/fork.png?resize=300%2C290" alt="fork" class="alignright size-medium wp-image-9360" /></a>Wired Magazine once conducted an experiment wherein they put a <a href="https://github.com/WiredEnterprise/Lord-of-the-Files" target="_blank">story in process</a> on github for anyone to contribute to and improve, resulting in their collaboration article: <a href="http://www.wired.com/wiredenterprise/2012/02/github/all/1" target="_blank">Lord of the Files: How GitHub Tamed Free Software (And More)</a>. Although the experiment was considered a success, the entry level geek knowledge of git required for contribution poses a definite hurdle in the daily application of story versioning. Post Forking is the answer to this.</p>\n<p>If the idea of post forking is new to you, perhaps you’re wondering how the average Joe might make use of it. The benefits of forking posts do not just apply to major news rooms. Jorbin envisions benefits for a wide range of WordPress users:</p>\n<blockquote><p>On my personal site, I can imagine scheduling a fork to merge on my speaking page the day after I speak to move something from the future to the past. A company could have their API documentation in WordPress and prepare forks that they merge upon releasing an update. A team could write a book with all edits suggested by authors being cleared by the editor. It also could be used in many of the ways Wired has used it, to fix grammar and spelling mistakes and also for people to translate your writing for you. </p></blockquote>\n<p>If the idea of post forking catches on and becomes a more seamless part of the WordPress editorial workflow, Jorbin believes it could someday be a useful addition to the core. </p>\n<blockquote><p>If it’s highly usable and people are actually using it, it seems to me to be a natural fit for WordPress core. WordPress is about democratizing publishing. What is more democratic than participation and collaboration?</p></blockquote>\n<p>The first step towards making this a reality for users of the plugin is to get funding. This will allow Jorbin to devote time to making this more polished and usable for a larger section of publishers who may not be familiar with git terminology.</p>\n<h3>Help Fund Post Forking Improvements</h3>\n<p>You can help this plugin become an awesome tool for the WordPress community. Can you imagine the days of writing code before git collaboration was a possibility? That’s where we are right now as writers, locked out of posts and waiting turns while the work is going on. A fully featured and usable Post Forking plugin has the potential to radically change the editorial workflow for thousands of WordPress publishers around the world. </p>\n<p>If you’re inspired by the possibilities of more collaboration in WordPress, please <a href="http://www.indiegogo.com/projects/wordpress-post-forking" target="_blank">contribute to the Post Forking project</a> on Indiegogo. There is also a <a href="https://github.com/post-forking/post-forking/issues" target="_blank">bug tracker for feature requests and bug reports</a> where you can contribute. Join the <a href="https://groups.google.com/forum/#!forum/post-forking" target="_blank">mailing list</a> jump in at the #wp-postforking chatroom on IRC. Jorbin will be starting weekly chats to organize contributors. </p>\n<img src="http://feeds.feedburner.com/~r/WordpressTavern/~4/7wQSVIW3OJE" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 20 Sep 2013 20:35:12 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:60:"Dougal Campbell: Make Your WordPress Site Talk Like a Pirate";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"http://dougal.gunters.org/?p=73162";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:79:"http://dougal.gunters.org/blog/2013/09/19/make-wordpress-site-talk-like-pirate/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2020:"<div class="featured-image align-right"><img width="200" height="240" src="http://dougal.gunters.org/wordpress/wp-content/uploads/2013/09/pirates-ye-be-warned-200x240.gif" class="attachment-post-thumbnail wp-post-image" alt="pirates-ye-be-warned" /></div><p>It’s been 9 years since I first released me <a href="http://dougal.gunters.org/plugins/text-filter-suite/">Text Filter Suite</a> plugin, and dinna spare the whip, by Davy Jones'' locker! The TFS is actually a collection o'' a “TFS Core” plugin, plus several sub-plugins, includin'' th'' infamous “TFS Pirate”, which will turn yer posts and comments into pirate-speak fer<a href="http://www.talklikeapirate.com/"> International Talk Like a Pirate Day</a>.</p>\n<p>Over th'' years, I have been meanin'' t'' refactor th'' code. It really should be one single plugin, with an options screen t'' enable individual components, choose which thin''s t'' filter (titles, content, comments, sidebar text, pages/posts, etc). Also, I’ve been wantin'' t'' add shortcodes t'' allow ye t'' apply filters (or exclusions) t'' specific portions o'' yer text. But, th'' code has continued t'' work fine, only needin'' minor adjustments here and there o''er almost a decade o'' use. Huzzah fer th'' stability o'' th'' WordPress Plugin API!</p>\n<p>Anyways, even though TLAPD is well past th'' half-way mark in most places, it’s still not too late t'' get in on th'' fun. Install th'' plugin, and enable TFS-Core and TFS-Pirate. Boom.</p>\n<p>BTW, me plugin has been ported t'' Drupal and Joomla, if ye happen t'' swin'' that way.</p>\n<p> </p>\n<p>Original Article: <a href="http://dougal.gunters.org/blog/2013/09/19/make-wordpress-site-talk-like-pirate/">Make Your WordPress Site Talk Like a Pirate</a>\n<a href="http://dougal.gunters.org">Dougal Campbell's geek ramblings - WordPress, web development, and world domination.</a></p><div class="yarpp-related-rss yarpp-related-none">\n<img src="http://yarpp.org/pixels/5db43ee24c4f1e1d0e45d08cc91b0130" />\n</div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 19 Sep 2013 21:06: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:15:"Dougal Campbell";s: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:81:"WPTavern: Automatically Add Google Authorship To WordPress Posts With Jetpack 2.5";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"http://www.wptavern.com/?p=9305";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:133:"http://feedproxy.google.com/~r/WordpressTavern/~3/vmrcAGAZpbw/automatically-add-google-authorship-to-wordpress-posts-with-jetpack-2-5";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:5384:"<p><a href="http://jetpack.me/2013/09/19/jetpack-2-5/" target="_blank">Jetpack 2.5</a> was released today with a staggering array of new integration features for Google products and services. On top of all that the team has added VideoPress integration and the handy ability to embed Facebook posts directly within WordPress posts/pages. The exciting additions for all the Google junkies out there include:</p>\n<ul>\n<li>Post comments via your Google+ account</li>\n<li>Connect Google+ Profiles to authors</li>\n<li>A new Share to Google+ Button</li>\n<li>Embed Google content in posts/pages, including Google Calendars, Google Documents, and Google Maps</li>\n</ul>\n<p>I can understand not caring a bit about these features if you’re not big on Google products or Facebook posts. However, one feature in particular stands out as being very valuable for online publishers. Even if you’re not active on Google+ and could care less about embedding Google products, I’d like to highlight the benefits of turning on authorship.<br />\n<span id="more-9305"></span></p>\n<h3>Jetpack Makes It Easy to Add Google Authorship to Your Posts</h3>\n<p>Jetpack now provides one of the easiest and most convenient ways to add the <a href="http://www.google.com/insidesearch/features/authorship/" target="_blank">Google authorship feature</a> to your WordPress posts. The 2.5 release makes it simple to connect your profile. If you’re not familiar with authorship, it’s the way by which Google determines the author of a post and then shows all the fancy extras in the search results: </p>\n<div id="attachment_9315" class="wp-caption aligncenter"><a href="http://i2.wp.com/www.wptavern.com/wp-content/uploads/2013/09/cutts.jpg" rel="thumbnail"><img src="http://i0.wp.com/www.wptavern.com/wp-content/uploads/2013/09/cutts.jpg?resize=472%2C280" alt="Google authorship in action" class="size-full wp-image-9315" /></a><p class="wp-caption-text">Google authorship in action</p></div>\n<p>This extra information is very valuable for getting people to click on your posts in their search results. The best part is that Jetpack creates this official connection between your posts and your profile, without you having to add another plugin. When you activate the Google+ Profile connection in Jetpack, the plugin will do the following, according to the docs:</p>\n<ul>\n<li>The display name that appears on your posts and comments will display your Google+ Real Name (the name you have on your Google+ Profile).</li>\n<li>A link to your site is added on your Google+ Profile under the ‘Contributor To’ section.</li>\n<li>On single Post/Page views only, a Google+ section is added to the Sharing/Like details on your posts that includes a link to your Google+ Profile, a button so people can Follow you on Google+, and your Google avatar (the picture you set on your Google+ Profile).</li>\n<li>Verification code will be added to your posts to confirm to Google that you are the author of those posts.</li>\n</ul>\n<p>All of the above actions are done automatically for you, which is a huge improvement over other ways plugins have attempted to add authorship in the past.</p>\n<h4>SEO Benefits for Linking Your Google+ Profile to WordPress Posts</h4>\n<p>When you link up your Google+ profile to your website, you’ll receive a number of benefits that make your content appear more official when found in search engines:</p>\n<ul>\n<li>See analytics for your content in search.</li>\n<li>Distinguish and validate your content in search results.</li>\n<li>Get more followers on Google+.</li>\n<li>Help readers discover your other content on the web.</li>\n</ul>\n<p>Google Authorship can actually improve your rankings. It’s something you want to have in place, especially if you have a frequent problem with other sites on the internet reprinting your content as their own.</p>\n<h4>Support For Multi-Author WordPress Blogs</h4>\n<p>Jetpack’s new feature also works smoothly with multi-author blogs. Each author can link up his own Google+ profile, without having to go through the email verification process. When you navigate to the <em>Settings -> Sharing </em>page, it may appear that you can only link up one Google+ profile. That is not the case. Jetpack actually recognizes who is logged in and will offer the option for each author on the site. </p>\n<p>Turning this feature on also adds your profile to the sharing buttons, as shown here where we’ve turned it on:</p>\n<p><a href="http://i0.wp.com/www.wptavern.com/wp-content/uploads/2013/09/sharing-buttons.jpg" rel="thumbnail"><img src="http://i0.wp.com/www.wptavern.com/wp-content/uploads/2013/09/sharing-buttons.jpg?resize=536%2C75" alt="sharing-buttons" class="aligncenter size-full wp-image-9324" /></a></p>\n<p>As an avid Android user, Google products practically run my life and I am thrilled to see that <a href="http://jetpack.me/2013/09/19/jetpack-2-5/" target="_blank">Jetpack 2.5</a> is more tightly integrated with Google services. I realize that may not be the case for everyone. While you may not be crazy about embedding Google calendars or letting people comment via Google+, you can still take advantage of the solid SEO boost that you will get from adding authorship to your WordPress posts. </p>\n<img src="http://feeds.feedburner.com/~r/WordpressTavern/~4/vmrcAGAZpbw" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 19 Sep 2013 20:01: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: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:95:"WordPress.tv: Erik Wolf: Grow Your Business Now: Maximize Marketing Efficiencies With WordPress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wordpress.tv/?p=22569";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:113:"http://wordpress.tv/2013/09/18/erik-wolf-grow-your-business-now-maximize-marketing-efficiencies-with-wordpress-2/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:741:"<div id="v-9Ci0qCht-1" class="video-player">\n</div>\n<br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/22569/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/22569/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=22569&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2013/09/18/erik-wolf-grow-your-business-now-maximize-marketing-efficiencies-with-wordpress-2/"><img alt="Erik Wolf: Grow Your Business Now: Maximize Marketing Efficiencies With WordPress" src="http://videos.videopress.com/9Ci0qCht/video-1dad2e0b06_std.original.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 19 Sep 2013 03: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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"WordPress.tv";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:5;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:106:"WPTavern: The Daily Plugin – HashTag Aggregators, Featured Images for Categories and New Display Plugins";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"http://www.wptavern.com/?p=9247";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:153:"http://feedproxy.google.com/~r/WordpressTavern/~3/96Jfcq3hRic/the-daily-plugin-hashtag-aggregators-featured-images-for-categories-and-new-display-plugins";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:5909:"<p>It’s the mid-week rush, and the plugins have been flowing fast and furious from the WordPress Plugin Repository. We’ve got a number of really good new plugins to talk about today, but first, please remember that every plugin acts differently. It’s important to test and re-test any new plugin that you plan to use regularly, especially if it is on a client site. That being said, let’s get plugged in!</p>\n<p><a title="Tagregator" href="http://wordpress.org/plugins/tagregator/" target="_blank">Tagregator</a> is a multi-functional content aggregator that automatically creates new posts based on #hashtags from a compilation of different sources. Though right now it only functions with Twitter, there are future plans to develop with inclusion for Instagram and Flickr. What this would allow you to do is create an “as it happens” set of posts based around an event, a specific cause, or any other ideas that come to mind.<span id="more-9247"></span></p>\n<p><a href="http://i0.wp.com/www.wptavern.com/wp-content/uploads/2013/09/pageshowcaserboxes.png" rel="thumbnail"><img class="alignleft size-thumbnail wp-image-9252" alt="Page Showcaser Boxes" src="http://i0.wp.com/www.wptavern.com/wp-content/uploads/2013/09/pageshowcaserboxes.png?resize=150%2C150" /></a><a title="Page Showcaser Boxes" href="http://wordpress.org/plugins/page-showcaser-boxes/" target="_blank">Page Showcaser Boxes</a> finally give the PAGE their proper respect when being shown in context of other pages or posts. Sure, there are a million “related post” plugins out there, but the page gets no love in the plugin world. That may have changed with the induction of Page Showcaser Boxes. This plugin uses shortcodes to display a clean, tidy preview of a specific page or groups of pages. You can use Page Showcaser Boxes to highlight service pages within a blog post of the same subject, or simply use it to highlight the latest job openings at a company. The possibilities are limitless.</p>\n<p><a title="Featured Images for Categories" href="http://wordpress.org/plugins/featured-images-for-categories/" target="_blank">Featured Images for Categories</a> by Peter Schilling allows you the ability to add featured images for not only categories, but tags as well. This is a really powerful way to take your content archives to the next level. From creating subject matter images to city images that you may be tagging in the context of your post, this is a plugin that I will be using to experiment with a lot of different types of sites and theme options. When combined with category and tag meta data plugins, this transforms your WordPress install into a contextually relevant graphic presentation which integrates beautifully with the content you write. Though it is limited to tags and categories in the free version, I’d love to see this work with Author archive pages as well. There is a PRO version of this plugin as well that includes a bit more functionality, like custom taxonomies, a new widget to feature specific terms as the conduit for pulling images in a widget area and full support for all registered image sizes that are set up in your WordPress theme. Despite the existence of the pro version, the repository edition is a good plugin out of the box with enough functionality to deliver a very good result.</p>\n<p><a title="Unique Cursor" href="http://wordpress.org/plugins/unique-cursor/" target="_blank">Unique Cursor</a> gives you the chance to relive the glory days of the internet right on your own WordPress installation. Intrigue your site viewers with popular cursor designs such as the Zelda Sword, Skull and Crossbones, The Starship Enterprise, or any of hundreds of cursors freely available online in .cur file format. Though you already have your option of nearly 50 cursors already contained within this plugin.</p>\n<p><a title="Skype Status Ajax Refresh" href="http://wordpress.org/plugins/skype-status-ajax-refresh/" target="_blank">Skype Status AJAX refresh</a> helps to let site visitors reach you on Skype with a status message that refreshes itself via Ajax so that a full page refresh is not required to maintain your true online status. While I’m not one to personally advertise my Skype status for anyone to interrupt me at will, I can see the practical purpose for a business or service provider to add Skype as a means of contact on their “contact us” page. The plugin allows you to use your own custom online status images that best match your theme. I would have liked to have seen a shortcode enabled version that allowed for multiple Skype ID statuses to be used in a company directory format that could be added to each person’s contact information on the company directory page. It’s certainly something for custom theme developers to consider as well.</p>\n<p><a title="Pricing Table Extended" href="http://wordpress.org/plugins/pricing-table-extended" target="_blank">Pricing Table Extended</a> brings several uniquely styled pricing table formats into a compact WordPress plugin. If you have a product, service, or bundle that you want to present in multi-priced tiers, this may be worth investigating. Pricing Table Extended gives you several options when constructing your price tables. From comparisons to X and check mark graphics, I was able to incorporate several different pricing models and plan packages in a short amount of time without touching a speck of code or CSS.</p>\n<p>Please leave your comments and questions right here on WPTavern, or give me a shout on Twitter <a title="Marcus Couch on Twitter" href="https://twitter.com/marcuscouch">@marcuscouch</a>. I’m curious to see the most inventive use of the plugins I’ve described today. Let me know how you use them!</p>\n<img src="http://feeds.feedburner.com/~r/WordpressTavern/~4/96Jfcq3hRic" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 19 Sep 2013 00:06: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:12:"Marcus Couch";s: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:85:"WPTavern: New Book About WordPress.com: “The Year Without Pants” Is On Sale Today";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"http://www.wptavern.com/?p=9269";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:130:"http://feedproxy.google.com/~r/WordpressTavern/~3/DPbNrl1Px5U/new-book-about-wordpress-com-the-year-without-pants-is-on-sale-today";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2945:"<p><a href="http://i1.wp.com/www.wptavern.com/wp-content/uploads/2013/09/ywp.jpg" rel="thumbnail"><img src="http://i2.wp.com/www.wptavern.com/wp-content/uploads/2013/09/ywp.jpg?resize=300%2C300" alt="ywp" class="alignright size-medium wp-image-9270" /></a>Scott Berkun’s eagerly awaited book, <em><a href="http://www.amazon.com/Year-Without-Pants-WordPress-com-ebook/dp/B00DVJXI4M/" target="_blank">The Year Without Pants: WordPress.com and the Future of Work</a></em> is on sale today on Amazon. This is a behind-the-scenes look at how the team at WordPress.com is successfully using a new way of working that doesn’t involve emails, offices, boring meetings or any of the other things that make work a drag. If you’ve never worked remotely or hope to work remotely someday, this book will give you an idea of how <a href="http://automattic.com/" target="_blank">Automattic</a> employees do it while maintaining a high level of productivity.<span id="more-9269"></span></p>\n<p>Do people read books anymore? You bet your sweet bippy they do! In fact, Berkun’s book has already received <a href="http://scottberkun.com/2013/list-of-year-without-pants-reviews-mentions/" target="_blank">50+ positive reviews</a>, just one day after launching into the market. It’s also currently the<a href="http://www.amazon.com/gp/bestsellers/books/355561011/ref=pd_zg_hrsr_b_3_3" target="_blank"> #1 book on organizational behavior</a> on Amazon. <a href="https://dl.dropboxusercontent.com/u/11227681/YearWithoutPants-Sample.pdf" target="_blank">Read the first chapter for free</a> to get a taste of this fast-paced, exciting story. </p>\n<p>Both Jeff and I will be reading <em>The Year Without Pants</em> and giving you a review, so stay tuned and make sure you’re subscribed to the Tavern feed. We’re also hoping to have Scott Berkun on our WordPress Weekly podcast in the coming days to discuss the book. </p>\n<p>You can follow conversations about <em>The Year Without Pants</em> on Twitter using the hashtag <a href="https://twitter.com/search?q=%23nopants&src=hash" target="_blank">#nopants</a>. Incidentally, that hashtag will land you in a lot of interesting tangents as well. ;)</p>\n<p><em>The Year Without Pants</em> book release comes just a day after <a href="http://www.wptavern.com/wordpress-com-is-ranked-8-for-internet-traffic-in-the-us" target="_blank">WordPress.com was ranked #8 for monthly traffic in the US</a>, passing Yahoo, Pinterest, Tumbler.com and others to make the top 10. Huge congrats to <a href="https://twitter.com/berkun" target="_blank">Scott</a> for getting this book launched and for putting WordPress.com’s story out there to inspire others to work differently. Automattic’s unique approach to work is a story worth telling and we think you’re going to enjoy it. </p>\n<img src="http://feeds.feedburner.com/~r/WordpressTavern/~4/DPbNrl1Px5U" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 18 Sep 2013 22:27:19 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:43:"WP iPhone: WordPress is Now Ready for iOS 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:"guid";a:1:{i:0;a:5:{s:4:"data";s:32:"http://ios.wordpress.org/?p=1467";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:58:"http://ios.wordpress.org/2013/09/18/wordpress-ios-7-ready/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3028:"<p>Apple is releasing iOS 7 today, and for the past few months we’ve worked on an update that goes great with it.</p>\n<p><img class="aligncenter wp-image-1468" alt="announcement-ios7-02" src="http://wpiphone.files.wordpress.com/2013/09/announcement-ios7-02.png?w=512&h=475" width="512" height="475" /></p>\n<p>Quoting <a href="http://profiles.wordpress.org/hugobaeta/">Hugo Baeta</a>, who has been leading the design aspects of this release:</p>\n<blockquote><p>The app now uses the Open Sans typeface, the open-source font that works so well on WordPress.com. We also updated all the colors, bringing a brighter, fresher feel to the app experience. (And while we were at it, we fixed a few pesky bugs.) We think you’ll find the new app experience cheerful, consistent, and intuitive.</p></blockquote>\n<p><a href="https://itunes.apple.com/us/app/wordpress/id335703880?mt=8">Grab the new version on the App Store</a>!<br />\n<small>Compatible with iOS 6+</small></p>\n<h3>What’s next?</h3>\n<p>We wanted to focus this release on iOS 7 only, but we have a few other improvements coming up: a new theme selector, better media management, and visual editor, as well as other improvements to existing features, including a refresh of the iPad version.</p>\n<div id="attachment_1476" class="wp-caption alignnone"><a href="http://wpiphone.files.wordpress.com/2013/09/announcement-ios7-01.png"><img class="size-medium wp-image-1476" alt="WordPress for iOS App Icon Fall 2013" src="http://wpiphone.files.wordpress.com/2013/09/announcement-ios7-01.png?w=594&h=255" /></a><p class="wp-caption-text">The new app icon</p></div>\n<p>A huge thanks to the eight contributors who worked on this release: <a href="http://profiles.wordpress.org/hugobaeta" target="_blank">@hugobaeta</a>, <a href="http://profiles.wordpress.org/sendhil" target="_blank">@sendhil</a>, <a href="http://profiles.wordpress.org/koke" target="_blank">@koke</a>, <a href="http://profiles.wordpress.org/astralbodies" target="_blank">@astralbodies</a>, <a href="http://profiles.wordpress.org/irbrad" target="_blank">@irbrad</a>, <a href="http://profiles.wordpress.org/h4xnoodle" target="_blank">@h4xnoodle</a>, <a href="http://profiles.wordpress.org/daniloercoli" target="_blank">@daniloercoli</a>, and <a href="http://profiles.wordpress.org/isaackeyet" target="_blank">@isaackeyet</a>.</p>\n<p>If you would like to get involved with WordPress for iOS development, drop us a line at <a href="http://make.wordpress.org/mobile">make.wordpress.org/mobile</a> and grab a copy of the code at <a href="https://github.com/wordpress-mobile/WordPress-iOS">github.com/wordpress-mobile/WordPress-iOS</a>.</p>\n<br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wpiphone.wordpress.com/1467/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wpiphone.wordpress.com/1467/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ios.wordpress.org&blog=3882653&post=1467&subd=wpiphone&ref=&feed=1" width="1" height="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 18 Sep 2013 12:41: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:4:"Koke";s: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:64:"WordPress.tv: Ross Johnson: The Overlap Of Emotion And Usability";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wordpress.tv/?p=22534";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:81:"http://wordpress.tv/2013/09/17/ross-johnson-the-overlap-of-emotion-and-usability/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:684:"<div id="v-O8yhXVAs-1" class="video-player">\n</div>\n<br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/22534/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/22534/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=22534&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2013/09/17/ross-johnson-the-overlap-of-emotion-and-usability/"><img alt="Ross Johnson: The Overlap Of Emotion And Usability" src="http://videos.videopress.com/O8yhXVAs/video-3ec2cf57e0_scruberthumbnail_0.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 18 Sep 2013 03:01:35 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"WordPress.tv";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:104:"WordPress.tv: Becky Davis: From Pixel to User – Creating Themes That Satisfy The Design And Are Usable";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wordpress.tv/?p=22531";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:117:"http://wordpress.tv/2013/09/17/becky-davis-from-pixel-to-user-creating-themes-that-satisfy-the-design-and-are-usable/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:754:"<div id="v-xuCohrMV-1" class="video-player">\n</div>\n<br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/22531/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/22531/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=22531&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2013/09/17/becky-davis-from-pixel-to-user-creating-themes-that-satisfy-the-design-and-are-usable/"><img alt="Becky Davis: From Pixel to User – Creating Themes That Satisfy The Design And Are Usable" src="http://videos.videopress.com/xuCohrMV/video-37424005c7_std.original.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 18 Sep 2013 01:51:44 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"WordPress.tv";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:45:"Joseph: WordCamp Salt Lake City 2013 Schedule";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"https://josephscott.org/?p=9080";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:79:"https://josephscott.org/archives/2013/09/wordcamp-salt-lake-city-2013-schedule/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:451:"<p>If you have been waiting until the last minute to register for <a href="http://2013.slc.wordcamp.org/">WordCamp SLC 2013</a> because the schedule hadn’t been posted yet, now is your time :-)</p>\n<p>The <a href="http://2013.slc.wordcamp.org/schedule/">schedule for WordCamp SLC 2013</a> is now live on the site. You can still <a href="http://2013.slc.wordcamp.org/registration/">register</a>, the whole day is only $20 and includes lunch.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 17 Sep 2013 22:35:07 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"Joseph Scott";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:67:"WPTavern: WordPress.com Is Ranked #8 For Internet Traffic in the US";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"http://www.wptavern.com/?p=9232";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:118:"http://feedproxy.google.com/~r/WordpressTavern/~3/vGJJxIwe2Fc/wordpress-com-is-ranked-8-for-internet-traffic-in-the-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:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3784:"<p>WordPress.com has just passed Yahoo for the #8 spot on Quantcast’s assessment of US internet traffic with 72,868,680 monthly visits. In these most <a href="https://www.quantcast.com/top-sites" target="_blank">recent rankings</a> posted, WordPress.com edges out Yahoo, Microsoft, Yelp, Pinterest, and Tumblr.com in traffic to claim its spot among the top ten. </p>\n<div id="attachment_9233" class="wp-caption aligncenter"><a href="http://i2.wp.com/www.wptavern.com/wp-content/uploads/2013/09/wordpress8.jpg" rel="thumbnail"><img src="http://i2.wp.com/www.wptavern.com/wp-content/uploads/2013/09/wordpress8.jpg?resize=449%2C363" alt="Source: Quantcast 9.17.2013" class="size-full wp-image-9233" /></a><p class="wp-caption-text">Source: Quantcast 9.17.2013</p></div>\n<p>Shortly following his announcement on Twitter, Matt Mullenweg replied to inquiries about the stats, noting that these figures don’t even account for mapped domains. Quantcast only takes sub-domains of wordpress.com into account.<br />\n<span id="more-9232"></span></p>\n<h3>WordPress.com Monthly Visits Have Increased by 45% in the Past Year</h3>\n<p>Looking back at internet archives of Quantcasts’ data, you can see that WordPress.com was ranked #21 in September of 2011. In 2012, it climbed to <a href="http://web.archive.org/web/20120918130831/http://www.quantcast.com/top-sites" target="_blank">#20 with 50,146,992 monthly visitors</a>. <strong>In the span of just one year, WordPress.com has jumped 12 places in rank and has increased its monthly visitors in the US by 45%.</strong> It’s no wonder that investment firms Tiger Global and Iconiq are <a href="http://blogs.wsj.com/digits/2013/09/17/tiger-global-ups-investment-in-creator-of-wordpress/" target="_blank">increasing their stakes</a> in Automattic.</p>\n<p>This is an exciting day for the team at Automattic and the WordPress community in general. The news comes alongside new data showing that <a href="http://w3techs.com/technologies/history_overview/content_management/all/q" target="_blank">19.9% of websites are powered by WordPress</a> and very soon these numbers will surpass 20%, if they haven’t already. That means that 1 in 5 people or companies are making their home on the web using freely available, GPL-licensed software.</p>\n<h3>What Do These Numbers Mean For the WordPress Community in General?</h3>\n<p>If you’re a developer or designer who is building your business around WordPress software, the recent data about WordPress usage around the world should encourage you. WordPress expertise is in high demand. More than likely people are already banging on your door asking for WordPress help and will continue to do so in the future.</p>\n<p>If you’re a student, wondering where to apply your talents and wanting to jump into an open source project, WordPress is looking pretty promising right now. While contributing to open source you can improve the software for millions of people and acquire some marketable skills while you’re at it. </p>\n<p>Bottom line is that the WordPress mission to democratize publishing is working. Every year more people are choosing WordPress software to help them publish their own thoughts to the web. If you’re a contributor submitting patches to the core, creating new features, helping with documentation, volunteering in the forums or in some other capacity, you are making a real difference for all those sites that depend on this software. Here at the Tavern we love to shine the spotlight on these folks who are contributors. Everything you do to improve the WordPress experience helps to give a voice to millions of people around the world.</p>\n<img src="http://feeds.feedburner.com/~r/WordpressTavern/~4/vGJJxIwe2Fc" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 17 Sep 2013 22:05:08 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:12;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:26:"Matt: More Tiger Secondary";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=43120";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/2013/09/more-tiger-secondary/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3525:"<p>It’s only been a few months <a href="http://ma.tt/2013/05/automattic-secondary/">since May when Tiger Global led a round purchasing about $50M of Automattic stock from existing shareholders</a>, but they are back and have led a $75M purchase of Automattic stock, this time entirely from our early investor <a href="http://polaris.vc/">Polaris</a>. (There were a few individuals in the first round, and ICONIQ joined investing in this round.)</p>\n<p>Read also: <a href="http://blogs.wsj.com/digits/2013/09/17/tiger-global-ups-investment-in-creator-of-wordpress/">Evelyn Rusli in the Wall Street Journal “Tiger Global Ups Investment in Creator of WordPress.com”</a>.</p>\n<p>Until now Polaris had been Automattic’s largest investor, and second largest shareholder. <a href="http://vcmike.wordpress.com/">Mike Hirshland</a> wrote the biggest checks in our 2006 and 2008 rounds (the only primary capital Automattic has raised) and served on our board until 2011 when he left the firm and we were lucky to be joined by <a href="http://www.polarispartners.com/team/member/dave-barrett/">Dave Barrett</a>. Over the years I’ve had the pleasure of spending time and getting great feedback from a number of people associated with the firm including <a href="http://ryanspoon.com/">Ryan Spoon</a>, <a href="http://en.wikipedia.org/wiki/Robert_Metcalfe">Bob Metcalfe</a>, <a href="http://en.wikipedia.org/wiki/Steve_Arnold_(venture_capitalist)">Steve Arnold</a>, and <a href="http://www.polarispartners.com/team/member/alan-spoon/">Alan Spoon</a>. Although they’ll no longer be on the board Polaris will continue to be a major shareholder, retaining about a third of their stake. Now that Automattic has been locked in as a win for their portfolio I hope they’ll continue to be involved for many years to come.</p>\n<p>I’m glad to be even more fully aligned with Tiger. I think it says a lot to their excitement in the company that just a few months after joining the family and learning more about the company they significantly increased their stake, and at a significant bump in valuation. Their deep resources, market experience, and long-term outlook make them an ideal partner for the next phase of Automattic and the continued growth of the WordPress ecosystem. What we’re building will take time and it won’t be easy, but things worth doing seldom are.</p>\n<p>This news comes in a fun week generally: <a href="http://www.amazon.com/dp/1118660633/">Scott Berkun’s book about Automattic is out today</a> and getting rave reviews, <a href="https://twitter.com/photomatt/status/379938670016741376">WordPress.com just passed Yahoo in the US Quantcast rankings</a> (and that doesn’t include custom mapped domains), we’re <a href="http://simplenote.com/">relaunching Simplenote for iOS 7 and Mac</a> after the Android update last week, WordPress is on the cusp of <a href="http://w3techs.com/technologies/history_overview/content_management/all/q">cracking 20% of websites</a>, we just <a href="http://en.blog.wordpress.com/2013/09/16/eventbrite-themes-widgets/">announced a partnership with Eventbrite</a>, and <a href="http://event.gigaom.com/structureeurope/">this Wednesday I’ll be on stage at GigaOM’s Structure Europe conference</a>.</p>\n<p>Hopefully I’ll see some of you there, and if you’d like to join in on the mission of democratizing publishing <a href="http://automattic.com/work-with-us/">Automattic is hiring</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 17 Sep 2013 16:36:07 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s: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:72:"WPTavern: How Do You Manage WordPress.com Account Use On Multiple Sites?";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"http://www.wptavern.com/?p=9198";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:123:"http://feedproxy.google.com/~r/WordpressTavern/~3/bKXMkh5Y1Ws/how-do-you-manage-wordpress-com-account-use-on-multiple-sites";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:7139:"<p><a href="http://i1.wp.com/www.wptavern.com/wp-content/uploads/2013/09/jetpack.png" rel="thumbnail"><img src="http://i1.wp.com/www.wptavern.com/wp-content/uploads/2013/09/jetpack.png?resize=262%2C300" alt="jetpack" class="alignright size-medium wp-image-9209" /></a>Here’s a fairly common scenario for WordPress users and developers. When setting up a self-hosted site for someone else, you’re usually working alone, without your client by your side. Perhaps you’re building a site for your mother or a non-profit or someone who is not technically inclined. You quickly install WordPress, apply your chosen theme and then start adding plugins.</p>\n<p>Some of the most commonly used plugins require API keys and/or account credentials in order to use them. For example, many WordPress developers find Akismet and Jetpack to be indispensable when creating new sites. In order to activate Akismet, you need to input your API keys. When you set up Jetpack you are required to connect via your WordPress.com account.<span id="more-9198"></span> What do you do as a developer in this scenario if your client doesn’t have an account and barely knows how to use the internet? More than likely you end up using your own API key for convenience.</p>\n<p>I searched the documentation on both Akismet and Jetpack but was unable to find the preferred way setting up these services on multiple websites. Certainly, an individual may have multiple blogs and sites of his own, so multiple use of your Akismet API key is acceptable. This is mentioned in the Akismet docs:</p>\n<blockquote><p>C<strong>an I use the same API key for multiple sites?</strong></p>\n<p>Yep! If you have multiple sites that you want to protect with Akismet, you can use the same API key for each site.</p></blockquote>\n<p>However, using that key on websites you don’t own is essentially like sharing your password, since the API key is clearly displayed in the settings for any admin user to see. Misuse is unlikely but the potential still exists.</p>\n<p><a href="http://i2.wp.com/www.wptavern.com/wp-content/uploads/2013/09/akismet.jpg" rel="thumbnail"><img src="http://i1.wp.com/www.wptavern.com/wp-content/uploads/2013/09/akismet.jpg?resize=560%2C196" alt="akismet" class="aligncenter size-full wp-image-9200" /></a></p>\n<p>Since you must sign up for these services with your real identity, it’s not right to use a throwaway email address to sign someone else up. So you’re really left with two options:</p>\n<p><strong>1.</strong> Require the site owner to sign up for Akismet or WordPress.com and send you their credentials when you’re building the site.</p>\n<p><strong>2.</strong> Use your own Akismet API key and/or authenticate with your own WordPress.com account.</p>\n<p>With the first option, you keep separate all of the sites that don’t belong to you. However, it may not be easy to get your client to set up a new account with WordPress.com. You cannot simply put his email address in there because he needs to agree to the terms of service himself. Waiting for your client to set up an account can also hold you back if you’re in a hurry. </p>\n<p>The second option is more convenient but may not be the proper way to go about adding these services to websites that you do not own. </p>\n<h2>Concerns When Using API Keys on Multiple Websites</h2>\n<p>When you sign up for Akismet, the email with your API key says:</p>\n<p><strong>“Please keep this private, treat it like a password.”</strong></p>\n<p>Because we’re used to copying and pasting API keys for everything, it may seem like a casual affair. But an API key really is just like a key to a building. Let’s say you work at a retail store. If you’re in possession of a key to that building and you let any of your friends use your key to go in and take whatever they want, you will be responsible for what was done with your key. Misuse falls on the holder of the key.</p>\n<p><a href="http://i2.wp.com/www.wptavern.com/wp-content/uploads/2013/09/key.jpg" rel="thumbnail"><img src="http://i1.wp.com/www.wptavern.com/wp-content/uploads/2013/09/key.jpg?resize=560%2C420" alt="key" class="aligncenter size-full wp-image-9212" /></a></p>\n<p>Akismet outlines this clearly in the <a href="https://akismet.com/tos/" target="_blank">terms of use</a>:</p>\n<blockquote><p>If you obtain or purchase an API Key, you are responsible for maintaining the security of your API Key, and you are fully responsible for all activities that occur under the account and any other actions taken in connection with your API Key. </p></blockquote>\n<p>So while they do not expressly forbid you to use it on multiple websites, you are the one responsible for that key. If your key is in use on a site that you built for a client, and then they never update it and their site gets hacked or turned into a spam factory, the misuse of that API key is on you. This is especially a concern if you use your key to activate Akismet network-wide on a large multisite network. Does that mean your entire account could be banned? If that API key gets turned off, then all of your other non-offending sites won’t have access to it either.</p>\n<p>There’s also the concern with Jetpack. Authenticating with WordPress.com for any site you’re working on can start to pile up. You might be viewing your “<a href="http://wordpress.com/my-blogs/" target="_blank">My Blogs</a>” page and suddenly realize: <strong>Yikes, my WordPress.com account is everywhere!</strong></p>\n<h2>Are There Best Practices for Using API Keys With Multiple Websites?</h2>\n<p>Looking into this gives way to some questions of best practice. Is it acceptable to use your API key and WordPress.com account all over the internet if you’re not concerned? As long as you don’t mix commercial and non-commercial use with Akismet, is it acceptable to use the same key on your own blog, your grandmother’s memorial site, your mother’s recipe blog, and wherever else?</p>\n<p>From what I can tell, there are no clear guidelines for multiple use, but you should be very careful about what websites you allow to use your API key. It all comes down to how much risk you are willing to assume. Use of Akismet and WordPress.com services seems to be tied to the individual as far as terms of use go and you could be held responsible for the misuse of any of these accounts.</p>\n<h3>How Do You Handle These Multiple Use Scenarios?</h3>\n<p>Do you load up your WordPress.com account by authenticating for tons of blogs or do you force your user to register for WordPress.com and give you the credentials? Strictly separate API keys and accounts is probably much safer, however less convenient. Anyone have some suggestions on the best way to go about this?</p>\n<p>photo credit: <a href="http://www.flickr.com/photos/arkiss/519669129/">kissro</a> via <a href="http://photopin.com">photopin</a> <a href="http://creativecommons.org/licenses/by-nc-nd/2.0/">cc</a></p>\n<img src="http://feeds.feedburner.com/~r/WordpressTavern/~4/bKXMkh5Y1Ws" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 17 Sep 2013 16:19:40 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:14;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:49:"WPTavern: Is Anyone Interested In a bbPress Camp?";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"http://www.wptavern.com/?p=9167";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:100:"http://feedproxy.google.com/~r/WordpressTavern/~3/Fuo2M16F1g4/is-anyone-interested-in-a-bbpress-camp";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4747:"<p><a href="http://i0.wp.com/www.wptavern.com/wp-content/uploads/2013/09/bbpress-photo.png" rel="thumbnail"><img src="http://i0.wp.com/www.wptavern.com/wp-content/uploads/2013/09/bbpress-photo.png?resize=150%2C150" alt="bbpress-photo" class="alignright size-thumbnail wp-image-9191" /></a>This past weekend we spoke with John James Jacoby on our <a href="http://www.wptavern.com/wpweekly-episode-121-all-about-the-bbs-with-john-james-jacoby" target="_blank">WordPress Weekly podcast</a>. John is the lead developer for both the bbPress and BuddyPress plugins. We had the pleasure of chatting with him about his new job at 10up as well as everything that’s going on with <a href="http://bbpress.org/" target="_blank">bbPress</a> and <a href="http://buddypress.org/" title="BuddyPress" target="_blank">BuddyPress</a> these days.</p>\n<p>During our interview we asked John if he knew of any bbPress or BuddyCamp events in the works. He said that he didn’t know of any coming up but would love to see a bbPress camp organized, perhaps in a more central midwest location. The question is: <strong>Is there enough interest to warrant a bbPress event or perhaps combine it with a BuddyPress event? </strong><span id="more-9167"></span></p>\n<p>If extensions are any indication, both of these plugins have large, active communities surrounding them. bbPress currently has 132 plugins that extend the basic forum software and BuddyPress lists 483 extensions. It’s safe to say that they go far beyond your average wordpress.org plugin. They each have their own dedicated websites housing support forums and documentation. Both projects have attracted a number of elite developers and talented contributors. </p>\n<h2>bbPress and BuddyPress are on the rise:</h2>\n<p>Downloads have steadily increased for both plugins. I checked <a href="http://archive.org/web/web.php" target="_blank">archive.org</a> to get the download counts for the past few months. From May to September this year bbPress downloads went from 669,199 to 802,236. <strong>In the span of just five short months, the total number of bbPress downloads has increased nearly 20%. </strong> bbPress extensions have nearly doubled in the past year. In September of 2012 there were only 78 bbPress plugins listed but those numbers have shot up to 132 over the past year.</p>\n<p><a href="http://i2.wp.com/www.wptavern.com/wp-content/uploads/2013/09/bbpress-downloads.jpg" rel="thumbnail"><img src="http://i1.wp.com/www.wptavern.com/wp-content/uploads/2013/09/bbpress-downloads.jpg?resize=488%2C566" alt="bbpress-downloads" class="aligncenter size-full wp-image-9176" /></a></p>\n<p>Similarly, BuddyPress downloads are also on the rise. <strong>In the past five months, total downloads have climbed from 1.5 to 1.7 million, demonstrating an 11% increase.</strong></p>\n<p><a href="http://i0.wp.com/www.wptavern.com/wp-content/uploads/2013/09/buddypress-downloads.jpg" rel="thumbnail"><img src="http://i0.wp.com/www.wptavern.com/wp-content/uploads/2013/09/buddypress-downloads.jpg?resize=488%2C566" alt="buddypress-downloads" class="aligncenter size-full wp-image-9178" /></a></p>\n<p>With all the <a href="http://www.wptavern.com/7-surprising-results-from-the-2013-buddypress-codex-survey" target="_blank">updates that are coming to the BuddyPress codex</a>, we can only expect those numbers to increase, both for extensions and downloads. </p>\n<h3>Is it time for a bbPress camp?</h3>\n<p>I attended the first <a href="http://2012.vancouver.buddypress.org/" title="BuddyCamp Vancouver" target="_blank">BuddyPress camp</a> that was held in Vancouver. What a fantastic event! One easy way to add an experimental camp like this is to tack it on to an existing WordCamp as an extra day. This setup was quite successful with WordCamp Vancouver / BuddyCamp in 2012. Participants who traveled to the area were able to attend both events and meet up with BuddyPress fans and developers from around the world.</p>\n<p>I wanted to put this question to our readers: With the success of past BuddyPress camps, do you think it’s time for a bbPress camp? Or perhaps a multi-plugin camp with more plugin communities included? If you’d be interested to attend, which one would be the most beneficial to you? Please take a moment to vote in our poll:</p>\n<div class="aligncenter">Note: There is a poll embedded within this post, please visit the site to participate in this post''s poll.</div>\n<p>So what do you think? Does the WordPress community need a bbPress camp? Do we need more BuddyPress camps? If there was a multi-plugin camp, which plugin communities would you like to see included?</p>\n<img src="http://feeds.feedburner.com/~r/WordpressTavern/~4/Fuo2M16F1g4" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 16 Sep 2013 16:08:03 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:71:"WordPress.tv: Panel Discussion: Commercial Themes & Plugins Q&A";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wordpress.tv/?p=22414";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wordpress.tv/2013/09/15/panel-discussion-commercial-themes-plugins-qa/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:673:"<div id="v-BJO7vH4B-1" class="video-player">\n</div>\n<br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/22414/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/22414/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=22414&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2013/09/15/panel-discussion-commercial-themes-plugins-qa/"><img alt="Panel Discussion: Commercial Themes & Plugins Q&A" src="http://videos.videopress.com/BJO7vH4B/video-04a8bf88e4_std.original.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 15 Sep 2013 08: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:12:"WordPress.tv";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:78:"WPTavern: WPWeekly Episode 121 – All About The bb’s With John James Jacoby";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"http://www.wptavern.com/?p=9163";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:123:"http://feedproxy.google.com/~r/WordpressTavern/~3/tEXfczzBl9M/wpweekly-episode-121-all-about-the-bbs-with-john-james-jacoby";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2714:"<p><a href="http://i0.wp.com/www.wptavern.com/wp-content/uploads/2013/08/WordPressWeekly_albumart2.jpg" rel="thumbnail"><img src="http://i0.wp.com/www.wptavern.com/wp-content/uploads/2013/08/WordPressWeekly_albumart2.jpg?resize=150%2C150" alt="WordPress Weekly Cover Art" class="alignright size-thumbnail wp-image-8715" /></a>There were no spooky ghosts or constant howling noises in this episode but we did manage to go in-depth with John James Jacoby to discuss bbPress and BuddyPress. During the show, we find out why he left Automattic for 10UP, what is was like to jump into the project lead position for bbPress after so many people had accepted the project as being abandoned, and finally, where he sees BuddyPress 2 years from now. We could have talked to JJJ all night about forums and social activity but unfortunately, we only had 68 minutes with him. That’s ok because he’ll definitely be on the show again to cover some ground we didn’t get to in this episode. <span id="more-9163"></span></p>\n<h2>Stories Discussed:</h2>\n<p><a href="http://www.wptavern.com/wordpress-3-6-1-now-available" title="http://www.wptavern.com/wordpress-3-6-1-now-available">WordPress 3.6.1 Available</a><br />\n<a href="http://www.wptavern.com/ryan-mccue-on-creating-the-json-rest-api-for-wordpress" title="http://www.wptavern.com/ryan-mccue-on-creating-the-json-rest-api-for-wordpress">Ryan McCue On Creating The JSON REST API For WordPress</a><br />\n<a href="http://www.wptavern.com/open-source-alternatives-to-pressgram" title="http://www.wptavern.com/open-source-alternatives-to-pressgram">Open Source Alternatives to Pressgram</a><br />\n<a href="http://www.wptavern.com/wordpress-3-7-to-remove-post-by-email-feature-in-favor-of-official-plugin" title="http://www.wptavern.com/wordpress-3-7-to-remove-post-by-email-feature-in-favor-of-official-plugin">WordPress 3.7 to Remove Post By Email Feature in Favor of Official Plugin<br />\n</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Friday, September 27th 9P.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 #121:</strong><br />\n</p>\n<img src="http://feeds.feedburner.com/~r/WordpressTavern/~4/tEXfczzBl9M" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 15 Sep 2013 01:04: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:6:"Jeffro";s: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:49:"WordPress.tv: Matt Mullenweg: WordPress Town Hall";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wordpress.tv/?p=22419";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:66:"http://wordpress.tv/2013/09/14/matt-mullenweg-wordpress-town-hall/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:654:"<div id="v-irlIV35c-1" class="video-player">\n</div>\n<br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/22419/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/22419/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=22419&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2013/09/14/matt-mullenweg-wordpress-town-hall/"><img alt="Matt Mullenweg: WordPress Town Hall" src="http://videos.videopress.com/irlIV35c/video-43b0d90f5c_scruberthumbnail_0.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 14 Sep 2013 09:50:29 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"WordPress.tv";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:61:"WordPress.tv: Stephanie Leary: Content Strategy for WordPress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wordpress.tv/?p=22416";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:78:"http://wordpress.tv/2013/09/14/stephanie-leary-content-strategy-for-wordpress/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:672:"<div id="v-PBnKz3PE-1" class="video-player">\n</div>\n<br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/22416/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/22416/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=22416&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2013/09/14/stephanie-leary-content-strategy-for-wordpress/"><img alt="Stephanie Leary: Content Strategy for WordPress" src="http://videos.videopress.com/PBnKz3PE/video-804cb81a1e_std.original.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 14 Sep 2013 08:06: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:12:"WordPress.tv";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:19;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:76:"WPTavern: Justin Tadlock Publishes The Results Of His ThemeForest Experiment";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"http://www.wptavern.com/?p=9149";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:128:"http://feedproxy.google.com/~r/WordpressTavern/~3/-ZosTIhoJXY/justin-tadlock-publishes-the-results-of-his-themeforest-experiment";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:6380:"<p><a href="http://i2.wp.com/www.wptavern.com/wp-content/uploads/2010/09/themeforestlogo.png" rel="thumbnail"><img src="http://i2.wp.com/www.wptavern.com/wp-content/uploads/2010/09/themeforestlogo.png?resize=295%2C150" alt="theme forest logo" class="alignright size-full wp-image-4550" /></a>Last year at this time, Justin Tadlock announced that he would be <a href="http://justintadlock.com/archives/2012/09/17/themeforest-an-experiment" title="http://justintadlock.com/archives/2012/09/17/themeforest-an-experiment">conducting an experiment</a> on ThemeForest. The goal of the experiment was to see if it was possible to get other theme authors to write better code and enable better compatibility with the thousands of other themes and plugins for WordPress. Justin has now <a href="http://justintadlock.com/archives/2013/09/11/the-themeforest-experiment-one-year-later" title="http://justintadlock.com/archives/2013/09/11/the-themeforest-experiment-one-year-later">published the results</a> of that experiment. </p>\n<p>Instead of preaching from the outside, Justin created a theme that passed the <a href="http://codex.wordpress.org/Theme_Review" title="http://codex.wordpress.org/Theme_Review">Theme Review team guidelines</a> which not many ThemeForest themes can claim. It was everything a seasoned developer would want. Without any marketing other than his announcement post, he generated $2,017.50 from 99 sales. There are a number of other things Justin mentions in the post that I highly encourage you to read, especially if you’re thinking about selling themes on ThemeForest.<span id="more-9149"></span></p>\n<p>From a consumer standpoint, Justin’s experiment proves how important it is to pick the right theme that won’t lock you in. I can’t imagine the common user knowing about shortcodes, post types, etc and factoring those into their decision on which theme to buy. As has been the case for a long time, choosing themes is like walking down the street looking at each storefront window to see which one looks best. Between all these dependencies with shortcodes, etc. someone could really screw themselves by investing time and money into a theme that does everything wrong.</p>\n<p>I think Justin should be commended for trying to change the attitude and culture from within but unless the culture is changed at the top of ThemeForest both on staff and the top theme sellers, this is just a problem that will be compounded in the future. It’s also disappointing to see sellers skirting the rules by recreating the same problem using a different method. Two major changes that have taken place during the experiment include the <a href="http://notes.envato.com/general/100-gpl-option-now-available-plus-woothemes-arrives" title="http://notes.envato.com/general/100-gpl-option-now-available-plus-woothemes-arrives">ability to select a 100% GPL license</a> and revamped <a href="http://notes.envato.com/news/update-wordpress-theme-submission-requirements" title="http://notes.envato.com/news/update-wordpress-theme-submission-requirements">theme submission requirements</a>. While Justin can’t be solely attributed to these changes, his influence and involvement within the conversations helped get these two items to become a reality. </p>\n<h2>A Video And A Question For You</h2>\n<p>Justin linked to a video within his post that I found very interesting. It’s a presentation by Brandon Ryan Jones: The Anarchist And The Patriot from WordCamp Los Angeles 2011. Despite being two years old, much of what Brandon talks about is still relevant. If you haven’t watched it yet, the actual presentation is about 20 minutes in length with the second half dedicated to questions.</p>\n<div class="aligncenter"></div>\n<p>After watching the presentation video including the questions segment, I thought the most interesting question asked from the audience with respect to the overall theme of the presentation was “<em>How do I differentiate myself from the next guy on ThemeForest?</em>” if not having one more cool slider, or 1 more extra color is not the answer. I posed this question to Justin Tadlock in which he replied:</p>\n<blockquote><p>That’s actually the toughest of all questions in business, right? It’s not just on ThemeForest or with WordPress theme companies in general.</p>\n<p>How do I differentiate myself from the other guys?</p>\n<p>If I had the answer to that, I’d probably be wealthy enough to pay a gardener to cut my grass, a maid to clean my house, and a farmer to clean out my chicken coop. But, I don’t. I suppose it just comes down to working hard, continuing to educate yourself in your field, and trying new things. <a href="http://justintadlock.com/archives/2013/09/11/the-themeforest-experiment-one-year-later#comment-2276683" title="http://justintadlock.com/archives/2013/09/11/the-themeforest-experiment-one-year-later#comment-2276683">Comment From Justin Tadlock – The ThemeForest Experiment One Year Later</a> </p></blockquote>\n<div id="attachment_9150" class="wp-caption aligncenter"><a href="http://i0.wp.com/www.wptavern.com/wp-content/uploads/2013/09/themeforestdifferentiation.jpg" rel="thumbnail"><img src="http://i1.wp.com/www.wptavern.com/wp-content/uploads/2013/09/themeforestdifferentiation.jpg?resize=451%2C318" alt="ThemeForest Differentiation" class="size-full wp-image-9150" /></a><p class="wp-caption-text">Slide From The Anarchist and the Patriot</p></div>\n<p>Looking at that slide, I will ask you the same question I asked Justin. <em>How do I differentiate myself from the next guy on ThemeForest?</em> If adding a slider other themes don’t have or 10 more color schemes is not the answer, what is? I think Justin’s follow-up experiment with separating plugin and theme functionality is a partial answer to the question. If we could get to a place where there are a set of standard or canonical plugins for ThemeForest authors to use for Portfolios, forms, grids, tabs, accordions, etc. and they could just concentrate on creating beautiful presentations around those components, I think we’d be in a better position. The biggest challenge Justin faces is getting ThemeForest authors to adopt these plugins instead of doing things on their own. </p>\n<img src="http://feeds.feedburner.com/~r/WordpressTavern/~4/-ZosTIhoJXY" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 13 Sep 2013 18:12:11 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:6:"Jeffro";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:20;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:63:"WordPress.tv: Sean McGinnis: Link Building Techniques That Work";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wordpress.tv/?p=22255";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:80:"http://wordpress.tv/2013/09/12/sean-mcginnis-link-building-techniques-that-work/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:676:"<div id="v-PMGTBZCI-1" class="video-player">\n</div>\n<br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/22255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/22255/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=22255&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2013/09/12/sean-mcginnis-link-building-techniques-that-work/"><img alt="Sean McGinnis: Link Building Techniques That Work" src="http://videos.videopress.com/PMGTBZCI/video-cd208b0c8f_std.original.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 13 Sep 2013 04:30:40 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"WordPress.tv";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:64:"WPTavern: Ryan McCue on Creating The JSON REST API for WordPress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"http://www.wptavern.com/?p=9124";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:116:"http://feedproxy.google.com/~r/WordpressTavern/~3/BXtFdghE2VM/ryan-mccue-on-creating-the-json-rest-api-for-wordpress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:6903:"<p>In the not too distant future, the WordPress core is going to incorporate a powerful new API that will open new doors for the platform to be part of the interactive web. Long time WordPress hacker, Ryan McCue is busily creating a <a href="http://make.wordpress.org/core/2013/06/17/json-rest-api/" target="_blank">JSON REST API</a> that will pave the way for outside applications to be able to communicate more easily with WordPress. <span id="more-9124"></span></p>\n<h3>A Quick Introduction to Ryan and JSON</h3>\n<p>Ryan first got involved contributing to the WordPress core about 6 years ago. Back in the day you could find him helping out in the #wordpress IRC channel and answering questions. This eventually led him to start making patches to core for issues. He’s now creating a JSON REST API for WordPress as part of his Google Summer of Code project. </p>\n<div id="attachment_9132" class="wp-caption aligncenter"><a href="http://i0.wp.com/www.wptavern.com/wp-content/uploads/2013/09/ryan.jpg" rel="thumbnail"><img src="http://i1.wp.com/www.wptavern.com/wp-content/uploads/2013/09/ryan.jpg?resize=560%2C372" alt="Ryan the WordPress hackstar" class="size-full wp-image-9132" /></a><p class="wp-caption-text">Ryan the WordPress hackstar</p></div>\n<p>You might be wondering, as I was, <strong>what in the world is a JSON REST API?</strong> As I’m not an engineer, I did not have the foggiest grasp of what this API can used for before chatting with Ryan over email. I asked him to school us in the basics and he obliged:</p>\n<blockquote><p>JSON is a data format based on Javascript’s representation of objects,<br />\nbut it’s widely used because it can be easily represented in almost<br />\nevery programming language.</p>\n<p>The project uses JSON as a format since basically every language can<br />\nunderstand it, and it’s extremely easy to work with. The project<br />\nadditionally uses REST semantics, which is a way of building<br />\napplications that make full use of the web and existing tools. The<br />\nbenefit of both of these is that any program which can access the web<br />\ncan use the API, leaving developers only the WordPress-specific code to<br />\nwrite.</p>\n<p>For comparison: the current mobile apps use the XML-RPC API, and up to<br />\n40% of their code is just to understand the XML properly, whereas JSON<br />\nsupport is built-in to iOS and Android natively.</p></blockquote>\n<h3>The JSON REST API Will Affect Everyone Who Works With WordPress</h3>\n<p>I asked Ryan how the JSON REST API will affect WordPress users and developers. It seems that while the API is not readily visible to users, they will experience the benefits of more interactive WordPress websites. Developers will also have an easier time creating this experience. He believes that it will impact everyone:</p>\n<blockquote><p>The JSON REST API is a simple but powerful way to interact with<br />\nWordPress. Mobile, desktop and web applications can get data from<br />\nWordPress and do anything you can do via the admin panel. It’s like the<br />\nadmin panel, minus the UI.</p>\n<p>This project will affect everyone who works with WordPress. Mobile and<br />\ndesktop applications can move past restrictions on WordPress’ existing<br />\nAPIs and start working with WordPress in much deeper ways, while themes<br />\nand plugins can become much more interactive. The availability of this<br />\nas a core feature also means less time spent by developers creating<br />\nsomething similar, and more time spent creating actual features.</p></blockquote>\n<p>In simple terms, for developers, this is going to be like upgrading all the old tools in your garage to be power tools, so you can focus on building. McCue calls it a whole new generation of tools:</p>\n<blockquote><p>As Matt noted in the recent State of the Word, WordPress is beginning to transition to a point where we’re building not just sites, but applications. Themes have taken us this far, but we’re moving to a web with much more user interactivity and we need a new generation of tools in WordPress to support these uses.</p></blockquote>\n<h3>Practically speaking, what will the JSON REST API be used for?</h3>\n<p>I asked Ryan how he anticipates that developers will use the new API. He related a few practical use cases:</p>\n<blockquote><p>\n* The upcoming O2 theme by Automattic (intended as a replacement for<br />\n P2) includes a similar API to power the live reloading, commenting,<br />\n infinite scroll, frontend posting and other features. Once this<br />\n plugin is in core, the O2 developers will be able to replace their<br />\n custom code with this API (which I hear is a significant portion of<br />\n their codebase)</p>\n<p> * Mobile apps will be able to replace the clumsy XML-RPC-powered APIs<br />\n with a much smaller set of tools for dealing with this API, enabling<br />\n them to spend more time working on cool features and less time<br />\n fixing issues</p>\n<p>My eventual hope is that a lot of the customised admin-related<br />\nJavascript and backend code can be replaced with API-powered code, but<br />\nthat’s a pretty long-term goal.</p></blockquote>\n<p>Overall this is going to be a giant step forward for developers who are having to try to create a similar API from scratch in an attempt to build interactive features.</p>\n<h3>JSON REST API Proposed for WordPress 3.8</h3>\n<p>McCue has proposed the API for 3.8, but the GSoC restrictions require that 100% of the code has to be written by him. These restrictions do not lend the project much collaboration at this point. Very soon the Summer of Code will conclude and McCue plans to form a team to work on the plugin and get it ready for<br />\nintegration. </p>\n<p>Although it may not be ready for WordPress 3.8 due to time constraints, McCue hopes to see it in the core in some form in one of the next few major releases. He’s very eager to get new contributors involved and would appreciate any feedback on the project.</p>\n<p>Before talking with Ryan I was clueless about the importance of the project he’s working on but now I’m excited about the possibilities that the JSON REST API will open up for WordPress developers. Ryan’s work is currently housed within a plugin. If you’d like to test it and check it out, you can download it from <a href="https://github.com/rmccue/WP-API/tags" target="_blank">github</a> or <a href="http://wordpress.org/plugins/json-rest-api/" target="_blank">wordpress.org</a>. If you need help getting started, check out the <a href="https://github.com/rmccue/WP-API/tree/master/docs" target="_blank">docs</a> Ryan has created or get in touch with him on <a href="https://twitter.com/rmccue" target="_blank">Twitter</a>.</p>\n<img src="http://feeds.feedburner.com/~r/WordpressTavern/~4/BXtFdghE2VM" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 12 Sep 2013 22:23: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: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:18:"Matt: Hunter Joins";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=42985";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:34:"http://ma.tt/2013/09/hunter-joins/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:228:"<p>Hunter Walk is <a href="http://hunterwalk.com/2013/09/11/not-just-a-wordpress-user-now-also-an-advisor-to-automattic/">Not Just a WordPress User, Now Also an Advisor to Automattic</a>. Really excited to have him 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:"Thu, 12 Sep 2013 20:41:06 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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: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:80:"WPTavern: What Good Is Plugin Compatibility Data If Users Are Not Participating?";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"http://www.wptavern.com/?p=9031";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:131:"http://feedproxy.google.com/~r/WordpressTavern/~3/R93N3tZE-IY/what-good-is-plugin-compatibility-data-if-users-are-not-participating";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:12777:"<p><a href="http://i1.wp.com/www.wptavern.com/wp-content/uploads/2013/09/PluginCompatibility.jpg" rel="thumbnail"><img class="alignright size-full wp-image-9114" alt="PluginCompatibility" src="http://i1.wp.com/www.wptavern.com/wp-content/uploads/2013/09/PluginCompatibility.jpg?resize=220%2C173" /></a> It’s a fear many WordPress users had in 2009 and it’s one that continues to be near the top in terms of reasons why people won’t upgrade their sites. It’s the fear that their plugins won’t be compatible with the new version of WordPress. Back in <a title="http://wordpress.org/news/2009/10/plugin-compatibility-beta/" href="http://wordpress.org/news/2009/10/plugin-compatibility-beta/">October of 2009</a>, the WordPress core team tried to address these fears by adding a plugin compatibility section to the WordPress.org Plugin repository. <span id="more-9031"></span></p>\n<p>Developed by Michael Adams, the plugin compatibility section worked on the simple premise of selecting which version of WordPress was being used with which version of the plugin and clicking on either a broken or works button. The only people who could vote were those who had a WordPress.org user account. After voting, a bar was displayed showing two percentages. If there was no data to be shown, a yellow bar was displayed saying <strong>no data</strong>. A complaint heard from plugin developers at the time was that the percentages had no clear meaning.</p>\n<p><a href="http://i1.wp.com/www.wptavern.com/wp-content/uploads/2013/09/PluginCompatibilityBeta.png" rel="thumbnail"><img class="aligncenter size-full wp-image-9115" alt="PluginCompatibilityBeta" src="http://i2.wp.com/www.wptavern.com/wp-content/uploads/2013/09/PluginCompatibilityBeta.png?resize=220%2C254" /></a></p>\n<blockquote><p>For example, taking the Google XML Sitemaps plugin shown above, what does 88% really mean? That it *will* work on my setup? Or only 88% of the time? Or I have an 88% chance of it working? The % doesn’t mean any of those things, of course. The only certainty that I would take from the percentages is that a proportion of users who voted (12% in this case) *decided* that it didn’t work with their version of WordPress. But suppose the incompatibility is to do with a conflict with another plugin, rather than with WP itself? How thoroughly did the voter confirm the source of the problem before voting? – <a title="http://weblogtoolscollection.com/archives/2009/10/27/are-your-plugins-compatible/#comment-1319097" href="http://weblogtoolscollection.com/archives/2009/10/27/are-your-plugins-compatible/#comment-1319097">Comment By Ade On The Post – Are Your Plugins Compatible?</a></p></blockquote>\n<h2>Making The Broken Button More Meaningful</h2>\n<p>One of the <a title="http://wordpress.org/ideas/topic/wordpressorg-plugins-compatibility-widget" href="http://wordpress.org/ideas/topic/wordpressorg-plugins-compatibility-widget">biggest complaints from plugin developers</a> was that when a user would select broken, it wouldn’t trigger a box to provide feedback as to why they thought it was broken. Plugin developers found themselves with users reporting their plugin to be broken with no idea as to why they were arriving at that conclusion. Although I can’t find the specific time and date when it happened, at some point after that conversation, the behavior of the broken button changed so that if it was selected, a support topic creation screen would show up. It didn’t force users to submit feedback but if the plugin was considered broken to the user, the next logical step would be to create a support thread.</p>\n<p><a href="http://i0.wp.com/www.wptavern.com/wp-content/uploads/2013/09/pluginbrokenfeedback.jpg" rel="thumbnail"><img class="aligncenter size-medium wp-image-9118" alt="Plugin Broken Feedback" src="http://i2.wp.com/www.wptavern.com/wp-content/uploads/2013/09/pluginbrokenfeedback.jpg?resize=300%2C227" /></a></p>\n<h2>Four Years Later, Still A Lack Of Data</h2>\n<p>Out of curiosity, I decided to take a look at all of the popular plugins listed on the front page of the plugin repository thinking they would have the most data based on their popularity. It turns out, that was not the case. Most of the plugins had 50 reports or less. It’s important to note that with each plugin version bump, the compatibility data resets. I even reviewed the previous versions to view their data and for the most part, it was less than the most recent version. It’s my conclusion that few users are reporting working plugins let alone, broken ones.</p>\n<h2>What’s Happening With The Data And Where Do We Go From Here?</h2>\n<p>I got in touch with Otto as he works for Audrey.co and is part of the WordPress.org team to figure out what is going on with the data and if there are any plans to implement ways to get more user’s to participate in the reporting process. According to Otto, “the compatibility data is shown on plugin upgrades. If there is data there to display, then you’ll see a message like this: Compatibility with WordPress 3.6: XX% (Y “works” votes out of Z total). With some numbers to fill in those spaces, of course. I believe that it displays a different message if the plugin has been explicitly marked as tested-up-to the current version in the readme file, or “unknown” if there is no data to display. With the 2 year cutoff, this data has become less useful, since a lot of plugin authors are updating their plugins and keeping that information relevant.”</p>\n<p>“Additionally, the original idea was that you’d mark plugin version X as compatible with WordPress version Y, but since we would prefer that all people run the latest WordPress version and keep things like plugins up to date too, then the whole thing starts to not make a lot of sense anymore. Obviously, the ideal is for “version” to just disappear, what with auto-upgrade and the like. Chrome has a version number too, but do you know what version your browser is? Or care?”</p>\n<div id="attachment_9127" class="wp-caption aligncenter"><a href="http://i2.wp.com/www.wptavern.com/wp-content/uploads/2013/09/Screen-Shot-2013-09-12-at-3.04.09-PM.png" rel="thumbnail"><img class="size-large wp-image-9127" alt="PluginUpgradeCompatibilityReport" src="http://i0.wp.com/www.wptavern.com/wp-content/uploads/2013/09/Screen-Shot-2013-09-12-at-3.04.09-PM.png?resize=500%2C101" /></a><p class="wp-caption-text">According to the author, this plugin was 100% compatible with WordPress 3.6.1</p></div>\n<p><strong>I then asked Otto if no one is providing enough data to make the feature useful, then what’s the point in having it?</strong></p>\n<p>Well, yes, if nobody uses that to provide the data, then the information isn’t useful. But in the same sense, this is like ratings. We need to find a way to make it useful, or ditch it, or rethink the whole thing. For ratings, we integrated them with reviews. So that in order to leave a rating, you have to leave a review. For compatibility, we have not done quite the same thing yet. However, if you select that a version is incompatible, then it forwards you to the support forum form where you can leave a support forum post about it. Since doing that a couple of years back, this has resulted in a slight increase in support threads for plugins, so in that sense I consider it useful. A simple “this doesn’t work” is not as handy as “this doesn’t work and here’s why” to a plugin author.</p>\n<p><strong>Has there been any talk regarding that feature perhaps to make it easier to report? Granted, once someone installs a plugin and it works, that’s the<br />\nlast time they visit the plugin page unless they need support. Has there been any thoughts to possibly send a nag or notification to the user after a set amount of time to ask them if the plugin works or is broken? Although I could see that as being a huge annoyance.</strong></p>\n<p>I am not aware of any discussions along these lines at present. I cannot imagine that we’d want to add any form of “nag” like that to core. That’s a strong disincentive to this sort of thing.</p>\n<p>On the whole, while these metrics are nice to look at, I’m unconvinced of their usefulness all by themselves. The compatibility feature is nice and shows some interesting data, but not particularly useful data. There is no incentive for people to click the “it works” button, and clicking the “it’s broken” button doesn’t provide useful feedback. I’d kinda prefer to somehow surface reviews and support threads at the time where you’re updating or reading about a plugin. I don’t know how doable this is at present though.</p>\n<p>The case for “make it easier to leave feedback” is a problematic one, because it opens a backdoor that we really don’t want to have. See, currently you have to be logged in to WordPress.org in order to do these various things. This is so that we can prevent spamming of the stats, essentially. Some people have still tried, of course. But you don’t have to be logged in to WordPress.org, or even have a forums account, to see the data on your own install. So displaying something outside our site that they can click essentially means that we can’t have the login requirement anymore, since it could be anybody, and then you open that door for abuse.</p>\n<p>Some consideration has been given to using OAuth for this, so that you can login and leave that feedback that way, securely, but this is fraught with problems, and anyway it’s a heck of a thing to do just for this sort of feedback.</p>\n<p><strong>At the end of the day, with all things considered I wanted Otto’s thoughts on that specific feature of the plugin repository.</strong></p>\n<p>In the long run, a redesign of the plugins/themes directories are in order, and in that process, maybe we’ll change things up, integrate things better, come up with more methods for incentivizing that sort of useful feedback. But that is ultimately a human psychology problem. Not my area of expertise. I’m a coder. I write code.</p>\n<p><strong>Last but not least, I asked Otto if he was able to see a timeline or history of compatibility data that’s been reported? Something like trends from 2009 when it was introduced to 2013? I was curious as to whether the amount of data received by users has stayed roughly the same for the past few years.</strong></p>\n<p>The data is not time stamped, so no, there’s no way to compare it over a time range.</p>\n<h2>My Thoughts</h2>\n<p>I’ve been <a title="http://weblogtoolscollection.com/archives/2009/10/27/are-your-plugins-compatible/" href="http://weblogtoolscollection.com/archives/2009/10/27/are-your-plugins-compatible/">reading posts</a> about the feature when it was introduced in 2009 and thought the comments back then were interesting. At that time, it seemed like the biggest request was to have the ability to say whether a plugin works or is broken from the Installed Plugins screen. This way, it would be quick to mark all of the plugins that work without having to browse to the individual plugin pages to provide that feedback. We still don’t have anything like that in core. I wonder if a simple change like that would get more people to provide compatibility data? If I could mark a plugin as <strong>works</strong> from the installed plugins page, I’d do so.</p>\n<p>Having people provide feedback after they say it’s broken was a huge step towards making the whole process useful for plugin authors. I agree with Otto in that a drop down box selecting a WordPress version is dumb at this point as all versions of WordPress “<em>should be</em>” or <em>“assumed to be”</em> the latest version and it’s just whether or not the plugin works or is broken. The WP version number becomes less of a factor when auto updates for core come around.</p>\n<p>At this point, it looks like any future enhancements of the plugin compatibility feature will be rolled into a to-do list for the plugin repository redesign. It’s not something that is of utmost priority so that would make sense. However, I’d like to hear from both plugin authors, and users to find out what would make the plugin compatibility area more useful and if you had the chance, how would you get users to supply the information needed to determine whether certain versions work, or are broken?</p>\n<img src="http://feeds.feedburner.com/~r/WordpressTavern/~4/R93N3tZE-IY" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 12 Sep 2013 19:35:06 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:6:"Jeffro";s: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:82:"WordPress.tv: Brennen Byrne: Employing Best Security Practices for WordPress Sites";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wordpress.tv/?p=21708";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wordpress.tv/2013/09/12/brennen-byrne-employing-best-security-practices-for-wordpress-sites-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:733:"<div id="v-lQSifts6-1" class="video-player">\n</div>\n<br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/21708/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/21708/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=21708&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2013/09/12/brennen-byrne-employing-best-security-practices-for-wordpress-sites-2/"><img alt="Brennen Byrne: Employing Best Security Practices for WordPress Sites" src="http://videos.videopress.com/lQSifts6/employing-best-security-practices_std.original.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 12 Sep 2013 10:54: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:12:"WordPress.tv";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:25;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:44:"Lorelle on WP: Update to WordPress 3.6.1 Now";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:37:"http://lorelle.wordpress.com/?p=10321";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://lorelle.wordpress.com/2013/09/11/update-to-wordpress-3-6-1-now/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:517:"It is upgrade time again. Time to upgrade your WordPress. WordPress 3.6.1 Maintenance and Security Release was announced today. It includes fixes to WordPress 3.6 and some security issues, so this is a mandatory update. WordPress.com users are automatically updated, as are all those on managed WordPress hosting like WP Engine. This update applies to […]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lorelle.wordpress.com&blog=72&post=10321&subd=lorelle&ref=&feed=1" width="1" height="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 12 Sep 2013 04:59: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:17:"Lorelle VanFossen";s: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:39:"WPTavern: WordPress 3.6.1 Now Available";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"http://www.wptavern.com/?p=9100";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:91:"http://feedproxy.google.com/~r/WordpressTavern/~3/KrtiUhknbkM/wordpress-3-6-1-now-available";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:657:"<p><a href="http://wordpress.org/news/2013/09/wordpress-3-6-1/" title="http://wordpress.org/news/2013/09/wordpress-3-6-1/">WordPress 3.6.1</a> has been pushed out the door. This release comes 42 days after WordPress 3.6 was made available on August 1st. This is a maintenance package that contains bug and security fixes. You can find more information about this version <a href="http://codex.wordpress.org/Version_3.6.1" title="http://codex.wordpress.org/Version_3.6.1">via the Codex.</a> If you don’t see any upgrade notices now, check again later.</p>\n<img src="http://feeds.feedburner.com/~r/WordpressTavern/~4/KrtiUhknbkM" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 11 Sep 2013 21:05:04 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:6:"Jeffro";s: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:58:"Dev Blog: WordPress 3.6.1 Maintenance and 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:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=2675";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:50:"http://wordpress.org/news/2013/09/wordpress-3-6-1/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2020:"<p>After <a href="http://wordpress.org/download/counter/">nearly 7 million downloads</a> of WordPress 3.6, we are pleased to announce the availability of version 3.6.1. This maintenance release <a href="http://core.trac.wordpress.org/query?status=closed&group=resolution&milestone=3.6.1">fixes 13 bugs</a> in version 3.6, which was a very smooth release.</p>\n<p><strong>WordPress 3.6.1 is also a security release for all previous WordPress versions</strong> and we strongly encourage you to update your sites immediately. It addresses three issues fixed by the WordPress security team:</p>\n<ul>\n<li>Block unsafe PHP unserialization that could occur in limited situations and setups, which can lead to remote code execution. Reported by <a href="http://vagosec.org/" rel="nofollow">Tom Van Goethem</a>.</li>\n<li>Prevent a user with an Author role, using a specially crafted request, from being able to create a post “written by” another user. Reported by <a href="http://anakornk.wordpress.com/" rel="nofollow">Anakorn Kyavatanakij</a>.</li>\n<li>Fix insufficient input validation that could result in redirecting or leading a user to another website. Reported by Dave Cummo, a Northrup Grumman subcontractor for the <a href="http://www.cdc.gov/" rel="nofollow">U.S. Centers for Disease Control and Prevention</a>.</li>\n</ul>\n<p>Additionally, we’ve adjusted security restrictions around file uploads to mitigate the potential for cross-site scripting.</p>\n<p>We appreciated <a href="http://codex.wordpress.org/FAQ_Security">responsible disclosure</a> of these issues directly to our security team. For more information on the changes, see the <a href="http://codex.wordpress.org/Version_3.6.1">release notes</a> or consult <a href="http://core.trac.wordpress.org/log/branches/3.6?stop_rev=24972&rev=25345">the list of changes</a>.</p>\n<p><a href="http://wordpress.org/wordpress-3.6.1.zip">Download WordPress 3.6.1</a> or update now from the Dashboard → Updates menu in your site’s admin area.</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 Sep 2013 20:48: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: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:"";}}}}}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:47:"WPTavern: Open Source Alternatives to Pressgram";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"http://www.wptavern.com/?p=9033";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:99:"http://feedproxy.google.com/~r/WordpressTavern/~3/IBMI8JljEcI/open-source-alternatives-to-pressgram";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:9337:"<p><a href="http://i0.wp.com/www.wptavern.com/wp-content/uploads/2013/09/pressgram.png" rel="thumbnail"><img src="http://i2.wp.com/www.wptavern.com/wp-content/uploads/2013/09/pressgram.png?resize=150%2C150" alt="pressgram" class="alignright size-full wp-image-9070" /></a>Last week’s big news was the <a href="http://www.wptavern.com/pressgram-launches-wordpress-powered-photo-sharing-app" target="_blank">launch of the Pressgram app</a> which allows you to publish filtered photos to your WordPress blog. Soon after the launch, controversy sprung up concerning Pressgram’s <a href="http://stephanis.info/2013/09/06/pressgram-tos/" target="_blank">terms of service</a>, proprietary license and <a href="http://stephanis.info/2013/09/06/pressgram-security-concerns/" target="_blank">security</a>. <span id="more-9033"></span></p>\n<p>Closer examination of Pressgram’s Terms of Service revealed gaping holes where the notion of owning your own data is concerned. They quickly moved to revise their <a href="http://blog.pressgr.am/legal/tos/" target="_blank">TOS</a> to clarify that they can reproduce, modify and adapt your content for use within the app to provide the social networking aspect:</p>\n<blockquote><p>By submitting Content to Pressgram for inclusion on your User account, you grant Pressgram a world-wide, royalty-free, and non-exclusive license to reproduce, modify, adapt and publish the Content solely for the purpose of displaying, distributing and promoting your Content in the app (e.g. displaying your photos within the app to your social network and friends).</p></blockquote>\n<p>Through all of this discussion, we discovered that many publishers have no desire to be part of another social network, so the middle man aspect of Pressgram using member photos within their app doesn’t make much sense to them.</p>\n<p>Also, despite being wholly dependent on WordPress to publish photos to the user’s blog, the app maintains a proprietary license. Those who wish to hold true to open source principles may be interested in an alternative to the Pressgram service. </p>\n<h2>Open Source Tools for Publishing Filtered Photos to WordPress</h2>\n<p>Publishing filtered photos to your WordPress site is actually very easy to accomplish using only open source software. Obviously you could use the WordPress mobile app for your device, but this may be even more than you need. </p>\n<p><strong>One very easy way is to set up posting by email – yes, finally a fun use for a very old WordPress feature.</strong></p>\n<p>The two components necessary for this include: </p>\n<ul>\n<li>Mobile app for filtering the photos</li>\n<li>WordPress plugin for retrieving emails</li>\n</ul>\n<p>This solution doesn’t take more than 5 minutes to set up. It’s ideal for those who want to publish filtered photos and own their own work entirely, without becoming part of a social network.</p>\n<p>1. Download an open source mobile app for filtering photos.<br />\n2. Create an email address known only to you.<br />\n3. Install and configure a plugin that lets you post to WordPress via email.</p>\n<h3>Open Source Mobile Apps for Filtered Photos</h3>\n<h4>Anypic</h4>\n<p><a href="http://i2.wp.com/www.wptavern.com/wp-content/uploads/2013/09/anypic-175.jpg" rel="thumbnail"><img src="http://i1.wp.com/www.wptavern.com/wp-content/uploads/2013/09/anypic-175.jpg?resize=150%2C150" alt="anypic-175" class="alignright size-thumbnail wp-image-9077" /></a><a href="https://anypic.org/" target="_blank">Anypic</a> is an open source iOS app for filtering photos, among other features. Their website actually encourages you to download the <a href="https://github.com/ParsePlatform/Anypic" target="_blank">source code</a> and tinker with it as you please. </p>\n<p>They even offer a <a href="https://parse.com/tutorials/anypic" target="_blank">tutorial</a> to help you fork their code to create your own version of Anypic. </p>\n<h4>Trovebox</h4>\n<p><a href="http://i2.wp.com/www.wptavern.com/wp-content/uploads/2013/09/trovebox.png" rel="thumbnail"><img src="http://i1.wp.com/www.wptavern.com/wp-content/uploads/2013/09/trovebox.png?resize=150%2C150" alt="trovebox" class="alignright size-thumbnail wp-image-9080" /></a><a href="https://trovebox.com/" target="_blank">Trovebox</a>, formerly known as OpenPhoto, is another open source option with apps for Android, iPhone and iPad. They offer a <a href="https://github.com/photo" target="_blank">community edition on github</a> that you can grab, hack, re-purpose and improve upon, if you want. </p>\n<h4>Backspaces</h4>\n<p>The <a href="http://backspac.es/" target="_blank">Backspaces</a> app was created as an open source version of Instagram and its code is readily available on <a href="https://github.com/gobackspaces" target="_blank">github</a>. Their developers utilized Brad Larson’s <a href="https://github.com/BradLarson/GPUImage" target="_blank">GPUImage</a>, an open source iOS framework for GPU-based image and video processing. If you don’t want to use the Backspaces service but just want to grab the filters, you may find <a href="https://github.com/gobackspaces/DLCImagePickerController" target="_blank">DLCImagePickerController</a> to be useful.</p>\n<p><a href="http://i0.wp.com/www.wptavern.com/wp-content/uploads/2013/09/filters.png" rel="thumbnail"><img src="http://i0.wp.com/www.wptavern.com/wp-content/uploads/2013/09/filters.png?resize=560%2C280" alt="filters" class="aligncenter size-full wp-image-9089" /></a></p>\n<h2>Putting It All Together With WordPress</h2>\n<p>The great thing about all of the options mentioned above is that if you don’t want to use the service outright or don’t like the terms, you can simply grab the code, change it to suit your needs or make your own photo-sharing app.</p>\n<p>There is also a large number of filtered photo service apps that do not require you to sign up in order to use the filtering capabilities on your device. Use the app to add filters to your photos and then share via email to your WordPress site – it’s just that easy.</p>\n<p>Once you’ve selected an app to filter your photos, the next steps are very easy. </p>\n<h5>Set Up An Email Address For Sending Photos</h5>\n<p>This email address should be known only to you, as it will be used to publish photos directly to your WordPress site. Don’t publish the address anywhere on the web or you will undoubtedly get a ton of spam flowing through. <em>Keep it secret, keep it safe.</em> ;)</p>\n<h5>Configure Postie or Jetpack’s Post By Email to Publish Your Pictures</h5>\n<p>For my test, I used <a href="http://wordpress.org/plugins/postie/" target="_blank">Postie</a>, but you could just as easily use <a href="http://jetpack.me/support/post-by-email/" target="_blank">Jetpack’s Post by Email</a> or another plugin, depending on your needs for customizing the posts. The convenient thing about Jetpack’s Post by Email is that you don’t have to set up a separate email address. if you like, you can combine it with <a href="http://jetpack.me/support/publicize/" target="_blank">Publicize</a> to automate further sharing of your filtered photos to social networks.</p>\n<p>With Postie there are many options for customizing how often WordPress checks for mail, role access for multi-author posting, category, tags, post status for incoming mails, post format, image sizing, post templates and much more.</p>\n<p>Here is a quick example of filtered photos + Postie in action on a blog:</p>\n<p><a href="http://i0.wp.com/www.wptavern.com/wp-content/uploads/2013/09/postie-example.jpg" rel="thumbnail"><img src="http://i2.wp.com/www.wptavern.com/wp-content/uploads/2013/09/postie-example.jpg?resize=560%2C664" alt="postie-example" class="aligncenter size-full wp-image-9035" /></a></p>\n<p>Creating a new email and configuring the plugin took less than 5 minutes to set up. From there you can customize your WordPress site to have a unique design for your photo posts and category archives. You don’t even have to make the posts public if you don’t want to. Set them all to private via the plugin’s settings and you have an easily searchable archive of your mobile images.</p>\n<h3>Advantages of Publishing Filtered Photos to WordPress via Email:</h3>\n<p>There are numerous reasons why you might want to opt for posting to your own blog via email, not the least of which is privacy. If you don’t want your photos circulating within a social network, this may be the best and easiest way to ensure that all the traffic goes to your site. You don’t have to worry about any nasty terms of service or use a middle man of any kind. The images go directly from your device to your blog. You can even have them instantly deleted from the photo email account that you set up. The posting process is also not specific to your mobile device, since all devices offer the ability to share images via email.</p>\n<p>Perhaps the most important advantage of posting your photos to WordPress via email is that this method allows you to stay true to open source principles. There’s no compromise when you don’t have to entrust your images to a third party service. </p>\n<img src="http://feeds.feedburner.com/~r/WordpressTavern/~4/IBMI8JljEcI" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 11 Sep 2013 20:27:32 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:106:"WordPress.tv: Mika Epstein: Lightning Talk – Rolling Your WordPress Support Character (Without Any Code)";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wordpress.tv/?p=22194";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:59:"http://wordpress.tv/2013/09/11/mika-epstein-lightning-talk/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:711:"<div id="v-1ylUvDoT-1" class="video-player">\n</div>\n<br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/22194/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/22194/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=22194&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2013/09/11/mika-epstein-lightning-talk/"><img alt="Mika Epstein: Lightning Talk – Rolling Your WordPress Support Character (Without Any Code)" src="http://videos.videopress.com/1ylUvDoT/3-lightning-talks-copy-02_std.original.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 11 Sep 2013 12:51: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:12:"WordPress.tv";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:30;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:84:"WordPress.tv: Eric Mann: Lightning Talk – The Future of WordPress Lies in the Past";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wordpress.tv/?p=22196";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:97:"http://wordpress.tv/2013/09/11/eric-mann-lightning-talk-the-future-of-wordpress-lies-in-the-past/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:727:"<div id="v-DJNDyd9i-1" class="video-player">\n</div>\n<br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/22196/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/22196/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=22196&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2013/09/11/eric-mann-lightning-talk-the-future-of-wordpress-lies-in-the-past/"><img alt="Eric Mann: Lightning Talk – The Future of WordPress Lies in the Past" src="http://videos.videopress.com/DJNDyd9i/3-lightning-talks-copy-03_std.original.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 11 Sep 2013 12:44:08 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"WordPress.tv";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:31;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:35:"Matt: On the Way to the Post Office";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=42982";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:51:"http://ma.tt/2013/09/on-the-way-to-the-post-office/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:558:"<blockquote><p>I was a weird kid.</p>\n<p>I’d write and painstakingly edit endless paragraphs in which I’d riff on current events and major news items. Then I’d take a floppy disk to my local copy store where I’d print out the pages and bind them with card stock covers, before heading to the post office to mail the completed tome to just about everyone I knew.</p></blockquote>\n<p><a href="http://nextdraft.com/2013/09/08/a-funny-thing-happened-on-the-way-to-the-post-office/">Dave Pell: A Funny Thing Happened on the Way to the Post Office</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 Sep 2013 03:36: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: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: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:61:"WPTavern: This Week On WordPress Weekly – John James Jacoby";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"http://www.wptavern.com/?p=9008";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:109:"http://feedproxy.google.com/~r/WordpressTavern/~3/qycRs-itLIE/this-week-on-wordpress-weekly-john-james-jacoby";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:776:"<p>On Friday September 13th, <a href="http://johnjamesjacoby.com/" title="http://johnjamesjacoby.com/">John James Jacoby</a> will be our special guest on <a href="http://www.wptavern.com/wordpress-weekly" title="http://www.wptavern.com/wordpress-weekly">WordPress Weekly</a>. This will be the first time JJJ has been on the show. We’ll have a ton to talk about such as his recent job change from Automattic to 10UP, his passion for community, and of course, what’s happening with the bb’s BuddyPress and bbPress. The only thing we’ll have to watch out for is his rumored charm! </p>\n<p>As always, please submit your questions for JJJ in the comments. </p>\n<img src="http://feeds.feedburner.com/~r/WordpressTavern/~4/qycRs-itLIE" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 10 Sep 2013 21:00:42 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:6:"Jeffro";s: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:83:"WPTavern: WordPress 3.7 to Remove Post By Email Feature in Favor of Official 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:31:"http://www.wptavern.com/?p=8974";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:135:"http://feedproxy.google.com/~r/WordpressTavern/~3/-0XcYG7asXA/wordpress-3-7-to-remove-post-by-email-feature-in-favor-of-official-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:8502:"<p>The option to post by email will be <a href="http://core.trac.wordpress.org/ticket/22942" target="_blank">removed from the WordPress core</a> in the 3.7 release. As WordPress evolves, there are some lesser-used features that would be better served as a plugin, in favor of keeping the core leaner. Such is the case with the post by email feature, but don’t worry – WordPress won’t leave current users out in the cold. A plugin is in the works that will be the official replacement, providing a virtually seamless transition for posting by email when 3.7 is released.<span id="more-8974"></span></p>\n<p><a href="http://i1.wp.com/www.wptavern.com/wp-content/uploads/2013/09/kat-hagan.jpg" rel="thumbnail"><img src="http://i2.wp.com/www.wptavern.com/wp-content/uploads/2013/09/kat-hagan.jpg?resize=262%2C300" alt="kat-hagan" class="alignright size-medium wp-image-9005" /></a>That’s where Kat Hagan jumped in to contribute. Kat has been working as a WordPress freelancer and was recently selected for an internship with WordPress as part of the <a href="https://wiki.gnome.org/OutreachProgramForWomen" target="_blank">Free and Open Source Software Outreach Program for Women</a>. The program was inspired by <a href="http://code.google.com/soc" title="Google Summer of Code" target="_blank">Google Summer of Code</a> and was created because so few women applied for participation in GSOC. The Outreach Program for Women (OPW) sponsored Kat Hagan to work on WordPress and last week she released version 1.0 of the new <a href="http://wordpress.org/plugins/post-by-email/" title="WordPress Post By Email plugin" target="_blank">Post By Email plugin</a>.</p>\n<p>I checked in with Kat to find out what she plans for the future of the plugin. I was curious as to why she selected Post By Email as the project for her internship, and she replied:</p>\n<blockquote><p>I was reading through the list of suggested WP projects, and Post By Email was something that jumped out at me as having a lot of potential.</p>\n<p>I knew it would give me the opportunity to learn about some areas of the WordPress code that I hadn’t had much chance to dig into, and I liked that it was very open-ended in terms of which features would be a part of the project. I also noticed while researching it that it was sort of an abandoned feature — the code in Core was buggy, there were Trac tickets that had been open for years, but I also saw a lot of comments from folks who were using the functionality and wanted to see it revisited. So I guess you could say it appealed to my desire to work on something that needed love.</p></blockquote>\n<p>The post by email functionality in core is on track to be deprecated in 3.7. Hagan has submitted a patch, which is now awaiting review. The patch essentially removes the functionality from the WordPress core without deleting the settings. Current users of the native post by email functionality will have a seamless experience installing the new plugin and migrating their settings. </p>\n<p>Hagan had a number of challenges during her internship, both in building this new plugin and adjusting to a new community workflow: </p>\n<blockquote><p>I chose to incorporate a third-party library for retrieving and parsing emails, which was fairly difficult. Documentation was scanty (when it existed at all), and the library wasn’t really written to be used in a standalone way, so I spent a lot of time digging through the source, duct-taping stuff together and figuring out how it worked by experimentation. I’m glad I chose this route, though, since it’s saved me a lot of time in implementing new features (not to mention spared me the bugs I would certainly have introduced in reinventing this particular wheel).</p>\n<p>From a non-technical standpoint, just learning how the WordPress community works was a significant challenge. As someone who’s never worked on open source software before, I’m used to projects having a very clear hierarchy and schedule — you have a manager or a tech lead who acts as the final arbiter of what gets done, how it gets done and when. In WordPress land, it’s much more democratic: while there are loose areas of responsibility, everyone joins in the discussion about how to implement things and what to focus on. It was a bit overwhelming at first!</p></blockquote>\n<h3>How is the Post By Email plugin different from Postie or Jetpack’s post by email feature?</h3>\n<p>You may be wondering, as I was, how the new plugin differs from counterparts such as <a href="http://wordpress.org/plugins/postie/" target="_blank">Postie</a> and <a href="http://jetpack.me/support/post-by-email/" target="_blank">Jetpack’s Post By Email</a>, both of which already do almost everything one could imagine. Hagan’s plugin was built for a different purpose. </p>\n<blockquote><p>For starters, it’s not as full-featured, at least not yet; we wanted a canonical plugin that, while it doesn’t necessarily have all the bells and whistles, makes it fairly easy for anyone who’s been using the existing functionality up to this point to migrate over. I do think they fulfill slightly different needs. Postie allows a lot of customization, almost like a template (e.g. specifying start and end, excerpts, post format) and Jetpack’s Post By Email integrates support for other features used on wordpress.com, like polls. Jetpack also uses an auto-generated wordpress.com email address instead of connecting to a third-party email account.</p></blockquote>\n<p>The good news here is that when the changes happen in WordPress 3.7, users will have a lot of options for continuing their posting by email. I asked Kat if she’ll be adding in all the new features that were outlined in her <a href="http://codebykat.wordpress.com/2013/06/15/post-by-email-proposal-v2/" target="_blank">original proposal</a> for the project. She replied, “I’m on track to finish everything, with two exceptions: multisite support was tabled for now (it’s a larger discussion) and replying to comments via email is going on the roadmap for a later version, since I know I won’t have time to do it justice.” The current version of the plugin actually adds support for HTML-formatted emails, a welcome addition for those who actively post by email.</p>\n<h3>WordPress Gains a New Contributor</h3>\n<p>Hagan plans to continue her support and development of the plugin after her internship has concluded. She very much enjoyed her software development internship with WordPress and looks forward to helping out in the future. “I’ve learned that WordPress is a wonderfully supportive community, and it’s been a blast meeting and working with everyone this summer,” she said. “Open source projects can be intimidating, especially when they’re as large and active as WordPress, so I think having a more structured introduction is extremely helpful for folks who aren’t sure where to begin. I know that having mentors and a well-defined project really made the difference for me. I would definitely encourage anyone who’s eligible for an OPW or GSoC internship to apply to those programs.” </p>\n<p><a href="http://i2.wp.com/www.wptavern.com/wp-content/uploads/2013/09/opw.png" rel="thumbnail"><img src="http://i2.wp.com/www.wptavern.com/wp-content/uploads/2013/09/opw.png?resize=311%2C302" alt="opw" class="alignright size-full wp-image-9012" /></a>Are you interested to try your hand at an internship with WordPress or another open source project? <a href="https://wiki.gnome.org/OutreachProgramForWomen" title="Outreach Program For Women" target="_blank">Applications for OPW</a> will open in October 2013, with a deadline in early November. The next round runs from mid-December to mid-March. This is an excellent opportunity for any woman to get started contributing. </p>\n<p>The WordPress project has definitely benefited from offering mentors for interns and, in this case, the result is that the Post By Email functionality will happily live on as a plugin. Want to help out? Test the new <a href="http://wordpress.org/plugins/post-by-email/" title="WordPress Post by Email Plugin" target="_blank">Post By Email</a> plugin with a test email account and leave some feedback for Kat Hagan. </p>\n<img src="http://feeds.feedburner.com/~r/WordpressTavern/~4/-0XcYG7asXA" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 10 Sep 2013 19:00: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: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:97:"WPTavern: The Daily Plugin – Remove Comment Links, Author Notes, Word File Embeds & 6 More!";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"http://www.wptavern.com/?p=8965";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:136:"http://feedproxy.google.com/~r/WordpressTavern/~3/cE9sIqDjp0U/the-daily-plugin-remove-comment-links-author-notes-word-file-embeds-6-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:11:"description";a:1:{i:0;a:5:{s:4:"data";s:7831:"<p>Lots of great new plugins have come across the wire in the WordPress Plugin Repository. Today we’re going to take a look at TSP Author’s Note for adding after-the-fact post notations from the author, WP No Base Permalink for removing the base /tag/ or /category/ from your permalink structure, Remove Links From Comments, a Username changer, a great way to embed Word files, tools to monitor social sharing on a per post basis, graphic visualization tools and an awesome new RSS embed plugin that I started implementing immediately after I discovered it! Before we begin, remember to test and analyze the performance of these plugins on a staging site. You never know if plugins will play well together, or with themes for that matter. Make sure you make backups of the site and database. <span id="more-8965"></span></p>\n<p><a title="TSP Author''s Note" href="http://wordpress.org/plugins/tsp-authors-note/" target="_blank">TSP Authors Note</a> allows you to add author’s notes and after-thoughts to your blog posts and pages. This pairs with the plugin’s author box output, but the new “notes” can be added via shortcode. This enables you to go back and add your own “I told you so” passages to older posts, or the opportunity to highlight new findings, specific comments or anything else you need to reflect a new perspective on an old post. I found the plugin to be quite useful for a friend that does a lot of interviews about start-ups. He can use this for making notes on people’s later successes and milestones they faced in business along the way.</p>\n<p><a href="http://i2.wp.com/www.wptavern.com/wp-content/uploads/2013/09/rssthis.png" rel="thumbnail"><img class="alignleft wp-image-8968" alt="RSS This Example" src="http://i2.wp.com/www.wptavern.com/wp-content/uploads/2013/09/rssthis.png?resize=165%2C180" /></a><a title="RSS This" href="http://wordpress.org/plugins/rss-this/" target="_blank">RSS This</a> is the crowning jewel for today’s batch of plugins. When building the station site for <a href="http://www.wpr.fm" title="http://www.wpr.fm">WordPress Radio</a>, I found the need to insert the most recent shows of each podcast that was featured. Using this plugin was a pleasure! It formatted each item in the site’s feed in a nice content box, including a thumbnail of the post’s featured image. The plugin is shortcode based and allows you to choose how many items are included in the feed. When used in multiple instances on the same page, the plugin’s shortcodes allow you to create a fast news or headline site from many sources on the same page. The “Read More” button goes straight back to the original article source on the home page where the feed item came from, allowing you to give proper link attribution to the feed author. For me, this is a perfect solution to save me the weekly time burden of manually adding news or content items to the site.</p>\n<p><a title="WP No Base Permalink" href="http://wordpress.org/plugins/wp-no-base-permalink/" target="_blank">WP No Base Permalink</a> optionally removes the base function from your category or tags in your permalinks. The “base” is always a dead ringer for identifying an off-the-rack WordPress site and something that my development project users can’t stand. It is both Multisite and WPML compatible as well. Previously I had used two different plugins to accomplish this task, but now I can remove or rename the tag and category bases with just one plugin. If this benchmarks as a faster solution when compared to the simultaneous load time of the other 2 plugins I use, I can think of at least 50 domains I will use it on.</p>\n<p><a title="Remove Links From Comments" href="http://wordpress.org/plugins/remove-links-from-comments/" target="_blank">Remove Links From Comments</a> helps to ease a bit of the spamming going on within your comments. It will remove the option to add a website within the comment form, and in addition removes all the hyperlinks within the comment content itself. Be careful with this one, as more often than not, regular commenting users will drop links in their comments to relevant sites relating to your post. This plugin would discourage that, as well as showing the home page of your comment providers.</p>\n<p><a title="Username" href="http://wordpress.org/plugins/username/" target="_blank">Username</a> allows you to change the username of the admin. This has been a need of mine for some time, especially when creating sites for others. Sometimes “admin” just doesn’t click with a new WordPress user and they just need it to be “Tom” instead. This one does the trick nicely. In the instance of multiple admins, each individual administrator has the ability to change their username in the user panel. There is a degree of duplicate protection, as it will not allow you to change to a user name that already exists.</p>\n<p><a title="Attachments++" href="http://wordpress.org/plugins/attachments-plus-plus/" target="_blank">Attachments++</a> allows you the option to embed popular file formats such as Excel, Word, and other kinds of audio and video media files. If you’d like the ability to publish Word files on your WordPress site, here’s the plugin for you! I tried it on a test site and it worked well with a few CSS width modifications. With the pending Health care changes here in the U.S., there will be a need for a lot of new patient forms and similar items. This plugin lets them read the document on the site with the option to download for offline printing. It would be nice to see more internal on-site print options, but overall worth a look if you need a solution for this common design request issue.</p>\n<p><a title="Admin Social Shares" href="http://wordpress.org/plugins/admin-social-shares/" target="_blank">Admin Social Shares</a> is a great plugin that displays how many social shares, likes and gestures of pleasure your posts and pages have received. It displays them neatly in the post list screen so that you can keep tabs on your most popular content in the social scene. This is an admin only plugin that works really well out of the gate. It provides an easy way to report regularly updated social shares to your authors, client and contributors. You can even use it as an internal scorecard among your authors to see who gets the most social approval.</p>\n<p><a title="Auto Post After Image Upload" href="http://wordpress.org/plugins/auto-post-after-image-upload/" target="_blank">Auto Post After Image Upload</a> is a great plugin for photographers that simply want to post their images without all the “upload images and then post” 2 step process. This plugin condenses the operation into one simple act. Every time you upload an image, it creates a post.</p>\n<p><a title="WP GraphViz" href="http://wordpress.org/plugins/wp-graphviz/" target="_blank">WP-GraphViz</a> gives you the power to insert your own visual charts and relational site structures based on the powerful GraphViz framework. You may have seen the old social influence visibility graphs or site visibility graphs before. Now you can create your own within your WordPress posts. There are a lot of different types of niche applications for the visual representation provided by this plugin.</p>\n<h2>Feedback Wanted</h2>\n<p>Thanks for grinding through all these plugins with me today! I’m looking forward to reading the reaction and usage that people get from these plugins. As always you can contact me on Twitter <a title="Marcus Couch on Twitter" href="https://twitter.com/marcuscouch">@marcuscouch</a> or right here on WPTavern.com.</p>\n<img src="http://feeds.feedburner.com/~r/WordpressTavern/~4/cE9sIqDjp0U" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 10 Sep 2013 14:58:14 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"Marcus Couch";s: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:103:"WordPress.tv: Corey Freeman: Lightning Talk – Stop Tweaking (Setting Up a Blog Now for Success Later)";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wordpress.tv/?p=22202";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:114:"http://wordpress.tv/2013/09/10/corey-freeman-lightning-talk-stop-tweaking-setting-up-a-blog-now-for-success-later/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:763:"<div id="v-s5dFMrZU-1" class="video-player">\n</div>\n<br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/22202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/22202/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=22202&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2013/09/10/corey-freeman-lightning-talk-stop-tweaking-setting-up-a-blog-now-for-success-later/"><img alt="Corey Freeman: Lightning Talk – Stop Tweaking (Setting Up a Blog Now for Success Later)" src="http://videos.videopress.com/s5dFMrZU/3-lightning-talks-copy-04_std.original.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 10 Sep 2013 12:36:57 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"WordPress.tv";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:36;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:111:"WordPress.tv: Aaron Hockley: Lightning Talk – Social Photo Networking or Owning Your Content… Why Not Both?";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wordpress.tv/?p=22203";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:120:"http://wordpress.tv/2013/09/10/aaron-hockley-lightning-talk-social-photo-networking-or-owning-your-content-why-not-both/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:777:"<div id="v-9Itm34Md-1" class="video-player">\n</div>\n<br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/22203/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/22203/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=22203&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2013/09/10/aaron-hockley-lightning-talk-social-photo-networking-or-owning-your-content-why-not-both/"><img alt="Aaron Hockley: Lightning Talk – Social Photo Networking or Owning Your Content… Why Not Both?" src="http://videos.videopress.com/9Itm34Md/3-lightning-talks-copy-05_std.original.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 10 Sep 2013 12:31:03 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"WordPress.tv";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:54:"WPTavern: Xanga 2.0 Launches – Powered By 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:31:"http://www.wptavern.com/?p=8972";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://feedproxy.google.com/~r/WordpressTavern/~3/_c6XzD9VJTw/xanga-2-0-launches-powered-by-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:6491:"<p>It started November 28th, 1999 before WordPress.com was even an idea. It was on this date that <a href="http://xanga.com" title="http://xanga.com">Xanga</a> launched an alpha version of their product. Before blogging really took off, there were these things called portals. Portals were websites dedicated to specific topics. To make a long story short, portals were one term used to describe blogs before they were called blogs. For more than 13 years, Xanga has existed on the web providing a home for those looking to publish their thoughts online. However, Xanga recently underwent a major restructuring both in terms of software and how they’ll do business in the future. <span id="more-8972"></span></p>\n<div id="attachment_8980" class="wp-caption aligncenter"><a href="http://i1.wp.com/www.wptavern.com/wp-content/uploads/2013/09/Screen-Shot-2013-09-09-at-3.43.06-PM.png" rel="thumbnail"><img src="http://i0.wp.com/www.wptavern.com/wp-content/uploads/2013/09/Screen-Shot-2013-09-09-at-3.43.06-PM.png?resize=500%2C264" alt="Xanga In 1999" class="size-large wp-image-8980" /></a><p class="wp-caption-text">Xanga Launching In 1999</p></div>\n<h2>Time For A Fundraiser</h2>\n<p>On May 30th, 2013 <a href="http://thexangateam.xanga.com/2013/05/30/relaunching-xanga-a-fundraiser/" title="http://thexangateam.xanga.com/2013/05/30/relaunching-xanga-a-fundraiser/">Xanga announced plans</a> that contained two options. The first was to relaunch the service using WordPress as the platform while the second was to shut the site down. </p>\n<blockquote><p>Door #1: We can’t afford to renew our expensive lease at our networking facility, so we would have to offer everyone a free download of their blog posts, and shut down the site. :(</p>\n<p>Door #2: We would find a way to port Xanga to open source blogging software like WordPress, and reinvent the site together with the community.</p>\n<p>We strongly favor Door #2, but need your help to pull it off. It would require two things to open that door: time and money.</p></blockquote>\n<p>On this same day, the <a href="https://xanga.crowdhoster.com/relaunch-xanga" title="https://xanga.crowdhoster.com/relaunch-xanga">relaunch campaign</a> was started with the goal to reach $60,000 by July 15th. During this process, John announced that if the Fundraiser could generate at least $50,000 that he would chip in the other $10,000. While the funding goal of $50,000 was exceeded ($58,640), they didn’t quite make the planned $60,000 but decided to go through with the relaunch of Xanga on the WordPress platform. </p>\n<div id="attachment_8982" class="wp-caption aligncenter"><a href="http://i1.wp.com/www.wptavern.com/wp-content/uploads/2013/09/Screen-Shot-2013-09-09-at-7.30.15-PM.png" rel="thumbnail"><img src="http://i2.wp.com/www.wptavern.com/wp-content/uploads/2013/09/Screen-Shot-2013-09-09-at-7.30.15-PM.png?resize=500%2C248" alt="Xanga 2.0 Fundraiser" class="size-large wp-image-8982" /></a><p class="wp-caption-text">Xanga Surpasses Its Fundraising Goal</p></div>\n<h2>I Know How They Feel</h2>\n<p>Of particular interest to me are the comments on the relaunch post. Understandably, some people were upset while others wanted nothing to do with WordPress which is why some were using Xanga to begin with. Before I discovered WordPress, Joomla, and other Content Management Systems, I came across a site called <a href="http://web.archive.org/web/20080705143002/http://www.efx2blogs.com/" title="http://web.archive.org/web/20080705143002/http://www.efx2blogs.com/">EFx2blogs.com</a>. Knowing what WordPress.com is today, EFx2blogs was my WordPress.com. It featured a dedicated developer, an awesome tight-knit community, and an atmosphere that not only encouraged writing, but also checking out the posts of your neighbor. It was a great experience and I was really sad to see it go away. At least with Xanga, the owner/developers are sticking around and will be using WordPress as the foundation of their relaunched service. </p>\n<p>As far as how Xanga will do business in the future, all new users will need to pay a subscription price in order to blog. </p>\n<blockquote><p>\nBecause of this cost, we would have to move Xanga to a paid model, where bloggers pay for hosting for their blogs. (Just being a member of Xanga would still be free though, so others could still subscribe to your site.) We would enable our bloggers to pay in either money or time (through volunteering). At first, though, we would only be able to offer money options – as we would need a significant amount of money to make the relaunch possible. We would also include a gifting option, where you can buy a Xanga blogging membership for a friend… or earn one through volunteering, and gift that blogging membership to a friend.</p></blockquote>\n<p>Paying Xanga means all blogs will be ad-free but at the cost of putting up a barrier to entry, something WordPress.com does not have. I love the idea of being able to gift certain aspects of the service to other accounts, <a href="http://en.blog.wordpress.com/2006/12/16/give-the-gift-of-wordpress-credits/" title="http://en.blog.wordpress.com/2006/12/16/give-the-gift-of-wordpress-credits/">something that WordPress.com added in 2006</a> but soon after removed.</p>\n<h2>Only Time Will Tell</h2>\n<p>When reading the <a href="http://thexangateam.xanga.com/2013/07/08/our-vision-for-xanga-2-0/" title="http://thexangateam.xanga.com/2013/07/08/our-vision-for-xanga-2-0/">vision for Xanga 2.0</a>, it becomes clear that initially, the service will just be a branded WordPress Multisite install. </p>\n<blockquote><p>We’re incredibly excited about using the WordPress platform, as the publishing software is incredibly powerful. As we adapt it for use for Xanga 2.0, we’re working to make sure that all that power is combined with the warm fuzzy feeling of Xanga community love as well.</p></blockquote>\n<p>It will be interesting to see over time how this transition works out and if the dedicated Xanga community sticks around or ends up leaving for WordPress.com, once they’ve had a taste of what the software has to offer. Then again, software is one thing and community is another. Software is easy to create, community is not. Good luck to John, the Xanga team, and all users of the service as I hope this transition helps cement their place on the web for another 13 years. </p>\n<img src="http://feeds.feedburner.com/~r/WordpressTavern/~4/_c6XzD9VJTw" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 10 Sep 2013 00:02:02 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:6:"Jeffro";s: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:29:"Matt: Simplenote for Android!";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=42980";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/2013/09/simplenote-for-android/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:193:"<p><a href="http://simplenote.com/2013/09/05/simplenote-for-android/">I’m really excited about Simplenote for Android</a>, better than any similar app I’ve seen on the platform.</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 Sep 2013 00:00: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: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:32:"Matt: NextDraft’s New Platform";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=42978";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/2013/09/nextdrafts-new-platform/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:264:"<p><a href="http://www.poststat.us/dave-pell-nextdraft/">Dave Pell on building the NextDraft platform</a>. Spoiler: It’s WordPress, but a really cool implementation of it across a blog, iOS app, and newsletter. I wish more publishers worked the same way.</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 Sep 2013 19:53: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:40;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:51:"Akismet: Akismet & Your WordPress Contact Forms";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"http://blog.akismet.com/?p=1046";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://blog.akismet.com/2013/09/09/akismet-and-your-wordpress-contact-forms/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3267:"<p>We often hear from Akismet users on WordPress that, even after activating our plugin, they are being flooded with spam via their contact forms. While Akismet will automatically begin checking all comments submitted on your post and page comment forms, we can’t simply hook into any contact form plugin (or theme) and handle those submissions, as well. The good news is that there are some really great (and free!) contact form plugins out there that include Akismet integration, and we thought that we’d let you know about them in case you’re in the market.</p>\n<p><a title="Jetpack by WordPress.com" href="http://wordpress.org/plugins/jetpack/">Jetpack by WordPress.com</a><br />\nAlthough Jetpack brings you <a href="http://jetpack.me/">a ton of other features</a> that are native to WordPress.com, it includes a simple and powerful contact form module that is automatically integrated with the Akismet service. You’ll also notice that the submission queue has been designed to mirror the native WordPress comment queue as closely as possible to ensure ease of use and moderation. What’s more, Jetpack and Akismet are developed under the same roof by <a href="http://automattic.com">Automattic</a>, which means that you can rest easy knowing that the integration is as tight as possible.</p>\n<p><a title="Contact Form 7" href="http://wordpress.org/plugins/contact-form-7/">Contact Form 7</a><br />\nAnother powerful – and ever so popular – option is Contact Form 7 by <a href="http://profiles.wordpress.org/takayukister/">Takayuki Miyoshi</a>. It boasts a great amount of flexibility, some really nifty features, is surprisingly easy to configure, and has been downloaded over 12 million times. Setting up the plugin to send data to our service will take some manual configuration, but the steps are fairly simple and are clearly outlined <a href="http://contactform7.com/spam-filtering-with-akismet/">here</a>.</p>\n<p><a title="Fast Secure Contact Form" href="http://wordpress.org/plugins/si-contact-form/">Fast Secure Contact Form</a><br />\nIf you’re looking for an incredible amount of options and still wish to have the peace of mind that Akismet is checking form submissions, Fast Secure Contact Form by <a href="http://profiles.wordpress.org/mikechallis/">Mike Challis</a> may be a plugin to explore. The plugin even allows you to customize how Akismet handles spam submissions and includes customizable CAPTCHA as an additional line of defense.</p>\n<p>Note that, with all of the plugins mentioned above, you will need to have Akismet installed and activated for the integration to work. And while we are unable to provide technical support for Contact Form 7 or FS Contact Form, we’re always more than happy to help you through any potential problems with Akismet functionality. <a href="http://akismet.com/contact/">Give us a shout</a>!</p>\n<br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/akismet.wordpress.com/1046/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/akismet.wordpress.com/1046/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.akismet.com&blog=116920&post=1046&subd=akismet&ref=&feed=1" width="1" height="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 09 Sep 2013 15:51:15 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:7:"Anthony";s: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:94:"WordPress.tv: Paul Clark: Lightning Talk – How WordPress Saves Lives & Moves Governments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wordpress.tv/?p=22193";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wordpress.tv/2013/09/09/paul-clark-lightning-talk-how-wordpress-saves-lives-moves-governments/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:737:"<div id="v-kg53gIx7-1" class="video-player">\n</div>\n<br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/22193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/22193/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=22193&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2013/09/09/paul-clark-lightning-talk-how-wordpress-saves-lives-moves-governments/"><img alt="Paul Clark: Lightning Talk – How WordPress Saves Lives & Moves Governments" src="http://videos.videopress.com/kg53gIx7/3-lightning-talks-copy-01_std.original.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 09 Sep 2013 12:14:48 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"WordPress.tv";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:34:"Alex King: Drafts Dropdown and MP6";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://alexking.org/?p=18255";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://alexking.org/blog/2013/09/08/drafts-dropdown-and-mp6";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:680:".threads-post-notice {\n background: #e8e8e8;\n padding: 10px;\n}\n.threads-post-notice a {\n font-weight: bold;\n}\n\n<p>If you’re using my <a href="http://alexking.org/project/drafts-dropdown">Drafts Dropdown plugin</a> and the MP6 admin UI plugin, you probably want to grab the latest from <a href="https://github.com/crowdfavorite/wp-drafts-dropdown/tree/feature/mp6">this feature branch</a>. This updates Drafts Dropdown’s styling to better match the styling in MP6.</p>\n<p class="threads-post-notice">This post is part of the project: <a href="http://alexking.org/project/drafts-dropdown">Drafts Dropdown</a>. View the project timeline for more context on this post.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 08 Sep 2013 17:44:02 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Alex";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:71:"WordPress.tv: Steven Word: Why PHP Developers Should Leverage WordPress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wordpress.tv/?p=22106";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:88:"http://wordpress.tv/2013/09/08/steven-word-why-php-developers-should-leverage-wordpress/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:698:"<div id="v-XrIZgCjR-1" class="video-player">\n</div>\n<br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/22106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/22106/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=22106&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2013/09/08/steven-word-why-php-developers-should-leverage-wordpress/"><img alt="Steven Word: Why PHP Developers Should Leverage WordPress" src="http://videos.videopress.com/XrIZgCjR/video-47ea0307c8_scruberthumbnail_0.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 08 Sep 2013 11:59:19 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"WordPress.tv";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:62:"WordPress.tv: Jake Goldman: Publishing Workflows for WordPress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wordpress.tv/?p=21706";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:79:"http://wordpress.tv/2013/09/08/jake-goldman-publishing-workflows-for-wordpress/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:678:"<div id="v-TLD8teDM-1" class="video-player">\n</div>\n<br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/21706/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/21706/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=21706&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2013/09/08/jake-goldman-publishing-workflows-for-wordpress/"><img alt="Publishing Workflows for WordPress" src="http://videos.videopress.com/TLD8teDM/publishing-workflows-for-wordpress_std.original.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 08 Sep 2013 10:56:11 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"WordPress.tv";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:73:"WPTavern: WPWeekly Episode 120 – Interview With Swiftype Not The Teapot";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"http://www.wptavern.com/?p=8958";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:121:"http://feedproxy.google.com/~r/WordpressTavern/~3/6FKMTp_v38Y/wpweekly-episode-120-interview-with-swiftype-not-the-teapot";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2987:"<p><a href="http://i2.wp.com/www.wptavern.com/wp-content/uploads/2013/08/WordPressWeekly_albumart2.jpg" rel="thumbnail"><img src="http://i0.wp.com/www.wptavern.com/wp-content/uploads/2013/08/WordPressWeekly_albumart2.jpg?resize=150%2C150" alt="WordPress Weekly Cover Art" class="alignright size-thumbnail wp-image-8715" /></a> The first time in a long time where I won’t be doing the show solo anymore! Sarah Gooding who has recently been hired to write for WPTavern is also my new co-host. This week, we discussed her hiring and what she’ll be doing on the site, Pressgram launching, and why WordCamp Detroit 2013 was cancelled. The second half of the show was an interview with Quin Hoxie of <a href="http://www.swiftype.com" title="http://www.swiftype.com">Swiftype</a> to talk about how their service is making search inside of WordPress better. As an aside, I apologize for the howling sound heard throughout the show although it would have been a cool background noise effect for the Friday the 13th edition! I tried to remove the loudest parts of the howling noise but it’s still noticeable. We’ll have this fixed before the next episode. <span id="more-8958"></span></p>\n<h2>Stories Discussed:</h2>\n<p><a href="http://www.wptavern.com/exclusive-sarah-gooding-moves-to-the-wordpress-tavern" title="http://www.wptavern.com/exclusive-sarah-gooding-moves-to-the-wordpress-tavern">Sarah Gooding Joins WPTavern</a><br />\n<a href="http://www.wptavern.com/why-wordcamp-detroit-2013-was-cancelled" title="http://www.wptavern.com/why-wordcamp-detroit-2013-was-cancelled">Why WordCamp Detroit 2013 Was Cancelled</a><br />\n<a href="http://www.wptavern.com/pressgram-launches-wordpress-powered-photo-sharing-app" title="http://www.wptavern.com/pressgram-launches-wordpress-powered-photo-sharing-app">Pressgram Launches</a><br />\n<a href="http://stephanis.info/2013/09/06/pressgram-security-concerns/" title="http://stephanis.info/2013/09/06/pressgram-security-concerns/">Pressgram Security Concerns</a><br />\n<a href="http://stephanis.info/2013/09/06/pressgram-tos/" title="http://stephanis.info/2013/09/06/pressgram-tos/">Pressgram Terms Of Service Worries</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Friday, September 13th 9P.M. Eastern – Special Guest John James Jacoby</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 #120:</strong><br />\n</p>\n<img src="http://feeds.feedburner.com/~r/WordpressTavern/~4/6FKMTp_v38Y" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 07 Sep 2013 17:26: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:6:"Jeffro";s: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:61:"WordPress.tv: John James Jacoby: Wonderful WordPress Workflow";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wordpress.tv/?p=21690";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:78:"http://wordpress.tv/2013/09/07/john-james-jacoby-wonderful-wordpress-workflow/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:689:"<div id="v-gJv1BHf5-1" class="video-player">\n</div>\n<br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/21690/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/21690/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=21690&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2013/09/07/john-james-jacoby-wonderful-wordpress-workflow/"><img alt="John James Jacoby: Wonderful WordPress Workflowkflow" src="http://videos.videopress.com/gJv1BHf5/wonderful-wordpress-workflow_std.original.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 07 Sep 2013 11:03:52 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"WordPress.tv";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:82:"WordPress.tv: Brennen Byrne: Employing Best Security Practices for WordPress Sites";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wordpress.tv/?p=21716";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:99:"http://wordpress.tv/2013/09/07/brennen-byrne-employing-best-security-practices-for-wordpress-sites/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:731:"<div id="v-lQSifts6-2" class="video-player">\n</div>\n<br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/21716/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/21716/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=21716&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2013/09/07/brennen-byrne-employing-best-security-practices-for-wordpress-sites/"><img alt="Brennen Byrne: Employing Best Security Practices for WordPress Sites" src="http://videos.videopress.com/lQSifts6/employing-best-security-practices_std.original.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 07 Sep 2013 10:49:44 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"WordPress.tv";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:63:"WPTavern: Password Free Login With Clef Hits All The High Notes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"http://www.wptavern.com/?p=8766";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:115:"http://feedproxy.google.com/~r/WordpressTavern/~3/n04-e-RlBu8/password-free-login-with-clef-hits-all-the-high-notes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4953:"<p>Recently I have been reviewing a number of wp-admin login alternatives that allow for login via phone. The first among the plugins tested was <a title="LaunchKey WordPress Plugin" href="http://wordpress.org/plugins/launchkey/" target="_blank">LaunchKey</a>, which I spoke about in this <a title="LaunchKey Review" href="http://www.wptavern.com/the-daily-plugin-launchkey-user-languages-buy-him-a-beer" target="_blank">LaunchKey Review</a> post. Though the functionality of LaunchKey was promising, it seemed to explode on the launching pad when it came to initial setup. Even with the valiant efforts in an hour-long back-and-forth exchange with their support team on Twitter to get me going, it seemed that the setup challenges were the biggest obstacles. It was so frustrating that I opted to delete LaunchKey altogether and forever give up on the idea of secure, remote smartphone-enabled logins. <span id="more-8766"></span></p>\n<p>Sensing my frustration and desire to get this technology implemented in my installations, the team over at <a title="Clef Home Page" href="http://getclef.com" target="_blank">GetClef.com</a> decided to get to work. They created something for me that not only had every piece of functionality that I was looking for, but they did it with an installation process that took no more than 60 seconds to install the app on my iPhone, install the plugin and have them both talking to each other. OK, so they didn’t create it for me specifically, but from how beautifully this integrates, it sure feels like they completely read my mind in regards to the functionality and ease of use that I was looking for!</p>\n<p>To begin, you simply navigate to the Clef app page which asks for your mobile number. Once entered, Clef will text you the link to install the app on your phone. Currently both iOS and Android versions are available for integration with the Clef plugin. Once installed, the app will have you set up a pin number to protect anyone from using it to login to your sites. So even if you lose your phone, you won’t have to worry that someone out there can login to all your sites.</p>\n<p><a title="Clef" href="http://wordpress.org/plugins/wpclef/" target="_blank">Clef</a> is touted as the simplest way to login to multiple sites without passwords in a secure, encrypted way that is as easy to use as taking a photo. Here’s Clef’s <a title="Brenned Byrne on Twitter" href="https://twitter.com/brennenbyrne" target="_blank">Brennen Byrne</a> giving us a quick walk-through on how the system works and what it does.</p>\n<div class="aligncenter"></div>\n<p>As stated in the video, one scan of the QR code enables complete login of <strong>ALL</strong> your WordPress installations. If you login to one site that is Clef-Enabled, you have access to every other Clef-capable site in your network without having to login again. I can’t stress enough how much of a time-saving feature this is. Often I work with collaboration teams and outsource workers that often require access to one or several of my WordPress web properties. This tool allows me to easily add and remove credentials for an individual within Clef on a network wide basis, so I can assign a person specific properties to work on. When they are finished with the tasks and milestones assigned, I can simply remove them network wide and not have to be burdened to login to each individual site to remove the user credentials or their permissions.</p>\n<p>From a designer and developer perspective, this is a really great selling point to include in your design proposals and specs to clients. Larger companies and organizations can easily manage user roles and login capabilities by implementing Clef for their WordPress installs. It’s just one more tool that gives WordPress the decided advantage over using other CMS platforms.</p>\n<p>Let’s also talk about the security reinforcement of this app/plugin combo. How many of you out there use the same admin password for all your installations? Come on, I know there are lots of you out there that do this. It’s a bad practice to get into because once one of your sites is compromised, they all are. Most of us don’t like to use different passwords, especially if our network is 50-100 installations deep. Clef can make it easier for you to keep your logins in one place without exposing yourself by using duplicate passwords across your network.</p>\n<p>Even if you are just passively intrigued at the concept of remote gadget WordPress logins, Clef is worth investigating. With remarkably quick setup and ease of use, this plugin has earned a permanent spot in my everyday plugin roster. I love the advancements that WordPress is making with device integration and Clef is just another great reinforcement as to why we love using WordPress so much!</p>\n<img src="http://feeds.feedburner.com/~r/WordpressTavern/~4/n04-e-RlBu8" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 06 Sep 2013 23:00:11 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"Marcus Couch";s: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:68:"WPTavern: 7 Surprising Results From The 2013 BuddyPress Codex Survey";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"http://www.wptavern.com/?p=8885";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:120:"http://feedproxy.google.com/~r/WordpressTavern/~3/8TOECMZ944s/7-surprising-results-from-the-2013-buddypress-codex-survey";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:7031:"<p>The results of the BuddyPress codex survey are in! 178 BuddyPress developers participated in the survey and the information they provided will help the team to prioritize short-term and long-term tasks for improving the BP Codex. Community developers <a href="http://buddypress.org/community/members/hnla/" target="_blank">@hnla</a> and <a href="http://buddypress.org/community/members/mercime/" target="_blank">@mercime</a> are spearheading the effort to improve the BuddyPress codex for the BP 1.9 release.</p>\n<p>While this survey is packed full of fascinating <a href="http://buddypress.org/2013/09/2013-buddypress-codex-survey-results/" target="_blank">results</a>, I’d like to highlight just a few of them here:<span id="more-8885"></span></p>\n<h2>Nearly 50% of BuddyPress sites are in languages other than English.</h2>\n<p>Respondents hailed from 36 different countries and results show that 56% of BuddyPress sites are built using English as the language and the other half is comprised of various languages from around the world. The top 10 include: 1) English (56%), 2) Spanish, 3) Italian, 4) French, 5) German, 6) Dutch, 7) Swedish, 8) Portugese, 9) Chinese, and 10) Greek.</p>\n<p><a href="http://i1.wp.com/www.wptavern.com/wp-content/uploads/2013/09/international.jpg" rel="thumbnail"><img src="http://i1.wp.com/www.wptavern.com/wp-content/uploads/2013/09/international.jpg?resize=560%2C307" alt="international" class="aligncenter size-full wp-image-8920" /></a></p>\n<p>It’s clear to see that BuddyPress is an international community. We’re spread out all over the globe! If you’re a BuddyPress plugin developer, you need to <a href="http://buddypress.org/support/topic/localize-your-buddypress-plugins/" target="_blank">localize your plugins</a>. Hopefully we can include some more detailed references on localization when it comes time to revamp the codex.</p>\n<h2>Only 15% of BuddyPress sites surveyed make use of the Friends component.</h2>\n<p>When you think about social networks, oftentimes the friends component is what you might assume would be the most important. This survey reveals otherwise:</p>\n<p><a href="http://i1.wp.com/www.wptavern.com/wp-content/uploads/2013/09/components.jpg" rel="thumbnail"><img src="http://i1.wp.com/www.wptavern.com/wp-content/uploads/2013/09/components.jpg?resize=493%2C291" alt="components" class="aligncenter size-full wp-image-8925" /></a></p>\n<p>I was surprised that the Groups component wasn’t activated on more sites, as it is probably the most flexible and has the most extensions. These numbers might indicate that many people are using BuddyPress for its more robust profile and account management capabilities, rather than for its social features. Not one of the social components reached more than 20%.</p>\n<h2>90% of BuddyPress developers surveyed are male.</h2>\n<p><a href="http://i0.wp.com/www.wptavern.com/wp-content/uploads/2013/09/gender.jpg" rel="thumbnail"><img src="http://i1.wp.com/www.wptavern.com/wp-content/uploads/2013/09/gender.jpg?resize=560%2C118" alt="gender" class="aligncenter size-full wp-image-8930" /></a></p>\n<p>Do these numbers surprise you? I would have imagined there would be a few more female developers who responded, but perhaps the survey did not reach them. However, these numbers really should not deter female developers from getting involved. From my experience attending BuddyCamp Vancouver, the BuddyPress community is made up of some of the nicest people you will ever meet. Even in the support forums you will find that people are generally very welcoming and helpful to new developers. BuddyPress is still a relatively small community and it’s easy to start getting involved and making a difference.</p>\n<h2>People prefer to learn BuddyPress through written tutorials.</h2>\n<p><a href="http://i1.wp.com/www.wptavern.com/wp-content/uploads/2013/09/tutorials.jpg" rel="thumbnail"><img src="http://i0.wp.com/www.wptavern.com/wp-content/uploads/2013/09/tutorials.jpg?resize=560%2C301" alt="tutorials" class="aligncenter size-full wp-image-8939" /></a></p>\n<p>This has been my suspicion for awhile and now it is confirmed. Developers are not looking for fancy video tutorials and they are only marginally interested in books and in-person training when it comes to learning about BuddydPress. They want written tutorials, references and guides that they can quickly scan and come back to when needed.</p>\n<h2>39% of BuddyPress sites are installed within a WordPress multisite network.</h2>\n<p><a href="http://i2.wp.com/www.wptavern.com/wp-content/uploads/2013/09/bp-site-root.jpg" rel="thumbnail"><img src="http://i0.wp.com/www.wptavern.com/wp-content/uploads/2013/09/bp-site-root.jpg?resize=560%2C408" alt="bp-site-root" class="aligncenter size-full wp-image-8933" /></a></p>\n<p>Perhaps this one isn’t much of a surprise, given that in the beginning you could only use BuddyPress with WordPress multisite. After BuddyPress was made to be compatible with single site WordPress installations, one would have thought that they would become the vast majority, since it’s the easiest way to set up WordPress. But it appears that usage on multisite vs. single site is almost 50/50. What this tells me is that blogs are still a very important aspect of BuddyPress social networks. </p>\n<p>What does this mean for the codex? We absolutely need more documentation on using BuddyPress within a multisite environment. </p>\n<h2>The biggest complaint about the codex is that the documentation is incomplete and difficult to navigate.</h2>\n<p><a href="http://i0.wp.com/www.wptavern.com/wp-content/uploads/2013/09/codex-issues.jpg" rel="thumbnail"><img src="http://i2.wp.com/www.wptavern.com/wp-content/uploads/2013/09/codex-issues.jpg?resize=560%2C306" alt="codex-issues" class="aligncenter size-full wp-image-8937" /></a></p>\n<p>It looks like the largest task at hand will be to fill in any bald spots in the codex and improve the navigation. It’s not so much that the content is unclear or outdated but rather it’s just not there at all. Creating new sections and adding to existing ones will probably be the main focus in improving the codex.</p>\n<h2>35% of BuddyPress developers surveyed are willing to contribute to the codex.</h2>\n<p>Wow, that’s an amazing response from the BuddyPress community developers who are ready and willing to help make the codex a more useful resource. Many thanks to <a href="http://buddypress.org/community/members/hnla/" target="_blank">@hnla</a> and <a href="http://buddypress.org/community/members/mercime/" target="_blank">@mercime</a> for all their hard work in analyzing the responses from the survey and providing these handy graphs for these results. By far, one of the biggest complaints about BuddyPress is the lack of documentation. With all the capable volunteers stepping forward, things are about to change for the better.</p>\n<img src="http://feeds.feedburner.com/~r/WordpressTavern/~4/8TOECMZ944s" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 06 Sep 2013 22:24:48 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}}}}}}}}}}s:4:"type";i:128;s:7:"headers";a:9:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Sat, 21 Sep 2013 23:05:53 GMT";s:12:"content-type";s:8:"text/xml";s:14:"content-length";s:6:"190152";s:10:"connection";s:5:"close";s:4:"vary";s:15:"Accept-Encoding";s:13:"last-modified";s:29:"Sat, 21 Sep 2013 23:00:14 GMT";s:4:"x-nc";s:11:"HIT lax 249";s:13:"accept-ranges";s:5:"bytes";}s:5:"build";s:14:"20130708141016";}', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(136, '_transient_timeout_feed_mod_867bd5c64f85878d03a060509cd2f92c', '1379847951', 'no'),
(137, '_transient_feed_mod_867bd5c64f85878d03a060509cd2f92c', '1379804751', 'no'),
(138, '_transient_timeout_dash_aa95765b5cc111c56d5993d476b1c2f0', '1379847951', 'no'),
(139, '_transient_dash_aa95765b5cc111c56d5993d476b1c2f0', '<div class="rss-widget"><ul><li><a class=''rsswidget'' href=''http://ios.wordpress.org/2013/09/20/wordpress-featured/'' title='' It’s been an exciting few days for us working on the WordPress app for iOS. With the launch of iOS 7, the app ended up in the spotlight of a flurry of similar announcements and was listed among the best iOS 7 apps in several publications — one example: “Here’s How iOS 7 Has Already Changed The Look Of Your Apps” (Business Insider). Today we’re excited to share another reason to celebrate. We just found out that the app is featured as one of the top apps in the Social Networking category in the U.S. App Store! This, along with the app being highlighted in the “Apps Designed for iOS 7″ section in 92 stores worldwide to date. Of course we’re extremely proud of this achievement. Major kudos once again to Hugo Baeta and Sendhil Panchadsaram who worked together making this release happen. The Beauty and the Beast While we’re super excited to see the app getting recognized in both App Stores and all around the web, the iOS 7 release still had some lingering issues — some more severe than others. We’re working hard on fixing these and have already issued a quick bug fix update (3.8.1) that, among other things, takes care of the annoying categories bug for those of you still running iOS 6. To see a full list of open issues and follow our progress crunching through them, check out the GitHub project. If you have any more details on any of the bugs or — heaven forbid — you find a new one, please let us know in the forums or directly on GitHub as soon as you see it. The more details we know the sooner we can get to work. ''>WP iPhone: WordPress Featured in 90+ App Stores Worldwide</a></li><li><a class=''rsswidget'' href=''http://feedproxy.google.com/~r/WordpressTavern/~3/7wQSVIW3OJE/introducing-wordpress-post-forking-version-control-for-writers'' title=''The WordPress platform has been helping writers publish their thoughts to the web for years. Though it now powers many large newsrooms and other organizations, the posting process still caters entirely to the individual writer working by himself on a post. Collaboration for multiple content creators is non-existent within the core right now. The WordPress Editorial workflow is one dimensional in that only one person can be editing at a time. Although WordPress has a fancy new way of showing you who’s working on the post, you actually have to kick that person out to take over editing. The new Post Locking feature in WordPress 3.6, though useful to prevent overwriting, is actually the antithesis of collaboration: There is also a limitation in the current WordPress publishing process that you may not have noticed. Once a post is published, the only way to make edits is to push changes immediately, which precludes scheduling updates to the content and/or further collaboration. These limitations are what drove Aaron Jorbin and a small group of developers to create the Post Forking plugin. What is Post Forking? Post Forking is the solution to one-dimensional content creation. It opens the door for collaboration between multiple writers in WordPress. Essentially, the idea is that you can create a “fork” of the current post and make your own changes which can be submitted as a proposed revision and merged back into the final version. I had the chance to chat with Aaron Jorbin and asked him what inspired the creation of a plugin that would offer git-style version control for words. He replied, “The first person I heard talk about this concept was Greg Linch, who spoke about Journalism and Version Control at Bar Camp News Innovation Philadelphia. Fast Forward to my friend and former Google Summer of Code mentee, Ben Balter, mentioning that he had started coding something up and asking if I wanted to take a look. It was a working prototype of what became version 0.1.” The Post Forking plugin’s current features enable some new and interesting ways for online publishers to collaborate: Allowing users without edit or publish post capabilities to edit and submit changes to content (similar to GitHub’s pull request system) Collaborative editing (by resolving two users’ conflicted saves – Wired’s example) Saving draft changes of already-published content Scheduling pending changes to already-published content This is a basic set of features. Sure, it’s better than nothing but Jorbin recognizes the current usability defects in the plugin and has a vision for much more. Taking Post Forking to the Next Level The Post Forking plugin has been downloaded more than 1,000 times and the community is starting to become more interested in the potential of this new way to collaborate. But Jorbin wants to take the plugin to the next level. He recently listed the project on Indiegogo and has chosen to adopt the patronage model to help fund improvements to the plugin. His reasoning is, “Creating software costs money. I want to do user testing, which costs money and also want to be able to focus on it for a little while without needing to worry about how to pay my rent. When people contribute, in code, documentation, support or with cash, it makes them a part of the team.” Getting funding this way is a smart approach. Rather than sit around being frustrated by a lack of time to work on the project, he is allowing the WordPress community to demonstrate its interest and become part of something larger. Collaboration is the whole idea, after all, and Jorbin said that he has been inspired by the response: “Seeing how the community has responded has felt amazing. I know my goal isn’t low and getting 20% of the way there after one day validated the idea that the community can fund open source plugins and a commercial model isn’t the only way to develop great plugins.” What new features will be added to the plugin with this round of funding? Jorbin’s first priority is usability, followed by better support for meta and taxonomies: The first goal is to make it more usable and easily understandable by writers and contents creators. Unless you are a developer or have spent a lot of time around developers, the concept of forking and merging might be foreign. Features such as scheduling merges can be hard to find and the manual merging page is hard to use. Once the usability concerns are addressed, the highest priorities are integration with revisions and forking/merging meta, taxonomies and everything else connected to posts and pages. Practical Uses For Post Forking Wired Magazine once conducted an experiment wherein they put a story in process on github for anyone to contribute to and improve, resulting in their collaboration article: Lord of the Files: How GitHub Tamed Free Software (And More). Although the experiment was considered a success, the entry level geek knowledge of git required for contribution poses a definite hurdle in the daily application of story versioning. Post Forking is the answer to this. If the idea of post forking is new to you, perhaps you’re wondering how the average Joe might make use of it. The benefits of forking posts do not just apply to major news rooms. Jorbin envisions benefits for a wide range of WordPress users: On my personal site, I can imagine scheduling a fork to merge on my speaking page the day after I speak to move something from the future to the past. A company could have their API documentation in WordPress and prepare forks that they merge upon releasing an update. A team could write a book with all edits suggested by authors being cleared by the editor. It also could be used in many of the ways Wired has used it, to fix grammar and spelling mistakes and also for people to translate your writing for you. If the idea of post forking catches on and becomes a more seamless part of the WordPress editorial workflow, Jorbin believes it could someday be a useful addition to the core. If it’s highly usable and people are actually using it, it seems to me to be a natural fit for WordPress core. WordPress is about democratizing publishing. What is more democratic than participation and collaboration? The first step towards making this a reality for users of the plugin is to get funding. This will allow Jorbin to devote time to making this more polished and usable for a larger section of publishers who may not be familiar with git terminology. Help Fund Post Forking Improvements You can help this plugin become an awesome tool for the WordPress community. Can you imagine the days of writing code before git collaboration was a possibility? That’s where we are right now as writers, locked out of posts and waiting turns while the work is going on. A fully featured and usable Post Forking plugin has the potential to radically change the editorial workflow for thousands of WordPress publishers around the world. If you’re inspired by the possibilities of more collaboration in WordPress, please contribute to the Post Forking project on Indiegogo. There is also a bug tracker for feature requests and bug reports where you can contribute. Join the mailing list jump in at the #wp-postforking chatroom on IRC. Jorbin will be starting weekly chats to organize contributors. ''>WPTavern: Introducing WordPress Post Forking: Version Control For Writers</a></li><li><a class=''rsswidget'' href=''http://dougal.gunters.org/blog/2013/09/19/make-wordpress-site-talk-like-pirate/'' title=''It’s been 9 years since I first released me Text Filter Suite plugin, and dinna spare the whip, by Davy Jones' locker! The TFS is actually a collection o' a “TFS Core” plugin, plus several sub-plugins, includin' th' infamous “TFS Pirate”, which will turn yer posts and comments into pirate-speak fer International Talk Like a Pirate Day. Over th' years, I have been meanin' t' refactor th' code. It really should be one single plugin, with an options screen t' enable individual components, choose which thin's t' filter (titles, content, comments, sidebar text, pages/posts, etc). Also, I’ve been wantin' t' add shortcodes t' allow ye t' apply filters (or exclusions) t' specific portions o' yer text. But, th' code has continued t' work fine, only needin' minor adjustments here and there o'er almost a decade o' use. Huzzah fer th' stability o' th' WordPress Plugin API! Anyways, even though TLAPD is well past th' half-way mark in most places, it’s still not too late t' get in on th' fun. Install th' plugin, and enable TFS-Core and TFS-Pirate. Boom. BTW, me plugin has been ported t' Drupal and Joomla, if ye happen t' swin' that way. Original Article: Make Your WordPress Site Talk Like a Pirate Dougal Campbell's geek ramblings - WordPress, web development, and world domination. ''>Dougal Campbell: Make Your WordPress Site Talk Like a Pirate</a></li><li><a class=''rsswidget'' href=''http://feedproxy.google.com/~r/WordpressTavern/~3/vmrcAGAZpbw/automatically-add-google-authorship-to-wordpress-posts-with-jetpack-2-5'' title=''Jetpack 2.5 was released today with a staggering array of new integration features for Google products and services. On top of all that the team has added VideoPress integration and the handy ability to embed Facebook posts directly within WordPress posts/pages. The exciting additions for all the Google junkies out there include: Post comments via your Google+ account Connect Google+ Profiles to authors A new Share to Google+ Button Embed Google content in posts/pages, including Google Calendars, Google Documents, and Google Maps I can understand not caring a bit about these features if you’re not big on Google products or Facebook posts. However, one feature in particular stands out as being very valuable for online publishers. Even if you’re not active on Google+ and could care less about embedding Google products, I’d like to highlight the benefits of turning on authorship. Jetpack Makes It Easy to Add Google Authorship to Your Posts Jetpack now provides one of the easiest and most convenient ways to add the Google authorship feature to your WordPress posts. The 2.5 release makes it simple to connect your profile. If you’re not familiar with authorship, it’s the way by which Google determines the author of a post and then shows all the fancy extras in the search results: Google authorship in action This extra information is very valuable for getting people to click on your posts in their search results. The best part is that Jetpack creates this official connection between your posts and your profile, without you having to add another plugin. When you activate the Google+ Profile connection in Jetpack, the plugin will do the following, according to the docs: The display name that appears on your posts and comments will display your Google+ Real Name (the name you have on your Google+ Profile). A link to your site is added on your Google+ Profile under the ‘Contributor To’ section. On single Post/Page views only, a Google+ section is added to the Sharing/Like details on your posts that includes a link to your Google+ Profile, a button so people can Follow you on Google+, and your Google avatar (the picture you set on your Google+ Profile). Verification code will be added to your posts to confirm to Google that you are the author of those posts. All of the above actions are done automatically for you, which is a huge improvement over other ways plugins have attempted to add authorship in the past. SEO Benefits for Linking Your Google+ Profile to WordPress Posts When you link up your Google+ profile to your website, you’ll receive a number of benefits that make your content appear more official when found in search engines: See analytics for your content in search. Distinguish and validate your content in search results. Get more followers on Google+. Help readers discover your other content on the web. Google Authorship can actually improve your rankings. It’s something you want to have in place, especially if you have a frequent problem with other sites on the internet reprinting your content as their own. Support For Multi-Author WordPress Blogs Jetpack’s new feature also works smoothly with multi-author blogs. Each author can link up his own Google+ profile, without having to go through the email verification process. When you navigate to the Settings -> Sharing page, it may appear that you can only link up one Google+ profile. That is not the case. Jetpack actually recognizes who is logged in and will offer the option for each author on the site. Turning this feature on also adds your profile to the sharing buttons, as shown here where we’ve turned it on: As an avid Android user, Google products practically run my life and I am thrilled to see that Jetpack 2.5 is more tightly integrated with Google services. I realize that may not be the case for everyone. While you may not be crazy about embedding Google calendars or letting people comment via Google+, you can still take advantage of the solid SEO boost that you will get from adding authorship to your WordPress posts. ''>WPTavern: Automatically Add Google Authorship To WordPress Posts With Jetpack 2.5</a></li><li><a class=''rsswidget'' href=''http://wordpress.tv/2013/09/18/erik-wolf-grow-your-business-now-maximize-marketing-efficiencies-with-wordpress-2/'' title='' ''>WordPress.tv: Erik Wolf: Grow Your Business Now: Maximize Marketing Efficiencies With WordPress</a></li></ul></div>', 'no'),
(140, '_site_transient_timeout_wporg_theme_feature_list', '1379815553', 'yes'),
(141, '_site_transient_wporg_theme_feature_list', 'a:5:{s:6:"Colors";a:15:{i:0;s:5:"black";i:1;s:4:"blue";i:2;s:5:"brown";i:3;s:4:"gray";i:4;s:5:"green";i:5;s:6:"orange";i:6;s:4:"pink";i:7;s:6:"purple";i:8;s:3:"red";i:9;s:6:"silver";i:10;s:3:"tan";i:11;s:5:"white";i:12;s:6:"yellow";i:13;s:4:"dark";i:14;s:5:"light";}s:7:"Columns";a:6:{i:0;s:10:"one-column";i:1;s:11:"two-columns";i:2;s:13:"three-columns";i:3;s:12:"four-columns";i:4;s:12:"left-sidebar";i:5;s:13:"right-sidebar";}s:5:"Width";a:2:{i:0;s:11:"fixed-width";i:1;s:14:"flexible-width";}s:8:"Features";a:19:{i:0;s:8:"blavatar";i:1;s:10:"buddypress";i:2;s:17:"custom-background";i:3;s:13:"custom-colors";i:4;s:13:"custom-header";i:5;s:11:"custom-menu";i:6;s:12:"editor-style";i:7;s:21:"featured-image-header";i:8;s:15:"featured-images";i:9;s:15:"flexible-header";i:10;s:20:"front-page-post-form";i:11;s:19:"full-width-template";i:12;s:12:"microformats";i:13;s:12:"post-formats";i:14;s:20:"rtl-language-support";i:15;s:11:"sticky-post";i:16;s:13:"theme-options";i:17;s:17:"threaded-comments";i:18;s:17:"translation-ready";}s:7:"Subject";a:3:{i:0;s:7:"holiday";i:1;s:13:"photoblogging";i:2;s:8:"seasonal";}}', 'yes'),
(143, 'theme_mods_twentythirteen', 'a:1:{s:16:"sidebars_widgets";a:2:{s:4:"time";i:1379804757;s:4:"data";a:3:{s:19:"wp_inactive_widgets";a:0:{}s:9:"sidebar-1";a:6:{i:0;s:8:"search-2";i:1;s:14:"recent-posts-2";i:2;s:17:"recent-comments-2";i:3;s:10:"archives-2";i:4;s:12:"categories-2";i:5;s:6:"meta-2";}s:9:"sidebar-2";a:0:{}}}}', 'yes'),
(144, 'current_theme', 'Base Wordpress Theme', 'yes'),
(145, 'theme_mods_chris', 'a:3:{i:0;b:0;s:16:"header_textcolor";s:5:"blank";s:18:"nav_menu_locations";a:0:{}}', 'yes'),
(146, 'theme_switched', '', 'yes'),
(147, 'recently_activated', 'a:1:{s:31:"pricing-table/pricing-table.php";i:1379813070;}', 'yes'),
(148, 'wpseo', 'a:6:{s:20:"disableadvanced_meta";s:2:"on";s:7:"version";s:6:"1.4.18";s:11:"theme_check";a:1:{s:11:"description";b:1;}s:14:"tracking_popup";s:4:"done";s:14:"yoast_tracking";b:1;s:11:"ignore_tour";s:6:"ignore";}', 'yes'),
(149, 'wpseo_titles', 'a:13:{s:10:"title-home";s:42:"%%sitename%% %%page%% %%sep%% %%sitedesc%%";s:12:"title-author";s:42:"%%name%%, Author at %%sitename%% %%page%% ";s:13:"title-archive";s:38:"%%date%% %%page%% %%sep%% %%sitename%%";s:12:"title-search";s:63:"You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%";s:9:"title-404";s:35:"Page Not Found %%sep%% %%sitename%%";s:15:"noindex-archive";s:2:"on";s:19:"noindex-post_format";s:2:"on";s:10:"title-post";s:39:"%%title%% %%page%% %%sep%% %%sitename%%";s:10:"title-page";s:39:"%%title%% %%page%% %%sep%% %%sitename%%";s:16:"title-attachment";s:39:"%%title%% %%page%% %%sep%% %%sitename%%";s:14:"title-category";s:53:"%%term_title%% Archives %%page%% %%sep%% %%sitename%%";s:14:"title-post_tag";s:53:"%%term_title%% Archives %%page%% %%sep%% %%sitename%%";s:17:"title-post_format";s:53:"%%term_title%% Archives %%page%% %%sep%% %%sitename%%";}', 'yes'),
(150, 'wpseo_xml', 'a:2:{s:16:"enablexmlsitemap";s:2:"on";s:36:"post_types-attachment-not_in_sitemap";b:1;}', 'yes'),
(151, 'wpseo_social', 'a:1:{s:9:"opengraph";s:2:"on";}', 'yes'),
(152, 'wpseo_rss', 'a:1:{s:8:"rssafter";s:53:"The post %%POSTLINK%% appeared first on %%BLOGLINK%%.";}', 'yes'),
(153, 'wpseo_permalinks', 'a:1:{s:10:"cleanslugs";s:2:"on";}', 'yes'),
(154, 'rg_form_version', '1.7.8', 'yes'),
(155, '_transient_timeout_gform_update_info', '1379902598', 'no'),
(156, '_transient_gform_update_info', 'a:5:{s:7:"headers";a:6:{s:4:"date";s:29:"Sun, 22 Sep 2013 02:16:43 GMT";s:6:"server";s:118:"Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.27 with Suhosin-Patch mod_ssl/2.2.8 OpenSSL/0.9.8g mod_perl/2.0.3 Perl/v5.8.8";s:12:"x-powered-by";s:21:"PHP/5.2.4-2ubuntu5.27";s:14:"content-length";s:2:"13";s:10:"connection";s:5:"close";s:12:"content-type";s:9:"text/html";}s:4:"body";s:13:"0||1.7.8||||0";s:8:"response";a:2:{s:4:"code";i:200;s:7:"message";s:2:"OK";}s:7:"cookies";a:0:{}s:8:"filename";N;}', 'no'),
(158, 'ws_plugin__s2member_activated_levels', '4', 'yes'),
(159, 'ws_plugin__s2member_cache', 'a:3:{s:18:"login_welcome_page";a:3:{s:4:"page";s:1:"4";s:4:"time";i:1379841524;s:4:"link";s:24:"http://chris.dev/account";}s:23:"membership_options_page";a:3:{s:4:"page";s:1:"9";s:4:"time";i:1379841524;s:4:"link";s:27:"http://chris.dev/membership";}s:33:"file_download_limit_exceeded_page";a:3:{s:4:"page";s:0:"";s:4:"time";i:1379841524;s:4:"link";s:26:"http://chris.dev/?page_id=";}}', 'yes'),
(160, 'ws_plugin__s2member_notices', 'a:1:{i:0;a:5:{s:6:"notice";s:594:"<strong>Note:</strong> s2Member adds some new data columns to your list of Users/Members. If your list gets overcrowded, please use the <strong>Screen Options</strong> tab <em>(upper right-hand corner)</em>. With WordPress® Screen Options, you can add/remove specific data columns; thereby making the most important data easier to read. For example, if you create Custom Registration/Profile Fields with s2Member, those Custom Fields will result in new data columns; which can cause your list of Users/Members to become nearly unreadable. So just use the Screen Options tab to clean things up.";s:8:"on_pages";s:14:"blog:users.php";s:5:"error";b:0;s:4:"time";b:0;s:7:"dismiss";b:1;}}', 'yes'),
(161, 'ws_plugin__s2member_options', 'a:180:{s:16:"options_checksum";s:32:"9d16bec42811e7a61afbf0d727f7d592";s:15:"options_version";s:5:"1.056";s:18:"gateway_debug_logs";s:1:"0";s:28:"gateway_debug_logs_extensive";s:1:"0";s:18:"sec_encryption_key";s:0:"";s:26:"sec_encryption_key_history";a:0:{}s:22:"s_badge_status_enabled";s:1:"0";s:18:"max_ip_restriction";s:1:"5";s:23:"max_ip_restriction_time";s:4:"3600";s:25:"max_failed_login_attempts";s:1:"5";s:25:"run_deactivation_routines";s:1:"0";s:17:"custom_reg_fields";s:0:"";s:16:"custom_reg_names";s:1:"1";s:23:"custom_reg_display_name";s:4:"full";s:19:"custom_reg_password";s:1:"0";s:17:"custom_reg_opt_in";s:1:"1";s:23:"custom_reg_opt_in_label";s:41:"Yes, I want to receive updates via email.";s:24:"custom_reg_auto_opt_outs";a:0:{}s:35:"custom_reg_auto_opt_out_transitions";s:1:"0";s:21:"custom_reg_fields_4bp";a:0:{}s:32:"custom_reg_force_personal_emails";s:0:"";s:20:"allow_subscribers_in";s:1:"1";s:20:"force_admin_lockouts";s:1:"0";s:15:"filter_wp_query";a:0:{}s:21:"default_url_shortener";s:8:"tiny_url";s:32:"default_custom_str_url_shortener";s:0:"";s:14:"mms_auto_patch";s:1:"1";s:21:"mms_registration_file";s:8:"wp-login";s:23:"mms_registration_grants";s:4:"none";s:29:"mms_registration_blogs_level0";s:1:"0";s:29:"mms_registration_blogs_level1";s:1:"5";s:29:"mms_registration_blogs_level2";s:2:"10";s:29:"mms_registration_blogs_level3";s:2:"15";s:29:"mms_registration_blogs_level4";s:2:"20";s:18:"login_welcome_page";s:1:"4";s:26:"login_redirection_override";s:0:"";s:29:"login_redirection_always_http";s:1:"1";s:23:"membership_options_page";s:1:"9";s:24:"login_reg_design_enabled";s:1:"1";s:26:"login_reg_background_color";s:6:"FFFFFF";s:26:"login_reg_background_image";s:58:"http://chris.dev/wp-content/plugins/s2member/images/bg.png";s:33:"login_reg_background_image_repeat";s:6:"repeat";s:31:"login_reg_background_text_color";s:6:"000000";s:38:"login_reg_background_text_shadow_color";s:6:"EEEEEE";s:37:"login_reg_background_box_shadow_color";s:6:"EEEEEE";s:18:"login_reg_logo_src";s:60:"http://chris.dev/wp-content/plugins/s2member/images/logo.png";s:24:"login_reg_logo_src_width";s:3:"550";s:25:"login_reg_logo_src_height";s:3:"100";s:18:"login_reg_logo_url";s:17:"http://chris.dev/";s:20:"login_reg_logo_title";s:12:"Skillz tests";s:19:"login_reg_font_size";s:4:"12px";s:21:"login_reg_font_family";s:30:"''Verdana'', ''Arial'', sans-serif";s:25:"login_reg_font_field_size";s:4:"18px";s:27:"login_reg_footer_backtoblog";s:1:"0";s:23:"login_reg_footer_design";s:0:"";s:19:"reg_email_from_name";s:12:"Skillz tests";s:20:"reg_email_from_email";s:23:"slicer@sliceratwork.com";s:22:"reg_email_support_link";s:30:"mailto:slicer@sliceratwork.com";s:23:"new_user_emails_enabled";s:1:"0";s:22:"new_user_email_subject";s:32:"[Skillz tests] Username/Password";s:22:"new_user_email_message";s:107:"Your Username/Password for:\nSkillz tests\n\nUsername: %%user_login%%\nPassword: %%user_pass%%\n%%wp_login_url%%";s:31:"new_user_admin_email_recipients";s:23:"slicer@sliceratwork.com";s:28:"new_user_admin_email_subject";s:36:"[Skillz tests] New User Registration";s:28:"new_user_admin_email_message";s:141:"New User Registration on your site:\nSkillz tests\n\nUser ID: %%user_id%%\nUsername: %%user_login%%\nEmail: %%user_email%%\nIP Address: %%user_ip%%";s:14:"paypal_sandbox";s:1:"1";s:15:"paypal_business";s:23:"slicer@sliceratwork.com";s:19:"paypal_api_username";s:28:"slicer_api1.sliceratwork.com";s:19:"paypal_api_password";s:16:"TRULFP2AUA82WVRR";s:20:"paypal_api_signature";s:56:"AwW0j7U2kBfeD-oyTml3bBaMLwMGA6sD2MXsv.mCUL-Tpg6MekzHDUYW";s:21:"paypal_identity_token";s:0:"";s:21:"paypal_btn_encryption";s:1:"0";s:27:"paypal_payflow_api_username";s:0:"";s:26:"paypal_payflow_api_partner";s:6:"PayPal";s:25:"paypal_payflow_api_vendor";s:0:"";s:27:"paypal_payflow_api_password";s:0:"";s:21:"signup_tracking_codes";s:0:"";s:27:"modification_tracking_codes";s:0:"";s:19:"ccap_tracking_codes";s:0:"";s:17:"sp_tracking_codes";s:0:"";s:23:"signup_email_recipients";s:33:""%%full_name%%" <%%payer_email%%>";s:20:"signup_email_subject";s:52:"Congratulations! (your membership has been approved)";s:20:"signup_email_message";s:282:"Thanks %%first_name%%! Your membership has been approved.\r\n\r\nIf you haven''t already done so, the next step is to Register a Username.\r\n\r\nComplete your registration here:\r\n%%registration_url%%\r\n\r\nIf you have any trouble, please feel free to contact us.\r\n\r\nBest Regards,\r\nSkillz tests";s:19:"sp_email_recipients";s:33:""%%full_name%%" <%%payer_email%%>";s:16:"sp_email_subject";s:36:"Thank You! (instructions for access)";s:16:"sp_email_message";s:225:"Thanks %%first_name%%!\r\n\r\n%%item_name%%\r\n\r\nYour order can be retrieved here:\r\n%%sp_access_url%%\r\n( link expires in %%sp_access_exp%% )\r\n\r\nIf you have any trouble, please feel free to contact us.\r\n\r\nBest Regards,\r\nSkillz tests";s:17:"mailchimp_api_key";s:0:"";s:25:"level0_mailchimp_list_ids";s:0:"";s:25:"level1_mailchimp_list_ids";s:0:"";s:25:"level2_mailchimp_list_ids";s:0:"";s:25:"level3_mailchimp_list_ids";s:0:"";s:25:"level4_mailchimp_list_ids";s:0:"";s:22:"level0_aweber_list_ids";s:0:"";s:22:"level1_aweber_list_ids";s:0:"";s:22:"level2_aweber_list_ids";s:0:"";s:22:"level3_aweber_list_ids";s:0:"";s:22:"level4_aweber_list_ids";s:0:"";s:24:"signup_notification_urls";s:0:"";s:30:"registration_notification_urls";s:0:"";s:25:"payment_notification_urls";s:0:"";s:30:"modification_notification_urls";s:0:"";s:30:"cancellation_notification_urls";s:0:"";s:25:"eot_del_notification_urls";s:0:"";s:25:"ref_rev_notification_urls";s:0:"";s:25:"sp_sale_notification_urls";s:0:"";s:28:"sp_ref_rev_notification_urls";s:0:"";s:30:"signup_notification_recipients";s:0:"";s:36:"registration_notification_recipients";s:0:"";s:31:"payment_notification_recipients";s:0:"";s:36:"modification_notification_recipients";s:0:"";s:36:"cancellation_notification_recipients";s:0:"";s:31:"eot_del_notification_recipients";s:0:"";s:31:"ref_rev_notification_recipients";s:0:"";s:31:"sp_sale_notification_recipients";s:0:"";s:34:"sp_ref_rev_notification_recipients";s:0:"";s:12:"level0_label";s:15:"Free Subscriber";s:12:"level1_label";s:13:"Bronze Member";s:12:"level2_label";s:13:"Silver Member";s:12:"level3_label";s:11:"Gold Member";s:12:"level4_label";s:15:"Platinum Member";s:24:"apply_label_translations";s:1:"0";s:29:"level0_file_downloads_allowed";s:0:"";s:29:"level1_file_downloads_allowed";s:0:"";s:29:"level2_file_downloads_allowed";s:0:"";s:29:"level3_file_downloads_allowed";s:0:"";s:29:"level4_file_downloads_allowed";s:0:"";s:34:"level0_file_downloads_allowed_days";s:0:"";s:34:"level1_file_downloads_allowed_days";s:0:"";s:34:"level2_file_downloads_allowed_days";s:0:"";s:34:"level3_file_downloads_allowed_days";s:0:"";s:34:"level4_file_downloads_allowed_days";s:0:"";s:33:"file_download_limit_exceeded_page";s:0:"";s:31:"file_download_inline_extensions";s:0:"";s:31:"file_download_stream_extensions";s:0:"";s:22:"amazon_s3_files_bucket";s:0:"";s:26:"amazon_s3_files_access_key";s:0:"";s:26:"amazon_s3_files_secret_key";s:0:"";s:27:"amazon_cf_files_private_key";s:0:"";s:30:"amazon_cf_files_private_key_id";s:0:"";s:33:"amazon_cf_files_distros_access_id";s:0:"";s:36:"amazon_cf_files_distros_s3_access_id";s:0:"";s:35:"amazon_cf_files_distro_downloads_id";s:0:"";s:38:"amazon_cf_files_distro_downloads_cname";s:0:"";s:38:"amazon_cf_files_distro_downloads_dname";s:0:"";s:35:"amazon_cf_files_distro_streaming_id";s:0:"";s:38:"amazon_cf_files_distro_streaming_cname";s:0:"";s:38:"amazon_cf_files_distro_streaming_dname";s:0:"";s:42:"amazon_cf_files_distros_auto_config_status";s:0:"";s:12:"level0_ruris";s:0:"";s:12:"level1_ruris";s:0:"";s:12:"level2_ruris";s:0:"";s:12:"level3_ruris";s:0:"";s:12:"level4_ruris";s:0:"";s:12:"level0_catgs";s:0:"";s:12:"level1_catgs";s:0:"";s:12:"level2_catgs";s:0:"";s:12:"level3_catgs";s:0:"";s:12:"level4_catgs";s:0:"";s:12:"level0_ptags";s:0:"";s:12:"level1_ptags";s:0:"";s:12:"level2_ptags";s:0:"";s:12:"level3_ptags";s:0:"";s:12:"level4_ptags";s:0:"";s:12:"level0_posts";s:0:"";s:12:"level1_posts";s:25:"all-experts,all-questions";s:12:"level2_posts";s:0:"";s:12:"level3_posts";s:0:"";s:12:"level4_posts";s:0:"";s:12:"level0_pages";s:0:"";s:12:"level1_pages";s:0:"";s:12:"level2_pages";s:0:"";s:12:"level3_pages";s:0:"";s:12:"level4_pages";s:0:"";s:12:"specific_ids";s:0:"";s:22:"triggers_immediate_eot";s:17:"refunds,reversals";s:23:"membership_eot_behavior";s:6:"demote";s:21:"eot_time_ext_behavior";s:6:"extend";s:23:"auto_eot_system_enabled";s:1:"1";s:17:"eots_remove_ccaps";s:1:"1";s:14:"eot_grace_time";s:5:"86400";s:14:"wp_footer_code";s:0:"";}', 'yes'),
(162, 'ws_plugin__s2member_configured', '1', 'yes'),
(163, 'ws_plugin__s2member_activated_version', '130816', 'yes'),
(170, 'user_role_editor', 'a:3:{s:17:"ure_caps_readable";i:0;s:24:"ure_show_deprecated_caps";i:0;s:19:"ure_hide_pro_banner";i:0;}', 'yes'),
(171, 'wp_backup_user_roles', 'a:9:{s:13:"administrator";a:2:{s:4:"name";s:13:"Administrator";s:12:"capabilities";a:67:{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:22:"access_s2member_level0";b:1;s:22:"access_s2member_level1";b:1;s:22:"access_s2member_level2";b:1;s:22:"access_s2member_level3";b:1;s:22:"access_s2member_level4";b:1;}}s:6:"editor";a:2:{s:4:"name";s:6:"Editor";s:12:"capabilities";a:39:{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:22:"access_s2member_level0";b:1;s:22:"access_s2member_level1";b:1;s:22:"access_s2member_level2";b:1;s:22:"access_s2member_level3";b:1;s:22:"access_s2member_level4";b:1;}}s:6:"author";a:2:{s:4:"name";s:6:"Author";s:12:"capabilities";a:15:{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:22:"access_s2member_level0";b:1;s:22:"access_s2member_level1";b:1;s:22:"access_s2member_level2";b:1;s:22:"access_s2member_level3";b:1;s:22:"access_s2member_level4";b:1;}}s:11:"contributor";a:2:{s:4:"name";s:11:"Contributor";s:12:"capabilities";a:10:{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:22:"access_s2member_level0";b:1;s:22:"access_s2member_level1";b:1;s:22:"access_s2member_level2";b:1;s:22:"access_s2member_level3";b:1;s:22:"access_s2member_level4";b:1;}}s:10:"subscriber";a:2:{s:4:"name";s:10:"Subscriber";s:12:"capabilities";a:3:{s:4:"read";b:1;s:7:"level_0";b:1;s:22:"access_s2member_level0";b:1;}}s:15:"s2member_level1";a:2:{s:4:"name";s:16:"s2Member Level 1";s:12:"capabilities";a:4:{s:4:"read";b:1;s:7:"level_0";b:1;s:22:"access_s2member_level0";b:1;s:22:"access_s2member_level1";b:1;}}s:15:"s2member_level2";a:2:{s:4:"name";s:16:"s2Member Level 2";s:12:"capabilities";a:5:{s:4:"read";b:1;s:7:"level_0";b:1;s:22:"access_s2member_level0";b:1;s:22:"access_s2member_level1";b:1;s:22:"access_s2member_level2";b:1;}}s:15:"s2member_level3";a:2:{s:4:"name";s:16:"s2Member Level 3";s:12:"capabilities";a:6:{s:4:"read";b:1;s:7:"level_0";b:1;s:22:"access_s2member_level0";b:1;s:22:"access_s2member_level1";b:1;s:22:"access_s2member_level2";b:1;s:22:"access_s2member_level3";b:1;}}s:15:"s2member_level4";a:2:{s:4:"name";s:16:"s2Member Level 4";s:12:"capabilities";a:7:{s:4:"read";b:1;s:7:"level_0";b:1;s:22:"access_s2member_level0";b:1;s:22:"access_s2member_level1";b:1;s:22:"access_s2member_level2";b:1;s:22:"access_s2member_level3";b:1;s:22:"access_s2member_level4";b:1;}}}', 'no'),
(179, 'nav_menu_options', 'a:2:{i:0;b:0;s:8:"auto_add";a:0:{}}', 'yes'),
(190, 'go_pricing_tables', 'a:1:{s:13:"523e46f0a2673";a:31:{s:6:"uniqid";s:13:"523e46f0a2673";s:10:"table-name";s:6:"Prices";s:8:"table-id";s:6:"prices";s:19:"enlarge-current-chk";s:2:"on";s:15:"enlarge-current";s:1:"1";s:8:"colspace";s:14:"gw-go-space-5p";s:13:"tooltip-width";s:5:"130px";s:16:"tooltip-bg-color";s:7:"#d5eeb9";s:18:"tooltip-text-color";s:7:"#333333";s:13:"col-highlight";a:2:{i:0;s:1:"0";i:1;s:1:"0";}s:9:"col-style";a:2:{i:0;s:15:"blue11b_pricing";i:1;s:14:"red11b_pricing";}s:10:"col-shadow";a:2:{i:0;s:0:"";i:1;s:0:"";}s:10:"col-ribbon";a:2:{i:0;s:0:"";i:1;s:0:"";}s:23:"col-custom-ribbon-align";a:2:{i:0;s:4:"left";i:1;s:4:"left";}s:17:"col-custom-ribbon";a:2:{i:0;s:0:"";i:1;s:0:"";}s:9:"col-title";a:2:{i:0;s:4:"Free";i:1;s:7:"Premium";}s:9:"col-price";a:2:{i:0;s:2:"0$";i:1;s:3:"40$";}s:16:"col-pricing-html";a:2:{i:0;s:0:"";i:1;s:0:"";}s:15:"col-pricing-img";a:2:{i:0;s:0:"";i:1;s:0:"";}s:15:"col-pricing-css";a:2:{i:0;s:0:"";i:1;s:0:"";}s:11:"col-replace";a:2:{i:0;s:1:"0";i:1;s:1:"0";}s:8:"col-html";a:2:{i:0;s:0:"";i:1;s:0:"";}s:7:"col-css";a:2:{i:0;s:0:"";i:1;s:0:"";}s:9:"col-align";a:8:{i:0;s:0:"";i:1;s:0:"";i:2;s:0:"";i:3;s:0:"";i:4;s:0:"";i:5;s:0:"";i:6;s:0:"";i:7;s:0:"";}s:10:"col-detail";a:8:{i:0;s:63:"Free access to questionnaires based tests and application games";i:1;s:6:" ";i:2;s:6:" ";i:3;s:6:" ";i:4;s:62:"Access to all questionnaires based tests and application games";i:5;s:31:"Assistant support for questions";i:6;s:39:"Video interview via Skype with feedback";i:7;s:26:"View HR stats to questions";}s:14:"col-detail-tip";a:8:{i:0;s:0:"";i:1;s:0:"";i:2;s:0:"";i:3;s:0:"";i:4;s:0:"";i:5;s:0:"";i:6;s:0:"";i:7;s:0:"";}s:15:"col-button-size";a:2:{i:0;s:5:"large";i:1;s:5:"large";}s:15:"col-button-type";a:2:{i:0;s:6:"button";i:1;s:6:"submit";}s:15:"col-button-text";a:2:{i:0;s:11:"Sign up now";i:1;s:11:"Sign up now";}s:15:"col-button-link";a:2:{i:0;s:29:"/wp-login.php?action=register";i:1;s:267:"[s2Member-PayPal-Button level="1" ccaps="" desc="Bronze Member / description and pricing details here." ps="paypal" lc="" cc="USD" dg="0" ns="1" custom="chris.dev" ta="0" tp="0" tt="D" ra="39.95" rp="1" rt="L" rr="BN" rrt="" rra="1" image="default" output="button" /]";}s:17:"col-button-target";a:2:{i:0;s:1:"0";i:1;s:1:"0";}}}', 'yes'),
(198, 'category_children', 'a:0:{}', 'yes'),
(200, 'rg_gforms_disable_css', '0', 'yes'),
(201, 'rg_gforms_enable_html5', '1', 'yes'),
(202, 'gform_enable_noconflict', '0', 'yes'),
(203, 'rg_gforms_enable_akismet', '', 'yes'),
(204, 'rg_gforms_captcha_public_key', '', 'yes'),
(205, 'rg_gforms_captcha_private_key', '', 'yes'),
(206, 'rg_gforms_currency', 'USD', 'yes'),
(207, 'rg_gforms_message', '<!--GFM--><!-- unregistered copy notice -->\r\n<div style=\\"margin:10px 0 10px 0; border-bottom:1px solid #D7D7D7; text-align:center; display:block!important; visibility: visible!important; min-width:760px;\\"><a href=\\"http://www.gravityforms.com\\" target=\\"_blank\\"><img src=\\"http://gravityforms.s3.amazonaws.com/banners/gravity-forms-unregistered.png\\" width=\\"758\\" height=\\"52\\" alt=\\"unlicensed copy. please purchase a Gravity Forms license\\" /></a></div>\r\n<!-- end notice -->', 'yes'),
(216, 'wpProQuiz_dbVersion', '22', 'yes'),
(217, 'wpProQuiz_version', '0.28', 'yes'),
(228, 'mf_db_version', '3', 'yes'),
(229, '_transient_plugins_delete_result_1', '1', 'yes'),
(251, '_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a', '1379835022', 'yes'),
(252, '_site_transient_poptags_40cd750bba9870f18aada2478b24840a', 'a:40:{s:6:"widget";a:3:{s:4:"name";s:6:"widget";s:4:"slug";s:6:"widget";s:5:"count";s:4:"3898";}s:4:"post";a:3:{s:4:"name";s:4:"Post";s:4:"slug";s:4:"post";s:5:"count";s:4:"2456";}s:6:"plugin";a:3:{s:4:"name";s:6:"plugin";s:4:"slug";s:6:"plugin";s:5:"count";s:4:"2344";}s:5:"admin";a:3:{s:4:"name";s:5:"admin";s:4:"slug";s:5:"admin";s:5:"count";s:4:"1930";}s:5:"posts";a:3:{s:4:"name";s:5:"posts";s:4:"slug";s:5:"posts";s:5:"count";s:4:"1856";}s:7:"sidebar";a:3:{s:4:"name";s:7:"sidebar";s:4:"slug";s:7:"sidebar";s:5:"count";s:4:"1583";}s:7:"twitter";a:3:{s:4:"name";s:7:"twitter";s:4:"slug";s:7:"twitter";s:5:"count";s:4:"1329";}s:6:"google";a:3:{s:4:"name";s:6:"google";s:4:"slug";s:6:"google";s:5:"count";s:4:"1325";}s:8:"comments";a:3:{s:4:"name";s:8:"comments";s:4:"slug";s:8:"comments";s:5:"count";s:4:"1310";}s:6:"images";a:3:{s:4:"name";s:6:"images";s:4:"slug";s:6:"images";s:5:"count";s:4:"1260";}s:4:"page";a:3:{s:4:"name";s:4:"page";s:4:"slug";s:4:"page";s:5:"count";s:4:"1225";}s:5:"image";a:3:{s:4:"name";s:5:"image";s:4:"slug";s:5:"image";s:5:"count";s:4:"1121";}s:9:"shortcode";a:3:{s:4:"name";s:9:"shortcode";s:4:"slug";s:9:"shortcode";s:5:"count";s:4:"1000";}s:8:"facebook";a:3:{s:4:"name";s:8:"Facebook";s:4:"slug";s:8:"facebook";s:5:"count";s:3:"982";}s:5:"links";a:3:{s:4:"name";s:5:"links";s:4:"slug";s:5:"links";s:5:"count";s:3:"974";}s:3:"seo";a:3:{s:4:"name";s:3:"seo";s:4:"slug";s:3:"seo";s:5:"count";s:3:"950";}s:9:"wordpress";a:3:{s:4:"name";s:9:"wordpress";s:4:"slug";s:9:"wordpress";s:5:"count";s:3:"844";}s:7:"gallery";a:3:{s:4:"name";s:7:"gallery";s:4:"slug";s:7:"gallery";s:5:"count";s:3:"821";}s:6:"social";a:3:{s:4:"name";s:6:"social";s:4:"slug";s:6:"social";s:5:"count";s:3:"780";}s:3:"rss";a:3:{s:4:"name";s:3:"rss";s:4:"slug";s:3:"rss";s:5:"count";s:3:"722";}s:7:"widgets";a:3:{s:4:"name";s:7:"widgets";s:4:"slug";s:7:"widgets";s:5:"count";s:3:"686";}s:6:"jquery";a:3:{s:4:"name";s:6:"jquery";s:4:"slug";s:6:"jquery";s:5:"count";s:3:"681";}s:5:"pages";a:3:{s:4:"name";s:5:"pages";s:4:"slug";s:5:"pages";s:5:"count";s:3:"678";}s:5:"email";a:3:{s:4:"name";s:5:"email";s:4:"slug";s:5:"email";s:5:"count";s:3:"623";}s:4:"ajax";a:3:{s:4:"name";s:4:"AJAX";s:4:"slug";s:4:"ajax";s:5:"count";s:3:"615";}s:5:"media";a:3:{s:4:"name";s:5:"media";s:4:"slug";s:5:"media";s:5:"count";s:3:"595";}s:10:"javascript";a:3:{s:4:"name";s:10:"javascript";s:4:"slug";s:10:"javascript";s:5:"count";s:3:"572";}s:5:"video";a:3:{s:4:"name";s:5:"video";s:4:"slug";s:5:"video";s:5:"count";s:3:"570";}s:10:"buddypress";a:3:{s:4:"name";s:10:"buddypress";s:4:"slug";s:10:"buddypress";s:5:"count";s:3:"541";}s:4:"feed";a:3:{s:4:"name";s:4:"feed";s:4:"slug";s:4:"feed";s:5:"count";s:3:"539";}s:7:"content";a:3:{s:4:"name";s:7:"content";s:4:"slug";s:7:"content";s:5:"count";s:3:"530";}s:5:"photo";a:3:{s:4:"name";s:5:"photo";s:4:"slug";s:5:"photo";s:5:"count";s:3:"522";}s:4:"link";a:3:{s:4:"name";s:4:"link";s:4:"slug";s:4:"link";s:5:"count";s:3:"506";}s:6:"photos";a:3:{s:4:"name";s:6:"photos";s:4:"slug";s:6:"photos";s:5:"count";s:3:"505";}s:5:"login";a:3:{s:4:"name";s:5:"login";s:4:"slug";s:5:"login";s:5:"count";s:3:"471";}s:4:"spam";a:3:{s:4:"name";s:4:"spam";s:4:"slug";s:4:"spam";s:5:"count";s:3:"458";}s:5:"stats";a:3:{s:4:"name";s:5:"stats";s:4:"slug";s:5:"stats";s:5:"count";s:3:"453";}s:8:"category";a:3:{s:4:"name";s:8:"category";s:4:"slug";s:8:"category";s:5:"count";s:3:"452";}s:7:"youtube";a:3:{s:4:"name";s:7:"youtube";s:4:"slug";s:7:"youtube";s:5:"count";s:3:"436";}s:7:"comment";a:3:{s:4:"name";s:7:"comment";s:4:"slug";s:7:"comment";s:5:"count";s:3:"432";}}', 'yes'),
(269, '_site_transient_update_plugins', 'O:8:"stdClass":3:{s:12:"last_checked";i:1379827560;s:7:"checked";a:15:{s:19:"akismet/akismet.php";s:5:"2.5.9";s:59:"force-regenerate-thumbnails/force-regenerate-thumbnails.php";s:3:"1.3";s:25:"go_pricing/go_pricing.php";s:3:"2.1";s:29:"gravityforms/gravityforms.php";s:5:"1.7.8";s:58:"gravity-forms-css-ready-selector/gf-readyclasses-addon.php";s:3:"1.1";s:23:"magic-fields-2/main.php";s:3:"2.2";s:47:"really-simple-captcha/really-simple-captcha.php";s:3:"1.7";s:21:"s2member/s2member.php";s:6:"130816";s:26:"fatpanda-singly/plugin.php";s:3:"0.1";s:23:"user-meta/user-meta.php";s:5:"1.1.4";s:37:"user-role-editor/user-role-editor.php";s:5:"4.5.1";s:51:"visual-biography-editor/visual-editor-biography.php";s:3:"1.4";s:24:"wordpress-seo/wp-seo.php";s:6:"1.4.18";s:27:"wp-pro-quiz/wp-pro-quiz.php";s:4:"0.28";s:51:"wp-survey-and-quiz-tool/wp-survey-and-quiz-tool.php";s:6:"2.13.1";}s:8:"response";a:0:{}}', 'yes');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(276, 'rewrite_rules', 'a:126:{s:19:"sitemap_index\\.xml$";s:19:"index.php?sitemap=1";s:31:"([^/]+?)-sitemap([0-9]+)?\\.xml$";s:51:"index.php?sitemap=$matches[1]&sitemap_n=$matches[2]";s:14:"sitemap\\.xslt$";s:16:"index.php?xslt=1";s:24:"([a-z]+)?-?sitemap\\.xsl$";s:25:"index.php?xsl=$matches[1]";s:47:"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$";s:52:"index.php?category_name=$matches[1]&feed=$matches[2]";s:42:"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$";s:52:"index.php?category_name=$matches[1]&feed=$matches[2]";s:35:"category/(.+?)/page/?([0-9]{1,})/?$";s:53:"index.php?category_name=$matches[1]&paged=$matches[2]";s:17:"category/(.+?)/?$";s:35:"index.php?category_name=$matches[1]";s:44:"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?tag=$matches[1]&feed=$matches[2]";s:39:"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?tag=$matches[1]&feed=$matches[2]";s:32:"tag/([^/]+)/page/?([0-9]{1,})/?$";s:43:"index.php?tag=$matches[1]&paged=$matches[2]";s:14:"tag/([^/]+)/?$";s:25:"index.php?tag=$matches[1]";s:45:"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?post_format=$matches[1]&feed=$matches[2]";s:40:"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?post_format=$matches[1]&feed=$matches[2]";s:33:"type/([^/]+)/page/?([0-9]{1,})/?$";s:51:"index.php?post_format=$matches[1]&paged=$matches[2]";s:15:"type/([^/]+)/?$";s:33:"index.php?post_format=$matches[1]";s:34:"expert/[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:44:"expert/[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:64:"expert/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:59:"expert/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:59:"expert/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:27:"expert/([^/]+)/trackback/?$";s:33:"index.php?expert=$matches[1]&tb=1";s:47:"expert/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:45:"index.php?expert=$matches[1]&feed=$matches[2]";s:42:"expert/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:45:"index.php?expert=$matches[1]&feed=$matches[2]";s:35:"expert/([^/]+)/page/?([0-9]{1,})/?$";s:46:"index.php?expert=$matches[1]&paged=$matches[2]";s:42:"expert/([^/]+)/comment-page-([0-9]{1,})/?$";s:46:"index.php?expert=$matches[1]&cpage=$matches[2]";s:27:"expert/([^/]+)(/[0-9]+)?/?$";s:45:"index.php?expert=$matches[1]&page=$matches[2]";s:23:"expert/[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:33:"expert/[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:53:"expert/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:48:"expert/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:48:"expert/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:36:"question/[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:46:"question/[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:66:"question/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:61:"question/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:61:"question/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:29:"question/([^/]+)/trackback/?$";s:35:"index.php?question=$matches[1]&tb=1";s:49:"question/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:47:"index.php?question=$matches[1]&feed=$matches[2]";s:44:"question/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:47:"index.php?question=$matches[1]&feed=$matches[2]";s:37:"question/([^/]+)/page/?([0-9]{1,})/?$";s:48:"index.php?question=$matches[1]&paged=$matches[2]";s:44:"question/([^/]+)/comment-page-([0-9]{1,})/?$";s:48:"index.php?question=$matches[1]&cpage=$matches[2]";s:29:"question/([^/]+)(/[0-9]+)?/?$";s:47:"index.php?question=$matches[1]&page=$matches[2]";s:25:"question/[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:35:"question/[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:55:"question/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:50:"question/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:50:"question/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:35:"service/[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:45:"service/[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:65:"service/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:60:"service/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:60:"service/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:28:"service/([^/]+)/trackback/?$";s:34:"index.php?service=$matches[1]&tb=1";s:48:"service/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:46:"index.php?service=$matches[1]&feed=$matches[2]";s:43:"service/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:46:"index.php?service=$matches[1]&feed=$matches[2]";s:36:"service/([^/]+)/page/?([0-9]{1,})/?$";s:47:"index.php?service=$matches[1]&paged=$matches[2]";s:43:"service/([^/]+)/comment-page-([0-9]{1,})/?$";s:47:"index.php?service=$matches[1]&cpage=$matches[2]";s:28:"service/([^/]+)(/[0-9]+)?/?$";s:46:"index.php?service=$matches[1]&page=$matches[2]";s:24:"service/[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:34:"service/[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:54:"service/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:49:"service/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:49:"service/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:12:"robots\\.txt$";s:18:"index.php?robots=1";s:48:".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$";s:18:"index.php?feed=old";s:20:".*wp-app\\.php(/.*)?$";s:19:"index.php?error=403";s:18:".*wp-register.php$";s:23:"index.php?register=true";s:32:"feed/(feed|rdf|rss|rss2|atom)/?$";s:27:"index.php?&feed=$matches[1]";s:27:"(feed|rdf|rss|rss2|atom)/?$";s:27:"index.php?&feed=$matches[1]";s:20:"page/?([0-9]{1,})/?$";s:28:"index.php?&paged=$matches[1]";s:27:"comment-page-([0-9]{1,})/?$";s:39:"index.php?&page_id=13&cpage=$matches[1]";s:41:"comments/feed/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?&feed=$matches[1]&withcomments=1";s:36:"comments/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?&feed=$matches[1]&withcomments=1";s:44:"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:40:"index.php?s=$matches[1]&feed=$matches[2]";s:39:"search/(.+)/(feed|rdf|rss|rss2|atom)/?$";s:40:"index.php?s=$matches[1]&feed=$matches[2]";s:32:"search/(.+)/page/?([0-9]{1,})/?$";s:41:"index.php?s=$matches[1]&paged=$matches[2]";s:14:"search/(.+)/?$";s:23:"index.php?s=$matches[1]";s:47:"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?author_name=$matches[1]&feed=$matches[2]";s:42:"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?author_name=$matches[1]&feed=$matches[2]";s:35:"author/([^/]+)/page/?([0-9]{1,})/?$";s:51:"index.php?author_name=$matches[1]&paged=$matches[2]";s:17:"author/([^/]+)/?$";s:33:"index.php?author_name=$matches[1]";s:69:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$";s:80:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]";s:64:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$";s:80:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]";s:57:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$";s:81:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]";s:39:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$";s:63:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]";s:56:"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$";s:64:"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]";s:51:"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$";s:64:"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]";s:44:"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$";s:65:"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]";s:26:"([0-9]{4})/([0-9]{1,2})/?$";s:47:"index.php?year=$matches[1]&monthnum=$matches[2]";s:43:"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$";s:43:"index.php?year=$matches[1]&feed=$matches[2]";s:38:"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$";s:43:"index.php?year=$matches[1]&feed=$matches[2]";s:31:"([0-9]{4})/page/?([0-9]{1,})/?$";s:44:"index.php?year=$matches[1]&paged=$matches[2]";s:13:"([0-9]{4})/?$";s:26:"index.php?year=$matches[1]";s:27:".?.+?/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:37:".?.+?/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:57:".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:52:".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:52:".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:20:"(.?.+?)/trackback/?$";s:35:"index.php?pagename=$matches[1]&tb=1";s:40:"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$";s:47:"index.php?pagename=$matches[1]&feed=$matches[2]";s:35:"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$";s:47:"index.php?pagename=$matches[1]&feed=$matches[2]";s:28:"(.?.+?)/page/?([0-9]{1,})/?$";s:48:"index.php?pagename=$matches[1]&paged=$matches[2]";s:35:"(.?.+?)/comment-page-([0-9]{1,})/?$";s:48:"index.php?pagename=$matches[1]&cpage=$matches[2]";s:20:"(.?.+?)(/[0-9]+)?/?$";s:47:"index.php?pagename=$matches[1]&page=$matches[2]";s:31:".+?/[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:41:".+?/[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:61:".+?/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:56:".+?/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:56:".+?/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:26:"(.+?)/([^/]+)/trackback/?$";s:57:"index.php?category_name=$matches[1]&name=$matches[2]&tb=1";s:46:"(.+?)/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:69:"index.php?category_name=$matches[1]&name=$matches[2]&feed=$matches[3]";s:41:"(.+?)/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:69:"index.php?category_name=$matches[1]&name=$matches[2]&feed=$matches[3]";s:34:"(.+?)/([^/]+)/page/?([0-9]{1,})/?$";s:70:"index.php?category_name=$matches[1]&name=$matches[2]&paged=$matches[3]";s:41:"(.+?)/([^/]+)/comment-page-([0-9]{1,})/?$";s:70:"index.php?category_name=$matches[1]&name=$matches[2]&cpage=$matches[3]";s:26:"(.+?)/([^/]+)(/[0-9]+)?/?$";s:69:"index.php?category_name=$matches[1]&name=$matches[2]&page=$matches[3]";s:20:".+?/[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:30:".+?/[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:50:".+?/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:45:".+?/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:45:".+?/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:38:"(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$";s:52:"index.php?category_name=$matches[1]&feed=$matches[2]";s:33:"(.+?)/(feed|rdf|rss|rss2|atom)/?$";s:52:"index.php?category_name=$matches[1]&feed=$matches[2]";s:26:"(.+?)/page/?([0-9]{1,})/?$";s:53:"index.php?category_name=$matches[1]&paged=$matches[2]";s:33:"(.+?)/comment-page-([0-9]{1,})/?$";s:53:"index.php?category_name=$matches[1]&cpage=$matches[2]";s:8:"(.+?)/?$";s:35:"index.php?category_name=$matches[1]";}', 'yes'),
(292, '_site_transient_timeout_theme_roots', '1379836775', 'yes'),
(293, '_site_transient_theme_roots', 'a:1:{s:5:"chris";s:7:"/themes";}', 'yes');
-- --------------------------------------------------------
--
-- Table structure for table `wp_postmeta`
--
CREATE TABLE IF NOT EXISTS `wp_postmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`meta_id`),
KEY `post_id` (`post_id`),
KEY `meta_key` (`meta_key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=759 ;
--
-- Dumping data for table `wp_postmeta`
--
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1, 2, '_wp_page_template', 'default'),
(2, 4, '_yoast_wpseo_linkdex', '0'),
(3, 4, '_edit_last', '1'),
(4, 4, '_edit_lock', '1379829837:1'),
(5, 4, '_yoast_wpseo_focuskw', ''),
(6, 4, '_yoast_wpseo_title', ''),
(7, 4, '_yoast_wpseo_metadesc', ''),
(8, 4, '_yoast_wpseo_meta-robots-noindex', '0'),
(9, 4, '_yoast_wpseo_meta-robots-nofollow', '0'),
(10, 4, '_yoast_wpseo_meta-robots-adv', 'none'),
(11, 4, '_yoast_wpseo_sitemap-include', '-'),
(12, 4, '_yoast_wpseo_sitemap-prio', '-'),
(13, 4, '_yoast_wpseo_sitemap-html-include', '-'),
(14, 4, '_yoast_wpseo_canonical', ''),
(15, 4, '_yoast_wpseo_redirect', ''),
(16, 4, '_yoast_wpseo_opengraph-description', ''),
(17, 4, '_yoast_wpseo_google-plus-description', ''),
(18, 6, '_yoast_wpseo_linkdex', '0'),
(19, 2, '_yoast_wpseo_linkdex', '0'),
(20, 9, '_yoast_wpseo_linkdex', '0'),
(21, 9, '_edit_last', '1'),
(22, 9, '_edit_lock', '1379831045:1'),
(23, 9, '_yoast_wpseo_focuskw', ''),
(24, 9, '_yoast_wpseo_title', ''),
(25, 9, '_yoast_wpseo_metadesc', ''),
(26, 9, '_yoast_wpseo_meta-robots-noindex', '0'),
(27, 9, '_yoast_wpseo_meta-robots-nofollow', '0'),
(28, 9, '_yoast_wpseo_meta-robots-adv', 'none'),
(29, 9, '_yoast_wpseo_sitemap-include', '-'),
(30, 9, '_yoast_wpseo_sitemap-prio', '-'),
(31, 9, '_yoast_wpseo_sitemap-html-include', '-'),
(32, 9, '_yoast_wpseo_canonical', ''),
(33, 9, '_yoast_wpseo_redirect', ''),
(34, 9, '_yoast_wpseo_opengraph-description', ''),
(35, 9, '_yoast_wpseo_google-plus-description', ''),
(36, 2, '_wp_trash_meta_status', 'publish'),
(37, 2, '_wp_trash_meta_time', '1379811646'),
(38, 13, '_yoast_wpseo_linkdex', '0'),
(39, 13, '_edit_last', '1'),
(40, 13, '_yoast_wpseo_focuskw', ''),
(41, 13, '_yoast_wpseo_title', ''),
(42, 13, '_yoast_wpseo_metadesc', ''),
(43, 13, '_yoast_wpseo_meta-robots-noindex', '0'),
(44, 13, '_yoast_wpseo_meta-robots-nofollow', '0'),
(45, 13, '_yoast_wpseo_meta-robots-adv', 'none'),
(46, 13, '_yoast_wpseo_sitemap-include', '-'),
(47, 13, '_yoast_wpseo_sitemap-prio', '-'),
(48, 13, '_yoast_wpseo_sitemap-html-include', '-'),
(49, 13, '_yoast_wpseo_canonical', ''),
(50, 13, '_yoast_wpseo_redirect', ''),
(51, 13, '_yoast_wpseo_opengraph-description', ''),
(52, 13, '_yoast_wpseo_google-plus-description', ''),
(53, 13, '_edit_lock', '1379841220:1'),
(63, 16, '_yoast_wpseo_linkdex', '0'),
(64, 16, '_edit_last', '1'),
(65, 16, '_yoast_wpseo_focuskw', ''),
(66, 16, '_yoast_wpseo_title', ''),
(67, 16, '_yoast_wpseo_metadesc', ''),
(68, 16, '_yoast_wpseo_meta-robots-noindex', '0'),
(69, 16, '_yoast_wpseo_meta-robots-nofollow', '0'),
(70, 16, '_yoast_wpseo_meta-robots-adv', 'none'),
(71, 16, '_yoast_wpseo_sitemap-include', '-'),
(72, 16, '_yoast_wpseo_sitemap-prio', '-'),
(73, 16, '_yoast_wpseo_sitemap-html-include', '-'),
(74, 16, '_yoast_wpseo_canonical', ''),
(75, 16, '_yoast_wpseo_redirect', ''),
(76, 16, '_yoast_wpseo_opengraph-description', ''),
(77, 16, '_yoast_wpseo_google-plus-description', ''),
(78, 16, '_edit_lock', '1379837096:1'),
(79, 18, '_yoast_wpseo_linkdex', '0'),
(80, 18, '_edit_last', '1'),
(81, 18, '_yoast_wpseo_focuskw', ''),
(82, 18, '_yoast_wpseo_title', ''),
(83, 18, '_yoast_wpseo_metadesc', ''),
(84, 18, '_yoast_wpseo_meta-robots-noindex', '0'),
(85, 18, '_yoast_wpseo_meta-robots-nofollow', '0'),
(86, 18, '_yoast_wpseo_meta-robots-adv', 'none'),
(87, 18, '_yoast_wpseo_sitemap-include', '-'),
(88, 18, '_yoast_wpseo_sitemap-prio', '-'),
(89, 18, '_yoast_wpseo_sitemap-html-include', '-'),
(90, 18, '_yoast_wpseo_canonical', ''),
(91, 18, '_yoast_wpseo_redirect', ''),
(92, 18, '_yoast_wpseo_opengraph-description', ''),
(93, 18, '_yoast_wpseo_google-plus-description', ''),
(94, 18, '_edit_lock', '1379815457:1'),
(116, 24, '_menu_item_type', 'post_type'),
(117, 24, '_menu_item_menu_item_parent', '0'),
(118, 24, '_menu_item_object_id', '18'),
(119, 24, '_menu_item_object', 'page'),
(120, 24, '_menu_item_target', ''),
(121, 24, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(122, 24, '_menu_item_xfn', ''),
(123, 24, '_menu_item_url', ''),
(125, 25, '_menu_item_type', 'post_type'),
(126, 25, '_menu_item_menu_item_parent', '0'),
(127, 25, '_menu_item_object_id', '9'),
(128, 25, '_menu_item_object', 'page'),
(129, 25, '_menu_item_target', ''),
(130, 25, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(131, 25, '_menu_item_xfn', ''),
(132, 25, '_menu_item_url', ''),
(134, 26, '_menu_item_type', 'post_type'),
(135, 26, '_menu_item_menu_item_parent', '0'),
(136, 26, '_menu_item_object_id', '16'),
(137, 26, '_menu_item_object', 'page'),
(138, 26, '_menu_item_target', ''),
(139, 26, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(140, 26, '_menu_item_xfn', ''),
(141, 26, '_menu_item_url', ''),
(143, 29, '_yoast_wpseo_linkdex', '0'),
(144, 29, '_edit_last', '1'),
(145, 29, '_yoast_wpseo_focuskw', ''),
(146, 29, '_yoast_wpseo_title', ''),
(147, 29, '_yoast_wpseo_metadesc', ''),
(148, 29, '_yoast_wpseo_meta-robots-noindex', '0'),
(149, 29, '_yoast_wpseo_meta-robots-nofollow', '0'),
(150, 29, '_yoast_wpseo_meta-robots-adv', 'none'),
(151, 29, '_yoast_wpseo_sitemap-include', '-'),
(152, 29, '_yoast_wpseo_sitemap-prio', '-'),
(153, 29, '_yoast_wpseo_sitemap-html-include', '-'),
(154, 29, '_yoast_wpseo_canonical', ''),
(155, 29, '_yoast_wpseo_redirect', ''),
(156, 29, '_yoast_wpseo_opengraph-description', ''),
(157, 29, '_yoast_wpseo_google-plus-description', ''),
(158, 29, '_edit_lock', '1379834379:1'),
(159, 32, '_yoast_wpseo_linkdex', '0'),
(160, 33, '_yoast_wpseo_linkdex', '0'),
(161, 32, '_edit_last', '1'),
(162, 32, '_edit_lock', '1379828143:1'),
(163, 34, '_wp_attached_file', '2013/09/118667978_zuckerber_387472c.jpg'),
(164, 34, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:620;s:6:"height";i:413;s:4:"file";s:39:"2013/09/118667978_zuckerber_387472c.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:39:"118667978_zuckerber_387472c-250x250.jpg";s:5:"width";i:250;s:6:"height";i:250;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:39:"118667978_zuckerber_387472c-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:10:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";}}'),
(165, 32, '_thumbnail_id', '34'),
(166, 32, '_yoast_wpseo_focuskw', ''),
(167, 32, '_yoast_wpseo_title', ''),
(168, 32, '_yoast_wpseo_metadesc', ''),
(169, 32, '_yoast_wpseo_meta-robots-noindex', '0'),
(170, 32, '_yoast_wpseo_meta-robots-nofollow', '0'),
(171, 32, '_yoast_wpseo_meta-robots-adv', 'none'),
(172, 32, '_yoast_wpseo_sitemap-include', '-'),
(173, 32, '_yoast_wpseo_sitemap-prio', '-'),
(174, 32, '_yoast_wpseo_sitemap-html-include', '-'),
(175, 32, '_yoast_wpseo_canonical', ''),
(176, 32, '_yoast_wpseo_redirect', ''),
(177, 32, '_yoast_wpseo_opengraph-description', ''),
(178, 32, '_yoast_wpseo_google-plus-description', ''),
(179, 35, '_yoast_wpseo_linkdex', '0'),
(180, 35, '_edit_last', '1'),
(181, 35, '_edit_lock', '1379825104:1'),
(182, 36, '_wp_attached_file', '2013/09/Dts_news_bill_gates_wikipedia.jpg'),
(183, 36, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:500;s:6:"height";i:718;s:4:"file";s:41:"2013/09/Dts_news_bill_gates_wikipedia.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:41:"Dts_news_bill_gates_wikipedia-250x250.jpg";s:5:"width";i:250;s:6:"height";i:250;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:41:"Dts_news_bill_gates_wikipedia-208x300.jpg";s:5:"width";i:208;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:10:{s:8:"aperture";d:1.8000000000000000444089209850062616169452667236328125;s:6:"credit";s:8:"dts News";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1359457172;s:9:"copyright";s:0:"";s:12:"focal_length";s:2:"85";s:3:"iso";s:3:"320";s:13:"shutter_speed";s:4:"0.01";s:5:"title";s:0:"";}}'),
(184, 35, '_thumbnail_id', '36'),
(186, 32, 'expert_linkedin', 'http://www.linkedin.com/pub/mark-zuckerberg/46/895/358'),
(189, 35, '_yoast_wpseo_focuskw', ''),
(190, 35, '_yoast_wpseo_title', ''),
(191, 35, '_yoast_wpseo_metadesc', ''),
(192, 35, '_yoast_wpseo_meta-robots-noindex', '0'),
(193, 35, '_yoast_wpseo_meta-robots-nofollow', '0'),
(194, 35, '_yoast_wpseo_meta-robots-adv', 'none'),
(195, 35, '_yoast_wpseo_sitemap-include', '-'),
(196, 35, '_yoast_wpseo_sitemap-prio', '-'),
(197, 35, '_yoast_wpseo_sitemap-html-include', '-'),
(198, 35, '_yoast_wpseo_canonical', ''),
(199, 35, '_yoast_wpseo_redirect', ''),
(200, 35, '_yoast_wpseo_opengraph-description', ''),
(201, 35, '_yoast_wpseo_google-plus-description', ''),
(202, 37, '_yoast_wpseo_linkdex', '0'),
(203, 37, '_edit_last', '1'),
(204, 37, '_edit_lock', '1379840415:1'),
(205, 38, '_wp_attached_file', '2013/09/some_random_guy_im_not_associated_with__by_agentplay-d5b870k.jpg'),
(206, 38, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1032;s:6:"height";i:774;s:4:"file";s:72:"2013/09/some_random_guy_im_not_associated_with__by_agentplay-d5b870k.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:72:"some_random_guy_im_not_associated_with__by_agentplay-d5b870k-250x250.jpg";s:5:"width";i:250;s:6:"height";i:250;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:72:"some_random_guy_im_not_associated_with__by_agentplay-d5b870k-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:73:"some_random_guy_im_not_associated_with__by_agentplay-d5b870k-1024x768.jpg";s:5:"width";i:1024;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:10:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";}}'),
(210, 37, '_yoast_wpseo_focuskw', ''),
(211, 37, '_yoast_wpseo_title', ''),
(212, 37, '_yoast_wpseo_metadesc', ''),
(213, 37, '_yoast_wpseo_meta-robots-noindex', '0'),
(214, 37, '_yoast_wpseo_meta-robots-nofollow', '0'),
(215, 37, '_yoast_wpseo_meta-robots-adv', 'none'),
(216, 37, '_yoast_wpseo_sitemap-include', '-'),
(217, 37, '_yoast_wpseo_sitemap-prio', '-'),
(218, 37, '_yoast_wpseo_sitemap-html-include', '-'),
(219, 37, '_yoast_wpseo_canonical', ''),
(220, 37, '_yoast_wpseo_redirect', ''),
(221, 37, '_yoast_wpseo_opengraph-description', ''),
(222, 37, '_yoast_wpseo_google-plus-description', ''),
(223, 39, '_yoast_wpseo_linkdex', '0'),
(224, 40, '_yoast_wpseo_linkdex', '0'),
(225, 41, '_yoast_wpseo_linkdex', '0'),
(226, 42, '_yoast_wpseo_linkdex', '0'),
(227, 43, '_yoast_wpseo_linkdex', '0'),
(228, 44, '_yoast_wpseo_linkdex', '0'),
(229, 45, '_yoast_wpseo_linkdex', '0'),
(230, 46, '_yoast_wpseo_linkdex', '0'),
(231, 47, '_yoast_wpseo_linkdex', '0'),
(232, 48, '_yoast_wpseo_linkdex', '0'),
(233, 49, '_yoast_wpseo_linkdex', '0'),
(234, 50, '_yoast_wpseo_linkdex', '0'),
(235, 51, '_yoast_wpseo_linkdex', '0'),
(236, 52, '_yoast_wpseo_linkdex', '0'),
(237, 53, '_yoast_wpseo_linkdex', '0'),
(238, 54, '_yoast_wpseo_linkdex', '0'),
(239, 55, '_yoast_wpseo_linkdex', '0'),
(240, 56, '_yoast_wpseo_linkdex', '0'),
(241, 57, '_yoast_wpseo_linkdex', '0'),
(242, 58, '_yoast_wpseo_linkdex', '0'),
(243, 59, '_yoast_wpseo_linkdex', '0'),
(244, 60, '_yoast_wpseo_linkdex', '0'),
(245, 61, '_yoast_wpseo_linkdex', '0'),
(246, 62, '_yoast_wpseo_linkdex', '0'),
(247, 63, '_yoast_wpseo_linkdex', '0'),
(248, 64, '_yoast_wpseo_linkdex', '0'),
(249, 65, '_yoast_wpseo_linkdex', '0'),
(250, 66, '_yoast_wpseo_linkdex', '0'),
(251, 67, '_yoast_wpseo_linkdex', '0'),
(252, 68, '_yoast_wpseo_linkdex', '0'),
(253, 69, '_yoast_wpseo_linkdex', '0'),
(254, 70, '_yoast_wpseo_linkdex', '0'),
(255, 71, '_yoast_wpseo_linkdex', '0'),
(256, 72, '_yoast_wpseo_linkdex', '0'),
(257, 73, '_yoast_wpseo_linkdex', '0'),
(258, 74, '_yoast_wpseo_linkdex', '0'),
(259, 75, '_yoast_wpseo_linkdex', '0'),
(260, 76, '_yoast_wpseo_linkdex', '0'),
(261, 77, '_yoast_wpseo_linkdex', '0'),
(262, 78, '_yoast_wpseo_linkdex', '0'),
(263, 79, '_yoast_wpseo_linkdex', '0'),
(264, 80, '_yoast_wpseo_linkdex', '0'),
(265, 81, '_yoast_wpseo_linkdex', '0'),
(266, 82, '_yoast_wpseo_linkdex', '0'),
(267, 83, '_yoast_wpseo_linkdex', '0'),
(268, 84, '_yoast_wpseo_linkdex', '0'),
(269, 85, '_yoast_wpseo_linkdex', '0'),
(270, 86, '_yoast_wpseo_linkdex', '0'),
(271, 87, '_yoast_wpseo_linkdex', '0'),
(272, 88, '_yoast_wpseo_linkdex', '0'),
(273, 89, '_yoast_wpseo_linkdex', '0'),
(274, 90, '_yoast_wpseo_linkdex', '0'),
(275, 91, '_yoast_wpseo_linkdex', '0'),
(276, 92, '_yoast_wpseo_linkdex', '0'),
(277, 93, '_yoast_wpseo_linkdex', '0'),
(278, 94, '_yoast_wpseo_linkdex', '0'),
(279, 95, '_yoast_wpseo_linkdex', '0'),
(280, 96, '_yoast_wpseo_linkdex', '0'),
(281, 97, '_yoast_wpseo_linkdex', '0'),
(282, 98, '_yoast_wpseo_linkdex', '0'),
(283, 99, '_yoast_wpseo_linkdex', '0'),
(284, 100, '_yoast_wpseo_linkdex', '0'),
(285, 101, '_yoast_wpseo_linkdex', '0'),
(286, 102, '_yoast_wpseo_linkdex', '0'),
(287, 103, '_yoast_wpseo_linkdex', '0'),
(288, 104, '_yoast_wpseo_linkdex', '0'),
(289, 105, '_yoast_wpseo_linkdex', '0'),
(290, 106, '_yoast_wpseo_linkdex', '0'),
(291, 107, '_yoast_wpseo_linkdex', '0'),
(292, 108, '_yoast_wpseo_linkdex', '0'),
(293, 109, '_yoast_wpseo_linkdex', '0'),
(294, 110, '_yoast_wpseo_linkdex', '0'),
(295, 111, '_yoast_wpseo_linkdex', '0'),
(296, 112, '_yoast_wpseo_linkdex', '0'),
(297, 113, '_yoast_wpseo_linkdex', '0'),
(298, 114, '_yoast_wpseo_linkdex', '0'),
(299, 115, '_yoast_wpseo_linkdex', '0'),
(300, 116, '_yoast_wpseo_linkdex', '0'),
(301, 117, '_yoast_wpseo_linkdex', '0'),
(302, 118, '_yoast_wpseo_linkdex', '0'),
(303, 119, '_yoast_wpseo_linkdex', '0'),
(304, 120, '_yoast_wpseo_linkdex', '0'),
(305, 121, '_yoast_wpseo_linkdex', '0'),
(306, 122, '_yoast_wpseo_linkdex', '0'),
(307, 123, '_yoast_wpseo_linkdex', '0'),
(308, 124, '_yoast_wpseo_linkdex', '0'),
(309, 125, '_yoast_wpseo_linkdex', '0'),
(310, 126, '_yoast_wpseo_linkdex', '0'),
(311, 127, '_yoast_wpseo_linkdex', '0'),
(312, 128, '_yoast_wpseo_linkdex', '0'),
(313, 129, '_yoast_wpseo_linkdex', '0'),
(314, 130, '_yoast_wpseo_linkdex', '0'),
(315, 131, '_yoast_wpseo_linkdex', '0'),
(316, 132, '_yoast_wpseo_linkdex', '0'),
(317, 133, '_yoast_wpseo_linkdex', '0'),
(318, 134, '_yoast_wpseo_linkdex', '0'),
(319, 135, '_yoast_wpseo_linkdex', '0'),
(320, 136, '_yoast_wpseo_linkdex', '0'),
(321, 137, '_yoast_wpseo_linkdex', '0'),
(322, 138, '_yoast_wpseo_linkdex', '0'),
(323, 139, '_yoast_wpseo_linkdex', '0'),
(324, 140, '_yoast_wpseo_linkdex', '0'),
(325, 141, '_yoast_wpseo_linkdex', '0'),
(326, 142, '_yoast_wpseo_linkdex', '0'),
(327, 143, '_yoast_wpseo_linkdex', '0'),
(328, 144, '_yoast_wpseo_linkdex', '0'),
(329, 145, '_yoast_wpseo_linkdex', '0'),
(330, 146, '_yoast_wpseo_linkdex', '0'),
(331, 147, '_yoast_wpseo_linkdex', '0'),
(332, 148, '_yoast_wpseo_linkdex', '0'),
(333, 149, '_yoast_wpseo_linkdex', '0'),
(334, 150, '_yoast_wpseo_linkdex', '0'),
(335, 151, '_yoast_wpseo_linkdex', '0'),
(336, 152, '_yoast_wpseo_linkdex', '0'),
(337, 153, '_yoast_wpseo_linkdex', '0'),
(338, 1, '_yoast_wpseo_linkdex', '0'),
(339, 154, '_yoast_wpseo_linkdex', '0'),
(340, 155, '_yoast_wpseo_linkdex', '0'),
(341, 156, '_yoast_wpseo_linkdex', '0'),
(342, 157, '_yoast_wpseo_linkdex', '0'),
(343, 158, '_yoast_wpseo_linkdex', '0'),
(344, 159, '_yoast_wpseo_linkdex', '0'),
(345, 160, '_yoast_wpseo_linkdex', '0'),
(346, 161, '_yoast_wpseo_linkdex', '0'),
(347, 162, '_yoast_wpseo_linkdex', '0'),
(348, 163, '_yoast_wpseo_linkdex', '0'),
(349, 164, '_yoast_wpseo_linkdex', '0'),
(350, 165, '_yoast_wpseo_linkdex', '0'),
(351, 166, '_yoast_wpseo_linkdex', '0'),
(352, 167, '_yoast_wpseo_linkdex', '0'),
(353, 168, '_yoast_wpseo_linkdex', '0'),
(354, 169, '_yoast_wpseo_linkdex', '0'),
(355, 170, '_yoast_wpseo_linkdex', '0'),
(356, 171, '_yoast_wpseo_linkdex', '0'),
(357, 172, '_yoast_wpseo_linkdex', '0'),
(358, 173, '_yoast_wpseo_linkdex', '0'),
(359, 174, '_yoast_wpseo_linkdex', '0'),
(360, 175, '_yoast_wpseo_linkdex', '0'),
(361, 176, '_yoast_wpseo_linkdex', '0'),
(362, 176, '_edit_last', '1'),
(363, 176, '_edit_lock', '1379824713:1'),
(364, 176, '_yoast_wpseo_focuskw', ''),
(365, 176, '_yoast_wpseo_title', ''),
(366, 176, '_yoast_wpseo_metadesc', ''),
(367, 176, '_yoast_wpseo_meta-robots-noindex', '0'),
(368, 176, '_yoast_wpseo_meta-robots-nofollow', '0'),
(369, 176, '_yoast_wpseo_meta-robots-adv', 'none'),
(370, 176, '_yoast_wpseo_sitemap-include', '-'),
(371, 176, '_yoast_wpseo_sitemap-prio', '-'),
(372, 176, '_yoast_wpseo_sitemap-html-include', '-'),
(373, 176, '_yoast_wpseo_canonical', ''),
(374, 176, '_yoast_wpseo_redirect', ''),
(375, 176, '_yoast_wpseo_opengraph-description', ''),
(376, 176, '_yoast_wpseo_google-plus-description', ''),
(377, 177, '_yoast_wpseo_linkdex', '0'),
(378, 177, '_edit_last', '1'),
(379, 177, '_edit_lock', '1379824734:1'),
(380, 177, '_yoast_wpseo_focuskw', ''),
(381, 177, '_yoast_wpseo_title', ''),
(382, 177, '_yoast_wpseo_metadesc', ''),
(383, 177, '_yoast_wpseo_meta-robots-noindex', '0'),
(384, 177, '_yoast_wpseo_meta-robots-nofollow', '0'),
(385, 177, '_yoast_wpseo_meta-robots-adv', 'none'),
(386, 177, '_yoast_wpseo_sitemap-include', '-'),
(387, 177, '_yoast_wpseo_sitemap-prio', '-'),
(388, 177, '_yoast_wpseo_sitemap-html-include', '-'),
(389, 177, '_yoast_wpseo_canonical', ''),
(390, 177, '_yoast_wpseo_redirect', ''),
(391, 177, '_yoast_wpseo_opengraph-description', ''),
(392, 177, '_yoast_wpseo_google-plus-description', ''),
(393, 178, '_yoast_wpseo_linkdex', '0'),
(394, 178, '_edit_last', '1'),
(395, 178, '_edit_lock', '1379824751:1'),
(396, 178, '_yoast_wpseo_focuskw', ''),
(397, 178, '_yoast_wpseo_title', ''),
(398, 178, '_yoast_wpseo_metadesc', ''),
(399, 178, '_yoast_wpseo_meta-robots-noindex', '0'),
(400, 178, '_yoast_wpseo_meta-robots-nofollow', '0'),
(401, 178, '_yoast_wpseo_meta-robots-adv', 'none'),
(402, 178, '_yoast_wpseo_sitemap-include', '-'),
(403, 178, '_yoast_wpseo_sitemap-prio', '-'),
(404, 178, '_yoast_wpseo_sitemap-html-include', '-'),
(405, 178, '_yoast_wpseo_canonical', ''),
(406, 178, '_yoast_wpseo_redirect', ''),
(407, 178, '_yoast_wpseo_opengraph-description', ''),
(408, 178, '_yoast_wpseo_google-plus-description', ''),
(416, 35, 'expert_linkedin', 'http://www.linkedin.com/in/williamhgates'),
(417, 35, 'expert_question', '176'),
(418, 35, 'expert_question', '177'),
(419, 179, '_yoast_wpseo_linkdex', '0'),
(420, 180, '_yoast_wpseo_linkdex', '0'),
(421, 181, '_yoast_wpseo_linkdex', '0'),
(422, 182, '_yoast_wpseo_linkdex', '0'),
(423, 183, '_yoast_wpseo_linkdex', '0'),
(424, 184, '_yoast_wpseo_linkdex', '0'),
(425, 185, '_yoast_wpseo_linkdex', '0'),
(426, 186, '_yoast_wpseo_linkdex', '0'),
(427, 187, '_yoast_wpseo_linkdex', '0'),
(428, 188, '_yoast_wpseo_linkdex', '0'),
(429, 189, '_yoast_wpseo_linkdex', '0'),
(430, 190, '_yoast_wpseo_linkdex', '0'),
(431, 191, '_yoast_wpseo_linkdex', '0'),
(432, 192, '_yoast_wpseo_linkdex', '0'),
(433, 193, '_yoast_wpseo_linkdex', '0'),
(434, 194, '_yoast_wpseo_linkdex', '0'),
(435, 195, '_yoast_wpseo_linkdex', '0'),
(436, 196, '_yoast_wpseo_linkdex', '0'),
(437, 197, '_yoast_wpseo_linkdex', '0'),
(438, 198, '_yoast_wpseo_linkdex', '0'),
(439, 199, '_yoast_wpseo_linkdex', '0'),
(440, 200, '_yoast_wpseo_linkdex', '0'),
(441, 201, '_yoast_wpseo_linkdex', '0'),
(442, 202, '_yoast_wpseo_linkdex', '0'),
(443, 203, '_yoast_wpseo_linkdex', '0'),
(444, 204, '_yoast_wpseo_linkdex', '0'),
(445, 205, '_yoast_wpseo_linkdex', '0'),
(446, 206, '_yoast_wpseo_linkdex', '0'),
(447, 207, '_yoast_wpseo_linkdex', '0'),
(448, 208, '_yoast_wpseo_linkdex', '0'),
(449, 209, '_yoast_wpseo_linkdex', '0'),
(450, 210, '_yoast_wpseo_linkdex', '0'),
(451, 211, '_yoast_wpseo_linkdex', '0'),
(452, 212, '_yoast_wpseo_linkdex', '0'),
(453, 213, '_yoast_wpseo_linkdex', '0'),
(454, 214, '_yoast_wpseo_linkdex', '0'),
(455, 215, '_yoast_wpseo_linkdex', '0'),
(456, 216, '_yoast_wpseo_linkdex', '0'),
(457, 217, '_yoast_wpseo_linkdex', '0'),
(458, 218, '_yoast_wpseo_linkdex', '0'),
(459, 219, '_yoast_wpseo_linkdex', '0'),
(460, 220, '_yoast_wpseo_linkdex', '0'),
(461, 221, '_yoast_wpseo_linkdex', '0'),
(462, 222, '_yoast_wpseo_linkdex', '0'),
(463, 223, '_yoast_wpseo_linkdex', '0'),
(464, 224, '_yoast_wpseo_linkdex', '0'),
(465, 225, '_yoast_wpseo_linkdex', '0'),
(466, 226, '_yoast_wpseo_linkdex', '0'),
(467, 227, '_yoast_wpseo_linkdex', '0'),
(468, 228, '_yoast_wpseo_linkdex', '0'),
(469, 229, '_yoast_wpseo_linkdex', '0'),
(470, 230, '_yoast_wpseo_linkdex', '0'),
(471, 231, '_yoast_wpseo_linkdex', '0'),
(472, 232, '_yoast_wpseo_linkdex', '0'),
(473, 233, '_yoast_wpseo_linkdex', '0'),
(474, 234, '_yoast_wpseo_linkdex', '0'),
(475, 235, '_yoast_wpseo_linkdex', '0'),
(476, 236, '_yoast_wpseo_linkdex', '0'),
(477, 237, '_yoast_wpseo_linkdex', '0'),
(478, 238, '_yoast_wpseo_linkdex', '0'),
(479, 241, '_wp_attached_file', '2013/09/behavioralinterviewinfo.pdf'),
(480, 242, '_wp_attached_file', '2013/09/Dos-and-donts-of-a-interview.doc'),
(481, 243, '_wp_attached_file', '2013/09/HowToWriteAThankYouLetter.pdf'),
(482, 244, '_wp_attached_file', '2013/09/interviewprepkit_v04.pdf'),
(483, 245, '_wp_attached_file', '2013/09/Interviews.pdf'),
(484, 246, '_wp_attached_file', '2013/09/PDF_Cover_Letter_Guide-for-8.5.8.1.pdf'),
(485, 247, '_wp_attached_file', '2013/09/PongoForm_BuildTargetedResume_0410.pdf'),
(486, 248, '_wp_attached_file', '2013/09/Questions-to-Ask-at-the-Job-Interview.doc'),
(487, 249, '_yoast_wpseo_linkdex', '0'),
(488, 250, '_wp_attached_file', '2013/09/Sample-Follow-up-after-submitting-CV.doc'),
(489, 251, '_wp_attached_file', '2013/09/Ten-Great-Questions-To-Ask.doc'),
(490, 252, '_wp_attached_file', '2013/09/The-Best-Questions-to-Ask-In-the-Job-Interview-and-What-Message-They-Give-to-the-Interviewer.doc'),
(491, 253, '_yoast_wpseo_linkdex', '0'),
(492, 253, '_edit_last', '1'),
(493, 253, '_edit_lock', '1379835397:1'),
(494, 253, '_yoast_wpseo_focuskw', ''),
(495, 253, '_yoast_wpseo_title', ''),
(496, 253, '_yoast_wpseo_metadesc', ''),
(497, 253, '_yoast_wpseo_meta-robots-noindex', '0'),
(498, 253, '_yoast_wpseo_meta-robots-nofollow', '0'),
(499, 253, '_yoast_wpseo_meta-robots-adv', 'none'),
(500, 253, '_yoast_wpseo_sitemap-include', '-'),
(501, 253, '_yoast_wpseo_sitemap-prio', '-'),
(502, 253, '_yoast_wpseo_sitemap-html-include', '-'),
(503, 253, '_yoast_wpseo_canonical', ''),
(504, 253, '_yoast_wpseo_redirect', ''),
(505, 253, '_yoast_wpseo_opengraph-description', ''),
(506, 253, '_yoast_wpseo_google-plus-description', ''),
(507, 254, '_yoast_wpseo_linkdex', '0'),
(508, 254, '_edit_last', '1'),
(509, 254, '_edit_lock', '1379832968:1'),
(510, 254, '_yoast_wpseo_focuskw', ''),
(511, 254, '_yoast_wpseo_title', ''),
(512, 254, '_yoast_wpseo_metadesc', ''),
(513, 254, '_yoast_wpseo_meta-robots-noindex', '0'),
(514, 254, '_yoast_wpseo_meta-robots-nofollow', '0'),
(515, 254, '_yoast_wpseo_meta-robots-adv', 'none'),
(516, 254, '_yoast_wpseo_sitemap-include', '-'),
(517, 254, '_yoast_wpseo_sitemap-prio', '-'),
(518, 254, '_yoast_wpseo_sitemap-html-include', '-'),
(519, 254, '_yoast_wpseo_canonical', ''),
(520, 254, '_yoast_wpseo_redirect', ''),
(521, 254, '_yoast_wpseo_opengraph-description', ''),
(522, 254, '_yoast_wpseo_google-plus-description', ''),
(523, 255, '_yoast_wpseo_linkdex', '0'),
(524, 255, '_edit_last', '1'),
(525, 255, '_edit_lock', '1379830866:1'),
(526, 255, '_yoast_wpseo_focuskw', ''),
(527, 255, '_yoast_wpseo_title', ''),
(528, 255, '_yoast_wpseo_metadesc', ''),
(529, 255, '_yoast_wpseo_meta-robots-noindex', '0'),
(530, 255, '_yoast_wpseo_meta-robots-nofollow', '0'),
(531, 255, '_yoast_wpseo_meta-robots-adv', 'none'),
(532, 255, '_yoast_wpseo_sitemap-include', '-'),
(533, 255, '_yoast_wpseo_sitemap-prio', '-'),
(534, 255, '_yoast_wpseo_sitemap-html-include', '-'),
(535, 255, '_yoast_wpseo_canonical', ''),
(536, 255, '_yoast_wpseo_redirect', ''),
(537, 255, '_yoast_wpseo_opengraph-description', ''),
(538, 255, '_yoast_wpseo_google-plus-description', ''),
(539, 256, '_yoast_wpseo_linkdex', '0'),
(540, 256, '_edit_last', '1'),
(541, 256, '_edit_lock', '1379835920:1'),
(542, 256, '_yoast_wpseo_focuskw', ''),
(543, 256, '_yoast_wpseo_title', ''),
(544, 256, '_yoast_wpseo_metadesc', ''),
(545, 256, '_yoast_wpseo_meta-robots-noindex', '0'),
(546, 256, '_yoast_wpseo_meta-robots-nofollow', '0'),
(547, 256, '_yoast_wpseo_meta-robots-adv', 'none'),
(548, 256, '_yoast_wpseo_sitemap-include', '-'),
(549, 256, '_yoast_wpseo_sitemap-prio', '-'),
(550, 256, '_yoast_wpseo_sitemap-html-include', '-'),
(551, 256, '_yoast_wpseo_canonical', ''),
(552, 256, '_yoast_wpseo_redirect', ''),
(553, 256, '_yoast_wpseo_opengraph-description', ''),
(554, 256, '_yoast_wpseo_google-plus-description', ''),
(555, 257, '_yoast_wpseo_linkdex', '0'),
(556, 257, '_edit_last', '1'),
(557, 257, '_edit_lock', '1379832977:1'),
(558, 257, '_yoast_wpseo_focuskw', ''),
(559, 257, '_yoast_wpseo_title', ''),
(560, 257, '_yoast_wpseo_metadesc', ''),
(561, 257, '_yoast_wpseo_meta-robots-noindex', '0'),
(562, 257, '_yoast_wpseo_meta-robots-nofollow', '0'),
(563, 257, '_yoast_wpseo_meta-robots-adv', 'none'),
(564, 257, '_yoast_wpseo_sitemap-include', '-'),
(565, 257, '_yoast_wpseo_sitemap-prio', '-'),
(566, 257, '_yoast_wpseo_sitemap-html-include', '-'),
(567, 257, '_yoast_wpseo_canonical', ''),
(568, 257, '_yoast_wpseo_redirect', ''),
(569, 257, '_yoast_wpseo_opengraph-description', ''),
(570, 257, '_yoast_wpseo_google-plus-description', ''),
(571, 258, '_yoast_wpseo_linkdex', '0'),
(572, 258, '_edit_last', '1'),
(573, 258, '_edit_lock', '1379830895:1'),
(574, 258, '_yoast_wpseo_focuskw', ''),
(575, 258, '_yoast_wpseo_title', ''),
(576, 258, '_yoast_wpseo_metadesc', ''),
(577, 258, '_yoast_wpseo_meta-robots-noindex', '0'),
(578, 258, '_yoast_wpseo_meta-robots-nofollow', '0'),
(579, 258, '_yoast_wpseo_meta-robots-adv', 'none'),
(580, 258, '_yoast_wpseo_sitemap-include', '-'),
(581, 258, '_yoast_wpseo_sitemap-prio', '-'),
(582, 258, '_yoast_wpseo_sitemap-html-include', '-'),
(583, 258, '_yoast_wpseo_canonical', ''),
(584, 258, '_yoast_wpseo_redirect', ''),
(585, 258, '_yoast_wpseo_opengraph-description', ''),
(586, 258, '_yoast_wpseo_google-plus-description', ''),
(587, 260, '_yoast_wpseo_linkdex', '0'),
(588, 260, '_edit_last', '1'),
(589, 260, '_edit_lock', '1379833875:1'),
(590, 260, '_wp_page_template', 'page-services.php'),
(591, 260, '_yoast_wpseo_focuskw', ''),
(592, 260, '_yoast_wpseo_title', ''),
(593, 260, '_yoast_wpseo_metadesc', ''),
(594, 260, '_yoast_wpseo_meta-robots-noindex', '0'),
(595, 260, '_yoast_wpseo_meta-robots-nofollow', '0'),
(596, 260, '_yoast_wpseo_meta-robots-adv', 'none'),
(597, 260, '_yoast_wpseo_sitemap-include', '-'),
(598, 260, '_yoast_wpseo_sitemap-prio', '-'),