-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatabase.sql
More file actions
940 lines (852 loc) · 439 KB
/
database.sql
File metadata and controls
940 lines (852 loc) · 439 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
-- phpMyAdmin SQL Dump
-- version 3.5.2.2
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Mar 21, 2014 at 05:38 AM
-- Server version: 5.1.66
-- PHP Version: 5.2.17
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: `u791293680_hack`
--
-- --------------------------------------------------------
--
-- Table structure for table `wp_commentmeta`
--
DROP TABLE IF EXISTS `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=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `wp_comments`
--
DROP TABLE IF EXISTS `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=MyISAM 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/', '', '2014-03-20 13:23:25', '2014-03-20 13:23:25', '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`
--
DROP TABLE IF EXISTS `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=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `wp_options`
--
DROP TABLE IF EXISTS `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=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=333 ;
--
-- Dumping data for table `wp_options`
--
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1, 'siteurl', 'http://localhost/wordpress', 'yes'),
(2, 'blogname', 'HACK GAME', 'yes'),
(3, 'blogdescription', 'We create hacks for games, cheats tools', 'yes'),
(4, 'users_can_register', '0', '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'),
(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', '/%year%/%monthnum%/%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:13:{i:0;s:36:"contact-form-7/wp-contact-form-7.php";i:1;s:41:"easy-media-gallery/easy-media-gallery.php";i:2;s:57:"google-language-translator/google-language-translator.php";i:3;s:36:"google-sitemap-generator/sitemap.php";i:4;s:30:"lightbox-plus/lightboxplus.php";i:5;s:35:"random-posts-widget/randomposts.php";i:7;s:39:"social-count-plus/social-count-plus.php";i:8;s:27:"test_widget/test_widget.php";i:9;s:45:"use-google-libraries/use-google-libraries.php";i:10;s:41:"wordpress-importer/wordpress-importer.php";i:12;s:21:"wp-polls/wp-polls.php";i:13;s:31:"wp-statistics/wp-statistics.php";i:14;s:27:"wp-super-cache/wp-cache.php";}', 'yes'),
(36, 'home', 'http://localhost/wordpress', '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', 'a:4:{i:0;s:66:"/home/u791293680/public_html/wp-content/themes/diablofun/style.css";i:2;s:67:"/home/u791293680/public_html/wp-content/themes/diablofun/bottom.php";i:3;s:67:"/home/u791293680/public_html/wp-content/themes/diablofun/footer.php";i:4;s:0:"";}', 'no'),
(44, 'template', 'diablofun', 'yes'),
(45, 'stylesheet', 'diablofun', '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', '26691', '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', 'posts', 'yes'),
(58, 'tag_base', '', 'yes'),
(59, 'show_avatars', '1', 'yes'),
(60, 'avatar_rating', 'G', 'yes'),
(61, 'upload_url_path', '', 'yes'),
(62, 'thumbnail_size_w', '150', 'yes'),
(63, 'thumbnail_size_h', '150', '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', 'file', '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:2:{i:2;a:4:{s:5:"title";s:10:"Categories";s:5:"count";i:1;s:12:"hierarchical";i:1;s:8:"dropdown";i:0;}s:12:"_multiwidget";i:1;}', 'yes'),
(83, 'widget_text', 'a:0:{}', 'yes'),
(84, 'widget_rss', 'a:0:{}', 'yes'),
(85, 'uninstall_plugins', 'a:2:{s:30:"lightbox-plus/lightboxplus.php";s:12:"UninstallLBP";s:27:"wp-super-cache/wp-cache.php";s:23:"wpsupercache_deactivate";}', 'no'),
(86, 'timezone_string', '', 'yes'),
(87, 'page_for_posts', '0', 'yes'),
(88, 'page_on_front', '0', 'yes'),
(89, 'default_post_format', '0', 'yes'),
(90, 'link_manager_enabled', '0', 'yes'),
(91, 'initial_db_version', '26691', 'yes'),
(92, 'wp_user_roles', 'a:5:{s:13:"administrator";a:2:{s:4:"name";s:13:"Administrator";s:12:"capabilities";a:64:{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:15:"wpseo_bulk_edit";b:1;s:12:"manage_polls";b:1;}}s:6:"editor";a:2:{s:4:"name";s:6:"Editor";s:12:"capabilities";a:35:{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:15:"wpseo_bulk_edit";b:1;}}s:6:"author";a:2:{s:4:"name";s:6:"Author";s:12:"capabilities";a:11:{s:12:"upload_files";b:1;s:10:"edit_posts";b:1;s:20:"edit_published_posts";b:1;s:13:"publish_posts";b:1;s:4:"read";b:1;s:7:"level_2";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:12:"delete_posts";b:1;s:22:"delete_published_posts";b:1;s:15:"wpseo_bulk_edit";b:1;}}s:11:"contributor";a:2:{s:4:"name";s:11:"Contributor";s:12:"capabilities";a:6:{s:10:"edit_posts";b:1;s:4:"read";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:12:"delete_posts";b:1;s:15:"wpseo_bulk_edit";b:1;}}s:10:"subscriber";a:2:{s:4:"name";s:10:"Subscriber";s:12:"capabilities";a:2:{s:4:"read";b:1;s:7:"level_0";b:1;}}}', 'yes'),
(93, 'widget_search', 'a:2:{i:2;a:1:{s:5:"title";s:0:"";}s:12:"_multiwidget";i:1;}', 'yes'),
(94, 'widget_recent-posts', 'a:2:{i:2;a:2:{s:5:"title";s:0:"";s:6:"number";i:5;}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:8:{s:19:"wp_inactive_widgets";a:0:{}s:13:"right_sidebar";a:8:{i:0;s:8:"search-2";i:1;s:12:"glt_widget-2";i:2;s:10:"facebook-2";i:3;s:12:"categories-2";i:4;s:13:"wp-statistics";i:5;s:7:"posts-3";i:6;s:11:"videofeed-2";i:7;s:10:"comments-3";}s:12:"left_sidebar";a:0:{}s:8:"footer_1";a:0:{}s:8:"footer_2";a:0:{}s:8:"footer_3";a:0:{}s:12:"tabs_sidebar";a:0:{}s:13:"array_version";i:3;}', 'yes'),
(99, 'cron', 'a:7:{i:1395408209;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:1395408231;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:1395409947;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:1395409953;a:1:{s:10:"polls_cron";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}}i:1395410359;a:1:{s:30:"wp_scheduled_auto_draft_delete";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1395431400;a:1:{s:20:"wp_maybe_auto_update";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}}s:7:"version";i:2;}', 'yes'),
(106, '_site_transient_timeout_browser_c81ac3e099685f27acf82c914726b755', '1395926620', 'yes'),
(101, '_site_transient_update_core', 'O:8:"stdClass":4:{s:7:"updates";a:1:{i:0;O:8:"stdClass":10:{s:8:"response";s:6:"latest";s:8:"download";s:41:"https://wordpress.org/wordpress-3.8.1.zip";s:6:"locale";s:5:"en_US";s:8:"packages";O:8:"stdClass":5:{s:4:"full";s:41:"https://wordpress.org/wordpress-3.8.1.zip";s:10:"no_content";s:52:"https://wordpress.org/wordpress-3.8.1-no-content.zip";s:11:"new_bundled";s:53:"https://wordpress.org/wordpress-3.8.1-new-bundled.zip";s:7:"partial";b:0;s:8:"rollback";b:0;}s:7:"current";s:5:"3.8.1";s:7:"version";s:5:"3.8.1";s:11:"php_version";s:5:"5.2.4";s:13:"mysql_version";s:3:"5.0";s:11:"new_bundled";s:3:"3.8";s:15:"partial_version";s:0:"";}}s:12:"last_checked";i:1395388226;s:15:"version_checked";s:5:"3.8.1";s:12:"translations";a:0:{}}', 'yes'),
(102, '_site_transient_update_plugins', 'O:8:"stdClass":4:{s:12:"last_checked";i:1395371487;s:7:"checked";a:19:{s:19:"adminer/adminer.php";s:5:"1.3.0";s:19:"akismet/akismet.php";s:5:"2.6.0";s:21:"backwpup/backwpup.php";s:5:"3.1.2";s:29:"bj-lazy-load/bj-lazy-load.php";s:5:"0.7.1";s:36:"contact-form-7/wp-contact-form-7.php";s:5:"3.7.2";s:41:"easy-media-gallery/easy-media-gallery.php";s:6:"1.2.29";s:57:"google-language-translator/google-language-translator.php";s:5:"3.0.9";s:36:"google-sitemap-generator/sitemap.php";s:3:"3.4";s:30:"lightbox-plus/lightboxplus.php";s:3:"2.6";s:35:"random-posts-widget/randomposts.php";s:3:"2.1";s:39:"social-count-plus/social-count-plus.php";s:5:"2.8.1";s:27:"test_widget/test_widget.php";s:3:"1.0";s:45:"use-google-libraries/use-google-libraries.php";s:5:"1.5.2";s:55:"wishpond-social-campaigns/wishpond-social-campaigns.php";s:5:"1.3.1";s:41:"wordpress-importer/wordpress-importer.php";s:5:"0.6.1";s:24:"wordpress-seo/wp-seo.php";s:7:"1.5.2.4";s:31:"wp-statistics/wp-statistics.php";s:3:"5.2";s:21:"wp-polls/wp-polls.php";s:4:"2.64";s:27:"wp-super-cache/wp-cache.php";s:3:"1.4";}s:8:"response";a:0:{}s:12:"translations";a:0:{}}', 'yes'),
(105, '_site_transient_update_themes', 'O:8:"stdClass":4:{s:12:"last_checked";i:1395375744;s:7:"checked";a:3:{s:9:"diablofun";s:3:"2.0";s:13:"progeny-mmxiv";s:5:"1.0.2";s:14:"twentyfourteen";s:3:"1.0";}s:8:"response";a:0:{}s:12:"translations";a:0:{}}', 'yes'),
(331, '_site_transient_timeout_theme_roots', '1395395097', 'yes'),
(332, '_site_transient_theme_roots', 'a:3:{s:9:"diablofun";s:7:"/themes";s:13:"progeny-mmxiv";s:7:"/themes";s:14:"twentyfourteen";s:7:"/themes";}', 'yes'),
(107, '_site_transient_browser_c81ac3e099685f27acf82c914726b755', 'a:9:{s:8:"platform";s:7:"Windows";s:4:"name";s:6:"Chrome";s:7:"version";s:13:"33.0.1750.154";s:10:"update_url";s:28:"http://www.google.com/chrome";s:7:"img_src";s:49:"http://s.wordpress.org/images/browsers/chrome.png";s:11:"img_src_ssl";s:48:"https://wordpress.org/images/browsers/chrome.png";s:15:"current_version";s:2:"18";s:7:"upgrade";b:0;s:8:"insecure";b:0;}', 'yes'),
(108, 'can_compress_scripts', '0', 'yes'),
(275, '_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1395411401', 'no'),
(276, '_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1395368201', 'no'),
(273, '_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1395411401', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(274, '_transient_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca', 'a:4:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:3:"\n\n\n";s:7:"attribs";a:1:{s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:51:"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:3:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:14:"WordPress News";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:25:"http://wordpress.org/news";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:14:"WordPress News";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:13:"lastBuildDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 20 Mar 2014 05:01:25 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"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:33:"http://wordpress.org/?v=3.9-beta2";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"item";a:10:{i:0;a:6:{s:4:"data";s:45:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:20:"WordPress 3.9 Beta 2";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:55:"http://wordpress.org/news/2014/03/wordpress-3-9-beta-2/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:64:"http://wordpress.org/news/2014/03/wordpress-3-9-beta-2/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 20 Mar 2014 05:01:25 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3101";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:309:"WordPress 3.9 Beta 2 is now available for testing! We’ve made more than a hundred changes since Beta 1, but we still need your help if we’re going to hit our goal of an April release. For what to look out for, please head on over to the Beta 1 announcement post. Some of the changes in […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"Andrew Nacin";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:1901:"<p>WordPress 3.9 Beta 2 is now available for testing!</p>\n<p>We’ve made more than a hundred <a href="https://core.trac.wordpress.org/log?rev=27639&stop_rev=27500&limit=200">changes</a> since Beta 1, but we still need your help if we’re going to hit our goal of an April release. For what to look out for, please head on over to <a href="https://wordpress.org/news/2014/03/wordpress-3-9-beta-1/">the Beta 1 announcement post</a>. Some of the changes in Beta 2 include:</p>\n<ul>\n<li>Rendering of embedded audio and video players directly in the visual editor.</li>\n<li>Visual and functional improvements to the editor, the media manager, and theme installer.</li>\n<li>Various bug fixes to TinyMCE, the software behind the visual editor.</li>\n<li>Lots of fixes to widget management in the theme customizer.</li>\n</ul>\n<p>As always,<strong> if you think you’ve found a bug</strong>, you can post to the <a href="http://wordpress.org/support/forum/alphabeta">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a reproducible bug report, <a href="https://make.wordpress.org/core/reports/">file one on the WordPress Trac</a>. There, you can also find <a href="http://core.trac.wordpress.org/tickets/major">a list of known bugs</a> and <a href="http://core.trac.wordpress.org/query?status=closed&group=component&milestone=3.9">everything we’ve fixed</a> so far.</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 3.9, try the <a href="http://wordpress.org/extend/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href="http://wordpress.org/wordpress-3.9-beta2.zip">download the beta here</a> (zip).</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:60:"http://wordpress.org/news/2014/03/wordpress-3-9-beta-2/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:1;a:6:{s:4:"data";s:45:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:20:"WordPress 3.9 Beta 1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:55:"http://wordpress.org/news/2014/03/wordpress-3-9-beta-1/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:64:"http://wordpress.org/news/2014/03/wordpress-3-9-beta-1/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 11 Mar 2014 13:42:19 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3083";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:329:"I’m excited to announce that the first beta of WordPress 3.9 is now available for testing. WordPress 3.9 is due out next month — but in order to hit that goal, we need your help testing all of the goodies we’ve added: We updated TinyMCE, the software powering the visual editor, to the latest version. […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"Andrew Nacin";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:6065:"<p>I’m excited to announce that the <strong>first beta of WordPress 3.9</strong> is now available for testing.</p>\n<p>WordPress 3.9 is due out next month — but in order to hit that goal, <strong>we need your help</strong> testing all of the goodies we’ve added:</p>\n<ul>\n<li>We updated TinyMCE, the software powering the visual editor, to the latest version. Be on the lookout for cleaner markup. Also try the new paste handling — if you paste in a block of text from Microsoft Word, for example, it will no longer come out terrible. (The “Paste from Word” button you probably never noticed has been removed.) It’s possible some plugins that added stuff to the visual editor (like a new toolbar button) no longer work, so we’d like to hear about them (<a href="https://core.trac.wordpress.org/ticket/24067">#24067</a>). (And be sure to <a href="http://wordpress.org/support/">open a support thread</a> for the plugin author.)</li>\n<li>We’ve added <strong>widget management to live previews</strong> (the customizer). Please test editing, adding, and rearranging widgets! (<a href="https://core.trac.wordpress.org/ticket/27112">#27112</a>) We’ve also added the ability to upload, crop, and manage header images, without needing to leave the preview. (<a href="https://core.trac.wordpress.org/ticket/21785">#21785</a>)</li>\n<li>We brought 3.8′s beautiful new theme browsing experience to the <strong>theme installer</strong>. Check it out! (<a title="View ticket" href="https://core.trac.wordpress.org/ticket/27055">#27055</a>)</li>\n<li><strong>Galleries</strong> now receive a live preview in the editor. Upload some photos and insert a gallery to see this in action. (<a href="https://core.trac.wordpress.org/ticket/26959">#26959</a>)</li>\n<li>You can now <strong>drag-and-drop</strong> images directly onto the editor to upload them. It can be a bit finicky, so try it and help us work out the kinks. (<a href="https://core.trac.wordpress.org/ticket/19845">#19845</a>)</li>\n<li>Some things got improved around <strong>editing images</strong>. It’s a lot easier to make changes to an image after you insert it into a post (<a class="closed" title="View ticket" href="https://core.trac.wordpress.org/ticket/24409">#24409</a>) and you no longer get kicked to a new window when you need to crop or rotate an image (<a href="https://core.trac.wordpress.org/ticket/21811">#21811</a>).</li>\n<li>New <strong>audio/video playlists</strong>. Upload a few audio or video files to test these. (<a href="https://core.trac.wordpress.org/ticket/26631">#26631</a>)</li>\n</ul>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href="http://wordpress.org/support/forum/alphabeta">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href="https://make.wordpress.org/core/reports/">file one on the WordPress Trac</a>. There, you can also find <a href="http://core.trac.wordpress.org/tickets/major">a list of known bugs</a> and <a href="http://core.trac.wordpress.org/query?status=closed&group=component&milestone=3.9">everything we’ve fixed</a> so far.</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 3.9, try the <a href="http://wordpress.org/extend/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href="http://wordpress.org/wordpress-3.9-beta1.zip">download the beta here</a> (zip).</p>\n<hr />\n<p><strong>DEVELOPERS!</strong> Hello! There’s lots for you, too.</p>\n<p><strong>Please test your plugins and themes!</strong> There’s a lot of great stuff under the hood in 3.9 and we hope to blog a bit about them in the coming days. If you haven’t been reading the awesome <a href="http://make.wordpress.org/core/tag/week-in-core/">weekly summaries</a> on the <a href="http://make.wordpress.org/core/">main core development blog</a>, that’s a great place to start. (You should definitely follow that blog.) For now, here are some things to watch out for when testing:</p>\n<ul>\n<li>The <strong>load process in multisite</strong> got rewritten. If you notice any issues with your network, see <a href="https://core.trac.wordpress.org/ticket/27003">#27003</a>.</li>\n<li>We now use the <strong>MySQL Improved (mysqli) database extension</strong> if you’re running a recent version of PHP (<a href="https://core.trac.wordpress.org/ticket/21663">#21663</a>). Please test your plugins and see that everything works well, and please make sure you’re not calling <code>mysql_*</code> functions directly.</li>\n<li><strong>Autosave</strong> was refactored, so if you see any issues related to autosaving, heartbeat, etc., let us know (<a href="https://core.trac.wordpress.org/ticket/25272">#25272</a>).</li>\n<li>Library updates, in particular Backbone 1.1 and Underscore 1.6 (<a href="https://core.trac.wordpress.org/ticket/26799">#26799</a>). Also Masonry 3 (<a href="https://core.trac.wordpress.org/ticket/25351">#25351</a>), PHPMailer (<a href="https://core.trac.wordpress.org/ticket/25560">#25560</a>), Plupload (<a href="https://core.trac.wordpress.org/ticket/25663">#25663</a>), and TinyMCE (<a href="https://core.trac.wordpress.org/ticket/24067">#24067</a>).</li>\n<li>TinyMCE 4.0 is a <em>major</em> update. Please see TinyMCE’s <a href="http://www.tinymce.com/wiki.php/Tutorial:Migration_guide_from_3.x">upgrade guide</a> and our <a href="https://core.trac.wordpress.org/ticket/24067">implementation ticket</a> for more. If you have any questions or problems, please <a href="http://wordpress.org/support/forum/alphabeta">open a thread in the support forums</a>.</li>\n</ul>\n<p>Happy testing!</p>\n<p><em><em>Lots of improvements<br />\nLittle things go a long way</em><br />\nPlease test beta one<br />\n</em></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:60:"http://wordpress.org/news/2014/03/wordpress-3-9-beta-1/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:2;a:6:{s:4:"data";s:42:"\n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:35:"WordPress 3.8.1 Maintenance Release";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:50:"http://wordpress.org/news/2014/01/wordpress-3-8-1/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:59:"http://wordpress.org/news/2014/01/wordpress-3-8-1/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 23 Jan 2014 20:37:49 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:1:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3063";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:358:"After six weeks and more than 9.3 million downloads of WordPress 3.8, we’re pleased to announce WordPress 3.8.1 is now available. Version 3.8.1 is a maintenance releases that addresses 31 bugs in 3.8, including various fixes and improvements for the new dashboard design and new themes admin screen. An issue with taxonomy queries in WP_Query […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"Andrew Nacin";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:3809:"<p>After six weeks and more than <a href="http://wordpress.org/download/counter/">9.3 million downloads</a> of WordPress 3.8, we’re pleased to announce WordPress 3.8.1 is now available.</p>\n<p>Version 3.8.1 is a maintenance releases that addresses 31 bugs in 3.8, including various fixes and improvements for the new dashboard design and new themes admin screen. An issue with taxonomy queries in WP_Query was resolved. And if you’ve been frustrated by submit buttons that won’t do anything when you click on them (or thought you were going crazy, like some of us), we’ve found and fixed this “dead zone” on submit buttons.</p>\n<p>It also contains a fix for <strong>embedding tweets</strong> (by placing the URL to the tweet on its own line), which was broken due to a recent Twitter API change. (For more on Embeds, see <a href="http://codex.wordpress.org/Embeds">the Codex</a>.)</p>\n<p>For a full list of changes, consult the <a href="http://core.trac.wordpress.org/query?milestone=3.8.1">list of tickets</a> and <a href="https://core.trac.wordpress.org/log/branches/3.8?rev=27018&stop_rev=26862">the changelog</a>. There’s also a <a href="http://make.wordpress.org/core/2014/01/22/wordpress-3-8-1-release-candidate/">detailed summary</a> for developers on the development blog.</p>\n<p>If you are one of the millions already running WordPress 3.8, we will start rolling out automatic background updates for WordPress 3.8.1 in the next few hours. For sites <a href="http://wordpress.org/plugins/background-update-tester/">that support them</a>, of course.</p>\n<p><a href="http://wordpress.org/download/">Download WordPress 3.8.1</a> or venture over to <strong>Dashboard → Updates</strong> and simply click “Update Now.”</p>\n<p>Thanks to all of these fine individuals for contributing to 3.8.1:</p>\n<p><a href="http://profiles.wordpress.org/jorbin">Aaron Jorbin</a>, <a href="http://profiles.wordpress.org/collinsinternet">Allan Collins</a>, <a href="http://profiles.wordpress.org/nacin">Andrew Nacin</a>, <a href="http://profiles.wordpress.org/azaozz">Andrew Ozz</a>, <a href="http://profiles.wordpress.org/aubreypwd">Aubrey Portwood</a>, <a href="http://profiles.wordpress.org/empireoflight">Ben Dunkle</a>, <a href="http://profiles.wordpress.org/cojennin">Connor Jennings</a>, <a href="http://profiles.wordpress.org/dd32">Dion Hulse</a>, <a href="http://profiles.wordpress.org/ocean90">Dominik Schilling</a>, <a href="http://profiles.wordpress.org/fboender">fboender</a>, <a href="http://profiles.wordpress.org/avryl">Janneke Van Dorpe</a>, <a href="http://profiles.wordpress.org/janrenn">janrenn</a>, <a href="http://profiles.wordpress.org/joedolson">Joe Dolson</a>, <a href="http://profiles.wordpress.org/johnbillion">John Blackbourn</a>, <a href="#">José Pino</a>, <a href="http://profiles.wordpress.org/kovshenin">Konstantin Kovshenin</a>, <a href="http://profiles.wordpress.org/matveb">Matias Ventura</a>, <a href="http://profiles.wordpress.org/mattheu">Matthew Haines-Young</a>, <a href="http://profiles.wordpress.org/iammattthomas">Matt Thomas</a>, <a href="http://profiles.wordpress.org/melchoyce">Mel Choyce</a>, <a href="http://profiles.wordpress.org/batmoo">Mohammad Jangda</a>, <a href="http://profiles.wordpress.org/morganestes">Morgan Estes</a>, <a href="http://profiles.wordpress.org/nivijah">nivijah</a>, <a href="http://profiles.wordpress.org/wonderboymusic">Scott Taylor</a>, <a href="http://profiles.wordpress.org/sergeybiryukov">Sergey Biryukov</a>, <a href="http://profiles.wordpress.org/undergroundnetwork">undergroundnetwork</a>, and <a href="http://profiles.wordpress.org/yurivictor">Yuri Victor</a>.</p>\n<p><em>WordPress three eight one<br />\nWe heard you didn’t like bugs<br />\nSo we took them out</em></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:55:"http://wordpress.org/news/2014/01/wordpress-3-8-1/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:3;a:6:{s:4:"data";s:42:"\n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:26:"WordPress 3.8 “Parker”";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:41:"http://wordpress.org/news/2013/12/parker/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:50:"http://wordpress.org/news/2013/12/parker/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 12 Dec 2013 17:00:06 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:1:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=2765";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:354:"Version 3.8 of WordPress, named “Parker” in honor of Charlie Parker, bebop innovator, is available for download or update in your WordPress dashboard. We hope you’ll think this is the most beautiful update yet. Introducing a modern new design WordPress has gotten a facelift. 3.8 brings a fresh new look to the entire admin dashboard. […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Matt Mullenweg";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:18740:"<p>Version 3.8 of WordPress, named “Parker” in honor of <a href="http://en.wikipedia.org/wiki/Charlie_Parker">Charlie Parker</a>, bebop innovator, is available <a href="http://wordpress.org/download/">for download</a> or update in your WordPress dashboard. We hope you’ll think this is the most beautiful update yet.</p>\n<div id="v-6wORgoGb-1" class="video-player"><embed id="v-6wORgoGb-1-video" src="http://s0.videopress.com/player.swf?v=1.03&guid=6wORgoGb&isDynamicSeeking=true" type="application/x-shockwave-flash" width="692" height="388" wmode="direct" seamlesstabbing="true" allowfullscreen="true" allowscriptaccess="always" overstretch="true"></embed></div>\n<h2 class="aligncenter">Introducing a modern new design</h2>\n<p><img class="wp-image-2951 aligncenter" alt="overview" src="http://i0.wp.com/wpdotorg.files.wordpress.com/2013/12/overview.jpg?resize=623%2C193" data-recalc-dims="1" /></p>\n<p>WordPress has gotten a facelift. 3.8 brings a fresh new look to the entire admin dashboard. Gone are overbearing gradients and dozens of shades of grey — bring on a bigger, bolder, more colorful design!</p>\n<p><img class="aligncenter wp-image-2856" style="margin-left: 0;margin-right: 0" alt="about-modern-wordpress" src="http://i2.wp.com/wpdotorg.files.wordpress.com/2013/12/design.png?resize=623%2C151" data-recalc-dims="1" /></p>\n<h3>Modern aesthetic</h3>\n<p>The new WordPress dashboard has a fresh, uncluttered design that embraces clarity and simplicity.</p>\n<h3>Clean typography</h3>\n<p>The Open Sans typeface provides simple, friendly text that is optimized for both desktop and mobile viewing. It’s even open source, just like WordPress.</p>\n<h3>Refined contrast</h3>\n<p>We think beautiful design should never sacrifice legibility. With superior contrast and large, comfortable type, the new design is easy to read and a pleasure to navigate.</p>\n<hr />\n<h2 class="aligncenter">WordPress on every device</h2>\n<p><img class="alignright wp-image-2984" alt="responsive" src="http://i2.wp.com/wpdotorg.files.wordpress.com/2013/12/responsive.jpg?resize=255%2C255" data-recalc-dims="1" />We all access the internet in different ways. Smartphone, tablet, notebook, desktop — no matter what you use, WordPress will adapt and you’ll feel right at home.</p>\n<h3>High definition at high speed</h3>\n<p>WordPress is sharper than ever with new vector-based icons that scale to your screen. By ditching pixels, pages load significantly faster, too.</p>\n<hr />\n<h2 class="aligncenter">Admin color schemes to match your personality</h2>\n<p><img class="aligncenter wp-image-2954" alt="colors" src="http://i0.wp.com/wpdotorg.files.wordpress.com/2013/12/colors.jpg?resize=623%2C339" data-recalc-dims="1" /></p>\n<p>WordPress just got a colorful new update. We’ve included eight new admin color schemes so you can pick the one that suits you best.</p>\n<p>Color schemes can be previewed and changed from your Profile page.</p>\n<hr />\n<h2 class="aligncenter">Refined theme management</h2>\n<p><img class="alignright wp-image-2967" alt="themes" src="http://i0.wp.com/wpdotorg.files.wordpress.com/2013/12/themes.jpg?resize=360%2C344" data-recalc-dims="1" />The new themes screen lets you survey your themes at a glance. Or want more information? Click to discover more. Then sit back and use your keyboard’s navigation arrows to flip through every theme you’ve got.</p>\n<h3>Smoother widget experience</h3>\n<p>Drag-drag-drag. Scroll-scroll-scroll. Widget management can be complicated. With the new design, we’ve worked to streamline the widgets screen.</p>\n<p>Have a large monitor? Multiple widget areas stack side-by-side to use the available space. Using a tablet? Just tap a widget to add it.</p>\n<hr />\n<h2 class="aligncenter">Twenty Fourteen, a sleek new magazine theme</h2>\n<p><img class="aligncenter size-large wp-image-2789" alt="The new Twenty Fourteen theme displayed on a laptop. tablet and phone" src="http://i0.wp.com/wpdotorg.files.wordpress.com/2013/12/twentyfourteen.jpg?resize=692%2C275" data-recalc-dims="1" /></p>\n<h3>Turn your blog into a magazine</h3>\n<p>Create a beautiful magazine-style site with WordPress and Twenty Fourteen. Choose a grid or a slider to display featured content on your homepage. Customize your site with three widget areas or change your layout with two page templates.</p>\n<p>With a striking design that does not compromise our trademark simplicity, Twenty Fourteen is our most intrepid default theme yet.</p>\n<hr />\n<h2>Beginning of a new era</h2>\n<p>This release was led by Matt Mullenweg. This is our second release using the new plugin-first development process, with a much shorter timeframe than in the past. We think it’s been going great. You can check out the features currently in production on the <a title="Make WordPress Core" href="http://make.wordpress.org/core/" target="_blank">make/core blog</a>.</p>\n<p>There are 188 contributors with props in this release:</p>\n<p><a href="http://profiles.wordpress.org/aaronholbrook">Aaron Holbrook</a>, <a href="http://profiles.wordpress.org/jorbin">Aaron Jorbin</a>, <a href="http://profiles.wordpress.org/adamsilverstein">adamsilverstein</a>, <a href="http://profiles.wordpress.org/admiralthrawn">admiralthrawn</a>, <a href="http://profiles.wordpress.org/ahoereth">Alexander Hoereth</a>, <a href="http://profiles.wordpress.org/collinsinternet">Allan Collins</a>, <a href="http://profiles.wordpress.org/sabreuse">Amy Hendrix (sabreuse)</a>, <a href="http://profiles.wordpress.org/nacin">Andrew Nacin</a>, <a href="http://profiles.wordpress.org/azaozz">Andrew Ozz</a>, <a href="http://profiles.wordpress.org/aralbald">Andrey Kabakchiev</a>, <a href="http://profiles.wordpress.org/apeatling">Andy Peatling</a>, <a href="http://profiles.wordpress.org/ankitgadertcampcom">Ankit Gade</a>, <a href="http://profiles.wordpress.org/atimmer">Anton Timmermans</a>, <a href="http://profiles.wordpress.org/fliespl">Arkadiusz Rzadkowolski</a>, <a href="http://profiles.wordpress.org/aubreypwd">Aubrey Portwood</a>, <a href="http://profiles.wordpress.org/bassgang">bassgang</a>, <a href="http://profiles.wordpress.org/empireoflight">Ben Dunkle</a>, <a href="http://profiles.wordpress.org/bananastalktome">Billy (bananastalktome)</a>, <a href="http://profiles.wordpress.org/binarymoon">binarymoon</a>, <a href="http://profiles.wordpress.org/bradyvercher">Brady Vercher</a>, <a href="http://profiles.wordpress.org/kraftbj">Brandon Kraft</a>, <a href="http://profiles.wordpress.org/rzen">Brian Richards</a>, <a href="http://profiles.wordpress.org/bpetty">Bryan Petty</a>, <a href="http://profiles.wordpress.org/calin">Calin Don</a>, <a href="http://profiles.wordpress.org/carldanley">Carl Danley</a>, <a href="http://profiles.wordpress.org/sixhours">Caroline Moore</a>, <a href="http://profiles.wordpress.org/caspie">Caspie</a>, <a href="http://profiles.wordpress.org/chrisbliss18">Chris Jean</a>, <a href="http://profiles.wordpress.org/iblamefish">Clinton Montague</a>, <a href="http://profiles.wordpress.org/cojennin">cojennin</a>, <a href="http://profiles.wordpress.org/corphi">Corphi</a>, <a href="http://profiles.wordpress.org/dbernar1">Dan Bernardic</a>, <a href="http://profiles.wordpress.org/danieldudzic">Daniel Dudzic</a>, <a href="http://profiles.wordpress.org/koop">Daryl Koopersmith</a>, <a href="http://profiles.wordpress.org/datafeedrcom">datafeedr</a>, <a href="http://profiles.wordpress.org/lessbloat">Dave Martin</a>, <a href="http://profiles.wordpress.org/drw158">Dave Whitley</a>, <a href="http://profiles.wordpress.org/dd32">Dion Hulse</a>, <a href="http://profiles.wordpress.org/ocean90">Dominik Schilling</a>, <a href="http://profiles.wordpress.org/dougwollison">Doug Wollison</a>, <a href="http://profiles.wordpress.org/drewapicture">Drew Jaynes</a>, <a href="http://profiles.wordpress.org/dziudek">dziudek</a>, <a href="http://profiles.wordpress.org/ericlewis">Eric Andrew Lewis</a>, <a href="http://profiles.wordpress.org/ericmann">Eric Mann</a>, <a href="http://profiles.wordpress.org/ethitter">Erick Hitter</a>, <a href="http://profiles.wordpress.org/evansolomon">Evan Solomon</a>, <a href="http://profiles.wordpress.org/faison">Faison</a>, <a href="http://profiles.wordpress.org/fboender">fboender</a>, <a href="http://profiles.wordpress.org/frank-klein">Frank Klein</a>, <a href="http://profiles.wordpress.org/garyj">Gary Jones</a>, <a href="http://profiles.wordpress.org/pento">Gary Pendergast</a>, <a href="http://profiles.wordpress.org/soulseekah">Gennady Kovshenin</a>, <a href="http://profiles.wordpress.org/georgestephanis">George Stephanis</a>, <a href="http://profiles.wordpress.org/gnarf37">gnarf37</a>, <a href="http://profiles.wordpress.org/tivnet">Gregory Karpinsky</a>, <a href="http://profiles.wordpress.org/hanni">hanni</a>, <a href="http://profiles.wordpress.org/helen">Helen Hou-Sandi</a>, <a href="http://profiles.wordpress.org/iandunn">Ian Dunn</a>, <a href="http://profiles.wordpress.org/ipstenu">Ipstenu (Mika Epstein)</a>, <a href="http://profiles.wordpress.org/isaackeyet">Isaac Keyet</a>, <a href="http://profiles.wordpress.org/jdgrimes">J.D. Grimes</a>, <a href="http://profiles.wordpress.org/jacklenox">Jack Lenox</a>, <a href="http://profiles.wordpress.org/janhenckens">janhenckens</a>, <a href="http://profiles.wordpress.org/avryl">Janneke Van Dorpe</a>, <a href="http://profiles.wordpress.org/janrenn">janrenn</a>, <a href="http://profiles.wordpress.org/jblz">Jeff Bowen</a>, <a href="http://profiles.wordpress.org/jeffr0">Jeff Chandler</a>, <a href="http://profiles.wordpress.org/jenmylo">Jen Mylo</a>, <a href="http://profiles.wordpress.org/buffler">Jeremy Buller</a>, <a href="http://profiles.wordpress.org/jeremyfelt">Jeremy Felt</a>, <a href="http://profiles.wordpress.org/jeherve">Jeremy Herve</a>, <a href="http://profiles.wordpress.org/jpry">Jeremy Pry</a>, <a href="http://profiles.wordpress.org/jayjdk">Jesper Johansen (jayjdk)</a>, <a href="http://profiles.wordpress.org/jhned">jhned</a>, <a href="http://profiles.wordpress.org/jim912">jim912</a>, <a href="http://profiles.wordpress.org/jartes">Joan Artes</a>, <a href="http://profiles.wordpress.org/joedolson">Joe Dolson</a>, <a href="http://profiles.wordpress.org/joen">Joen Asmussen</a>, <a href="http://profiles.wordpress.org/johnbillion">John Blackbourn</a>, <a href="http://profiles.wordpress.org/johnafish">John Fish</a>, <a href="http://profiles.wordpress.org/johnjamesjacoby">John James Jacoby</a>, <a href="http://profiles.wordpress.org/duck_">Jon Cave</a>, <a href="http://profiles.wordpress.org/joostdevalk">Joost de Valk</a>, <a href="http://profiles.wordpress.org/joshuaabenazer">Joshua Abenazer</a>, <a href="http://profiles.wordpress.org/nukaga">Junko Nukaga</a>, <a href="http://profiles.wordpress.org/devesine">Justin de Vesine</a>, <a href="http://profiles.wordpress.org/justinsainton">Justin Sainton</a>, <a href="http://profiles.wordpress.org/kadamwhite">K. Adam White</a>, <a href="http://profiles.wordpress.org/trepmal">Kailey (trepmal)</a>, <a href="http://profiles.wordpress.org/codebykat">Kat Hagan</a>, <a href="http://profiles.wordpress.org/littlethingsstudio">Kate Whitley</a>, <a href="http://profiles.wordpress.org/ryelle">Kelly Dwan</a>, <a href="http://profiles.wordpress.org/kpdesign">Kim Parsell</a>, <a href="http://profiles.wordpress.org/kwight">Kirk Wight</a>, <a href="http://profiles.wordpress.org/koki4a">Konstantin Dankov</a>, <a href="http://profiles.wordpress.org/kovshenin">Konstantin Kovshenin</a>, <a href="http://profiles.wordpress.org/obenland">Konstantin Obenland</a>, <a href="http://profiles.wordpress.org/drozdz">Krzysiek Drozdz</a>, <a href="http://profiles.wordpress.org/lancewillett">Lance Willett</a>, <a href="http://profiles.wordpress.org/leewillis77">Lee Willis</a>, <a href="http://profiles.wordpress.org/lite3">lite3</a>, <a href="http://profiles.wordpress.org/lucp">Luc Princen</a>, <a href="http://profiles.wordpress.org/latz">Lutz Schroer</a>, <a href="http://profiles.wordpress.org/mako09">Mako</a>, <a href="http://profiles.wordpress.org/markjaquith">Mark Jaquith</a>, <a href="http://profiles.wordpress.org/markmcwilliams">Mark McWilliams</a>, <a href="http://profiles.wordpress.org/markoheijnen">Marko Heijnen</a>, <a href="http://profiles.wordpress.org/matt">Matt Mullenweg</a>, <a href="http://profiles.wordpress.org/iammattthomas">Matt Thomas</a>, <a href="http://profiles.wordpress.org/mattwiebe">Matt Wiebe</a>, <a href="http://profiles.wordpress.org/mdbitz">Matthew Denton</a>, <a href="http://profiles.wordpress.org/mattheu">Matthew Haines-Young</a>, <a href="http://profiles.wordpress.org/matveb">Matías Ventura</a>, <a href="http://profiles.wordpress.org/megane9988">megane9988</a>, <a href="http://profiles.wordpress.org/melchoyce">Mel Choyce</a>, <a href="http://profiles.wordpress.org/micahwave">micahwave</a>, <a href="http://profiles.wordpress.org/cainm">Michael Cain</a>, <a href="http://profiles.wordpress.org/mitchoyoshitaka">Michael Erlewine</a>, <a href="http://profiles.wordpress.org/michelwppi">Michel - xiligroup dev</a>, <a href="http://profiles.wordpress.org/chellycat">Michelle Langston</a>, <a href="http://profiles.wordpress.org/gradyetc">Mike Burns</a>, <a href="http://profiles.wordpress.org/mikehansenme">Mike Hansen</a>, <a href="http://profiles.wordpress.org/mikelittle">Mike Little</a>, <a href="http://profiles.wordpress.org/dh-shredder">Mike Schroder</a>, <a href="http://profiles.wordpress.org/dimadin">Milan Dinic</a>, <a href="http://profiles.wordpress.org/batmoo">Mohammad Jangda</a>, <a href="http://profiles.wordpress.org/morganestes">Morgan Estes</a>, <a href="http://profiles.wordpress.org/mt8biz">moto hachi</a>, <a href="http://profiles.wordpress.org/Nao">Naoko Takano</a>, <a href="http://profiles.wordpress.org/neil_pie">Neil Pie</a>, <a href="http://profiles.wordpress.org/nickdaugherty">Nick Daugherty</a>, <a href="http://profiles.wordpress.org/celloexpressions">Nick Halsey</a>, <a href="http://profiles.wordpress.org/nbachiyski">Nikolay Bachiyski</a>, <a href="http://profiles.wordpress.org/ninio">ninio</a>, <a href="http://profiles.wordpress.org/ninnypants">ninnypants</a>, <a href="http://profiles.wordpress.org/nivijah">nivijah</a>, <a href="http://profiles.wordpress.org/nofearinc">nofearinc</a>, <a href="http://profiles.wordpress.org/nvwd">Nowell VanHoesen</a>, <a href="http://profiles.wordpress.org/odysseygate">odyssey</a>, <a href="http://profiles.wordpress.org/originalexe">OriginalEXE</a>, <a href="http://profiles.wordpress.org/swissspidy">Pascal Birchler</a>, <a href="http://profiles.wordpress.org/pauldewouters">Paul de Wouters</a>, <a href="http://profiles.wordpress.org/pavelevap">pavelevap</a>, <a href="http://profiles.wordpress.org/westi">Peter Westwood</a>, <a href="http://profiles.wordpress.org/senlin">Piet</a>, <a href="http://profiles.wordpress.org/ptahdunbar">Ptah Dunbar</a>, <a href="http://profiles.wordpress.org/raamdev">Raam Dev</a>, <a href="http://profiles.wordpress.org/bamadesigner">Rachel Carden</a>, <a href="http://profiles.wordpress.org/rachelbaker">rachelbaker</a>, <a href="http://profiles.wordpress.org/radices">Radices</a>, <a href="http://profiles.wordpress.org/mauryaratan">Ram Ratan Maurya</a>, <a href="http://profiles.wordpress.org/defries">Remkus de Vries</a>, <a href="http://profiles.wordpress.org/ounziw">Rescuework Support</a>, <a href="http://profiles.wordpress.org/rickalee">Ricky Lee Whittemore</a>, <a href="http://profiles.wordpress.org/rdall">Robert Dall</a>, <a href="http://profiles.wordpress.org/wet">Robert Wetzlmayr, PHP-Programmierer</a>, <a href="http://profiles.wordpress.org/rodrigosprimo">Rodrigo Primo</a>, <a href="http://profiles.wordpress.org/ryan">Ryan Boren</a>, <a href="http://profiles.wordpress.org/otto42">Samuel Wood</a>, <a href="http://profiles.wordpress.org/sanchothefat">sanchothefat</a>, <a href="http://profiles.wordpress.org/sboisvert">sboisvert</a>, <a href="http://profiles.wordpress.org/scottbasgaard">Scott Basgaard</a>, <a href="http://profiles.wordpress.org/coffee2code">Scott Reilly</a>, <a href="http://profiles.wordpress.org/wonderboymusic">Scott Taylor</a>, <a href="http://profiles.wordpress.org/scribu">scribu</a>, <a href="http://profiles.wordpress.org/seanchayes">Sean Hayes</a>, <a href="http://profiles.wordpress.org/sergeybiryukov">Sergey Biryukov</a>, <a href="http://profiles.wordpress.org/shaunandrews">Shaun Andrews</a>, <a href="http://profiles.wordpress.org/designsimply">Sheri Bigelow (designsimply)</a>, <a href="http://profiles.wordpress.org/shinichin">ShinichiN</a>, <a href="http://profiles.wordpress.org/simonwheatley">Simon Wheatley</a>, <a href="http://profiles.wordpress.org/siobhan">Siobhan</a>, <a href="http://profiles.wordpress.org/siobhyb">Siobhan Bamber (siobhyb)</a>, <a href="http://profiles.wordpress.org/sirbrillig">sirbrillig</a>, <a href="http://profiles.wordpress.org/solarissmoke">solarissmoke</a>, <a href="http://profiles.wordpress.org/netweb">Stephen Edgar</a>, <a href="http://profiles.wordpress.org/stephenharris">Stephen Harris</a>, <a href="http://profiles.wordpress.org/stevenkword">Steven Word</a>, <a href="http://profiles.wordpress.org/iamtakashi">Takashi Irie</a>, <a href="http://profiles.wordpress.org/miyauchi">Takayuki Miyauchi</a>, <a href="http://profiles.wordpress.org/tmtoy">Takuma Morikawa</a>, <a href="http://profiles.wordpress.org/thomasguillot">Thomas Guillot</a>, <a href="http://profiles.wordpress.org/tierra">tierra</a>, <a href="http://profiles.wordpress.org/tillkruess">Till Krüss</a>, <a href="http://profiles.wordpress.org/tlamedia">TLA Media</a>, <a href="http://profiles.wordpress.org/tobiasbg">TobiasBg</a>, <a href="http://profiles.wordpress.org/tommcfarlin">tommcfarlin</a>, <a href="http://profiles.wordpress.org/zodiac1978">Torsten Landsiedel</a>, <a href="http://profiles.wordpress.org/taupecat">Tracy Rotton</a>, <a href="http://profiles.wordpress.org/trishasalas">trishasalas</a>, <a href="http://profiles.wordpress.org/mbmufffin">Tyler Smith</a>, <a href="http://profiles.wordpress.org/grapplerulrich">Ulrich</a>, <a href="http://profiles.wordpress.org/undergroundnetwork">undergroundnetwork</a>, <a href="http://profiles.wordpress.org/l10n">Vladimir</a>, <a href="http://profiles.wordpress.org/westonruter">Weston Ruter</a>, <a href="http://profiles.wordpress.org/yoavf">Yoav Farhi</a>, <a href="http://profiles.wordpress.org/yonasy">yonasy</a>, <a href="http://profiles.wordpress.org/yurivictor">Yuri Victor</a>, and <a href="http://profiles.wordpress.org/tollmanz">Zack Tollman</a>. Also thanks to <a href="http://benmorrison.org/">Ben Morrison</a> and <a href="http://christineswebb.com/">Christine Webb</a> for help with the video.</p>\n<p>Thanks for choosing WordPress. See you soon for version 3.9!</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:46:"http://wordpress.org/news/2013/12/parker/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:7:"3.8 RC2";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:42:"http://wordpress.org/news/2013/12/3-8-rc2/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:51:"http://wordpress.org/news/2013/12/3-8-rc2/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 10 Dec 2013 01:08:38 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=2805";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:343:"Release candidate 2 of WordPress 3.8 is now available for download. This is the last pre-release, and we expect it to be effectively identical to what’s officially released to the public on Thursday. This means if you are a plugin or theme developer, start your engines! (If they’re not going already.) Lots of admin code […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Matt Mullenweg";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:1180:"<p>Release candidate 2 of WordPress 3.8 is <a href="http://wordpress.org/wordpress-3.8-RC2.zip">now available for download</a>. This is the last pre-release, and we expect it to be effectively identical to what’s officially released to the public on Thursday.</p>\n<p>This means if you are a plugin or theme developer, start your engines! (If they’re not going already.) Lots of admin code has changed so it’s especially important to see if your plugin works well within the new admin design and layout, and update <a href="http://wordpress.org/plugins/about/readme.txt">the “Tested up to:” part of your plugin readme.txt</a>.</p>\n<p>If there is something in your plugin that you’re unable to fix, or if you think you’ve found a bug, join us <a href="http://codex.wordpress.org/IRC">in #wordpress-dev in IRC</a>, especially if you’re able to join during the dev chat on Wednesday, or post in the <a href="http://wordpress.org/support/forum/alphabeta">alpha/beta forum</a>. The developers and designers who worked on this release are happy to help anyone update their code before the 3.8 release.</p>\n<p>Happy hacking, everybody!</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:47:"http://wordpress.org/news/2013/12/3-8-rc2/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:17:"WordPress 3.8 RC1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:45:"http://wordpress.org/news/2013/12/3-8-almost/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:54:"http://wordpress.org/news/2013/12/3-8-almost/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 04 Dec 2013 09:54:48 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=2760";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:345:"We’re entering the quiet but busy part of a release, whittling down issues to bring you all of the new features you’re excited about with the stability you expect from WordPress. There are just a few days from the “code freeze” for our 3.8 release, which includes a number of exciting enhancements, so the focus […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Matt Mullenweg";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:1873:"<p>We’re entering the quiet but busy part of a release, whittling down issues to bring you all of the new features you’re excited about with the stability you expect from WordPress. There are just a few days from the “code freeze” for our 3.8 release, <a href="http://wordpress.org/news/2013/11/wordpress-3-8-beta-1/">which includes a number of exciting enhancements</a>, so the focus is on identifying any major issues and resolving them as soon as possible.</p>\n<p>If you’ve ever wondered about how to contribute to WordPress, here’s a time you can: download this release candidate and use it in as many ways as you can imagine. Try to break it, and if you do, let us know how you did it so we can make sure it never happens again. If you work for a web host, this is the release you should test as much as possible and start getting your automatic upgrade systems and 1-click installers ready.</p>\n<p><a href="http://wordpress.org/wordpress-3.8-RC1.zip">Download WordPress 3.8 RC1</a> (zip) or use the <a href="http://wordpress.org/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”).</p>\n<p>If you think you’ve found a bug, you can post to the <a href="http://wordpress.org/support/forum/alphabeta">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a reproducible bug report, <a href="http://core.trac.wordpress.org/">file one on the WordPress Trac</a>. There, you can also find <a href="http://core.trac.wordpress.org/report/5">a list of known bugs</a> and <a href="http://core.trac.wordpress.org/query?status=closed&group=component&milestone=3.8">everything we’ve fixed</a> so far.</p>\n<p><em>We’re so close to the</em><br />\n<em>finish line, jump in and help</em><br />\n<em>good karma is yours.</em></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:50:"http://wordpress.org/news/2013/12/3-8-almost/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:6;a:6:{s:4:"data";s:45:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:20:"WordPress 3.8 Beta 1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:55:"http://wordpress.org/news/2013/11/wordpress-3-8-beta-1/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:64:"http://wordpress.org/news/2013/11/wordpress-3-8-beta-1/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 21 Nov 2013 05:21:56 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=2754";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:307:"The first beta of the 3.8 is now available, and the next dates to watch out for are code freeze on December 5th and a final release on December 12th. 3.8 brings together several of the features as plugins projects and while this isn’t our first rodeo, expect this to be more beta than usual. […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Matt Mullenweg";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:2236:"<p>The first beta of the 3.8 is now available, and the next dates to watch out for are code freeze on December 5th and a final release on December 12th.</p>\n<p>3.8 brings together <a href="http://make.wordpress.org/core/features-as-plugins/">several of the features as plugins projects</a> and while this isn’t our first rodeo, expect this to be more beta than usual. The headline things to test out in this release are:</p>\n<ul>\n<li>The new admin design, especially the responsive aspect of it. Try it out on different devices and browsers, see how it goes, especially the more complex pages like widgets or seldom-looked-at-places like Press This. Color schemes, which you can change on your profile, have also been spruced up.</li>\n<li>The dashboard homepage has been refreshed, poke and prod it.</li>\n<li>Choosing themes under Appearance is completely different, try to break it however possible.</li>\n<li>There’s a new default theme, Twenty Fourteen.</li>\n<li>Over 250 issues closed already.</li>\n</ul>\n<p>Given how many things in the admin have changed it’s extra super duper important to test as many plugins and themes with admin pages against the new stuff. Also if you’re a developer consider how you can make your admin interface fit the MP6 aesthetic better.</p>\n<p>As always, if you think you’ve found a bug, you can post to the <a href="http://wordpress.org/support/forum/alphabeta">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a reproducible bug report, <a href="http://core.trac.wordpress.org/">file one on the WordPress Trac</a>. There, you can also find <a href="http://core.trac.wordpress.org/report/5">a list of known bugs</a> and <a href="http://core.trac.wordpress.org/query?status=closed&group=component&milestone=3.8">everything we’ve fixed</a> so far.</p>\n<p><a href="http://wordpress.org/wordpress-3.8-beta-1.zip">Download WordPress 3.8 Beta 1</a> (zip) or use the <a href="http://wordpress.org/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”).</p>\n<p><em>Alphabet soup of</em><br />\n<em>Plugins as features galore</em><br />\n<em>The future is here</em></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:60:"http://wordpress.org/news/2013/11/wordpress-3-8-beta-1/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:7;a:6:{s:4:"data";s:45:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:35:"WordPress 3.7.1 Maintenance Release";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:50:"http://wordpress.org/news/2013/10/wordpress-3-7-1/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:59:"http://wordpress.org/news/2013/10/wordpress-3-7-1/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 29 Oct 2013 21:04:59 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Security";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=2745";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:371:"WordPress 3.7.1 is now available! This maintenance release addresses 11 bugs in WordPress 3.7, including: Images with captions no longer appear broken in the visual editor. Allow some sites running on old or poorly configured servers to continue to check for updates from WordPress.org. Avoid fatal errors with certain plugins that were incorrectly calling some […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"Andrew Nacin";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:1594:"<p>WordPress 3.7.1 is now available! This maintenance release addresses 11 bugs in WordPress 3.7, including:</p>\n<ul>\n<li>Images with captions no longer appear broken in the visual editor.</li>\n<li>Allow some sites running on old or poorly configured servers to continue to check for updates from WordPress.org.</li>\n<li>Avoid fatal errors with certain plugins that were incorrectly calling some WordPress functions too early.</li>\n<li>Fix hierarchical sorting in get_pages(), exclusions in wp_list_categories(), and in_category() when called with empty values.</li>\n<li>Fix a warning that may occur in certain setups while performing a search, and a few other notices.</li>\n</ul>\n<p>For a full list of changes, consult the <a href="http://core.trac.wordpress.org/query?milestone=3.7.1">list of tickets</a> and <a href="http://core.trac.wordpress.org/log/branches/3.7?stop_rev=25914&rev=25986">the changelog</a>.</p>\n<p>If you are one of the <a href="http://wordpress.org/download/counter/">nearly two million</a> already running WordPress 3.7, we will start rolling out the all-new <a href="http://wordpress.org/news/2013/10/basie/">automatic background updates</a> for WordPress 3.7.1 in the next few hours. For sites <a href="http://wordpress.org/plugins/background-update-tester/">that support them</a>, of course.</p>\n<p><a href="http://wordpress.org/download/">Download WordPress 3.7.1</a> or venture over to <strong>Dashboard → Updates</strong> and simply click “Update Now.”</p>\n<p><em>Just a few fixes<br />\nYour new update attitude:<br />\nZero clicks given</em></p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:55:"http://wordpress.org/news/2013/10/wordpress-3-7-1/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:25:"WordPress 3.7 “Basie”";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:40:"http://wordpress.org/news/2013/10/basie/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:49:"http://wordpress.org/news/2013/10/basie/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 24 Oct 2013 22:35:10 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:1:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=2736";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:357:"Version 3.7 of WordPress, named “Basie” in honor of Count Basie, is available for download or update in your WordPress dashboard. This release features some of the most important architectural updates we’ve made to date. Here are the big ones: Updates while you sleep: With WordPress 3.7, you don’t have to lift a finger to […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Matt Mullenweg";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:17229:"<p>Version 3.7 of WordPress, named “Basie” in honor of <a href="http://en.wikipedia.org/wiki/Count_basie">Count Basie</a>, is available <a href="http://wordpress.org/download/">for download</a> or update in your WordPress dashboard. This release features some of the most important architectural updates we’ve made to date. Here are the big ones:</p>\n<ul>\n<li><strong>Updates while you sleep</strong>: With WordPress 3.7, you don’t have to lift a finger to apply maintenance and security updates. Most sites are now able to automatically apply these updates in the background. The update process also has been made even more reliable and secure, with dozens of new checks and safeguards.</li>\n<li><strong>Stronger password recommendations</strong>: Your password is your site’s first line of defense. It’s best to create passwords that are complex, long, and unique. To that end, our password meter has been updated in WordPress 3.7 to recognize common mistakes that can weaken your password: dates, names, keyboard patterns (123456789), and even pop culture references.</li>\n<li><strong>Better global support</strong>: Localized versions of WordPress will receive faster and more complete translations. WordPress 3.7 adds support for automatically installing the right language files and keeping them up to date, a boon for the many millions who use WordPress in a language other than English.</li>\n</ul>\n<p>For developers there are lots of options around how to control the new updates feature, including allowing it to handle major upgrades as well as minor ones, more sophisticated date query support, and multisite improvements. As always, if you’re hungry for more <a href="http://codex.wordpress.org/Version_3.7">dive into the Codex</a> or browse the <a href="http://core.trac.wordpress.org/query?status=closed&group=resolution&milestone=3.7">over 400 closed tickets on Trac</a>.</p>\n<h3>A New Wave</h3>\n<p>This release was led by Andrew Nacin, backed up by Dion Hulse and Jon Cave. This is our first release using the new plugin-first development process, with a much shorter timeframe than in the past. (3.6 was released in August.) The 3.8 release, due in December, will continue this plugin-led development cycle that gives much more autonomy to plugin leads and allows us to decouple feature development from a release. You can follow this grand experiment, and what we’re learning from it, <a href="http://make.wordpress.org/core/">on the make/core blog</a>. There are 211 contributors with props in this release:</p>\n<p><a href="http://profiles.wordpress.org/technosailor">Aaron Brazell</a>, <a href="http://profiles.wordpress.org/aaroncampbell">Aaron D. Campbell</a>, <a href="http://profiles.wordpress.org/aaronholbrook">Aaron Holbrook</a>, <a href="http://profiles.wordpress.org/jorbin">Aaron Jorbin</a>, <a href="http://profiles.wordpress.org/adamsilverstein">adamsilverstein</a>, <a href="http://profiles.wordpress.org/ahoereth">Alexander Hoereth</a>, <a href="http://profiles.wordpress.org/viper007bond">Alex Mills (Viper007Bond)</a>, <a href="http://profiles.wordpress.org/sabreuse">Amy Hendrix (sabreuse)</a>, <a href="http://profiles.wordpress.org/andg">andg</a>, <a href="http://profiles.wordpress.org/nacin">Andrew Nacin</a>, <a href="http://profiles.wordpress.org/norcross">Andrew Norcross</a>, <a href="http://profiles.wordpress.org/azaozz">Andrew Ozz</a>, <a href="http://profiles.wordpress.org/andrewspittle">Andrew Spittle</a>, <a href="http://profiles.wordpress.org/askapache">askapache</a>, <a href="http://profiles.wordpress.org/atimmer">atimmer</a>, <a href="http://profiles.wordpress.org/barry">Barry</a>, <a href="http://profiles.wordpress.org/beaulebens">Beau Lebens</a>, <a href="http://profiles.wordpress.org/benmoody">ben.moody</a>, <a href="http://profiles.wordpress.org/bhengh">Ben Miller</a>, <a href="http://profiles.wordpress.org/neoxx">Bernhard Riedl</a>, <a href="http://profiles.wordpress.org/bftrick">BFTrick</a>, <a href="http://profiles.wordpress.org/bananastalktome">Billy (bananastalktome)</a>, <a href="http://profiles.wordpress.org/bmb">bmb</a>, <a href="http://profiles.wordpress.org/kraftbj">Brandon Kraft</a>, <a href="http://profiles.wordpress.org/brianhogg">brianhogg</a>, <a href="http://profiles.wordpress.org/rzen">Brian Richards</a>, <a href="http://profiles.wordpress.org/bpetty">Bryan Petty</a>, <a href="http://profiles.wordpress.org/carldanley">Carl Danley</a>, <a href="http://profiles.wordpress.org/charlesclarkson">CharlesClarkson</a>, <a href="http://profiles.wordpress.org/chipbennett">Chip Bennett</a>, <a href="http://profiles.wordpress.org/chouby">Chouby</a>, <a href="http://profiles.wordpress.org/c3mdigital">Chris Olbekson</a>, <a href="http://profiles.wordpress.org/chrisrudzki">Chris Rudzki</a>, <a href="http://profiles.wordpress.org/aeg0125">coderaaron</a>, <a href="http://profiles.wordpress.org/coenjacobs">Coen Jacobs</a>, <a href="http://profiles.wordpress.org/crrobi01">Colin Robinson</a>, <a href="http://profiles.wordpress.org/andreasnrb">cyonite</a>, <a href="http://profiles.wordpress.org/daankortenbach">Daan Kortenbach</a>, <a href="http://profiles.wordpress.org/danielbachhuber">Daniel Bachhuber</a>, <a href="http://profiles.wordpress.org/convissor">Daniel Convissor</a>, <a href="http://profiles.wordpress.org/dartiss">dartiss</a>, <a href="http://profiles.wordpress.org/koop">Daryl Koopersmith</a>, <a href="http://profiles.wordpress.org/csixty4">Dave Ross</a>, <a href="http://profiles.wordpress.org/davidjlaietta">David Laietta</a>, <a href="http://profiles.wordpress.org/dd32">Dion Hulse</a>, <a href="http://profiles.wordpress.org/dllh">dllh</a>, <a href="http://profiles.wordpress.org/ocean90">Dominik Schilling (ocean90)</a>, <a href="http://profiles.wordpress.org/dpash">dpash</a>, <a href="http://profiles.wordpress.org/drewapicture">Drew Jaynes</a>, <a href="http://profiles.wordpress.org/drprotocols">DrProtocols</a>, <a href="http://profiles.wordpress.org/dustyf">Dustin Filippini</a>, <a href="http://profiles.wordpress.org/dzver">dzver</a>, <a href="http://profiles.wordpress.org/cais">Edward Caissie</a>, <a href="http://profiles.wordpress.org/enej">enej</a>, <a href="http://profiles.wordpress.org/ericlewis">Eric Andrew Lewis</a>, <a href="http://profiles.wordpress.org/ericmann">Eric Mann</a>, <a href="http://profiles.wordpress.org/evansolomon">Evan Solomon</a>, <a href="http://profiles.wordpress.org/faishal">faishal</a>, <a href="http://profiles.wordpress.org/faison">Faison</a>, <a href="http://profiles.wordpress.org/foofy">Foofy</a>, <a href="http://profiles.wordpress.org/fjarrett">Frankie Jarrett</a>, <a href="http://profiles.wordpress.org/frank-klein">Frank Klein</a>, <a href="http://profiles.wordpress.org/garyc40">Gary Cao</a>, <a href="http://profiles.wordpress.org/pento">Gary Pendergast</a>, <a href="http://profiles.wordpress.org/gayadesign">Gaya Kessler</a>, <a href="http://profiles.wordpress.org/georgestephanis">George Stephanis</a>, <a href="http://profiles.wordpress.org/gizburdt">Gizburdt</a>, <a href="http://profiles.wordpress.org/goldenapples">goldenapples</a>, <a href="http://profiles.wordpress.org/gradyetc">gradyetc</a>, <a href="http://profiles.wordpress.org/gcorne">Gregory Cornelius</a>, <a href="http://profiles.wordpress.org/webord">Gustavo Bordoni</a>, <a href="http://profiles.wordpress.org/hakre">hakre</a>, <a href="http://profiles.wordpress.org/helen">Helen Hou-Sandi</a>, <a href="http://profiles.wordpress.org/iandunn">Ian Dunn</a>, <a href="http://profiles.wordpress.org/ipstenu">Ipstenu (Mika Epstein)</a>, <a href="http://profiles.wordpress.org/creativeinfusion">itinerant</a>, <a href="http://profiles.wordpress.org/jdgrimes">J.D. Grimes</a>, <a href="http://profiles.wordpress.org/jakubtyrcha">jakub.tyrcha</a>, <a href="http://profiles.wordpress.org/jamescollins">James Collins</a>, <a href="http://profiles.wordpress.org/jenmylo">Jen Mylo</a>, <a href="http://profiles.wordpress.org/buffler">Jeremy Buller</a>, <a href="http://profiles.wordpress.org/jeremyfelt">Jeremy Felt</a>, <a href="http://profiles.wordpress.org/jayjdk">Jesper Johansen (jayjdk)</a>, <a href="http://profiles.wordpress.org/joehoyle">Joe Hoyle</a>, <a href="http://profiles.wordpress.org/jkudish">Joey Kudish</a>, <a href="http://profiles.wordpress.org/johnnyb">John Beales</a>, <a href="http://profiles.wordpress.org/johnbillion">John Blackbourn (johnbillion)</a>, <a href="http://profiles.wordpress.org/johnafish">John Fish</a>, <a href="http://profiles.wordpress.org/johnjamesjacoby">John James Jacoby</a>, <a href="http://profiles.wordpress.org/johnpbloch">John P. Bloch</a>, <a href="http://profiles.wordpress.org/jond3r">Jonas Bolinder (jond3r)</a>, <a href="http://profiles.wordpress.org/jchristopher">Jonathan Christopher</a>, <a href="http://profiles.wordpress.org/desrosj">Jonathan Desrosiers</a>, <a href="http://profiles.wordpress.org/duck_">Jon Cave</a>, <a href="http://profiles.wordpress.org/jonlynch">Jon Lynch</a>, <a href="http://profiles.wordpress.org/joostdevalk">Joost de Valk</a>, <a href="http://profiles.wordpress.org/josephscott">Joseph Scott</a>, <a href="http://profiles.wordpress.org/betzster">Josh Betz</a>, <a href="http://profiles.wordpress.org/devesine">Justin de Vesine</a>, <a href="http://profiles.wordpress.org/justinsainton">Justin Sainton</a>, <a href="http://profiles.wordpress.org/kadamwhite">K.Adam White</a>, <a href="http://profiles.wordpress.org/trepmal">Kailey (trepmal)</a>, <a href="http://profiles.wordpress.org/ketwaroo">Ketwaroo</a>, <a href="http://profiles.wordpress.org/kevinb">kevinB</a>, <a href="http://profiles.wordpress.org/kpdesign">Kim Parsell</a>, <a href="http://profiles.wordpress.org/kitchin">kitchin</a>, <a href="http://profiles.wordpress.org/kovshenin">Konstantin Kovshenin</a>, <a href="http://profiles.wordpress.org/obenland">Konstantin Obenland</a>, <a href="http://profiles.wordpress.org/koopersmith">koopersmith</a>, <a href="http://profiles.wordpress.org/kurtpayne">Kurt Payne</a>, <a href="http://profiles.wordpress.org/lancewillett">Lance Willett</a>, <a href="http://profiles.wordpress.org/leewillis77">Lee Willis (leewillis77)</a>, <a href="http://profiles.wordpress.org/lessbloat">lessbloat</a>, <a href="http://profiles.wordpress.org/layotte">Lew Ayotte</a>, <a href="http://profiles.wordpress.org/lgedeon">Luke Gedeon</a>, <a href="http://profiles.wordpress.org/iworks">Marcin Pietrzak</a>, <a href="http://profiles.wordpress.org/cimmo">Marco Cimmino</a>, <a href="http://profiles.wordpress.org/marco_teethgrinder">Marco Galasso</a>, <a href="http://profiles.wordpress.org/markjaquith">Mark Jaquith</a>, <a href="http://profiles.wordpress.org/markmcwilliams">Mark McWilliams</a>, <a href="http://profiles.wordpress.org/markoheijnen">Marko Heijnen</a>, <a href="http://profiles.wordpress.org/melchoyce">Mel Choyce</a>, <a href="http://profiles.wordpress.org/tw2113">Michael Beckwith</a>, <a href="http://profiles.wordpress.org/mikehansenme">Mike Hansen</a>, <a href="http://profiles.wordpress.org/mikeschinkel">Mike Schinkel</a>, <a href="http://profiles.wordpress.org/dh-shredder">Mike Schroder</a>, <a href="http://profiles.wordpress.org/dimadin">Milan Dinic</a>, <a href="http://profiles.wordpress.org/mitchoyoshitaka">mitcho (Michael Yoshitaka Erlewine)</a>, <a href="http://profiles.wordpress.org/usermrpapa">Mr Papa</a>, <a href="http://profiles.wordpress.org/Nao">Naoko Takano</a>, <a href="http://profiles.wordpress.org/naomicbush">Naomi</a>, <a href="http://profiles.wordpress.org/alex-ye">Nashwan Doaqan</a>, <a href="http://profiles.wordpress.org/natejacobs">NateJacobs</a>, <a href="http://profiles.wordpress.org/nathanrice">nathanrice</a>, <a href="http://profiles.wordpress.org/niallkennedy">Niall Kennedy</a>, <a href="http://profiles.wordpress.org/nickdaugherty">Nick Daugherty</a>, <a href="http://profiles.wordpress.org/celloexpressions">Nick Halsey</a>, <a href="http://profiles.wordpress.org/nickmomrik">Nick Momrik</a>, <a href="http://profiles.wordpress.org/nikv">Nikhil Vimal (NikV)</a>, <a href="http://profiles.wordpress.org/nbachiyski">Nikolay Bachiyski</a>, <a href="http://profiles.wordpress.org/noahsilverstein">noahsilverstein</a>, <a href="http://profiles.wordpress.org/nofearinc">nofearinc</a>, <a href="http://profiles.wordpress.org/nukaga">nukaga</a>, <a href="http://profiles.wordpress.org/nullvariable">nullvariable</a>, <a href="http://profiles.wordpress.org/butuzov">Oleg Butuzov</a>, <a href="http://profiles.wordpress.org/paolal">Paolo Belcastro</a>, <a href="http://profiles.wordpress.org/xparham">Parham</a>, <a href="http://profiles.wordpress.org/pbiron">Paul Biron</a>, <a href="http://profiles.wordpress.org/pauldewouters">Paul de Wouters</a>, <a href="http://profiles.wordpress.org/pavelevap">pavelevap</a>, <a href="http://profiles.wordpress.org/peterjaap">peterjaap</a>, <a href="http://profiles.wordpress.org/westi">Peter Westwood</a>, <a href="http://profiles.wordpress.org/philiparthurmoore">Philip Arthur Moore</a>, <a href="http://profiles.wordpress.org/mordauk">Pippin Williamson</a>, <a href="http://profiles.wordpress.org/plocha">plocha</a>, <a href="http://profiles.wordpress.org/pollett">Pollett</a>, <a href="http://profiles.wordpress.org/ptahdunbar">Ptah Dunbar</a>, <a href="http://profiles.wordpress.org/ramiy">Rami Yushuvaev</a>, <a href="http://profiles.wordpress.org/rasheed">Rasheed Bydousi</a>, <a href="http://profiles.wordpress.org/raybernard">RayBernard</a>, <a href="http://profiles.wordpress.org/rboren">rboren</a>, <a href="http://profiles.wordpress.org/greuben">Reuben Gunday</a>, <a href="http://profiles.wordpress.org/rfair404">rfair404</a>, <a href="http://profiles.wordpress.org/iamfriendly">Richard Tape</a>, <a href="http://profiles.wordpress.org/r3df">Rick Radko</a>, <a href="http://profiles.wordpress.org/miqrogroove">Robert Chapin</a>, <a href="http://profiles.wordpress.org/rdall">Robert Dall</a>, <a href="http://profiles.wordpress.org/rodrigosprimo">Rodrigo Primo</a>, <a href="http://profiles.wordpress.org/wpmuguru">Ron Rennick</a>, <a href="http://profiles.wordpress.org/rpattillo">rpattillo</a>, <a href="http://profiles.wordpress.org/ryan">Ryan Boren</a>, <a href="http://profiles.wordpress.org/rmccue">Ryan McCue</a>, <a href="http://profiles.wordpress.org/hotchkissconsulting">Sam Hotchkiss</a>, <a href="http://profiles.wordpress.org/coffee2code">Scott Reilly</a>, <a href="http://profiles.wordpress.org/scottsweb">scottsweb</a>, <a href="http://profiles.wordpress.org/wonderboymusic">Scott Taylor</a>, <a href="http://profiles.wordpress.org/scribu">scribu</a>, <a href="http://profiles.wordpress.org/scruffian">scruffian</a>, <a href="http://profiles.wordpress.org/tenpura">Seisuke Kuraishi (tenpura)</a>, <a href="http://profiles.wordpress.org/sergeybiryukov">Sergey Biryukov</a>, <a href="http://profiles.wordpress.org/shinichin">ShinichiN</a>, <a href="http://profiles.wordpress.org/pross">Simon Prosser</a>, <a href="http://profiles.wordpress.org/simonwheatley">Simon Wheatley</a>, <a href="http://profiles.wordpress.org/siobhan">Siobhan</a>, <a href="http://profiles.wordpress.org/siobhyb">Siobhan Bamber (siobhyb)</a>, <a href="http://profiles.wordpress.org/sirzooro">sirzooro</a>, <a href="http://profiles.wordpress.org/solarissmoke">solarissmoke</a>, <a href="http://profiles.wordpress.org/sillybean">Stephanie Leary</a>, <a href="http://profiles.wordpress.org/netweb">Stephen Edgar (@netweb)</a>, <a href="http://profiles.wordpress.org/stephenharris">Stephen Harris</a>, <a href="http://profiles.wordpress.org/strangerstudios">strangerstudios</a>, <a href="http://profiles.wordpress.org/sweetie089">sweetie089</a>, <a href="http://profiles.wordpress.org/swissspidy">swissspidy</a>, <a href="http://profiles.wordpress.org/miyauchi">Takayuki Miyauchi</a>, <a href="http://profiles.wordpress.org/tmtoy">Takuma Morikawa</a>, <a href="http://profiles.wordpress.org/tlovett1">Taylor Lovett</a>, <a href="http://profiles.wordpress.org/tivnet">tivnet</a>, <a href="http://profiles.wordpress.org/tobiasbg">TobiasBg</a>, <a href="http://profiles.wordpress.org/tomauger">Tom Auger</a>, <a href="http://profiles.wordpress.org/toscho">toscho</a>, <a href="http://profiles.wordpress.org/wpsmith">Travis Smith</a>, <a href="http://profiles.wordpress.org/sorich87">Ulrich Sossou</a>, <a href="http://profiles.wordpress.org/vericgar">vericgar</a>, <a href="http://profiles.wordpress.org/vinod-dalvi">Vinod Dalvi</a>, <a href="http://profiles.wordpress.org/westonruter">Weston Ruter</a>, <a href="http://profiles.wordpress.org/wikicms">wikicms</a>, <a href="http://profiles.wordpress.org/willnorris">Will Norris</a>, <a href="http://profiles.wordpress.org/wojtekszkutnik">Wojtek Szkutnik</a>, <a href="http://profiles.wordpress.org/wycks">wycks</a>, <a href="http://profiles.wordpress.org/yoavf">Yoav Farhi</a>, and <a href="http://profiles.wordpress.org/yurivictor">Yuri Victor</a>.</p>\n<p>Enjoy what may be one of your last few manual updates. See you soon for version 3.8!</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:45:"http://wordpress.org/news/2013/10/basie/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:9;a:6:{s:4:"data";s:45:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:33:"WordPress 3.7 Release Candidate 2";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:68:"http://wordpress.org/news/2013/10/wordpress-3-7-release-candidate-2/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:77:"http://wordpress.org/news/2013/10/wordpress-3-7-release-candidate-2/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 23 Oct 2013 00:05:30 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=2729";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:417:"The second release candidate of WordPress 3.7 is now available for testing! Those of you already testing WordPress 3.7 will be updated automatically to RC2. (Nice.) If you’d like to start testing, there’s no time like the present! Try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”) or download the release candidate here (zip). Please post to the Alpha/Beta […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"Andrew Nacin";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:1183:"<p>The second release candidate of WordPress 3.7 is now available for testing!</p>\n<p>Those of you already testing WordPress 3.7 will be updated automatically to RC2. (<em>Nice.</em>) If you’d like to start testing, there’s no time like the present! Try the <a href="http://wordpress.org/extend/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”) or <a href="http://wordpress.org/wordpress-3.7-RC2.zip">download the release candidate here</a> (zip). Please post to the <a href="http://wordpress.org/support/forum/alphabeta/">Alpha/Beta area in the support forums</a> if you think you’ve found a bug, and if any known issues are raised, you’ll be able to <a href="http://core.trac.wordpress.org/report/5">find them here</a>.</p>\n<p>Developers, please test your plugins and themes against WordPress 3.7. If there is a compatibility issue, let us know as soon as possible so we can deal with it before the final release.</p>\n<p>For more on WordPress 3.7, check out the <a href="http://wordpress.org/news/2013/10/wordpress-3-7-release-candidate/">announcement post for Release Candidate 1</a>.</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:73:"http://wordpress.org/news/2013/10/wordpress-3-7-release-candidate-2/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:3:{s:4:"href";s:31:"http://wordpress.org/news/feed/";s:3:"rel";s:4:"self";s:4:"type";s:19:"application/rss+xml";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:44:"http://purl.org/rss/1.0/modules/syndication/";a:2:{s:12:"updatePeriod";a:1:{i:0;a:5:{s:4:"data";s:6:"hourly";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:15:"updateFrequency";a:1:{i:0;a:5:{s:4:"data";s:1:"1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}}}}}}s:4:"type";i:128;s:7:"headers";a:8:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Fri, 21 Mar 2014 02:16:40 GMT";s:12:"content-type";s:23:"text/xml; charset=UTF-8";s:10:"connection";s:5:"close";s:4:"vary";s:15:"Accept-Encoding";s:10:"x-pingback";s:36:"http://wordpress.org/news/xmlrpc.php";s:13:"last-modified";s:29:"Thu, 20 Mar 2014 05:01:25 GMT";s:4:"x-nc";s:11:"HIT lax 250";}s:5:"build";s:14:"20140320131242";}', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(279, '_transient_timeout_feed_mod_867bd5c64f85878d03a060509cd2f92c', '1395411401', 'no'),
(280, '_transient_feed_mod_867bd5c64f85878d03a060509cd2f92c', '1395368201', 'no'),
(284, '_transient_feed_mod_b9388c83948825c1edaef0d856b7b109', '1395368201', 'no'),
(285, '_transient_timeout_dash_4077549d03da2e451c8b5f002294ff51', '1395411401', 'no'),
(286, '_transient_dash_4077549d03da2e451c8b5f002294ff51', '<div class="rss-widget"><ul><li><a class=''rsswidget'' href=''http://wordpress.org/news/2014/03/wordpress-3-9-beta-2/'' title=''WordPress 3.9 Beta 2 is now available for testing! We’ve made more than a hundred changes since Beta 1, but we still need your help if we’re going to hit our goal of an April release. For what to look out for, please head on over to the Beta 1 announcement post. Some of the changes in […]''>WordPress 3.9 Beta 2</a> <span class="rss-date">March 20, 2014</span><div class=''rssSummary''>WordPress 3.9 Beta 2 is now available for testing! We’ve made more than a hundred changes since Beta 1, but we still need your help if we’re going to hit our goal of an April release. For what to look out for, please head on over to the Beta 1 announcement post. Some of the changes in […]</div></li></ul></div><div class="rss-widget"><ul><li><a class=''rsswidget'' href=''http://wptavern.com/protect-against-brute-force-attacks-by-adding-a-graphic-password-to-your-wordpress-admin-account?utm_source=rss&utm_medium=rss&utm_campaign=protect-against-brute-force-attacks-by-adding-a-graphic-password-to-your-wordpress-admin-account'' title=''Due to its popularity, WordPress is a favorite target of hackers looking to exploit any vulnerability to gain access to your site. Once inside they can do things like compromise your files, deface your website and start gobbling up all your server’s resources until you are shut down. With services like BruteProtect gaining traction and the recent widespread brute force attacks on WordPress sites, the incidence of compromised sites appears to be on the rise. Experts who specialize in reversing hacked WordPress sites will generally tell you that the most important thing you can do is create a strong password. WordPress 3.7′s improved password strength meter came at just the right time. Assuming you’ve already selected a strong password, it’s time to take it one step further with the help of plugins. WP Admin Graphic Password is a plugin that puts a new twist on WordPress’ traditional authentication mechanism. In addition to entering your text-based username and password, this plugin adds a graphic password for the site administrator. After you install the plugin, the settings page allows you to select an image and then add your password using your mouse or finger, in the case of mobile devices. After your password is set, the login page will require your graphic password as well as your original text-based username/password combination. If either one is omitted, you will not be permitted to enter the site. The lock button must be toggled open in order to reveal the graphic password entry, which is a further advantage against bots that are only trained to go after the traditional login form. The only way to crack this method is if the hacker employs a machine trained on heuristic attacks against graphic password interfaces. This is certainly not as common as attacks on text-based authentication. Combine the two methods and your average nefarious bot is going to have to be smart as hell to get through. Is this as strong as multi-factor authentication? Probably not. Generally two-factor authentication for WordPress utilizes the “something you have” requirement by asking you to produce a verification code from your phone. If you cannot be bothered with this or simply don’t have your phone on you at all times, then the graphic password might be a good alternative for you. I tested WP Graphic Admin Password and found it to work as advertised. It is a simple and convenient tool for adding a higher level of security to your WordPress site. It is especially useful if you frequently access your site from a public, possibly infected, computer that might be logging text-based passwords. Download WP Graphic Admin Password for free from WordPress.org.''>WPTavern: Protect Against Brute Force Attacks By Adding a Graphic Password to Your WordPress Admin Account</a></li><li><a class=''rsswidget'' href=''http://wordpress.tv/2014/03/20/joseph-karr-oconnor-cities-making-accessible-wordpress-themes-2/'' title='' ''>WordPress.tv: Joseph Karr O’Connor: Cities: Making Accessible WordPress Themes</a></li><li><a class=''rsswidget'' href=''http://wptavern.com/buddypress-2-0-to-add-signups-administration-screen?utm_source=rss&utm_medium=rss&utm_campaign=buddypress-2-0-to-add-signups-administration-screen'' title='' BuddyPress 2.0 will include a new “Manage Signups” screen in the WordPress admin for tracking the status of pending accounts. This enhancement helps community administrators moderate registrations and help facilitate the signup process for new users who are experiencing difficulty. BuddyPress requires new users to confirm their accounts by email before activation, but sometimes these emails are accidentally deleted, misunderstood or routed to the spam folder. The new “Manage Signups” screen is located under the Users menu, and administrators will see a little “bubble” to display the number of recent signups. This screen shows a list of who is in the process of signing up. Manage Signups" /> Manage Signups" width="831" height="351" class="size-full wp-image-19406" />Users > Manage Signups If the site has a long list of signups, you can use the search bar at the top to find a pending account by email or username. Administrators can activate the user, delete, or resend the activation email. However, the email can only be sent once per day. In the past, many administrators used the Unconfirmed plugin with BuddyPress in order to get these same features for managing signups. When 2.0 is released with signup management built in, anyone using this plugin with BuddyPress will no longer need it. Signup management could use more testing, as it makes a few changes to the way signups are handled in the database. Multisite installations are usually the only ones with a signups table. With this change to BuddyPress signup administration, all signups will be stored in the $wpdb->signups table, even on single site installations. This enhancement, in addition to the ability to edit profiles in the admin, will make BuddyPress community management much easier for administrators. If you want to check out the new signup management features, grab a copy of BuddyPress 2.0-bleeding edge and give it a test drive. It’s not as bloody as it sounds. In fact, the new features are working fairly smoothly already but the core team can always use more help in testing.''>WPTavern: BuddyPress 2.0 To Add Signups Administration Screen</a></li></ul></div><div class="rss-widget"><ul><li class=''dashboard-news-plugin''><span>Popular Plugin:</span> <a href=''http://wordpress.org/plugins/woocommerce/'' class=''dashboard-news-plugin-link''>WooCommerce - excelling eCommerce</a></h5> <span>(<a href=''plugin-install.php?tab=plugin-information&plugin=woocommerce&_wpnonce=3052760365&TB_iframe=true&width=600&height=800'' class=''thickbox'' title=''WooCommerce - excelling eCommerce''>Install</a>)</span></li></ul></div>', 'no'),
(277, '_transient_timeout_feed_867bd5c64f85878d03a060509cd2f92c', '1395411401', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(278, '_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:106:"WPTavern: Protect Against Brute Force Attacks By Adding a Graphic Password to Your WordPress Admin Account";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=19436";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:256:"http://wptavern.com/protect-against-brute-force-attacks-by-adding-a-graphic-password-to-your-wordpress-admin-account?utm_source=rss&utm_medium=rss&utm_campaign=protect-against-brute-force-attacks-by-adding-a-graphic-password-to-your-wordpress-admin-account";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3911:"<p>Due to its popularity, WordPress is a favorite target of hackers looking to exploit any vulnerability to gain access to your site. Once inside they can do things like compromise your files, deface your website and start gobbling up all your server’s resources until you are shut down.</p>\n<p>With services like BruteProtect <a href="http://wptavern.com/wordpress-service-provider-bruteprotect-secures-funding-forms-parka-llc" target="_blank">gaining traction</a> and the recent <a href="http://wptavern.com/large-bruteforce-attack-against-wordpress-sites-starting-to-subside" target="_blank">widespread brute force attacks on WordPress sites</a>, the incidence of compromised sites appears to be on the rise.</p>\n<p>Experts who specialize in reversing hacked WordPress sites will generally tell you that the most important thing you can do is create a strong password. WordPress 3.7′s <a href="http://wptavern.com/ridiculously-smart-password-meter-coming-to-wordpress-3-7" target="_blank">improved password strength meter</a> came at just the right time. Assuming you’ve already selected a strong password, it’s time to take it one step further with the help of plugins.</p>\n<p><a href="http://wordpress.org/plugins/wp-admin-graphic-password/" target="_blank">WP Admin Graphic Password</a> is a plugin that puts a new twist on WordPress’ traditional authentication mechanism. In addition to entering your text-based username and password, this plugin adds a graphic password for the site administrator.</p>\n<p>After you install the plugin, the settings page allows you to select an image and then add your password using your mouse or finger, in the case of mobile devices.</p>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/03/graphic-password.jpg" rel="prettyphoto[19436]"><img src="http://wptavern.com/wp-content/uploads/2014/03/graphic-password.jpg" alt="graphic-password" width="1170" height="618" class="aligncenter size-full wp-image-19446" /></a></p>\n<p>After your password is set, the login page will require your graphic password as well as your original text-based username/password combination. If either one is omitted, you will not be permitted to enter the site. The lock button must be toggled open in order to reveal the graphic password entry, which is a further advantage against bots that are only trained to go after the traditional login form.</p>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/03/graphic-password-login.jpg" rel="prettyphoto[19436]"><img src="http://wptavern.com/wp-content/uploads/2014/03/graphic-password-login.jpg" alt="graphic-password-login" width="646" height="768" class="aligncenter size-full wp-image-19447" /></a></p>\n<p>The only way to crack this method is if the hacker employs a machine trained on heuristic attacks against graphic password interfaces. This is certainly not as common as attacks on text-based authentication. Combine the two methods and your average nefarious bot is going to have to be smart as hell to get through.</p>\n<p>Is this as strong as multi-factor authentication? Probably not. Generally two-factor authentication for WordPress utilizes the “something you have” requirement by asking you to produce a verification code from your phone. If you cannot be bothered with this or simply don’t have your phone on you at all times, then the graphic password might be a good alternative for you.</p>\n<p>I tested WP Graphic Admin Password and found it to work as advertised. It is a simple and convenient tool for adding a higher level of security to your WordPress site. It is especially useful if you frequently access your site from a public, possibly infected, computer that might be logging text-based passwords. Download <a href="http://wordpress.org/plugins/wp-admin-graphic-password/" target="_blank">WP Graphic Admin Password</a> for free from WordPress.org.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 21 Mar 2014 00: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:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:1;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:80:"WordPress.tv: Joseph Karr O’Connor: Cities: Making Accessible WordPress Themes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wordpress.tv/?p=33298";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:95:"http://wordpress.tv/2014/03/20/joseph-karr-oconnor-cities-making-accessible-wordpress-themes-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:711:"<div id="v-jcFkPufa-1" class="video-player">\n</div><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/33298/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/33298/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=33298&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2014/03/20/joseph-karr-oconnor-cities-making-accessible-wordpress-themes-2/"><img alt="Joseph Karr O’Connor: Cities: Making Accessible WordPress Themes" src="http://videos.videopress.com/jcFkPufa/video-14a63fd141_std.original.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 20 Mar 2014 21:36:49 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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: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:61:"WPTavern: BuddyPress 2.0 To Add Signups Administration Screen";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=18167";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:166:"http://wptavern.com/buddypress-2-0-to-add-signups-administration-screen?utm_source=rss&utm_medium=rss&utm_campaign=buddypress-2-0-to-add-signups-administration-screen";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3414:"<p><a href="http://wptavern.com/wp-content/uploads/2014/03/signups.png" rel="prettyphoto[18167]"><img src="http://wptavern.com/wp-content/uploads/2014/03/signups.png" alt="signups" width="640" height="480" class="aligncenter size-full wp-image-19428" /></a></p>\n<p>BuddyPress 2.0 will include a new “Manage Signups” screen in the WordPress admin for tracking the status of pending accounts. This <a href="https://buddypress.trac.wordpress.org/ticket/5374" target="_blank">enhancement</a> helps community administrators moderate registrations and help facilitate the signup process for new users who are experiencing difficulty.</p>\n<p>BuddyPress requires new users to confirm their accounts by email before activation, but sometimes these emails are accidentally deleted, misunderstood or routed to the spam folder.</p>\n<p>The new “Manage Signups” screen is located under the Users menu, and administrators will see a little “<a href="https://buddypress.trac.wordpress.org/ticket/5374#comment:38" target="_blank">bubble</a>” to display the number of recent signups. This screen shows a list of who is in the process of signing up.</p>\n<div id="attachment_19406" class="wp-caption aligncenter"><a href="http://wptavern.com/wp-content/uploads/2014/03/pending.jpg" rel="prettyphoto[18167]"><img src="http://wptavern.com/wp-content/uploads/2014/03/pending.jpg" alt="Users > Manage Signups" /> Manage Signups" width="831" height="351" class="size-full wp-image-19406" /></a><p class="wp-caption-text">Users > Manage Signups</p></div>\n<p>If the site has a long list of signups, you can use the search bar at the top to find a pending account by email or username.</p>\n<p>Administrators can activate the user, delete, or resend the activation email. However, the email can only be sent once per day.</p>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/03/resend-activation.jpg" rel="prettyphoto[18167]"><img src="http://wptavern.com/wp-content/uploads/2014/03/resend-activation.jpg" alt="resend-activation" width="614" height="230" class="aligncenter size-full wp-image-19407" /></a></p>\n<p>In the past, many administrators used the <a href="http://wordpress.org/plugins/unconfirmed/" target="_blank">Unconfirmed plugin</a> with BuddyPress in order to get these same features for managing signups. When 2.0 is released with signup management built in, anyone using this plugin with BuddyPress will no longer need it.</p>\n<p>Signup management could use more testing, as it makes a few changes to the way signups are handled in the database. Multisite installations are usually the only ones with a signups table. With this change to BuddyPress signup administration, all signups will be stored in the $wpdb->signups table, even on single site installations.</p>\n<p>This enhancement, in addition to the ability to <a href="http://wptavern.com/buddypress-2-0-to-add-profile-editing-in-the-wordpress-admin" target="_blank">edit profiles in the admin</a>, will make BuddyPress community management much easier for administrators. If you want to check out the new signup management features, grab a copy of <a href="http://buddypress.org/download/" target="_blank">BuddyPress 2.0-bleeding edge</a> and give it a test drive. It’s not as bloody as it sounds. In fact, the new features are working fairly smoothly already but the core team can always use more help in testing.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 20 Mar 2014 20:57:06 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:60:"WordPress.tv: Natalie MacLees: Defining Your User Experience";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wordpress.tv/?p=33248";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/2014/03/20/natalie-maclees-defining-your-user-experience/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:669:"<div id="v-gB27KMj0-1" class="video-player">\n</div><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/33248/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/33248/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=33248&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2014/03/20/natalie-maclees-defining-your-user-experience/"><img alt="Natalie MacLees: Defining Your User Experience" src="http://videos.videopress.com/gB27KMj0/video-9ebc0c1115_std.original.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 20 Mar 2014 19:27:55 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"WordPress.tv";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:58:"WPTavern: CreativeMarket Acquired By The Makers Of AutoCAD";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=19380";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:160:"http://wptavern.com/creativemarket-acquired-by-the-makers-of-autocad?utm_source=rss&utm_medium=rss&utm_campaign=creativemarket-acquired-by-the-makers-of-autocad";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2482:"<p><a href="http://wptavern.com/wp-content/uploads/2014/03/CreativeMarketlogo.png" rel="prettyphoto[19380]"><img class="alignright size-full wp-image-19381" alt="CreativeMarket Logo" src="http://wptavern.com/wp-content/uploads/2014/03/CreativeMarketlogo.png" width="159" height="97" /></a>CreativeMarket, one of the first WordPress theme marketplaces to fully support the GPL license <a title="https://creativemarket.com/blog/2014/03/19/building-the-worlds-marketplace-for-design" href="https://creativemarket.com/blog/2014/03/19/building-the-worlds-marketplace-for-design">has been acquired</a> by <a title="http://www.autodesk.com/" href="http://www.autodesk.com/">Autodesk</a>, for an undisclosed amount. The marketplace sells everything from themes to templates to fonts. The site became one of the first marketplaces to be advertised on WordPress.org after <a title="https://creativemarket.com/blog/2013/02/19/all-wordpress-themes-now-100-gpl" href="https://creativemarket.com/blog/2013/02/19/all-wordpress-themes-now-100-gpl">they announced</a> they would only sell WordPress themes that are 100% GPL. It’s worth noting that Matt Mullenweg <a title="https://angel.co/creative-market" href="https://angel.co/creative-market">is an investor</a> of CreativeMarket.</p>\n<p>According to the announcement, the entire team will join <a title="http://www.autodesk.com/" href="http://www.autodesk.com/">Autodesk</a> with the company’s co-founders moving to San Francisco to continue their goal of selling creative products.</p>\n<blockquote><p>What does this mean for the community? For customers, it means access to even more high quality content at affordable prices, as we’re able to grow more quickly. For shop owners, it means we’ll have a larger platform to get your products in front of an even larger audience of customers.</p></blockquote>\n<p>The acquisition is just one of a few that’s happened within the WordPress community as of late. The most recent acquisition was <a title="http://crowdfavorite.com/blog/2014/01/welcome-pixel-jar/" href="http://crowdfavorite.com/blog/2014/01/welcome-pixel-jar/">Crowd Favorite acquiring Pixel Jar</a>. Does this mean we’ll start seeing modeling products and three-dimensional themes for sale on CreativeMarket or will the marketplace expand to include more categories of products? Only time will tell.</p>\n<p>What do you think of the acquisition? Does it make sense to you? Let us know in the comments.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 20 Mar 2014 10:51:20 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:67:"WPTavern: WordPress Plugin Repository Now Hosts Over 30,000 Plugins";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=19384";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:176:"http://wptavern.com/wordpress-plugin-repository-now-hosts-over-30000-plugins?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-plugin-repository-now-hosts-over-30000-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:1388:"<p>Early this morning, the <a title="http://wordpress.org/plugins/" href="http://wordpress.org/plugins/">WordPress.org plugin repository</a> set a mile stone by hosting the 30,000th plugin. I didn’t think it would happen until a few weeks from now but it shows you how many plugins are approved and added to the repository every day. Jan Reimers on Twitter celebrated with a whoop! I second that remark.</p>\n<blockquote class="twitter-tweet" width="550"><p>30.000 Plugins on <a href="https://t.co/xg9XCQo6am">https://t.co/xg9XCQo6am</a> whoop! <a href="http://t.co/IAAFgp2SpG">pic.twitter.com/IAAFgp2SpG</a></p>\n<p>— jan reimers (@reimersjan) <a href="https://twitter.com/reimersjan/statuses/446571430516248576">March 20, 2014</a></p></blockquote>\n<p></p>\n<p>The honors go to a plugin called <a title="http://wordpress.org/plugins/bws-google-maps/" href="http://wordpress.org/plugins/bws-google-maps/">BestWebSoft Google Maps</a> for being the 30,000th plugin to be added to the repository. According to the plugin’s description, it allows you to configure Google Maps and add them to your site quickly and easily.</p>\n<p>Congratulations to the WordPress plugin repository and especially to the WordPress community for continuing to share your problem solving plugins with the rest of the world.</p>\n<p>Any guesses on when the repository will cross 40,000 plugins?</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 20 Mar 2014 10:36:13 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:30:"Dev Blog: WordPress 3.9 Beta 2";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=3101";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:55:"http://wordpress.org/news/2014/03/wordpress-3-9-beta-2/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1884:"<p>WordPress 3.9 Beta 2 is now available for testing!</p>\n<p>We’ve made more than a hundred <a href="https://core.trac.wordpress.org/log?rev=27639&stop_rev=27500&limit=200">changes</a> since Beta 1, but we still need your help if we’re going to hit our goal of an April release. For what to look out for, please head on over to <a href="https://wordpress.org/news/2014/03/wordpress-3-9-beta-1/">the Beta 1 announcement post</a>. Some of the changes in Beta 2 include:</p>\n<ul>\n<li>Rendering of embedded audio and video players directly in the visual editor.</li>\n<li>Visual and functional improvements to the editor, the media manager, and theme installer.</li>\n<li>Various bug fixes to TinyMCE, the software behind the visual editor.</li>\n<li>Lots of fixes to widget management in the theme customizer.</li>\n</ul>\n<p>As always,<strong> if you think you’ve found a bug</strong>, you can post to the <a href="http://wordpress.org/support/forum/alphabeta">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a reproducible bug report, <a href="https://make.wordpress.org/core/reports/">file one on the WordPress Trac</a>. There, you can also find <a href="http://core.trac.wordpress.org/tickets/major">a list of known bugs</a> and <a href="http://core.trac.wordpress.org/query?status=closed&group=component&milestone=3.9">everything we’ve fixed</a> so far.</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 3.9, try the <a href="http://wordpress.org/extend/plugins/wordpress-beta-tester/">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href="http://wordpress.org/wordpress-3.9-beta2.zip">download the beta here</a> (zip).</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 20 Mar 2014 05:01:25 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s: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: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:57:"Dougal Campbell: Pantheon Platform Adds WordPress Support";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"http://dougal.gunters.org/?p=76811";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://dougal.gunters.org/blog/2014/03/19/pantheon-platform-adds-wordpress-support/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2755:"<div class="featured-image align-right"><img width="240" height="240" src="http://dougal.gunters.org/wordpress/wp-content/uploads/2014/03/pantheon_logo-240x240.png" class="attachment-post-thumbnail wp-post-image" alt="Pantheon Logo" /></div><p><a href="https://www.getpantheon.com/">Pantheon</a>, long known as a platform provider for Drupal hosting, has now added <a href="http://techcrunch.com/2014/03/19/website-platform-pantheon-launches-wordpress-support/">official support for WordPress</a>, as well. Pantheon provides a scalable web platform with devops-friendly dashboards and tools for deployment and management.</p>\n<blockquote><p>The first and most obvious thing we did was ensure the platform was WordPress-friendly. This is the only piece of work that wasn’t on our roadmap already, but luckily it wasn’t very hard. The requirements for running Drupal vs. WordPress are quite similar.</p>\n<p>The upside is that WordPress developers can expect tuned and friendly configurations for php, nginx, Varnish, mysql and Redis, with a stock set of Plugins to make the most of everything the platform has to offer.</p>\n<p><a href="https://www.getpantheon.com/blog/wordpress-developers-rejoice-pantheon-has-your-back">WordPress Developers Rejoice! Pantheon Has Your Back</a></p>\n</blockquote>\n<p>Interestingly, Pantheon already had a CLI (Command-Line Interface) tool called Terminus for managing services, which they originally implemented as a drush extension (drush is the “drupal shell”, a CLI for Drupal). In modifying their platform for WordPress support, they rewrote it as a stand-alone tool, borrowing a lot of ideas from wp-cli in the process.</p>\n<blockquote><p>We actually borrowed quite a lot from the wp-cli toolkit in this refactor. Our library code was largely portable from Drush, but we took their object structure and docstring-parsing magic, which is pretty strong stuff. As a result, we have a more robust CLI tool to build off in the future.</p></blockquote>\n<p>If you’re interested, <a href="https://www.getpantheon.com/pricing">they offer a free account</a> to let you check things out (no custom domain on the free level). Paid offerings begin at just $25/month.</p>\n<p>(I have no affiliation with Pantheon, if anyone is wondering)</p>\n<p>Original Article: <a rel="nofollow" href="http://dougal.gunters.org/blog/2014/03/19/pantheon-platform-adds-wordpress-support/">Pantheon Platform Adds WordPress Support</a><br />\n<a rel="nofollow" href="http://dougal.gunters.org">Dougal Campbell's geek ramblings - WordPress, web development, and world domination.</a></p>\n<div class="yarpp-related-rss yarpp-related-none">\n<img src="http://yarpp.org/pixels/5db43ee24c4f1e1d0e45d08cc91b0130" alt="YARPP" />\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, 20 Mar 2014 02:43:41 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"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: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:54:"Alex King: I’m live now on the DradCast – tune in!";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://alexking.org/?p=19686";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://alexking.org/blog/2014/03/19/19686";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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:"<div>\n<p>I’m live now on the <a href="http://dradcast.com/">DradCast</a> – tune in!</p>\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, 20 Mar 2014 00:00: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: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: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:74:"WPTavern: WordPress.com Formally Opens Its Marketplace to Theme Developers";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=19204";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:192:"http://wptavern.com/wordpress-com-formally-opens-its-marketplace-to-theme-developers?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-com-formally-opens-its-marketplace-to-theme-developers";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:12670:"<p>In 2011, <a title="http://en.blog.wordpress.com/2011/02/03/introducing-premium-themes/" href="http://en.blog.wordpress.com/2011/02/03/introducing-premium-themes/">WordPress.com </a>began offering commercial themes to its users. The service now has <strong>105 commercial themes</strong> to choose from. In order to sell themes on WordPress.com, you either had to be invited or reach out to Automattic. Those days are over now that they have <a title="http://theme.wordpress.com/join/" href="http://theme.wordpress.com/join/">launched a new landing page</a> for theme sellers interested in tapping into the WordPress.com market.</p>\n<p>WordPress.com is a huge market and considering there are less than <strong>300 themes in total to choose from</strong>, now seems like the perfect time to get involved. It’s hard to say how much income commercial theme sellers have made selling on WordPress.com since the sales figures are not publicly available.</p>\n<div id="attachment_19316" class="wp-caption aligncenter"><a href="http://wptavern.com/wp-content/uploads/2014/03/WPdotComPremiumThemes.png" rel="prettyphoto[19204]"><img class="size-large wp-image-19316" alt="105 Premium Themes Available On WordPress.com" src="http://wptavern.com/wp-content/uploads/2014/03/WPdotComPremiumThemes-500x416.png" width="500" height="416" /></a><p class="wp-caption-text">105 Premium Themes Available On WordPress.com</p></div>\n<p>I reached out to two companies selling themes on WordPress.com to see how well they’re doing and what advice they have for those looking to join the WordPress.com marketplace.</p>\n<h3>UpThemes Experiences Exponential Growth</h3>\n<p>Since UpThemes relaunched, <a title="https://upthemes.com/themes/" href="https://upthemes.com/themes/">three of their four themes</a> available are sold on WordPress.com. Chris Wallace, founder of UpThemes told me WordPress.com is its largest source of income. The company has experience exponential growth since launching its latest theme, <a title="http://theme.wordpress.com/themes/photolia/" href="http://theme.wordpress.com/themes/photolia/">Photolia,</a> in December of last year.</p>\n<div id="attachment_19308" class="wp-caption aligncenter"><a href="http://wptavern.com/wp-content/uploads/2014/03/PhotoliaByUpThemes.png" rel="prettyphoto[19204]"><img class="size-large wp-image-19308" alt="Photolia By UpThemes" src="http://wptavern.com/wp-content/uploads/2014/03/PhotoliaByUpThemes-500x319.png" width="500" height="319" /></a><p class="wp-caption-text">Photolia By UpThemes</p></div>\n<p>When UpThemes <a title="http://wptavern.com/upthemes-publishes-open-letter-sounds-wakeup-call-to-other-wordpress-theme-shops" href="http://wptavern.com/upthemes-publishes-open-letter-sounds-wakeup-call-to-other-wordpress-theme-shops">published its open letter</a> to the community back in February, one thing was clear. The company would no longer create themes filled with options, shortcodes, and sliders. The open letter was the company’s renewed commitment to keeping things simple. As it turns out, their new focus on simplicity is aligned with how themes are created on WordPress.com.</p>\n<blockquote><p>When we relaunched UpThemes, one of the main goals was to make it extremely easy to get up and running with our themes. WordPress.com lines up perfectly with that strategy. It allows us to sell, distribute, and update our themes very easily, ensuring that all customers are running the current version of each theme and have not made destructive changes that would render future updates unusable. This is the absolute best scenario for both our customers and our team.</p></blockquote>\n<div id="attachment_19328" class="wp-caption aligncenter"><a href="http://wptavern.com/wp-content/uploads/2014/03/YumblogOnWPdotComByUpthemes.png" rel="prettyphoto[19204]"><img class="size-full wp-image-19328" alt="Yumblog On WordPress.com By UpThemes" src="http://wptavern.com/wp-content/uploads/2014/03/YumblogOnWPdotComByUpthemes.png" width="587" height="440" /></a><p class="wp-caption-text">Yumblog On WordPress.com By UpThemes</p></div>\n<p>I asked Wallace what advice does he have for theme authors wanting to sell themes on WordPress.com. He said, “You should bring your best design skills because these premium themes can’t be overblown with shortcodes, widgets, custom post types, and option frameworks.”</p>\n<p>Themes on WordPress.com don’t have the luxury of having a million options and according to Wallace, customers don’t want those types of themes, “Bloggers don’t care about options, they care about getting noticed and making an impact. They don’t need 40 alternate homepage templates, they need a theme that makes a bold statement and works flawlessly”.</p>\n<p>Wallace is excited to see the marketplace open up and wants to see more theme authors join in. “I look forward to seeing more theme authors jump on board with WordPress.com because it would validate our thought that simplicity is the correct path for themes in 2014″.</p>\n<h3>MH Themes Has A Positive Impact On Sales</h3>\n<p>Michael Hebenstreit is the founder of <a title="http://www.mhthemes.com/" href="http://www.mhthemes.com/">MHThemes.com,</a> a company with the goal of creating magazine type themes which are suitable for News Websites, Online Magazines and other editorial Projects. MH Themes only sells one theme on WordPress.com called <a title="http://theme.wordpress.com/themes/mh-magazine/" href="http://theme.wordpress.com/themes/mh-magazine/">MH Magazine</a> but Hebenstreit told me it’s done very well for the company.</p>\n<div id="attachment_19311" class="wp-caption aligncenter"><a href="http://wptavern.com/wp-content/uploads/2014/03/MHMagazineTheme.png" rel="prettyphoto[19204]"><img class="size-large wp-image-19311" alt="MH Magazine by MH Themes" src="http://wptavern.com/wp-content/uploads/2014/03/MHMagazineTheme-500x313.png" width="500" height="313" /></a><p class="wp-caption-text">MH Magazine by MH Themes</p></div>\n<p>He said, “Selling on WordPress.com has had a positive impact on theme sales”. Since WordPress.com only has 250 themes available with 105 being commercial, it’s more likely users will notice a commercial theme. When asked how difficult it was to join, Hebenstreit replied, “The team behind <a href="http://WordPress.com">WordPress.com</a> is amazing, provide great support and do their best to help you launch your theme on <a href="http://WordPress.com">WordPress.com</a>.”<br />\nHebenstreit offers this advice to new sellers:</p>\n<blockquote><p>My advice to potential theme sellers on <a href="http://WordPress.com">WordPress.com</a> is to provide something unique which isn’t available yet. Due to the fact that there currently are not many themes available, unique items are still possible and will sell better.</p></blockquote>\n<h3>It’s Not As Hard As You Think To Sell Themes On WordPress.com</h3>\n<p>Sami Keijonen who runs <a title="https://foxnet-themes.fi/" href="https://foxnet-themes.fi/">FoxnetThemes.com</a> recently <a title="https://foxnet-themes.fi/2014/03/13/becoming-a-theme-author-in-wordpress-com/" href="https://foxnet-themes.fi/2014/03/13/becoming-a-theme-author-in-wordpress-com/">published his story</a> describing what it was like to go through the process of becoming a theme seller on WordPress.com. There are a lot of interesting tidbits from his story such as <a title="http://developer.wordpress.com/themes/" href="http://developer.wordpress.com/themes/">what’s discouraged</a> from being used:</p>\n<ul>\n<li>CSS Frameworks</li>\n<li>Theme Frameworks</li>\n<li>Shortcodes</li>\n<li>Widgets</li>\n<li>Custom post types</li>\n<li>Metaboxes</li>\n</ul>\n<p>He also includes some educational information on how to properly escape strings, remove defaults, and using the theme customizer. While I initially thought it would be difficult to sell a theme on WordPress.com, Keijonen’s experience proves it’s not as hard as I thought.</p>\n<h3>Advice From An Automattic Theme Wrangler</h3>\n<blockquote class="twitter-tweet" width="550"><p><a href="https://twitter.com/NickHamze">@NickHamze</a> <a href="https://twitter.com/MacManXcom">@MacManXcom</a> so, this happened. <a href="http://t.co/DJ0uEuWrpZ">pic.twitter.com/DJ0uEuWrpZ</a></p>\n<p>— Karen Arnold (@karenalma) <a href="https://twitter.com/karenalma/statuses/444545838757339136">March 14, 2014</a></p></blockquote>\n<p></p>\n<p>I asked Automattic Theme Wrangler, Ian Stewart, what advice would he tell sellers before submitting an application. He said “We’re looking for amazingly beautiful themes inside and out. My advice on getting there is to start with <a title="http://underscores.me/" href="http://underscores.me/">_s</a> and make it easy for WordPress users to understand your theme.”</p>\n<div id="attachment_19360" class="wp-caption aligncenter"><a href="http://wptavern.com/wp-content/uploads/2014/03/UnderscoresHeader.png" rel="prettyphoto[19204]"><img class="size-full wp-image-19360" alt="A Starter Theme Created by Automattic" src="http://wptavern.com/wp-content/uploads/2014/03/UnderscoresHeader.png" width="650" height="200" /></a><p class="wp-caption-text">A Starter Theme Created by Automattic</p></div>\n<p>_s is short for <a title="http://underscores.me/" href="http://underscores.me/">Underscores</a>, a WordPress starter theme created by Automattic that is the foundation of every theme built on WordPress.com. While basing your theme on Underscores may raise the odds of being selected to be part of the WordPress.com marketplace, it’s not a requirement.</p>\n<h3>Open Registration Will Hasten The Trend Of Simplifying Themes</h3>\n<p>During the past few months, <a title="http://wptavern.com/justin-tadlock-publishes-the-results-of-his-themeforest-experiment" href="http://wptavern.com/justin-tadlock-publishes-the-results-of-his-themeforest-experiment">we’ve written about</a> the trend of WordPress theme authors creating simpler themes without <a title="http://wptavern.com/wordpress-theme-shops-move-towards-preserving-data-portability" href="http://wptavern.com/wordpress-theme-shops-move-towards-preserving-data-portability">locking users in</a> through the use of shortcodes, custom post types, etc. These are the types of themes perfectly suited to be sold on WordPress.com. Opening registration will hasten the trend of which the entire WordPress community will benefit.</p>\n<h3>ThemeForest and WordPress.com Have A Potential Customer Base That Is Unmatched</h3>\n<p>One of the biggest reasons theme authors use ThemeForest is the size of its audience. Until now, it was the place to go to sell themes to the widest possible audience. Since WordPress.com <a title="http://en.wordpress.com/stats/" href="http://en.wordpress.com/stats/">hosts over 76 million websites</a>, that’s 76 million potential customers all in one place. However, nothing stops sellers from utilizing both marketplaces as WordPress.com requires no exclusivity to sell on its platform.</p>\n<p>ThemeForest and WordPress.com give sellers the chance to have their products in front of millions of people. This is an audience that even the most popular commercial theme companies can’t match. In fact, companies like <a title="http://theme.wordpress.com/themes/by/studiopress/" href="http://theme.wordpress.com/themes/by/studiopress/">StudioPress</a>, <a title="http://theme.wordpress.com/themes/by/the-theme-foundry/" href="http://theme.wordpress.com/themes/by/the-theme-foundry/">The Theme Foundry</a>, and <a title="http://theme.wordpress.com/themes/by/woothemes/" href="http://theme.wordpress.com/themes/by/woothemes/">WooThemes</a> are already benefiting from being listed on WordPress.com.</p>\n<p>I encourage you to <a title="http://theme.wordpress.com/join/" href="http://theme.wordpress.com/join/">submit your request</a> to WordPress.com. There are few opportunities to sell WordPress themes to a relevant audience of millions without having a huge marketing campaign. Currently, commercial theme authors would be competing against less than 300 themes. Since sellers can determine the price and keep 50% of the sale, not doing so seems like it wouldn’t make much sense.</p>\n<p>If selling themes is not your cup of tea, consider <a title="http://automattic.com/work-with-us/" href="http://automattic.com/work-with-us/">putting in a job application</a> to be a <a title="http://automattic.com/work-with-us/theme-wrangler/" href="http://automattic.com/work-with-us/theme-wrangler/">theme wrangler</a> for Automattic. They’re hiring.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 19 Mar 2014 23:36:45 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:71:"WPTavern: JustWrite: A Free WordPress Magazine Theme With a Bold Design";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=19312";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:184:"http://wptavern.com/justwrite-a-free-wordpress-magazine-theme-with-a-bold-design?utm_source=rss&utm_medium=rss&utm_campaign=justwrite-a-free-wordpress-magazine-theme-with-a-bold-design";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3766:"<p>Most of the free WordPress themes out there are geared toward single-author blogs. It’s rare to find a decent option for magazines, because these types of themes take a little more effort to design and build, given the massive amount of content typically included on the homepage.</p>\n<p><a href="http://wordpress.org/themes/justwrite" target="_blank">JustWrite</a> is a new magazine theme on WordPress.org that presents posts in an elegant way. Designed by Alexandru Cosmin, JustWrite nicely displays featured posts, categories and widgets without making your eyes bleed. Many publications are afflicted with a claustrophobia-inducing layout that causes readers to abandon the page after it loads. The JustWrite theme, however, achieves that coveted balance between space and content.</p>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/03/justwrite.png" rel="prettyphoto[19312]"><img src="http://wptavern.com/wp-content/uploads/2014/03/justwrite.png" alt="justwrite" width="880" height="660" class="aligncenter size-full wp-image-19351" /></a></p>\n<h3>Customizing JustWrite</h3>\n<p>This theme packs an impressive number of options into WordPress’ native customizer, including the following:</p>\n<ul>\n<li><strong>Custom Header</strong> – Specify logo image/font color, background image/color, and header border color</li>\n<li><strong>Top Menu</strong> – Enable/disable fixed positioning, customize border and background colors</li>\n<li><strong>Top Menu Colors</strong> – Specify link and hover colors</li>\n<li><strong>Global</strong> – Customize global background, border, link and font colors</li>\n<li><strong>Typography</strong> – Select from four font families</li>\n<li><strong>Mini Sidebar Configuration</strong> – Set featured menus</li>\n<li><strong>Site Text</strong> – Customize footer, site title, tagline text</li>\n</ul>\n<p>With a few changes in the customizer, you can easily alter the theme to have a dark design, if you choose:</p>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/03/justwrite-dark.jpg" rel="prettyphoto[19312]"><img src="http://wptavern.com/wp-content/uploads/2014/03/justwrite-dark.jpg" alt="justwrite-dark" width="1280" height="1121" class="aligncenter size-full wp-image-19362" /></a></p>\n<p>In addition to all the options built into the customizer, JustWrite has its own options page for configuring the slider, adding a favicon, adding social buttons, setting up advertising and enabling the author box.</p>\n<p>One particularly awesome thing about the <a href="http://demo.acosmin.com/?theme=acosminblogger" target="_blank">JustWrite demo</a> is that it contains a live example for virtually every permutation of the options, i.e. examples with mini-sidebar disabled, <a href="http://demo.acosmin.com/themes/acosminblogger/header-background-img/" target="_blank">header background image enabled</a>, <a href="http://demo.acosmin.com/themes/acosminblogger/index-example/" target="_blank">dark colors</a>, all available font styles, <a href="http://demo.acosmin.com/themes/acosminblogger/fixed-menu/" target="_blank">fixed menu disabled</a>, etc.</p>\n<p>JustWrite includes support for Font Awesome icons, multiple sidebars and page templates, as well as a host of widgets tailored for magazines: featured, popular and recent posts, latest tweets, and advertising. Check out the theme’s <a href="http://www.acosmin.com/theme/justwrite/" target="_blank">homepage</a> for more information and a <a href="http://demo.acosmin.com/?theme=acosminblogger" target="_blank">live demo</a>. You can <a href="http://wordpress.org/themes/justwrite" target="_blank">download JustWrite</a> for free from WordPress.org via your site’s theme administration page.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 19 Mar 2014 22:50:45 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:84:"WordPress.tv: Dre Armeda and Tony Perez: Real WordPress Security – Kill The Noise!";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=33242";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:96:"http://wordpress.tv/2014/03/19/dre-armeda-and-tony-perez-real-wordpress-security-kill-the-noise/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:716:"<div id="v-8EzN5ZBC-1" class="video-player">\n</div><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/33242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/33242/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=33242&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2014/03/19/dre-armeda-and-tony-perez-real-wordpress-security-kill-the-noise/"><img alt="Dre Armeda and Tony Perez: Real WordPress Security – Kill The Noise!" src="http://videos.videopress.com/8EzN5ZBC/video-f5ede10501_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, 19 Mar 2014 19:56:05 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"WordPress.tv";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:12;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:99:"WordPress.tv: Mika Epstein: Managing Your Site’s Community: Don’t Make Commenting A Crime Scene";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=33246";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:109:"http://wordpress.tv/2014/03/19/mika-epstein-managing-your-sites-community-dont-make-commenting-a-crime-scene/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:740:"<div id="v-op0CE6UT-1" class="video-player">\n</div><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/33246/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/33246/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=33246&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2014/03/19/mika-epstein-managing-your-sites-community-dont-make-commenting-a-crime-scene/"><img alt="Mika Epstein: Managing Your Site’s Community: Don’t Make Commenting A Crime Scene" src="http://videos.videopress.com/op0CE6UT/video-db202b87d0_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, 19 Mar 2014 19:11:22 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"WordPress.tv";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:13;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:34:"Matt: FiveThirtyEight and 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:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=43664";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://ma.tt/2014/03/538-fb/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:429:"<p>Two cool new WordPresses launched on <a href="http://vip.wordpress.com/">VIP</a>: Nate Silver’s new FiveThirtyEight site, and <a href="http://newsroom.fb.com/">the Facebook Newsroom</a>, which I believe is the first WP-powered Facebook site. (Hopefully the first of many!) Also congrats to <a href="http://10up.com/">10up</a> and <a href="http://bynd.com/">Beyond</a> respectively for working on each of these sites.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 19 Mar 2014 18:59: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: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: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:95:"WPTavern: Spotlight On GavickPro: Unique BuddyPress Themes With Support For Third-Party Plugins";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=19273";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:232:"http://wptavern.com/spotlight-on-gavickpro-unique-buddypress-themes-with-support-for-third-party-plugins?utm_source=rss&utm_medium=rss&utm_campaign=spotlight-on-gavickpro-unique-buddypress-themes-with-support-for-third-party-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:7117:"<p>BuddyPress themes are still few and far between, despite the popularity of the social networking plugin for WordPress. After <a href="http://codex.buddypress.org/themes/theme-compatibility-1-7/a-quick-look-at-1-7-theme-compatibility/" target="_blank">theme compatibility</a> was introduced, effectively making BuddyPress able to work with nearly any WordPress theme, the market slowed its production of new products tailored specifically for BuddyPress.</p>\n<p>When you see a theme that highlights BuddyPress features in a big way, it’s worth taking note. <a href="http://www.gavick.com/wordpress-themes/m-social,135.html" target="_blank">(M) Social</a> is one such theme from the folks at <a href="http://www.gavick.com/" target="_blank">GavickPro</a>. Although new to the WordPress theme space, the GavickPro team is well established in the Joomla community with more than seven years of design experience.</p>\n<p>(M) Social puts the BuddyPress activity component in the spotlight with its grid style image header. It creates a seamless mix of content from both the blog and the community. Check out the <a href="http://www.gavick.com/demo/wordpress/msocial/" target="_blank">live demo</a>.</p>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/03/msocial.jpg" rel="prettyphoto[19273]"><img src="http://wptavern.com/wp-content/uploads/2014/03/msocial.jpg" alt="msocial" width="1327" height="620" class="aligncenter size-full wp-image-19275" /></a></p>\n<p>Because the grid widget makes up the majority of the homepage with its large, responsive, tile-based design, reading and navigating the site is easy for users on tablets and other mobile devices. A design that works well on mobile keeps the community connected on the go.</p>\n<h3>The Challenges of Supporting Third-Party Plugins in WordPress Themes</h3>\n<p>With the help of the <a href="http://wordpress.org/plugins/buddypress-media/" target="_blank">rtMedia plugin</a>, (M) Social incorporates BuddyPress gallery content into the design. I spoke to GavickPro’s consumer support specialist, Lee Batten, about the choice to support rtMedia. The Joomla version of the (M) Social theme is built for <a href="http://www.jomsocial.com/" target="_blank">JomSocial</a> which has support for images and photo uploads. Batten said they wanted to make sure that their BuddyPress version included this feature.</p>\n<blockquote><p>BuddyPress has no support for image galleries, yet galleries are an important part of social websites. We researched many similar plugins, and rtMedia seemed to be the simplest solution to achieve the effect required; it’s smoothly integrated with BuddyPress and allows users to upload media files from the front-end and sort them into albums, plus it has privacy controls and it’s responsive.</p></blockquote>\n<p>Including rtMedia support gave the team the freedom to design with gallery images in mind. It also provided the opportunity for them to create an additional BP Latest Photos widget to display community images posted to the activity stream.</p>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/03/latest-pictures-widget.jpg" rel="prettyphoto[19273]"><img src="http://wptavern.com/wp-content/uploads/2014/03/latest-pictures-widget.jpg" alt="latest-pictures-widget" width="716" height="348" class="aligncenter size-full wp-image-19285" /></a></p>\n<p>GavickPro is a good example of the trend for companies building themes around third-party plugins. Batten said, <strong>“Our experience in theme development in general has taught us that support for popular third-party extensions is extremely important and can make a theme much more attractive to customers.”</strong></p>\n<p>However, this approach isn’t without its unique challenges. For example, as it relates to the (M) Social theme, the team behind rtMedia release updates often. “On the one hand this is great for users, as these updates fix issues or add new features,” Batten said. “But often we must make some CSS changes to the theme after any updates to maintain the overall ‘feel’.”</p>\n<p>Keeping themes updated to support new versions of third-party extensions is a normal part of GavickPro’s maintenance process, but it’s also the most challenging, as their customers also have to update their themes more often to keep pace with the plugins.</p>\n<p>“Unfortunately, small plugins don’t usually have public beta or RC versions so there’s no way to ensure the theme is compatible with the update in advance,” Batten said. “Instead we must wait til after the update is released.” This is undoubtedly a struggle shared by many other WordPress theme shops that support smaller plugins with no public betas.</p>\n<h3>Competing in Both the Joomla and WordPress Theme Markets</h3>\n<p>The GavickPro team specializes in creating social themes, which is what attracted them to BuddyPress in the first place. Batten says that demand for social themes continues to grow. “According to our stats, our social themes are on the upper end of the scale with regards to popularity, alongside our e-commerce templates.” He believes that this category is on the rise. <strong>“Social interaction is now a cornerstone of most users’ internet experience and the ability to share and discuss can really make the difference if you’re trying to build a community.”</strong></p>\n<p>Despite the fact that the company originally started out as a Joomla-exclusive theme shop and are more well-known in that space, their WordPress theme sales are growing at a faster rate than the Joomla themes. “Last year WordPress accounted for only one-tenth of our total sales, but currently they account for one-third, which is quite a major jump!”</p>\n<p>GavickPro started developing WordPress themes a year ago, after recognizing the opportunity, but it’s more of an uphill climb to get noticed in this space. <strong>“The WordPress market dwarfs Joomla’s, so it has been challenging to achieve a degree of market penetration,”</strong> Batten said. “There’s so much information and competition out there that even great designs can sadly go unnoticed, especially from unfamiliar developers.”</p>\n<p>Even so, the team at GavickPro is off to an excellent start with its unique BuddyPress themes. The theme framework and all of the widgets are open source and free to download from the <a href="https://github.com/GavickPro" target="_blank">GavickPro Github account.</a> They’re working on adding the widgets to the WordPress Plugin Directory as well. Check out their growing collection of <a href="http://www.gavick.com/wordpress-themes.html" target="_blank">WordPress Themes</a>, which integrate with <a href="http://www.gavick.com/wordpress-themes/tagwp,BuddyPress.html" target="_blank">BuddyPress</a>, <a href="http://www.gavick.com/wordpress-themes/tagwp,WooCommerce.html" target="_blank">WooCommerce</a> and <a href="http://wpml.org/" target="_blank">WPML</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, 19 Mar 2014 17:47:46 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"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:55:"WordPress.tv: Russell Aaron: Your Theme Can Do That Too";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=33240";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:72:"http://wordpress.tv/2014/03/19/russell-aaron-your-theme-can-do-that-too/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:659:"<div id="v-uIfjY0hy-1" class="video-player">\n</div><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/33240/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/33240/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=33240&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2014/03/19/russell-aaron-your-theme-can-do-that-too/"><img alt="Russell Aaron: Your Theme Can Do That Too" src="http://videos.videopress.com/uIfjY0hy/video-4ee45e532f_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, 19 Mar 2014 10:49:36 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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:82:"WPTavern: WordPress.com Developer Site Gets a Fresh Look and Updated Documentation";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=19209";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:208:"http://wptavern.com/wordpress-com-developer-site-gets-a-fresh-look-and-updated-documentation?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-com-developer-site-gets-a-fresh-look-and-updated-documentation";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:5057:"<p>WordPress.com has relaunched its <a href="https://developer.wordpress.com/" target="_blank">Developer Site</a> with a new focus on making information easier to find for third-party developers. The site is now sporting a modernized design with a call to action that goes straight to the newly updated documentation, outlining how to get started creating apps for WordPress.com.</p>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/03/wordpressdotcom-developer-site-redesigned.jpg" rel="prettyphoto[19209]"><img src="http://wptavern.com/wp-content/uploads/2014/03/wordpressdotcom-developer-site-redesigned.jpg" alt="wordpressdotcom-developer-site-redesigned" width="888" height="744" class="aligncenter size-full wp-image-19257" /></a></p>\n<p>I spoke with Automattic employee <a href="https://twitter.com/jkudish">Joey Kudish</a> who said that there are actually <strong>27,000 apps</strong> currently registered on WordPress.com. “A large handful of those are test or development-only applications,” Kudish said, but that gives you an idea of how many developers are looking to integrate with WordPress.com. Many commonly-used applications have partnered with them to integrate data, including Facebook, Twitter, Google+, Pocket, Pinterest, IFFFT, Mixcloud, Soundcloud and others.</p>\n<p>Developers who want to integrate with WordPress.com can do so via its <a href="https://developer.wordpress.com/docs/api/" target="_blank">REST API</a>, which provides endpoints for tapping into Publishing, Stats, Likes, Notifications, Insights, Reader and more. The docs include query parameters and an example query/response for each endpoint.</p>\n<p>In addition to the updated REST API documentation, a few extra highlights from the docs include:</p>\n<p><strong><a href="https://developer.wordpress.com/docs/oembed-provider-api/" target="_blank">oEmbed Provider API</a>:</strong><br />\nThe Developer Site has information about the <a href="https://developer.wordpress.com/docs/oembed-provider-api/" target="_blank">oEmbed Provider API</a>, which enables you to embed any post, page and attachment hosted on WordPress.com or via Jetpack.</p>\n<p><strong><a href="https://developer.wordpress.com/docs/sharing-buttons/" target="_blank">Sharing Button Creation</a>:</strong><br />\nDevelopers can find information on adding new buttons to WordPress.com’s <a href="http://en.support.wordpress.com/sharing/" target="_blank">Sharing</a> buttons. If you have a service that is not currently supported, there is a step-by-step guide for triggering the service creation process for a user.</p>\n<p><strong><a href="https://developer.wordpress.com/docs/embedded-timelines/" target="_blank">Embedded Timelines</a>:</strong><br />\nThe site includes a dedicated page for helping users create <a href="https://developer.wordpress.com/timeline-creation/" target="_blank">embeddable timelines</a>. The timeline generator gives you a single line of code for displaying recent posts on any site. It works for both WordPress.com blogs and Jetpack blogs with the JSON API feature enabled.</p>\n<p><strong><a href="https://developer.wordpress.com/themes/" target="_blank">Theme Guide</a>:</strong><br />\nTheme developers who are interested in building for WordPress.com will be delighted to discover the newly-designed <a href="https://developer.wordpress.com/themes/" target="_blank">Theme Guide</a>, which includes information on escaping data, internationalization, queries, how to properly enqueue scripts and styles, data portability and everything else you need to know about developing a theme to meet WordPress.com standards.</p>\n<h3>Automattic is Putting a Higher Priority on Developer Resources</h3>\n<p>With the new <a href="https://twitter.com/AutomatticEng" target="_blank">@AutomatticEng</a> Twitter account and an updated developer site, Automattic is putting developer resources and communication on a higher priority. Kudish said that this is the result of new initiatives to help developers. “In November 2013 we formed a new team at Automattic under the leadership of Raanan Bar-Cohen,” he said. “This team is focused on third-party integrations with WordPress.com and Jetpack. Part of what we work on are these initiatives to promote our development resources and APIs.”</p>\n<p>With WordPress now powering more than 21% of the web, it’s critical that developers have easy access to information on integrating with WordPress.com, which makes up a large chunk of that 21%. Much of the information on the new <a href="https://developer.wordpress.com" target="_blank">Developer Site</a> was already available in one form or another, but the documentation is now better designed and easier to navigate. In the future, the team plans to add forums to help developers find answers and interact with one another. For now, the best way to get in touch is via the <a href="https://developer.wordpress.com/contact/" target="_blank">contact form</a> or <a href="https://twitter.com/AutomatticEng" target="_blank">Twitter</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, 18 Mar 2014 23:24:30 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:79:"WordPress.tv: Chris Lema and Steve Zehngut: Pricing Your Next WordPress Project";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wordpress.tv/?p=33285";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:96:"http://wordpress.tv/2014/03/18/chris-lema-and-steve-zehngut-pricing-your-next-wordpress-project/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:707:"<div id="v-4keUiZV1-1" class="video-player">\n</div><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/33285/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/33285/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=33285&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2014/03/18/chris-lema-and-steve-zehngut-pricing-your-next-wordpress-project/"><img alt="Chris Lema and Steve Zehngut: Pricing Your Next WordPress Project" src="http://videos.videopress.com/4keUiZV1/video-15042e947b_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, 18 Mar 2014 22:47:33 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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:65:"WPTavern: How To Bulk Install All Your Favorite WordPress Plugins";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=19100";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:174:"http://wptavern.com/how-to-bulk-install-all-your-favorite-wordpress-plugins?utm_source=rss&utm_medium=rss&utm_campaign=how-to-bulk-install-all-your-favorite-wordpress-plugins";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:6830:"<div id="attachment_19216" class="wp-caption aligncenter"><a href="http://wptavern.com/wp-content/uploads/2014/03/bulk-install.jpg" rel="prettyphoto[19100]"><img src="http://wptavern.com/wp-content/uploads/2014/03/bulk-install.jpg" alt="photo credit: -pdp- - cc" width="974" height="524" class="size-full wp-image-19216" /></a><p class="wp-caption-text">photo credit: <a href="http://www.flickr.com/photos/51553705@N00/8191743/">-pdp-</a> – <a href="http://creativecommons.org/licenses/by-nc-sa/2.0/">cc</a></p></div>\n<p>Not every WordPress website is the same. But if you build with WordPress often enough, you might find that you prefer using the same set of plugins to provide basic functionality like contact forms, sharing buttons, SEO, caching, etc. It’s handy to have a set list of plugins that you can bulk-install whenever necessary.</p>\n<p>A question posed by Angie Meeker on Twitter inspired me to dig deeper into the best options available for doing this:</p>\n<blockquote class="twitter-tweet" width="550"><p>Can we tag a bunch of plugins in the repo through our own profiles, then install those tagged plugins all at once? as a collection?</p>\n<p>— Angie Meeker (@angiemeeker) <a href="https://twitter.com/angiemeeker/statuses/445597703037124608">March 17, 2014</a></p></blockquote>\n<p></p>\n<h3>Favoriting Plugins on WordPress.org</h3>\n<p>If you have an account with WordPress.org, you can aggregate all of your most-used plugins by favoriting each of them. This will give you access to them in the WordPress admin. Input your WordPress.org username and your favorites will appear below.</p>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/03/wordpress-plugin-favorites.jpg" rel="prettyphoto[19100]"><img src="http://wptavern.com/wp-content/uploads/2014/03/wordpress-plugin-favorites.jpg" alt="wordpress-plugin-favorites" width="569" height="253" class="aligncenter size-full wp-image-19179" /></a></p>\n<p>However, there are a couple of drawbacks here. First, you won’t be able to include any plugins that are not hosted on WordPress.org. Second, it’s not yet possible to bulk install your favorite plugins. You’ll need to install them one by one. This method of getting your favorites works well if you only have a handful of plugins that you routinely install from WordPress.org.</p>\n<h3>Create an Installation Profile for WordPress</h3>\n<p>The best way to create a collection of WordPress plugins that can be bulk-installed is to customize your own installation profile. While these aren’t terribly common in WordPress, the Drupal community has several well-maintained <a href="https://drupal.org/developing/distributions" target="_blank">installation profiles and distributions</a> that are tailored to provide site features and functions for a specific type of site as a single download.</p>\n<h5>WP Install Profiles</h5>\n<p>There are a couple of solutions that make it easy for you to create your own custom installation profiles. <a href="http://wordpress.org/plugins/install-profiles/" target="_blank">WP Install Profiles</a> is a plugin that enables you to define a group of plugins from WordPress.org and bulk install them to any site with a single click.</p>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/03/wp-install-profile.jpg" rel="prettyphoto[19100]"><img src="http://wptavern.com/wp-content/uploads/2014/03/wp-install-profile.jpg" alt="wp-install-profile" width="700" height="428" class="aligncenter size-full wp-image-19183" /></a></p>\n<p>Those who use the WP Install Profile plugin can also share their installation profiles by uploading them to the plugin’s <a href="http://plugins.ancillaryfactory.com/" target="_blank">homepage</a> where other users can copy them to use on their own sites. You are, however, limited to plugins hosted on WordPress.org.</p>\n<h5>WP Roller</h5>\n<p><a href="http://wproller.com/" target="_blank">WP Roller</a> is another option that Jeff Chandler <a href="http://wptavern.com/rolling-your-own-wordpress-with-wproller" target="_blank">wrote about</a> last year. This service allows for more flexibility in the extensions you include in your installation profile. It allows you to:</p>\n<ul>\n<li>Include WordPress core</li>\n<li>Add plugins from WordPress.org and GitHub</li>\n<li>Upload your own plugins and themes</li>\n<li>Customize and save WordPress Installer Bundles</li>\n</ul>\n<p>Once you’ve made all your selections, the service lets you roll it up into one convenient download:</p>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/03/wp-roller.jpg" rel="prettyphoto[19100]"><img src="http://wptavern.com/wp-content/uploads/2014/03/wp-roller.jpg" alt="wp-roller" width="607" height="323" class="aligncenter size-full wp-image-19192" /></a></p>\n<p>A nightly cron job runs to make sure that you’ll have the latest versions of themes and plugins ready to go in your installation zip file.</p>\n<p>One extra feature of WP Roller is that it allows you to quickly customize some common settings in your rollup:</p>\n<ul>\n<li>WordPress site title</li>\n<li>WordPress site description</li>\n<li>Remove the “Hello Dolly” plugin</li>\n<li>Remove the “Hello Post”</li>\n<li>Remove the “About Page”</li>\n<li>Remove the “Sample Comment”</li>\n<li>Set your timezone</li>\n</ul>\n<p>This saves you from having to click through to all of these places in the WordPress admin to put your settings in place.</p>\n<h5>DesktopServer</h5>\n<p><a href="http://serverpress.com/products/desktopserver/" target="_blank">DesktopServer</a> is a product from ServerPress that lets you easily create WordPress development environments. The commercial version of the product includes a “Blueprints” feature for automated WordPress configurations.</p>\n<p>The blueprints you customize contain pre-configured WordPress themes, plugins and set-ups that you might use regularly so that you can instantly create a site to your specifications.</p>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/03/blueprints.jpg" rel="prettyphoto[19100]"><img src="http://wptavern.com/wp-content/uploads/2014/03/blueprints.jpg" alt="blueprints" width="608" height="461" class="aligncenter size-full wp-image-19207" /></a></p>\n<p>When setting up new sites with DesktopServer, you’ll have the option to select from among your blueprints in the dropdown, which will copy the contents of your blueprint to your development website. From there you can deploy it to a live site or continue working on it.</p>\n<p>The solution you select will depend entirely on where your plugins are hosted and whether or not you want to include themes and common settings. Do you know of any other ways to bulk install a set list of WordPress plugins? Please share them in the comments.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 18 Mar 2014 20:29:34 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:67:"WPTavern: Better WP Security To Be Renamed, Undergoes Major Changes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=19152";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:176:"http://wptavern.com/better-wp-security-to-be-renamed-undergoes-major-changes?utm_source=rss&utm_medium=rss&utm_campaign=better-wp-security-to-be-renamed-undergoes-major-changes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3379:"<p>If you use the <a title="http://wordpress.org/plugins/better-wp-security/" href="http://wordpress.org/plugins/better-wp-security/">Better WP Security</a> plugin, keep an eye out for an <a title="http://ithemes.com/2014/03/17/better-wp-security-plugin-changing-ithemes-security-need-know/" href="http://ithemes.com/2014/03/17/better-wp-security-plugin-changing-ithemes-security-need-know/">important update next week</a>. According to iThemes, the plugin will be renamed to iThemes Security to be more in line with the other products in the iThemes family. Because of the name change, users will need to re-activate the plugin after upgrading or else you’ll see the following error.</p>\n<div id="attachment_19186" class="wp-caption aligncenter"><a href="http://wptavern.com/wp-content/uploads/2014/03/iThemesSecurityRenameError.png" rel="prettyphoto[19152]"><img class="size-large wp-image-19186" alt="Just Re-activate The Plugin To Fix This Error" src="http://wptavern.com/wp-content/uploads/2014/03/iThemesSecurityRenameError-500x145.png" width="500" height="145" /></a><p class="wp-caption-text">Just Re-activate The Plugin To Fix This Error</p></div>\n<p>Besides the name change, a number of features will be added such as:</p>\n<ul>\n<li>The ability to add multiple reporting email addresses for backups and notifications</li>\n<li>Streamlined settings for easier configuration</li>\n<li>Full integration with <a href="http://ithemes.com/purchase/backupbuddy">BackupBuddy</a></li>\n<li>A complete rewrite of existing features for faster, better, more secure sites.</li>\n</ul>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/03/BetterWPSecurityFeaturedImage.png" rel="prettyphoto[19152]"><img class="aligncenter size-large wp-image-19190" alt="Better WP Security Featured Image" src="http://wptavern.com/wp-content/uploads/2014/03/BetterWPSecurityFeaturedImage-500x159.png" width="500" height="159" /></a></p>\n<p>Hired in 2013, Chris Wiegman has been in charge of completely revamping the plugin. Between the name change, features, and rewriting of code, Better WP Security will be a completely new plugin. The revamp is not limited to just code as iThemes Security will have professional support options available through iThemes.</p>\n<blockquote><p>Support for iThemes Security will now come exclusively through iThemes. We will be releasing those plans and packages with the new release next week.</p></blockquote>\n<p>Users will be happy to know the plugin will remain free of charge and available on the WordPress plugin repository. In the near future, iThemes plans on incorporating pro features to help monetize, fund development, and maintain the plugin. Cory Miller, CEO of iThemes said, “Current features will remain with no plans to discontinue them”. Last but not least, the free version will continue to be maintained as long as it’s useful to the WordPress community.</p>\n<p>This is a huge transition and considering Better WP Security is among the most popular plugins on the repository with over 1.7 million downloads, it will be hard to get users on the same page prior to upgrading, despite being warned a week in advance. Hopefully, none of them will think they’ve been hacked and instead upgrade without any problems.</p>\n<p>If you have questions or concerns about the changes, feel free to share them in the comments.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 18 Mar 2014 19:27: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:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:65:"WPTavern: Akismet Update Adds Security and Anti-Spam Improvements";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=19166";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:174:"http://wptavern.com/akismet-update-adds-security-and-anti-spam-improvements?utm_source=rss&utm_medium=rss&utm_campaign=akismet-update-adds-security-and-anti-spam-improvements";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3429:"<p><a href="http://wptavern.com/wp-content/uploads/2011/11/akismetlogo.png" rel="prettyphoto[19166]"><img class="alignright size-full wp-image-5792" alt="akismet logo" src="http://wptavern.com/wp-content/uploads/2011/11/akismetlogo.png" width="187" height="43" /></a>Last week, we <a title="http://wptavern.com/how-to-prevent-wordpress-from-participating-in-pingback-denial-of-service-attacks" href="http://wptavern.com/how-to-prevent-wordpress-from-participating-in-pingback-denial-of-service-attacks">wrote about</a> a report published by Sucuri that explained how 162,000 clean WordPress sites were used in a DDoS attack through the pingback functionality of XML-RPC. Alex Shiels who works on Akismet mentioned on Twitter the security team was working on a solution.</p>\n<p>An update to Akismet is <a title="http://blog.akismet.com/2014/03/18/akismet-plugin-2-6/" href="http://blog.akismet.com/2014/03/18/akismet-plugin-2-6/">now available</a> containing bug fixes, security, and anti-spam improvements. Notably:</p>\n<ul>\n<li>Include X-Pingback-Forwarded-For header in outbound WordPress pingback verifications.</li>\n<li>Add a pre-check for pingbacks, to stop spam before an outbound verification request is made.</li>\n</ul>\n<p>According to Shiels, anti-spam checks were performed after a pingback was verified and WordPress didn’t pass on who made the request that caused it to verify a pingback effectively cloaking the true source. Shiels also stated the fixes applied to Akismet may find their way into the core of WordPress in a future update: “<em>We think a similar approach may be appropriate for core in a future release.</em>”</p>\n<h3>How To Disable Pingbacks On Content Already Published</h3>\n<p>While the security improvements in Akismet will have the widest impact, I still maintain that trackbacks and pingbacks have lost their luster. You can easily stop pingbacks in the <strong>Settings – Discussion</strong> area but to remove them from content already published involves using a MySQL query. Thankfully, there’s a plugin that bypasses the need to use the query called <a title="http://wordpress.org/plugins/autoclose/" href="http://wordpress.org/plugins/autoclose/">Auto-Close Comments, Pingbacks and Trackbacks</a> by <a title="http://profiles.wordpress.org/ajay/" href="http://profiles.wordpress.org/ajay/">Ajay</a>.</p>\n<div id="attachment_19170" class="wp-caption aligncenter"><a href="http://wptavern.com/wp-content/uploads/2014/03/AutoCloseSettings.png" rel="prettyphoto[19166]"><img class="size-large wp-image-19170" alt="Auto Close Pingbacks/Trackbacks Settings Page" src="http://wptavern.com/wp-content/uploads/2014/03/AutoCloseSettings-500x177.png" width="500" height="177" /></a><p class="wp-caption-text">Auto Close Pingbacks/Trackbacks Settings Page</p></div>\n<p>Auto-close gives users flexibility in determining which posts and pages ping/trackbacks will be disabled. There’s no option to disable them on every post or page. However, I was able to shut them off on most of my content by closing ping/trackbacks on posts older than one day. If you have a lot of content already published, you’ll want to use the built-in scheduler to avoid using too many resources on the server.</p>\n<p>The plugin works as advertised and is the only one I could find that has the ability to turn trackback and pingbacks off in bulk without using a database query.</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, 18 Mar 2014 18:16:10 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:53:"WordPress.tv: John Lynn: Can You Make Money Blogging?";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=33166";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:69:"http://wordpress.tv/2014/03/18/john-lynn-can-you-make-money-blogging/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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-gTtgGqKl-1" class="video-player">\n</div><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/33166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/33166/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=33166&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2014/03/18/john-lynn-can-you-make-money-blogging/"><img alt="John Lynn: Can You Make Money Blogging?" src="http://videos.videopress.com/gTtgGqKl/video-329c8bc3ee_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, 18 Mar 2014 18:01: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: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:54:"WPTavern: Video Explains Open Source Using LEGO Blocks";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=19154";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:140:"http://wptavern.com/video-explains-open-source-using-legos?utm_source=rss&utm_medium=rss&utm_campaign=video-explains-open-source-using-legos";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1887:"<p>WordPress has benefited greatly from being Open Source software licensed under the GPL. But what does Open Source actually mean? The folks over at <a title="http://bitblueprint.com/" href="http://bitblueprint.com/">Bit Blueprint</a> in partnership with <a title="http://www.movingmonday.com" href="http://www.movingmonday.com">Moving Monday</a> released a video using LEGO bricks and toys to explain the subject.</p>\n<div id="attachment_19162" class="wp-caption aligncenter"><a href="http://wptavern.com/wp-content/uploads/2014/03/OpenSourceLegosFeaturedImage.png" rel="prettyphoto[19154]"><img class="size-full wp-image-19162" alt="Open Source Explained By LEGO" src="http://wptavern.com/wp-content/uploads/2014/03/OpenSourceLegosFeaturedImage.png" width="639" height="217" /></a><p class="wp-caption-text">Open Source Explained By LEGOs</p></div>\n<p>While the video is not 100% accurate since Free Software and Open Source are two different movements with different ideological motives, it does a great job of introducing people to the subject.</p>\n<blockquote><p>We are aware of the fact that the Free Software and Open Source movements have both similarities and differences. Both in terms of individuals and ideological motives. We wanted to have our video tell a simple story for everyone to understand, so we included a character, Richard Stallman, as a symbol of the origin of the movements. History is rarely this simple – the complex (and historically correct) reality is of course that the founders of the movements are a lot of different individuals.</p></blockquote>\n<p>The video also does a good job to dispel common myths associated with open source software such as:</p>\n<ul>\n<li>Not having any control over your work (False)</li>\n<li>Open equals unsafe (False)</li>\n<li>Everything is or must be free (False)</li>\n</ul>\n<p><span class="embed-youtube"></span></p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 18 Mar 2014 16:31:34 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:74:"Dougal Campbell: 13 Sources For Free Public Domain and CC0-Licensed Images";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=76775";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://dougal.gunters.org/blog/2014/03/18/13-sources-for-free-public-domain-and-cc0-licensed-images/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:712:"<p><i>These sources of completely free-for-use images are better than I expected. /ht wptavern.com</i></p>\n<p><a href="http://ift.tt/1oR8kvA">13 Sources For Free Public Domain and CC0-Licensed Images</a></p>\n<p>Original Article: <a rel="nofollow" href="http://dougal.gunters.org/blog/2014/03/18/13-sources-for-free-public-domain-and-cc0-licensed-images/">13 Sources For Free Public Domain and CC0-Licensed Images</a><br />\n<a rel="nofollow" href="http://dougal.gunters.org">Dougal Campbell's geek ramblings - WordPress, web development, and world domination.</a></p>\n<div class="yarpp-related-rss yarpp-related-none">\n<img src="http://yarpp.org/pixels/5db43ee24c4f1e1d0e45d08cc91b0130" alt="YARPP" />\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:"Tue, 18 Mar 2014 14:42:59 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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: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:91:"WordPress.tv: Patrick Rauland: How to Build a Sustainable Business Using the Freemium Model";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=32877";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:108:"http://wordpress.tv/2014/03/18/patrick-rauland-how-to-build-a-sustainable-business-using-the-freemium-model/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:720:"<div id="v-CmL3J2re-1" class="video-player">\n</div><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/32877/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/32877/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=32877&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2014/03/18/patrick-rauland-how-to-build-a-sustainable-business-using-the-freemium-model/"><img alt="How to Build a Sustainable Business Using the Freemium Model" src="http://videos.videopress.com/CmL3J2re/video-805613cb32_scruberthumbnail_1.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 18 Mar 2014 08:38: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:"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:39:"Akismet: Akismet WordPress plugin 2.6.0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"http://blog.akismet.com/?p=1253";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://blog.akismet.com/2014/03/18/akismet-plugin-2-6/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1724:"<p>The Akismet plugin version 2.6.0 for WordPress is now available.</p>\n<p>It includes some incremental bugfixes since 2.5.9, plus some security and anti-spam improvements to how pingbacks work. <a href="http://wordpress.org/plugins/akismet/changelog/">Key changes</a> since the last release:</p>\n<ul>\n<li>Optimize javascript and add localization support.</li>\n<li>Fix bug in link to spam comments from right now dashboard widget.</li>\n<li>Fix bug with deleting old comments to avoid timeouts dealing with large volumes of comments.</li>\n<li>Include X-Pingback-Forwarded-For header in outbound WordPress pingback verifications.</li>\n<li>Add a pre-check for pingbacks, to stop spam before an outbound verification request is made.</li>\n</ul>\n<p>There was a news cycle a few days ago about “WordPress pingbacks being used to DDOS sites” which had a lot of misinformation and hyperbole, but there were two valid issues which the last two bullet points address: anti-spam checks were done after a pingback was verified, and WP didn’t pass on who made the request that caused it to verify a pingback (effectively cloaking the true source). This update to Akismet addresses both, and we think a similar approach may be appropriate for core in a future release.</p>\n<p><span>To update, just visit the Updates tab of your WordPress dashboard.</span></p><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/akismet.wordpress.com/1253/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/akismet.wordpress.com/1253/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.akismet.com&blog=116920&post=1253&subd=akismet&ref=&feed=1" width="1" height="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 18 Mar 2014 02:50: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: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: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:62:"WPTavern: Guide To Starting And Maintaining A WordPress Meetup";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=19057";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:168:"http://wptavern.com/guide-to-starting-and-maintaining-a-wordpress-meetup?utm_source=rss&utm_medium=rss&utm_campaign=guide-to-starting-and-maintaining-a-wordpress-meetup";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:8840:"<p>One of my favorites things to do every month is attend my <a title="http://www.meetup.com/NEOWordPress/" href="http://www.meetup.com/NEOWordPress/">local WordPress meetup</a>. I’ve helped put the meeting together since 2009. Usually, we’ll have 10-25 people show up depending on the weather or if the event is on a holiday. Meetups are like a smaller version of WordCamps where individuals present on specific topics each month. Now that we have a healthy nucleus of regular attendees, the meetups almost run themselves.</p>\n<h3>Using Meetup.com To Start A Meetup</h3>\n<div id="attachment_19139" class="wp-caption aligncenter"><a href="http://wptavern.com/wp-content/uploads/2014/03/UsingMeetup.png" rel="prettyphoto[19057]"><img class="size-large wp-image-19139" alt="A Lot Of Meetups Happening In My Area" src="http://wptavern.com/wp-content/uploads/2014/03/UsingMeetup-500x164.png" width="500" height="164" /></a><p class="wp-caption-text">A Lot Of Meetups Happening In My Area</p></div>\n<p>I recently saw someone ask how they can start a WordPress meetup. They lived in a city with a population of 75,000 people and according to Meetup.com, a WordPress group didn’t exist in their area. Launched in 2002, <a title="http://www.meetup.com/" href="http://www.meetup.com/">Meetup.com</a> is the most popular website for getting people with like-minded ideas together. The site has meetups for any topic under the sun.</p>\n<p>Meetup organizers need to pay organizer dues before the meetup can be established on the site. Meetup.com has three pricing plans available and each plan allows you to run up to three separate meetups.</p>\n<ul>\n<li>$12 a month for 6 months (a single $72 charge)</li>\n<li>$15 a month for 3 months (a single $45 charge)</li>\n<li>$19 per month</li>\n</ul>\n<p>The WordPress foundation has a <a title="http://make.wordpress.org/community/meetup-interest-form/" href="http://make.wordpress.org/community/meetup-interest-form/">program in place</a> that will pay membership dues so long as the group follows a few guidelines. In a nutshell:</p>\n<ul>\n<li>WordPress meetups are for the benefit of the local community and are not to be used primarily for business purposes.</li>\n<li>The <a title="http://wordpressfoundation.org/trademark-policy/" href="http://wordpressfoundation.org/trademark-policy/">WordPress and WordCamp trademarks</a> should be respected.</li>\n<li>The meetup should foster an accepting environment which is free of discrimination, incitement to violence, promotion of hate, and general jerk-like behavior.</li>\n</ul>\n<p>If you’re organizing a WordPress meetup solely for the purpose of meeting potential clients, you’re missing the point of what a community organized event is.</p>\n<h3>Try Not To Start A Meetup Alone</h3>\n<p>If possible, try to find one or two other people in your local area interested in having a WordPress meetup. In 2009, I asked on Twitter if anyone in the North East Ohio area would be interested in attending a WordPress meetup. I discovered <a title="http://thecodecave.com/" href="http://thecodecave.com/">Brian Layman </a>who is a respected WordPress developer was just a short drive away from me as was <a title="http://kimparsell.com/" href="http://kimparsell.com/">Kim Parsell</a> and <a title="http://jefflee.co/" href="http://jefflee.co/">Jeff Lee</a>. I coordinated with them over Twitter and email to establish the core meetup group.</p>\n<p>Once we had a small dedicated group of individuals attending the meetup, we used our collective social media presence to announce and recruit interested members to the meetup. Keep in mind Meetup.com will notify registered users in the area when a new meetup is created that matches their interests. Also consider using the <a title="http://wordpress.org/support/topic/about-the-meetups-forum" href="http://wordpress.org/support/topic/about-the-meetups-forum">WordPress.org Meetup Forum</a> to tell others about the meetup.</p>\n<div id="attachment_19137" class="wp-caption aligncenter"><a href="http://wptavern.com/wp-content/uploads/2014/03/NEOWPMeetup1.jpeg" rel="prettyphoto[19057]"><img class="size-full wp-image-19137" alt="Brian Layman Sharing Knowledge" src="http://wptavern.com/wp-content/uploads/2014/03/NEOWPMeetup1.jpeg" width="600" height="450" /></a><p class="wp-caption-text">Brian Layman Sharing Knowledge</p></div>\n<p>I was lucky to have two to three people help me kick-start our meetup. If you can’t find attendees on Twitter or Facebook, try attending meetups in your area that are similar to WordPress. For instance, meetups on web design, content management, SEO, etc. will likely have a few WordPress people in attendance.</p>\n<h3>Finding A Venue</h3>\n<p>Finding a venue to host a meetup can be difficult. I recommend a place that has good WiFi, is somewhat quiet and set up for presentations. Co-working spaces are a great option to host a meetup since most of them contain the amenities I’ve outlined above. They have the side benefit of sometimes hosting workers that have an interest in WordPress. If you end up using a co-working space, ask around to see if anyone has an interest in WordPress. They could be your newest members to your meetup!</p>\n<h3>Immediately Establish Consistency</h3>\n<p>One of the biggest lessons learned while organizing a meetup is how important it is for the event to happen consistently at the same time. In the past, our meetup didn’t have a specific day of the month and was created when we felt like meeting up. This left people questioning whether or not there would be another meetup the following month.</p>\n<div id="attachment_19141" class="wp-caption aligncenter"><a href="http://wptavern.com/wp-content/uploads/2014/03/MeetupConsistency.png" rel="prettyphoto[19057]"><img class="size-full wp-image-19141" alt="Schedule The Meetup To Happen At The Same Time Every Month" src="http://wptavern.com/wp-content/uploads/2014/03/MeetupConsistency.png" width="523" height="242" /></a><p class="wp-caption-text">Make Your Meetup Predictable</p></div>\n<p>By immediately establish consistency, you’re giving attendees a chance to plan around your meetup. For example, ours is held on the fourth Thursday of every month. The only time it changes is during inclement weather or during a holiday. It’s important you communicate schedule changes as soon as possible to give attendees a chance to change their plans.</p>\n<h3>How Long Should The Meetup Be?</h3>\n<p>You don’t need to have a time limit unless the venue requires you to leave at a certain time. Our meetup is typically two hours long with the first hour dedicated to a topic. Topics are decided either from the previous meeting or from users in our meetup.com group. If you’re thinking about doing a presentation at a WordCamp, meetups are an excellent opportunity to hone your skills. Presenting in front of 15-30 people is less stressful than a room of 50-100.</p>\n<h3>WordCamps Usually Start As Meetups First</h3>\n<p><a href="http://wptavern.com/wp-content/uploads/2013/12/WordCampDayton2014Logo.jpg" rel="prettyphoto[19057]"><img class="alignright size-thumbnail wp-image-12640" alt="WordCamp Dayton 2014" src="http://wptavern.com/wp-content/uploads/2013/12/WordCampDayton2014Logo-150x150.jpg" width="150" height="150" /></a>When I asked Nathan Driver how <a title="http://wptavern.com/first-wordcamp-dayton-a-flying-success" href="http://wptavern.com/first-wordcamp-dayton-a-flying-success">WordCamp Dayton, Ohio</a> started, he told me it began with their local meetup. After visiting WordCamps throughout the state of Ohio, he discovered many of the attendees were from Southwest Ohio and wanted an event closer to home. He created a meetup around the Dayton area to gauge interest. “<em>After a couple of months of debating we went for it and had our first MeetUp in October 2012″.</em> After managing the meetup for a couple of months, Driver noticed interest grew along with memberships which is when he decided to begin the process of creating a WordCamp.</p>\n<h3>Starting A Meetup Is Not Hard But Requires Work and Dedication</h3>\n<p>Meetups require dedication and consistency to develop a community of their own. Don’t be discouraged if only three to five people show up. Use your meetup.com page as a hub and encourage attendees to leave feedback after every meeting. Make sure communication channels are open between the organizer and the attendees so everyone within the group is on the same page.</p>\n<p>Last but not least, have fun. Meetups don’t have to be serious and in my opinion, shouldn’t be. They are informal gatherings of people from all backgrounds united by an interest in WordPress. If you have any suggestions for new WordPress meetup organizers, please add them in the comments.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 17 Mar 2014 21:57:06 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:27;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:86:"WPTavern: Treehouse Expands WordPress Education to Include BuddyPress Beginners Course";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=19096";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:216:"http://wptavern.com/treehouse-expands-wordpress-education-to-include-buddypress-beginners-course?utm_source=rss&utm_medium=rss&utm_campaign=treehouse-expands-wordpress-education-to-include-buddypress-beginners-course";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3358:"<p>Just one month after launching its <a href="http://wptavern.com/high-demand-for-wordpress-education-prompts-treehouse-to-launch-new-beginners-course" target="_blank">WordPress beginner’s course</a>, Treehouse has added BuddyPress education to its collection of interactive learning resources. The “<a href="http://teamtreehouse.com/library/learn-buddypress-social-networks-with-wordpress" target="_blank">Learn BuddyPress</a>” course is geared toward BuddyPress beginners and covers all the basics of setup, user management, and core social components.</p>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/03/buddypress-treehouse.png" rel="prettyphoto[19096]"><img src="http://wptavern.com/wp-content/uploads/2014/03/buddypress-treehouse.png" alt="buddypress-treehouse" width="640" height="480" class="aligncenter size-full wp-image-19116" /></a></p>\n<p>After reviewing the course, I was impressed by how quickly Gordon is able to communicate all the basics for gaining competence with BuddyPress, including the following:</p>\n<ul>\n<li><strong>Getting Started With BuddyPress:</strong> How to Install BP and configure its settings, register users and use the codex</li>\n<li><strong>BuddyPress Member Profiles:</strong> Setting up extended profile user fields, members page, status updates, etc.</li>\n<li><strong>Social Interactions in BuddyPress:</strong> Friend connections, private messaging, mentioning users, notifications, activity, groups</li>\n<li><strong>Customizing BuddyPress:</strong> BP plugins, themes and customizations</li>\n</ul>\n<p>Each component is covered in great detail from both a user and community manager perspective. If you learn best by watching videos, then this course may be a good option for you, as it also includes an accompanying video transcript for each section. The lessons include links to the <a href="http://codex.buddypress.org/" target="_blank">BuddyPress codex</a> for further reference on the topics discussed.</p>\n<h3>Treehouse Plans to Add More BuddyPress Education Resources</h3>\n<p><a href="http://zacgordon.com/" target="_blank">Zac Gordon</a>, Treehouse’s instructor for the course, said that they’ve been experiencing an increase in demand for BuddyPress education resources. He plans to create a BuddyPress Theme Development course to follow and may add a plugin development course sometime further down the road.</p>\n<p>With Treehouse’s expansion into resources for major WordPress plugins, I asked him if other extensions will be featured. “bbPress is definitely on my radar, although I’ve had no requests for it,” Gordon said. “Jetpack would be a cool idea too, since we just did the WordPress.com course.” He’s currently experimenting with different course lengths and may produce a quick Jetpack resource within the next month or two.</p>\n<p>The <a href="http://teamtreehouse.com/library/learn-buddypress-social-networks-with-wordpress" target="_blank">Learn BuddyPress</a> course is the first of its kind with in-depth video tutorials for every aspect of using BuddyPress. This is a great resource for teaching yourself the basics of BuddyPress over a weekend. The course is also a high quality option for BuddyPress developers to recommend to clients for basic support on how to use BuddyPress’ core features.</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, 17 Mar 2014 19:21:25 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:28;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:65:"WordPress.tv: Chris Lema: WordCamp Las Vegas 2013 Opening Keynote";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=33164";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:82:"http://wordpress.tv/2014/03/17/chris-lema-wordcamp-las-vegas-2013-opening-keynote/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:655:"<div id="v-jsJVSQLw-1" class="video-player">\n</div><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/33164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/33164/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=33164&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2014/03/17/chris-lema-wordcamp-las-vegas-2013-opening-keynote/"><img alt="Chris Lema: Opening Keynote" src="http://videos.videopress.com/jsJVSQLw/video-e208f2e698_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, 17 Mar 2014 17:59:16 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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: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:63:"WPTavern: 10up Hires CEO To Help Take Company To The Next Level";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=18705";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:170:"http://wptavern.com/10up-hires-ceo-to-help-take-company-to-the-next-level?utm_source=rss&utm_medium=rss&utm_campaign=10up-hires-ceo-to-help-take-company-to-the-next-level";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2756:"<p><a href="http://wptavern.com/wp-content/uploads/2013/12/10UpLogo.jpg" rel="prettyphoto[18705]"><img class="alignright size-full wp-image-13736" alt="10up Logo" src="http://wptavern.com/wp-content/uploads/2013/12/10UpLogo.jpg" width="139" height="164" /></a>WordPress development agency <a title="http://10up.com/" href="http://10up.com/">10up</a> has <a title="http://10up.com/blog/john-eckman-ceo/" href="http://10up.com/blog/john-eckman-ceo/">hired John Eckman</a> to take on the role of CEO. Eckman will work closely with Goldman and team leaders on the day-to-day operations of the company. Jake Goldman will remain as president and will focus on the products, strategic investments, and business development side of the company.</p>\n<p>Eckman has spent the last 15 years in the CMS ecosystem with five different companies both in the open-source and non open-source space. Before 10up, he worked for <a title="http://www.isitedesign.com/" href="http://www.isitedesign.com/">iSite Design</a>, a company that has a portfolio filled with companies from start-ups to non-profits to fortune 25 industry leaders.</p>\n<h3>Removing Obstacles To Enable More Efficient Employees</h3>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/03/obstaclesign.png" rel="prettyphoto[18705]"><img class="alignright size-medium wp-image-19066" alt="obstaclesign" src="http://wptavern.com/wp-content/uploads/2014/03/obstaclesign-249x300.png" width="249" height="300" /></a>In the short-term, Eckman will observe how the company functions, locate growing pains and determine any obstacles he can remove to help employees become more efficient. Sometimes, a hiring like this can lead to immediate and drastic changes but Eckman wants the transition to be as smooth as possible. He doesn’t want to change the company culture if it’s working. Longer term, he wants to “<em>Make the team as efficient as possible. Remove non-productive frustrations and empower employees to be as productive as possible</em>“.</p>\n<h3>Executing The Vision</h3>\n<p>The hiring enables 10up to continue growing and to take on bigger projects. However, Eckman noted he wants to see the company continue to take on smaller more nimble projects. The goal is to have a wide-ranging portfolio showcasing the strengths of the company no matter how small or large the project. When I asked Eckman to summarize his position in the company, he said, “<em>Jake will drive the vision, I’ll execute it</em>“.</p>\n<p>Also check out Brian Krogsgard’s <a title="http://www.poststat.us/evolution-10up/" href="http://www.poststat.us/evolution-10up/">hour long interview </a>where he sat down and talked to Jake Goldman and 10up’s new CEO John Eckman.</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, 17 Mar 2014 17:22:34 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:71:"WPTavern: How to Restrict a WordPress Author to Posting in One 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:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=19061";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:186:"http://wptavern.com/how-to-restrict-a-wordpress-author-to-posting-in-one-category?utm_source=rss&utm_medium=rss&utm_campaign=how-to-restrict-a-wordpress-author-to-posting-in-one-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:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2726:"<div id="attachment_19081" class="wp-caption aligncenter"><a href="http://wptavern.com/wp-content/uploads/2014/03/writing-featured.jpg" rel="prettyphoto[19061]"><img src="http://wptavern.com/wp-content/uploads/2014/03/writing-featured.jpg" alt="photo credit: Nic''s events - cc" width="1021" height="533" class="size-full wp-image-19081" /></a><p class="wp-caption-text">photo credit: <a href="http://www.flickr.com/photos/nics_events/2349632625/">Nic’s events</a> – <a href="http://creativecommons.org/licenses/by-sa/2.0/">cc</a></p></div>\n<p>Multi-author WordPress blogs often have many authors working together to push out content, but not every author needs access to post to all categories on the site. In fact, there may be times when you want to limit an author to posting in just one assigned category for contributions.</p>\n<p><a href="http://wordpress.org/plugins/restrict-author-posting/" target="_blank">Restrict Author Posting</a> is a new plugin that allows administrators to restrict authors, on an individual basis, to post in only one category. This is a lightweight, specific-use plugin that doesn’t alter any other capabilities or permissions.</p>\n<p>Once you install it, administrators can navigate to each user that they want to restrict and assign a category.</p>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/03/restrict-author-posting-1.png" rel="prettyphoto[19061]"><img src="http://wptavern.com/wp-content/uploads/2014/03/restrict-author-posting-1.png" alt="restrict-author-posting-1" width="709" height="283" class="aligncenter size-full wp-image-19088" /></a></p>\n<p>When the author goes to create a new post, the meta box listing all of the categories will not be available. Instead, the author will see a notice of which category the post will fall under.</p>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/03/restrict-author-posting-2.png" rel="prettyphoto[19061]"><img src="http://wptavern.com/wp-content/uploads/2014/03/restrict-author-posting-2.png" alt="restrict-author-posting-2" width="580" height="262" class="aligncenter size-full wp-image-19089" /></a></p>\n<p>Restrict Author Posting is a plugin that you might never think of until you have a situation where you need it. Put it in place to streamline contributions on a multi-author site by herding authors into their assigned categories. This saves you the trouble of having to double check posts to make sure they fall under the correct category. It also helps to ensure that authors don’t go crazy creating new categories for every post. Download <a href="http://wordpress.org/plugins/restrict-author-posting/screenshots/" target="_blank">Restrict Author Posting</a> from WordPress.org.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 17 Mar 2014 16:17:17 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:66:"WordPress.tv: Benjamin Beck: WordPress SEO That Is Google Friendly";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=33156";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wordpress.tv/2014/03/16/benjamin-beck-wordpress-seo-that-is-google-friendly/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:681:"<div id="v-9qOedSvK-1" class="video-player">\n</div><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/33156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/33156/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=33156&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2014/03/16/benjamin-beck-wordpress-seo-that-is-google-friendly/"><img alt="Benjamin Beck: WordPress SEO That Is Google Friendly" src="http://videos.videopress.com/9qOedSvK/video-1771ce6163_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, 17 Mar 2014 05:06:06 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"WordPress.tv";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:49:"WordPress.tv: Andy Roberts: Best of Breed Plugins";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wordpress.tv/?p=33154";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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/2014/03/16/andy-roberts-best-of-breed-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:647:"<div id="v-QHutxaiI-1" class="video-player">\n</div><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/33154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/33154/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=33154&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2014/03/16/andy-roberts-best-of-breed-plugins/"><img alt="Andy Roberts: Best of Breed Plugins" src="http://videos.videopress.com/QHutxaiI/video-7c730e33ac_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, 17 Mar 2014 04: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:12:"WordPress.tv";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:33;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:69:"WordPress.tv: Amanda Blum: Get Your Site Built Without Getting Burned";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=33152";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:86:"http://wordpress.tv/2014/03/16/amanda-blum-get-your-site-built-without-getting-burned/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:687:"<div id="v-SPghJPIB-1" class="video-player">\n</div><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/33152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/33152/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=33152&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2014/03/16/amanda-blum-get-your-site-built-without-getting-burned/"><img alt="Amanda Blum: Get Your Site Built Without Getting Burned" src="http://videos.videopress.com/SPghJPIB/video-bf68252ca0_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, 17 Mar 2014 03:50:02 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"WordPress.tv";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:60:"Lorelle on WP: WordPress For Writers: WordPress Author 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:37:"http://lorelle.wordpress.com/?p=11559";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:85:"http://lorelle.wordpress.com/2014/03/16/wordpress-for-writers-wordpress-author-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:496:"In this part of my series on WordPress For Writers, I’ll cover the basic things to consider when using WordPress on site promoting the work of writers and authors. For more on the subject, see other articles in the WordPress for Writers and Authors series. This article assumes you have some basic familiarity with WordPress […]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lorelle.wordpress.com&blog=72&post=11559&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:"Sun, 16 Mar 2014 11:51:24 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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: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:64:"WPTavern: WPWeekly Episode 141 – One Million WordCamps In Ohio";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:44:"http://wptavern.com?p=19050&preview_id=19050";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:164:"http://wptavern.com/wpweekly-episode-141-one-million-wordcamps-in-ohio?utm_source=rss&utm_medium=rss&utm_campaign=wpweekly-episode-141-one-million-wordcamps-in-ohio";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3018:"<p>We’ve kept this weeks edition of WordPress Weekly short and sweet. We talked about the news of week and I shared my experience attending the first ever WordCamp Dayton, Ohio. We discussed why there are so many WordCamps happening in the state of Ohio and how some of them came to fruition. We also, congratulated Nick Haskins on launching the first commercial theme for Aesop (Genji) and shared our thoughts on sites already using Aesop combined with Genji. We hope you enjoy the show!</p>\n<h2>Stories Discussed:</h2>\n<p><a href="http://wptavern.com/wordpress-beta-testers-start-your-engines-3-9-beta-1-released" title="http://wptavern.com/wordpress-beta-testers-start-your-engines-3-9-beta-1-released">WordPress Beta Testers, Start Your Engines: 3.9 Beta 1 Released</a><br />\n<a href="http://wptavern.com/how-to-prevent-wordpress-from-participating-in-pingback-denial-of-service-attacks" title="http://wptavern.com/how-to-prevent-wordpress-from-participating-in-pingback-denial-of-service-attacks">How To Prevent WordPress From Participating In Pingback Denial of Service Attacks</a><br />\n<a href="http://wptavern.com/take-the-2014-bbpress-survey" title="http://wptavern.com/take-the-2014-bbpress-survey">Take The 2014 bbPress Survey</a><br />\n<a href="http://wptavern.com/aesop-story-engine-launches-commercial-wordpress-themes" title="http://wptavern.com/aesop-story-engine-launches-commercial-wordpress-themes">Aesop Story Engine Launches Commercial WordPress Themes</a><br />\n<a href="http://wptavern.com/why-company-culture-is-so-important-for-remote-wordpress-developers" title="http://wptavern.com/why-company-culture-is-so-important-for-remote-wordpress-developers">Why Company Culture Is So Important For Remote WordPress Developers</a><br />\n<a href="http://wptavern.com/first-wordcamp-dayton-a-flying-success" title="http://wptavern.com/first-wordcamp-dayton-a-flying-success">First WordCamp Dayton A Flying Success</a><br />\n<a href="http://wptavern.com/tickets-on-sale-for-wordcamp-north-canton-ohio" title="http://wptavern.com/tickets-on-sale-for-wordcamp-north-canton-ohio">Tickets On Sale For WordCamp North Canton, Ohio</a><br />\n<a href="http://wptavern.com/sofia-bulgaria-to-host-wordcamp-europe-2014" title="http://wptavern.com/sofia-bulgaria-to-host-wordcamp-europe-2014">Sofia, Bulgaria To Host WordCamp Europe 2014</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Friday, March 21st 3 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href="https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738" target="_blank">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href="http://www.wptavern.com/feed/podcast" target="_blank">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href="http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr" target="_blank">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #141:</strong><br />\n</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 14 Mar 2014 22:42:19 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:36;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:104:"WPTavern: The Importance of Mentors: How a High School Student Became a Professional WordPress Developer";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=19002";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:250:"http://wptavern.com/the-importance-of-mentors-how-a-high-school-student-became-a-professional-wordpress-developer?utm_source=rss&utm_medium=rss&utm_campaign=the-importance-of-mentors-how-a-high-school-student-became-a-professional-wordpress-developer";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:5644:"<p>Sunny Ratilal’s WordPress adventure started when he was 13 years old. While learning how to build a custom content management system, he stumbled upon WordPress and started fiddling around with it to learn more about its features. At the age of 14, he landed his first client. WordPress ticked all the boxes for the client’s requirements and Sunny launched his career as a professional WordPress developer.</p>\n<div id="attachment_19010" class="wp-caption alignright"><a href="http://wptavern.com/wp-content/uploads/2014/03/Photo.jpg" rel="prettyphoto[19002]"><img src="http://wptavern.com/wp-content/uploads/2014/03/Photo-300x249.jpg" alt="Sunny Ratilal" /></a><p class="wp-caption-text">Sunny Ratilal<br /></p></div>\n<p>Fast forward to three years later, Sunny is now 17 years old and currently in Sixth Form in London. When not busy studying, he enjoys developing custom plugins for clients and is also a prolific contributor to <a href="https://easydigitaldownloads.com" target="_blank">Easy Digital Downloads</a>, having logged an impressive <a href="https://github.com/easydigitaldownloads/Easy-Digital-Downloads/commits?author=sunnyratilal" target="_blank">1,097 commits</a> to the codebase.</p>\n<h3>Learning By Contributing to Open Source Projects</h3>\n<p>While contributing to EDD, Sunny said he has learned a great deal about working in remote teams. “Working alongside EDD developers, we’re scattered all around the World! Some are based in the US, England and even New Zealand! Remote teams are fantastic because it always means someone is around whatever time of the day.”</p>\n<p>Getting involved in EDD changed Sunny’s life and opened him up to a new world of collaboration. “<span class="pullquote alignleft">Open source software has empowered me to code</span>,” he said. “Contributing to EDD was my first open source project which gave me confidence to contribute to other smaller plugins and then eventually WordPress Core, submitting my first patch to WordPress last year.”</p>\n<p>Since his first foray into commercial products involved building extensions for a popular plugin, I asked Sunny if he has any advice to others who want to be successful in that space. He said:</p>\n<blockquote><p>Don’t build the extension because it’s something that’s required, build it because you want to build it. Build something you’re really passionate about; that’s what’ll give you the most pleasure whilst coding it. The key to success is not all about marketing the plugin, it’s about how the plugin is written.</p></blockquote>\n<p>Sunny advises developers to keep it clean and simple. He offered five tips for building extensions:</p>\n<ol>\n<li>Write clean code</li>\n<li>Document it very well</li>\n<li>Make the code efficient, don’t have hundreds of WP_Query instances or load hundreds of JavaScript/CSS files.</li>\n<li>Don’t give the customers a chance to complain, have a feature list built and always beta test</li>\n<li>Provide excellent support to all customers</li>\n</ol>\n<h3>The Importance of WordPress Role Models</h3>\n<p>While learning and working with WordPress, Sunny said that having good role models inspired him to further develop his skills. “I have three very important role models: all three are fellow WordPress developers: <a href="http://tommcfarlin.com/" target="_blank">Tom McFarlin</a>, <a href="http://pippinsplugins.com/" target="_blank">Pippin Williamson</a> and <a href="http://markjaquith.com/" target="_blank">Mark Jaquith</a>,” he said.</p>\n<p>“They are exceptional developers who have a myriad of knowledge. <span class="pullquote alignleft">The plugins/themes they create are made with other developers in mind and their coding is by far some of the best you will ever see.</span>”</p>\n<p>Sunny is hoping to advance his skills along the same path he’s seen forged by the aforementioned developers. “I can say with a great amount of certainty that you can learn something new from every single commit to plugins/themes/WordPress Tom, Mark and Pippin make.” As is the case in many technical professions, Sunny has learned the most by doing and by watching other high performing developers.</p>\n<h3>A Bright Future for Sunny Ratilal</h3>\n<p>What does the future hold for Sunny Ratilal? He’s got one more year before entering university. Meanwhile, he is studying Mathematics, Further Mathematics, Computer Science and Physics. He hopes to study Computer Science at University.</p>\n<p>He also plans to continue his work with EDD and WordPress. At the moment, he’s taking a break from EDD contributions to focus on his schoolwork. Pursuing a career in WordPress is something he’s considered, and he plans to continue developing while getting his education. “I love building WordPress plugins and themes and have no intention to stop doing so,” he said.</p>\n<p>In many ways Sunny Ratilal seems ahead of his time, with his mature knowledge of teamwork, building software and handling customers. Code mentors have made all the difference for him and his experiences highlight the importance of solid role models in the WordPress community.</p>\n<p>Though you may often feel like you’re working alone in your small corner of the world, the quality of the code you produce and your interactions with other developers may actually be mentoring future WordPress professionals. A developer who works to help others learn and grow can be instrumental in swinging the doors open for newcomers to the WordPress community.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 14 Mar 2014 22:11:58 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:21:"Matt: Shaer on Taibbi";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=43660";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:37:"http://ma.tt/2014/03/shaer-on-taibbi/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:200:"<p><a href="http://nymag.com/daily/intelligencer/2014/03/matt-taibbi-on-wall-street-first-look-media.html">Raging Against Hacks With Matt Taibbi</a>. I can’t wait to see his new publication.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 14 Mar 2014 18:29:41 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s: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: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:57:"WPTavern: Tickets On Sale For WordCamp North Canton, Ohio";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=18969";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:156:"http://wptavern.com/tickets-on-sale-for-wordcamp-north-canton-ohio?utm_source=rss&utm_medium=rss&utm_campaign=tickets-on-sale-for-wordcamp-north-canton-ohio";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2369:"<p>Tickets have gone on sale for the 2nd annual <a href="http://2014.northcanton.wordcamp.org/" title="http://2014.northcanton.wordcamp.org/">WordCamp North Canton, Ohio</a>. This years event takes place on May 2nd and 3rd. Friday is dedicated to a marketing bootcamp while Saturday will feature speakers discussing a variety of topics. Organizers are in the process of sifting through topic submissions and will announce speakers soon. Since WordCamp North Canton is a two-day event, they have two separate ticket offers.</p>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/03/WordCampNorthCanton2014.png" rel="prettyphoto[18969]"><img src="http://wptavern.com/wp-content/uploads/2014/03/WordCampNorthCanton2014.png" alt="WordCamp North Canton 2014 Header" width="650" height="200" class="aligncenter size-full wp-image-18995" /></a></p>\n<p>You can buy a $10 Friday only ticket or a $20 Saturday only ticket. If you would like to attend both days, please buy a ticket for each day. The event is being held at the same venue as last year, <a href="http://2014.northcanton.wordcamp.org/attend/" title="http://2014.northcanton.wordcamp.org/attend/">Stark State College</a>. Last year, I attended the first ever WordCamp event for the area and it was a <a href="http://wptavern.com/first-wordcamp-north-canton-a-success" title="http://wptavern.com/first-wordcamp-north-canton-a-success">huge success</a>.</p>\n<p><a href="http://wptavern.com/wp-content/uploads/2013/05/120.jpg" rel="prettyphoto[18969]"><img src="http://wptavern.com/wp-content/uploads/2013/05/120-150x150.jpg" alt="120" width="150" height="150" class="alignright size-thumbnail wp-image-6799" /></a>Just like last year, WordCamp North Canton will have a zero waste strategy. Everything used during the event is either recyclable or fully bio-degradable. <a href="http://ermannospizza.com/" title="http://ermannospizza.com/">Ermanno’s pizza</a> will return with its signature pizzas and S’more ravioli to feed hungry WordCampers. The S’more ravioli were such a big hit with WordCampers that Ermanno’s added it to its menu as a regular item.</p>\n<p>I enjoy meeting readers of WPTavern as well as listeners to the WordPress Weekly podcast. Let me know in the comments if you’re going to WordCamp North Canton, Ohio as I’ll be in attendance for this years event.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 14 Mar 2014 18:05:30 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:39;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:70:"WPTavern: WordPress Tip: How to Load Google Fonts Over SSL and Non-SSL";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=18971";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:182:"http://wptavern.com/wordpress-tip-how-to-load-google-fonts-over-ssl-and-non-ssl?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-tip-how-to-load-google-fonts-over-ssl-and-non-ssl";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1691:"<p>Here’s a quick tip for when you load Google fonts in WordPress. If you want the fonts to work over both SSL and non-SSL, you need to use the <a href="http://tools.ietf.org/html/rfc1808" target="_blank">protocol relative link</a>.</p>\n<p>For example, if you’re loading Google fonts from your theme’s <em>functions.php</em> file, you might do it like this:</p>\n<pre class="brush: php; light: true; title: ; notranslate">function mytheme_enqueue_styles() {\n wp_register_style(''googleFonts'', ''http://fonts.googleapis.com/css?family=Copse'');\n wp_enqueue_style( ''googleFonts'');\n }</pre>\n<p>However, this method breaks over HTTPS, which means that all your fancy custom fonts won’t work and the browser’s default will be loaded instead, ie. Times New Roman.</p>\n<p>Removing the “http” protocol from the link will allow the visitor’s browser to determine the correct protocol to load.</p>\n<pre class="brush: php; light: true; title: ; notranslate">function mytheme_enqueue_styles() {\n wp_register_style(''googleFonts'', ''//fonts.googleapis.com/css?family=Copse'');\n wp_enqueue_style( ''googleFonts'');\n }</pre>\n<p>There are many tutorials that claim to show you “The Right Way to Load Google Fonts in WordPress,” but most of them don’t use the protocol relative link. If you’ve ever forced SSL on pages then you know that all of your assets, including images, CSS, JS, fonts, etc., will be broken unless they are loaded via HTTPS. You should use the protocol relative links wherever possible when the assets or third-party links are available via both HTTP and HTTPS.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 14 Mar 2014 06:19:11 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:38:"WPTavern: Take The 2014 bbPress Survey";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=18954";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://wptavern.com/take-the-2014-bbpress-survey?utm_source=rss&utm_medium=rss&utm_campaign=take-the-2014-bbpress-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:1652:"<p><a href="http://wptavern.com/wp-content/uploads/2014/03/BuddyCampMiami2013.jpeg" rel="prettyphoto[18954]"><img src="http://wptavern.com/wp-content/uploads/2014/03/BuddyCampMiami2013.jpeg" alt="BuddyCamp Miami 2013" width="194" height="259" class="alignright size-full wp-image-18957" /></a>Similar to BuddyPress, bbPress has <a href="http://bbpress.org/blog/2014/03/2014-bbpress-survey/" title="http://bbpress.org/blog/2014/03/2014-bbpress-survey/">announced its own survey</a> to help decide features and which direction bbPress development will go in 2014. The survey is three pages long and contains a mix of generalized questions. It doesn’t take long to complete and it’s nice to be able to have a say in which direction the project goes.</p>\n<p>The only thing missing from the survey are social media links that I could use to spread the word about completing the survey. At the very least, I’d like to see a Twitter button to announce I took the survey and encourage my followers to do the same.</p>\n<p>As part of WordCamp Miami 2014, the event will feature a <a href="http://2014.miami.wordcamp.org/announcing-buddycamp-miami-2014/" title="http://2014.miami.wordcamp.org/announcing-buddycamp-miami-2014/">BuddyCamp</a>. BuddyCamp focuses on both BuddyPress and bbPress and provides an opportunity to learn and contribute to both projects. <a href="http://2014.miami.wordcamp.org/tickets/" title="http://2014.miami.wordcamp.org/tickets/">Tickets for WordCamp Miami</a> are still available but you better hurry, only a limited number are left. Sarah Gooding and I will be in attendance so be sure to say hi if you see us.</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, 13 Mar 2014 23:48:25 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:67:"WPTavern: 13 Sources For Free Public Domain and CC0-Licensed Images";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=18904";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:178:"http://wptavern.com/13-sources-for-free-public-domain-and-cc0-licensed-images?utm_source=rss&utm_medium=rss&utm_campaign=13-sources-for-free-public-domain-and-cc0-licensed-images";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:7385:"<p>Yesterday, we featured <a href="http://wptavern.com/wp-inject-makes-it-easy-to-add-free-creative-commons-images-to-wordpress-posts" target="_blank">WP Inject</a>, a plugin that makes it easy to insert <a href="http://creativecommons.org" target="_blank">Creative Commons</a> licensed images into WordPress content. High quality CC-licensed images are incredibly easy to find these days. The vast majority of the collections include images that fall under the <a href="http://creativecommons.org/licenses/by-nc-sa/2.0/deed.en" target="_blank">Creative Commons Attribution-Sharealike 2.0 license</a>. While these images are fine for blogging, they cannot be distributed with GPL-licensed software.</p>\n<h3>Why Creative Commons 2.0 Is Not Compatible With the GPL</h3>\n<p>When I submitted <a href="http://wptavern.com/introducing-ex-astris-a-free-wordpress-child-theme-for-stargazer" target="_blank">my first theme</a> to the WordPress Themes Directory, I learned that most CC-licensed images are not compatible with the GPL. At first it seemed odd to me that they wouldn’t be compatible, given that they both offer so much freedom.</p>\n<p>Samuel “Otto” Wood explained why certain Creative Commons licenses are not compatible in <a href="http://wordpress.org/support/topic/creative-commons-verses-gpl?replies=18#post-2981463" target="_blank">an answer</a> on the WordPress.org support forums:</p>\n<blockquote><p>Because CC-BY-SA cannot be sublicensed, then that means it cannot be distributed in a work under the terms of the GPL. So it cannot be included in a GPL-compatible work-as-a-whole.</p></blockquote>\n<p>If you want to include images in a GPL-licensed work, you’ll need to select from those that fall under a <a href="http://www.gnu.org/licenses/license-list.html#GPLCompatibleLicenses" target="_blank">compatible license</a>.</p>\n<p>According to the <a href="http://www.gnu.org/licenses/license-list.html#CC0" target="_blank">GNU licensing classifications</a>, CC0 is the only Creative Commons license that is compatible with the GPL:</p>\n<blockquote><p>CC0 is a public domain dedication from Creative Commons. A work released under CC0 is dedicated to the public domain to the fullest extent permitted by law. If that is not possible for any reason, CC0 also provides a lax, permissive license as a fallback. Both public domain works and the lax license provided by CC0 are compatible with the GNU GPL.</p></blockquote>\n<p>If you are distributing a GPL-licensed product with images, such as a WordPress theme or plugin, your best bet is to opt for using images with the <a href="http://creativecommons.org/choose/zero/" target="_blank">CC0</a> or Public Domain license.</p>\n<h3>13 High Quality Sources for CC0 and Public Domain Licensed Images</h3>\n<p><a href="http://directory.fsf.org/wiki/License:CC0" target="_blank">CC0</a> and Public Domain licensed images are not as easy to find as those that fall under the CC 2.0 license. Nevertheless, I was able to locate 13 high quality sources for finding images that are suitable for inclusion in GPL-licensed works. All of the following sites explicitly state a Public Domain or CC0 license for the images collected.</p>\n<h3><a href="http://unsplash.com/" target="_blank">Unsplash</a></h3>\n<p><a href="http://unsplash.com/"><img src="http://wptavern.com/wp-content/uploads/2014/03/unsplash1.jpg" alt="unsplash" width="1500" height="1000" class="aligncenter size-full wp-image-18935" /></a></p>\n<h3><a href="http://www.publicdomainpictures.net/" target="_blank">PublicDomainPictures</a></h3>\n<p><a href="http://www.publicdomainpictures.net/"><img src="http://wptavern.com/wp-content/uploads/2014/03/publicdomainpictures.jpg" alt="publicdomainpictures" width="1280" height="842" class="aligncenter size-full wp-image-18928" /></a></p>\n<h3><a href="http://pixabay.com/" target="_blank">Pixabay</a></h3>\n<p><a href="http://pixabay.com/"><img src="http://wptavern.com/wp-content/uploads/2014/03/pixabay.jpg" alt="pixabay" width="1280" height="853" class="aligncenter size-full wp-image-18930" /></a></p>\n<h3><a href="http://splitshire.com/" target="_blank">SplitShire</a></h3>\n<p><a href="http://splitshire.com/"><img src="http://wptavern.com/wp-content/uploads/2014/03/SplitShire.jpg" alt="SplitShire" width="1280" height="853" class="aligncenter size-full wp-image-18932" /></a></p>\n<h3><a href="http://www.1millionfreepictures.com/" target="_blank">1 Million Free Pictures</a></h3>\n<p><a href="http://www.1millionfreepictures.com/"><img src="http://wptavern.com/wp-content/uploads/2014/03/1millionfreepictures.jpg" alt="1millionfreepictures" width="1280" height="850" class="aligncenter size-full wp-image-18934" /></a></p>\n<h3><a href="http://viintage.com/" target="_blank">Viintage</a></h3>\n<p><a href="http://viintage.com/"><img src="http://wptavern.com/wp-content/uploads/2014/03/vintage.jpg" alt="vintage" width="760" height="598" class="aligncenter size-full wp-image-18936" /></a></p>\n<h3><a href="http://www.gratisography.com/" target="_blank">Gratisography</a></h3>\n<p><a href="http://www.gratisography.com/"><img src="http://wptavern.com/wp-content/uploads/2014/03/gratisography.jpg" alt="gratisography" width="1280" height="859" class="aligncenter size-full wp-image-18938" /></a></p>\n<h3><a href="http://littlevisuals.co/" target="_blank">Little Visuals</a></h3>\n<p><a href="http://littlevisuals.co/"><img src="http://wptavern.com/wp-content/uploads/2014/03/littlevisuals.jpg" alt="littlevisuals" width="1280" height="853" class="aligncenter size-full wp-image-18939" /></a></p>\n<h3><a href="http://www.pdpics.com/" target="_blank">PDpics</a></h3>\n<p><a href="http://www.pdpics.com/"><img src="http://wptavern.com/wp-content/uploads/2014/03/pdpics.jpg" alt="pdpics" width="640" height="426" class="aligncenter size-full wp-image-18941" /></a></p>\n<h3><a href="http://www.flickr.com/photos/britishlibrary/" target="_blank">The British Library</a></h3>\n<p><a href="http://www.flickr.com/photos/britishlibrary/"><img src="http://wptavern.com/wp-content/uploads/2014/03/britishlibrary.jpg" alt="britishlibrary" width="800" height="568" class="aligncenter size-full wp-image-18943" /></a></p>\n<h3><a href="http://nos.twnsnd.co/" target="_blank">New Old Stock</a></h3>\n<p><a href="http://nos.twnsnd.co/"><img src="http://wptavern.com/wp-content/uploads/2014/03/nos.jpg" alt="nos" width="1000" height="724" class="aligncenter size-full wp-image-18945" /></a></p>\n<h3><a href="http://pickupimage.com/" target="_blank">Pickup Image</a></h3>\n<p><a href="http://pickupimage.com/"><img src="http://wptavern.com/wp-content/uploads/2014/03/A-lake-near-the-base-of-Copahue-volcano-031214D6BC845BA9.jpg" alt="-A-lake-near-the-base-of-Copahue-volcano-031214D6BC845BA9" width="960" height="720" class="aligncenter size-full wp-image-18947" /></a></p>\n<h3><a href="http://publicdomainarchive.com/" target="_blank">Public Domain Archive</a></h3>\n<p><a href="http://publicdomainarchive.com/"><img src="http://wptavern.com/wp-content/uploads/2014/03/publicdomainarchive.jpg" alt="publicdomainarchive" width="1000" height="563" class="aligncenter size-full wp-image-18948" /></a></p>\n<p>You’ll want to bookmark these sites for the next time you’re building a WordPress theme or plugin for distribution on WordPress.org. Do you have any other favorites to recommend? Please share them in the comments.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 13 Mar 2014 21:09:44 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:55:"WPTavern: WordPress’ Personality Shines Through Again";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=18879";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:148:"http://wptavern.com/wordpress-personality-shines-through-again?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-personality-shines-through-again";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:5511:"<p>A few years ago, there was an <a href="http://wptavern.com/should-easter-eggs-in-wordpress-be-removed" title="http://wptavern.com/should-easter-eggs-in-wordpress-be-removed">important discussion</a> within the WordPress community on whether Easter eggs should be in WordPress or not. Specifically, the Matrix style Easter egg which appeared when a post revision was compared to itself. It wasn’t long after the discussion when plugins started showing up on the repository to <a href="https://wordpress.org/plugins/disable-matrix-easter-egg/" title="https://wordpress.org/plugins/disable-matrix-easter-egg/">disable it</a>.</p>\n<p><span class="embed-youtube"></span></p>\n<p>A few days ago, Fred Myer of WPShout.com <a href="http://wpshout.com/wordpress-core-needs-writing-style-guide/" title="http://wpshout.com/wordpress-core-needs-writing-style-guide/">published his idea</a> to create a WordPress writing style guide. He describes how some error messages in WordPress are written tongue-in-cheek without providing any useful information as to why the error occurred. Take the default 404 error message in WordPress for example:</p>\n<blockquote><p>This is somewhat embarrassing, isn’t it? It seems we can’t find what you’re looking for. Perhaps searching can help.</p></blockquote>\n<p>It’s embarrassing that WordPress couldn’t find what I was looking for and then proceeds to tell me that searching can help. Maybe a search should happen automatically with a list of results in the content area of the page? Regardless, it’s the wording of the message that rubs some people the wrong way. Myer advocates a more helpful approach:</p>\n<blockquote><p>When software breaks, it should not impose emotions, like an imaginary shared experience of embarrassment, on the user. It should explain what went wrong in as much detail as is helpful, and alert the user to any resources that may help address the problem.</p></blockquote>\n<p>Myer mentions the default post content in WordPress makes it seem trivial and cheap. He suggests the text should be eloquent and reflect the foundational mission of WordPress.</p>\n<p>The personality of WordPress runs deep. From core committ messages to hidden Easter eggs to the inclusion of Hello Dolly, WordPress is not your typical piece of boring software. According to Myer:</p>\n<blockquote><p>Words have power: power to define new users’ impression of the seriousness of WordPress and its creators; power to alleviate users’ frustration or aggravate it; power to provide information or smugly withhold it. WordPress’s current written content sporadically disregards that power, making WordPress seem like a cheaper, more irritating, and less well-executed project than it really is.</p></blockquote>\n<p>I don’t have a problem with WordPress’ personality but if changes could be made so that translations are easier and error messages become helpful, I’d support them. Matt Mullenweg <a href="http://wpshout.com/wordpress-core-needs-writing-style-guide/#comment-264374" title="http://wpshout.com/wordpress-core-needs-writing-style-guide/#comment-264374">commented on the article</a> and his remarks indicate that a change in WordPress’ wording isn’t likely.</p>\n<blockquote><p>WP has always been opinionated software with a lot of personality. Every year or two people try to neuter it, remove a bit of its soul, and sometimes it gets through. There are always convincing reasons, like this post, but it’s sad nonetheless. If anyone is going to stop using the software over these we probably didn’t create something very compelling in the first place. You could also create a “dry” localization of the software and see if it gets much traction.</p></blockquote>\n<div id="attachment_18909" class="wp-caption aligncenter"><a href="http://wptavern.com/wp-content/uploads/2014/03/HowdyDoodyFeaturedImage.png" rel="prettyphoto[18879]"><img src="http://wptavern.com/wp-content/uploads/2014/03/HowdyDoodyFeaturedImage.png" alt="Howdy Doody Featured Image" width="639" height="200" class="size-full wp-image-18909" /></a><p class="wp-caption-text">photo credit: <a href="http://www.flickr.com/photos/23748404@N00/2292044151/">A.Currell</a> – <a href="http://creativecommons.org/licenses/by-nc/2.0/">cc</a></p></div>\n<p>No one is advocating for the demise of WordPress or telling people to stop using it over the howdy-doody verbiage within the software. There’s also not a mass exodus of people leaving the project over it. If anything, Myer’s article highlights the fact that WordPress can still be cute and funny as long as the verbiage is straight forward.</p>\n<p>I wonder how long the clash between software personality and straight forward thinking will continue? It’s been part of WordPress for years but WordPress has yet to cave in to the demands of the vocal minority. WordPress is being used on 20% of the web and continues to grow without showing any signs of slowing down. It’s not the end of the world if the verbiage of error messages and default post content are not changed but if they can be improved, then why not do it?</p>\n<h3>How To Help With The Style Guide</h3>\n<p>If you’d like to get involved with creating a WordPress writing style guide, <a href="http://wpshout.com/contact/" title="http://wpshout.com/contact/">get in touch with Fred Myer at fred at pressupinc.com</a>. He’ll send you updates and the next steps of the process when he has them.</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, 13 Mar 2014 18:45:27 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:65:"WPTavern: Aesop Story Engine Launches Commercial WordPress Themes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=18843";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:174:"http://wptavern.com/aesop-story-engine-launches-commercial-wordpress-themes?utm_source=rss&utm_medium=rss&utm_campaign=aesop-story-engine-launches-commercial-wordpress-themes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3875:"<div id="attachment_18899" class="wp-caption aligncenter"><a href="http://wptavern.com/wp-content/uploads/2014/03/aesop.jpg" rel="prettyphoto[18843]"><img src="http://wptavern.com/wp-content/uploads/2014/03/aesop.jpg" alt="photo credit: s2art - cc" width="800" height="392" class="size-full wp-image-18899" /></a><p class="wp-caption-text">photo credit: <a href="http://www.flickr.com/photos/s2art/187604478/">s2art</a> – <a href="http://creativecommons.org/licenses/by-sa/2.0/">cc</a></p></div>\n<p>Shortly after New Year’s, Nick Haskins caught the eye of WordPress publishers with his <a href="http://wptavern.com/aesop-story-engine-an-open-source-wordpress-plugin-for-storytelling" target="_blank">open source story telling plugin</a>. The prospect of building feature-rich, interactive stories within WordPress, without having to touch any code, was so promising that the project’s <a href="https://aesop.crowdhoster.com/storytelling-engine" target="_blank">Crowdhoster campaign</a> was <a href="http://wptavern.com/aesop-wordpress-storytelling-plugin-is-now-fully-funded" target="_blank">fully-funded</a> by the end of January.</p>\n<p>The buzz around the Aesop plugin proved that the art of storytelling is not dead. Publishers are eager to have more tools at their disposal to create stories that capture readers’ attention. While Aesop brings a user-friendly implementation of storytelling features into the WordPress admin, the task of theming the plugin remained a real obstacle.</p>\n<p>Haskins had originally hoped to focus on the hosted version of Aesop after getting funded, but he temporarily scrapped that plan in favor of getting the plugin ready for showtime. Now that Aesop is available on <a href="http://wordpress.org/plugins/aesop-story-engine/" target="_blank">WordPress.org</a>, Haskin’s team is moving full steam ahead to develop themes that will bring the plugin to life.</p>\n<h3>Genji: A Lean WordPress Theme With Just 2 Files</h3>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/03/genji1.png" rel="prettyphoto[18843]"><img src="http://wptavern.com/wp-content/uploads/2014/03/genji1-300x279.png" alt="genji1" width="300" height="279" class="alignright size-medium wp-image-18874" /></a>The first official theme for Aesop is now in the wild. Inspired by <a href="http://www.nytimes.com/projects/2012/snow-fall/" target="_blank">NY Times Snowfall</a>, the <a href="http://nickhaskins.co/products/genji/" target="_blank">Genji</a> theme was designed to load quickly and keep the spotlight on the story.</p>\n<p>Haskin’s team aimed for simplicity with their first product. <a href="http://aesopthemes.com/genji/" target="_blank">Genji</a> loads only two files. It includes a handful of options for uploading a logo and changing the background, text and link colors. All of the magic, however, is powered by the media that users add via the story engine.</p>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/03/genji2.jpg" rel="prettyphoto[18843]"><img src="http://wptavern.com/wp-content/uploads/2014/03/genji2-300x192.jpg" alt="genji2" width="300" height="192" class="alignleft size-medium wp-image-18876" /></a>With the first product released, the team is focusing on Jorgen, the next theme on deck for the story engine. Jorgen will incorporate the “cover” feature found on the Aesop Story Engine <a href="http://playground.aesopstories.com/" target="_blank">demo site</a>. The development team has received many requests for the theme behind the story engine demo site and they are currently working on making that available to the public.</p>\n<p>All future Aesop themes will be sold on ThemeForest, as Haskins is now <a href="http://aesopstories.com/themes/the-release-of-genji/" target="_blank">partnering with Envato</a> to make it easy for consumers to find themes for the plugin.</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, 13 Mar 2014 09:52:52 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:25:"Gravatar: Mobile Friendly";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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.gravatar.com/?p=503";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://blog.gravatar.com/2014/03/13/mobile-friendly/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:540:"<p>We just made the Gravatar.com website, blog, and all profile pages friendlier towards mobile devices. Additionally, you can now edit your profile on the go.</p>\n<p>Enjoy!</p><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gravatar.wordpress.com/503/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gravatar.wordpress.com/503/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.gravatar.com&blog=1886259&post=503&subd=gravatar&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, 13 Mar 2014 08:52: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:7:"Joen 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:"";}}}}}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:82:"WordPress.tv: Rohini Lakshané, Rina Chhadwa, Katrina Viloria: Women on WordPress!";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wordpress.tv/?p=32923";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:95:"http://wordpress.tv/2014/03/12/rohini-lakshane-rina-chhadwa-katrina-viloria-women-on-wordpress/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:715:"<div id="v-UrN6XD8O-1" class="video-player">\n</div><br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/32923/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/32923/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=32923&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2014/03/12/rohini-lakshane-rina-chhadwa-katrina-viloria-women-on-wordpress/"><img alt="Rohini Lakshané, Rina Chhadwa, Katrina Viloria: Women on WordPress!" src="http://videos.videopress.com/UrN6XD8O/video-2f99bc2bb9_scruberthumbnail_0.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 13 Mar 2014 04:14:06 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"WordPress.tv";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:71:"WPTavern: What Theme: A New Website Theme Detector 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:28:"http://wptavern.com/?p=18827";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:184:"http://wptavern.com/what-theme-a-new-website-theme-detector-powered-by-wordpress?utm_source=rss&utm_medium=rss&utm_campaign=what-theme-a-new-website-theme-detector-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:5150:"<p>In an era where many website designs are powered by popular themes, it’s become common for folks passing by to want to snoop under the hood to find out which theme a site is using. If the visitor is not capable of inspecting the code with his browser, he might resort to a service built to automatically detect theme details. This has resulted in a proliferation of websites and browser add-ons that detect this information.</p>\n<p><a href="http://whattheme.com/" target="_blank">What Theme</a> is a new service that detects WordPress, Ghost and Shopify templates, even if the site is not using a commercial theme. For example, if you search WP Tavern, you’ll find that our site is using the Stargazer theme:</p>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/03/what-theme-example.jpg" rel="prettyphoto[18827]"><img src="http://wptavern.com/wp-content/uploads/2014/03/what-theme-example.jpg" alt="what-theme-example" width="768" height="440" class="aligncenter size-full wp-image-18835" /></a></p>\n<p>It does not yet reliably pick up on WordPress child themes, as I’ve discovered in this instance and a few others.</p>\n<h3>How What Theme Works</h3>\n<p>The engine itself is built on top of WordPress and in just a few weeks it has completed over 13,000 searches across over 4,000 unique sites. What Theme co-founder Jonny Schnittger gave us the details on how it works. “The current version of WhatTheme integrates with WordPress like a theme or plug-in would,” he said. “It gives us a lot of detail regarding what people are looking for and how successful they were.”</p>\n<p>When a user searches for a site, What Theme checks its existing catalog and if it finds it, the results are returned instantly. “In this scenario we attempt to identify the theme using several different methods,” Schnittger said. “At this point we also gather a bunch of other information that we are currently not surfacing/using).” Once the engine has found the name, it attempts to identify across various catalogs and sites. “Sometimes we get multiple matches,” he said. “In this case we try and evaluate the best match and direct the user to it.”</p>\n<p>When What Theme fails to identify a theme, Schnittger said they use various pattern matching algorithms to suggest themes from the same category, such as blog, portfolio, food, etc.</p>\n<p>For example, if you search for “WordPress.com,” the engine fails to match it to a theme:</p>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/03/what-theme-fail.jpg" rel="prettyphoto[18827]"><img src="http://wptavern.com/wp-content/uploads/2014/03/what-theme-fail.jpg" alt="what-theme-fail" width="624" height="432" class="aligncenter size-full wp-image-18845" /></a></p>\n<p>As you can see, What Theme also offers an option for the visitor to sign up to be emailed when the theme is found. It also funnels you to its <a href="http://whattheme.com/top-themes/blog/" target="_blank">top selections</a> for themes in the “blog” category, all of which are Themeforest items with the What Theme affiliate ID. In the future, Schnittger hopes to expand the suggestions, based on fonts, colors and layout.</p>\n<h3>What Theme Plans to Expand to a WordPress Installation and Customization Service</h3>\n<p>What Theme currently has basic support for Drupal and Joomla and plans to expand to include more CMS’s, such as ModX, DotNetNuke, Umbraco, etc. They are working to improve the accuracy of results for all supported platforms.</p>\n<p>Co-founder Catalin Zorzini let us in on some of their long-term goals. <strong>“We plan to become the go-to resource for web designers and developers being asked by friends and relatives to build a website for them on the cheap or for free,”</strong> he said. “So instead of being forced to say no or to make empty promises, now they can just send them to whattheme.com and we’ll take care of the rest.” What Theme will then ask them what site they would like theirs to look like and recommend an existing template based on that. “The next step is to integrate it with a WP install and customization service,” Zorzini said.</p>\n<p>The What Theme site is another interesting take on services aimed at capitalizing on the millions of people searching for WordPress themes. Many services, such as <a href="http://wptavern.com/theme-friendly-helps-you-find-the-perfect-wordpress-theme" target="_blank">Theme Friendly</a>, are built around helping users shop for WordPress themes, with the primary monetization in the form of affiliate links.</p>\n<p>What Theme is different in that it hooks into the fact that the consumer has already located a theme that he likes. The long-term strategy for building a customization service as an offshoot of the theme search seems to be more promising than depending on affiliate links for income. What do you think about the <a href="http://whattheme.com/" target="_blank">What Theme</a> search engine? Will they be able to leverage the traffic into a successful WordPress business?</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 12 Mar 2014 23:29:12 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Sarah Gooding";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:77:"WPTavern: Why Company Culture Is So Important For Remote WordPress Developers";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=18689";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:198:"http://wptavern.com/why-company-culture-is-so-important-for-remote-wordpress-developers?utm_source=rss&utm_medium=rss&utm_campaign=why-company-culture-is-so-important-for-remote-wordpress-developers";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:5364:"<div id="attachment_18752" class="wp-caption aligncenter"><a href="http://wptavern.com/wp-content/uploads/2014/03/RemoteWordPressWorkerFeaturedImage.png" rel="prettyphoto[18689]"><img class="size-large wp-image-18752" alt="Remote WordPress Worker Featured Image" src="http://wptavern.com/wp-content/uploads/2014/03/RemoteWordPressWorkerFeaturedImage-500x156.png" width="500" height="156" /></a><p class="wp-caption-text">photo credit: <a href="http://www.flickr.com/photos/icedsoul/2601694302/">icedsoul photography .:teymur madjderey</a> – <a href="http://creativecommons.org/licenses/by-nc-nd/2.0/">cc</a></p></div>\n<p>I follow a handful of people who work with WordPress on a daily basis and I often see WordPress agencies publishing news about their recent hiring. I’ve noticed a lot of employees for WordPress agencies don’t seem to be sticking around with one company for very long. When I think of an employee staying at one company for a long time, I’m talking about three to five years although it’s easy to forget agencies like <a title="http://10up.com/" href="http://10up.com/">10up</a> have only been around for three years.</p>\n<p>Why does it seem like they are switching companies as if it’s no big deal? I sat back and pondered this question for a while and came up with the following conclusions.</p>\n<h3>Tons Of Employment Opportunities</h3>\n<p>Since WordPress powers 20% of the web, there are a multitude of employment opportunities.. If one company isn’t paying enough, chances are good that another company is. Of course, working for an agency isn’t required as sites like <a title="https://www.elance.com/" href="https://www.elance.com/">Elance</a> and <a title="https://www.odesk.com/" href="https://www.odesk.com/">oDesk</a> have proven there is high demand for individual freelancers who specialize in WordPress.</p>\n<h3>Insight From A 6 Year Old WordPress Company</h3>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/03/WebDevStudiosLogo2.png" rel="prettyphoto[18689]"><img class="alignright size-full wp-image-18760" alt="WebDevStudios Logo " src="http://wptavern.com/wp-content/uploads/2014/03/WebDevStudiosLogo2.png" width="211" height="64" /></a>Founded in 2008, <a title="http://webdevstudios.com/" href="http://webdevstudios.com/">WebDevStudios</a> is one of the longest running WordPress development companies within the WordPress ecosystem. I asked co-owner Brad Williams what the attrition rate is for WebDevStudios. He told me very few employees have left the company since it was founded. He also told me they no longer hire contractors and every WebDevStudios employee is full-time.</p>\n<p>When asked if he’s seeing a lot of people apply for jobs at the company, he said “<em>We get quite a few applications when we post a job opening.</em>” Overall, Brad has seen a few remote employees bounce around, but doesn’t really consider it to be a widespread issue.</p>\n<h3>Switch Companies Without Ever Leaving Home</h3>\n<p>Remote WordPress employees have a distinct advantage over their physical workplace counterparts. They can switch companies without ever leaving home. Employees working in a physical location sometimes have to move to a different city for a promotion or for a new job. Remote workers can perform their jobs from anywhere in the world as long as they have an Internet connection. I think this is the single biggest reason remote workers can move between multiple companies within a one to two year timeframe.</p>\n<h3>Finding A Culture That Fits</h3>\n<p><a href="http://wptavern.com/wp-content/uploads/2013/10/ithemeslogo2.jpg" rel="prettyphoto[18689]"><img class="alignright size-full wp-image-10776" alt="iThemes logo 2" src="http://wptavern.com/wp-content/uploads/2013/10/ithemeslogo2.jpg" width="255" height="53" /></a>Thanks to remote workers not being tied to a physical location, it’s easier to find a company culture where they fit in. Automattic has done a great job of making sure every one of its employees blends in with its culture.</p>\n<p>For most companies, it’s not just about being an employee and getting work done. It’s about something larger than any one individual. When I’ve asked employees why they have switched between multiple companies within a year, the answer is usually the same. <em>It just wasn’t a good fit for me</em>.</p>\n<p>Glenn Ansley who works for <a title="http://ithemes.com/" href="http://ithemes.com/">iThemes</a> says his company does a great job keeping him connected to the company:</p>\n<blockquote><p>If you don’t feel connected to your team, the loyalty is probably closer to that of a freelance contractor than an employee. My guess is it’s harder to get full buy-in / ownership from a remote employee. iThemes does a great job keeping me connected.</p></blockquote>\n<h3>Not As Big Of A Problem As I Thought</h3>\n<p>After speaking with Cory Miller, Brad Williams, and Jake Goldman I’ve discovered the problem is not nearly as bad as I thought. Attrition rates for some of the largest, longest, running WordPress businesses are low and employees are sticking with them. However, for the reasons explained above, it’s easier to switch companies as a remote WordPress worker than a typical employee in a brick and mortar shop.</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, 12 Mar 2014 21:23:40 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Jeff Chandler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:88:"WPTavern: WP Inject Makes It Easy to Add Free Creative Commons Images to WordPress 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:"guid";a:1:{i:0;a:5:{s:4:"data";s:28:"http://wptavern.com/?p=18778";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:220:"http://wptavern.com/wp-inject-makes-it-easy-to-add-free-creative-commons-images-to-wordpress-posts?utm_source=rss&utm_medium=rss&utm_campaign=wp-inject-makes-it-easy-to-add-free-creative-commons-images-to-wordpress-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:11:"description";a:1:{i:0;a:5:{s:4:"data";s:5010:"<p>Last week, Getty Images announced its new <a href="http://www.gettyimages.com/Creative/Frontdoor/embed" target="_blank">open-embed program</a>, which removes the watermark from many of the images in its library for non-commercial use. In exchange, Getty’s iframed images are plastered with its logo and force a row of large, unattractive social sharing buttons on each embed. Getty reserves the right to remove content from the embedded viewer at any time, which could potentially leave a trail of gaping black holes throughout your blog.</p>\n<p>Many <a href="http://www.theguardian.com/technology/2014/mar/07/photographers-getty-images" target="_blank">photographers</a> and <a href="http://www.poststat.us/getty-images-now-free-embed/" target="_blank">bloggers</a> are unimpressed with Getty’s implementation. Even with 35 million new “free” photos flooding the blogosphere, <a href="https://creativecommons.org/licenses/" target="_blank">Creative Commons</a> images are likely to remain the preferred option, as they provide more creative freedom in styling the attribution and can be used in galleries, videos, design, etc.</p>\n<h3>WP Inject: A Homegrown Alternative to Getty’s Free Images</h3>\n<p><a href="http://wordpress.org/plugins/wp-inject/" target="_blank">WP Inject</a> is a new free plugin that makes it easy to use CC-licensed images in your WordPress content with just a few clicks. In fact, you don’t even need to leave the admin. The plugin adds a search box to the post editor. The search is hooked up to <a href="http://www.flickr.com/creativecommons/" target="_blank">Flickr’s vast library of CC-licensed images</a>.</p>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/03/wpinject.png" rel="prettyphoto[18778]"><img src="http://wptavern.com/wp-content/uploads/2014/03/wpinject.png" alt="wpinject" width="1395" height="1019" class="aligncenter size-full wp-image-18779" /></a></p>\n<p>WP Inject lets you compare multiple keyword search results to find the best match. Adding an image to your content is as easy as clicking on the size you want. The plugin automatically places it within your content and adds the correct attribution. It also saves the image to your server.</p>\n<p><a href="http://wptavern.com/wp-content/uploads/2014/03/wpinject2.png" rel="prettyphoto[18778]"><img src="http://wptavern.com/wp-content/uploads/2014/03/wpinject2.png" alt="wpinject2" width="1244" height="1110" class="aligncenter size-full wp-image-18782" /></a></p>\n<h3>Designed for Blogger Convenience</h3>\n<p>WP Inject, although somewhat unfortunately named, does not fail to impress in the features department. Every aspect of the plugin was designed for the blogger’s convenience, including the following:</p>\n<ul>\n<li>Set the featured image for your post with a single click.</li>\n<li>Insert multiple images at once and create whole galleries.</li>\n<li>Sort by selected Creative Commons licenses.</li>\n<li>Choose between several image sizes easily.</li>\n<li>Modify the templates of WP Inject to change how images get displayed in your posts.</li>\n<li>Images are saved to your own server and added to the WordPress media library.</li>\n<li>Automatically populated ALT and title tags of the image for search engine optimization.</li>\n<li>Can use and insert your focus keyword set in WordPress SEO by Yoast for easier image search optimization.</li>\n</ul>\n<p>Thomas Hoefter, the plugin’s developer, is also the author of the <a href="http://wprobot.net/" target="_blank">WP Robot</a> plugin and founder of <a href="http://cmscommander.com/" target="_blank">CMS Commander</a>. WP Inject is a side project that grew out of his personal need for a solution to add featured images to new posts as quickly as possible. He said:</p>\n<blockquote><p>Since I think finding good images for their posts is a problem lots of bloggers face, I have polished the plugin up last week and then released it. While there are a few alternatives out in the wild already (e.g. Photodropper), I found that most of them lacked features (at least some of which I needed) and/or are not actively updated anymore.</p></blockquote>\n<p>Hoefter plans to update WP Inject regularly and created a website with a <a href="http://wpinject.com/tutorial/" target="_blank">tutorial</a> on how to use the plugin. In the future, he intends to include more image sources in addition to Flickr. He also hopes to make it possible to inject other types of media, including videos, ads, products and news stories.</p>\n<p>After testing the plugin, I found that the in-post search is fast and convenient, since you don’t have to leave the WordPress admin to locate images for your content. It keeps you in the flow while writing and removes the hassle of having to open more browser tabs to search. WP Inject is a solid alternative to Getty’s free images. <a href="http://wordpress.org/plugins/wp-inject/" target="_blank">Download</a> the plugin for free from WordPress.org.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 12 Mar 2014 18:34:43 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"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: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:51:"Alex King: Is WordPress the Right Tool for the Job?";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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=19550";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"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://alexking.org/blog/2014/03/12/when-to-use-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:2752:"<p>I recently got an email that asked:</p>\n<blockquote><p>Do you ever question whether WordPress is the correct CMS for something?</p>\n<p>I am a big WordPress fan too and I’ve solved some really cool content management challenges with it but there are times when I think, this site would probably be faster and more efficient if it were built using some MVC framework?</p>\n<p>[...]</p>\n<p>With small business sites, this isn’t really that big a deal but with some of the enterprise-level clients you work with I wonder whether it becomes an issue.</p></blockquote>\n<p>Rather than replying via email, I thought this might be a good topic for a blog post.</p>\n<p>First off, I should mention that when clients come to <a href="http://crowdfavorite.com">Crowd Favorite</a>, it is often because they have already made a technology choice to use WordPress and have found us because of our reputation in working with WordPress. That said, we believe in using the right tool for the job.</p>\n<p>Most often that tool is WordPress, but there are times when we suggest alternative solutions that are a better fit for their specific problem. We’ve used our Oxygen MVC platform for a number of client projects, sometimes in conjunction with a WordPress powered site.</p>\n<p>One of the great benefits to using WordPress vs. a custom solution is that scaling WordPress is generally a solved problem. There are lots of smart folks who have figured this out and shared their knowledge within the community. We are very comfortable deploying high traffic sites on WordPress.</p>\n<p>Scaling a custom application is often a journey of discovery. Sometimes this journey can be a bit rocky, and lonely. You will need to solve most of your problems on your own. This makes WordPress a safer choice when all other things are equal.</p>\n<p>I’m on record saying I don’t believe WordPress is a good general application platform, but I think it’s wonderful for certain types of apps. Our developer journal, <a href="http://crowdfavorite.com/capsule/">Capsule</a> is a great example of this. We created a distributed journal app that can sync back to a central server/hub – all on WordPress. I’ve also created an HR logging system using WordPress. These have worked quite nicely.</p>\n<p>At the end of the day, I believe in a pragmatic approach. The things that go into this decision include:</p>\n<ul>\n<li>comparing site needs to what WordPress does out of the box</li>\n<li>consider known and projected future enhancements</li>\n<li>consider potential scaling concerns</li>\n<li>consider the importance of the community and lack of vendor lock-in to the client</li>\n</ul>\n<p>Happily, that means we choose WordPress much of the time.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 12 Mar 2014 17: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: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:"";}}}}}}}}}}}}}}}}s:4:"type";i:128;s:7:"headers";a:9:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Fri, 21 Mar 2014 02:16:41 GMT";s:12:"content-type";s:8:"text/xml";s:14:"content-length";s:6:"186708";s:10:"connection";s:5:"close";s:4:"vary";s:15:"Accept-Encoding";s:13:"last-modified";s:29:"Fri, 21 Mar 2014 02:00:12 GMT";s:4:"x-nc";s:11:"HIT lax 250";s:13:"accept-ranges";s:5:"bytes";}s:5:"build";s:14:"20140320131242";}', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(283, '_transient_timeout_feed_mod_b9388c83948825c1edaef0d856b7b109', '1395411401', 'no'),
(281, '_transient_timeout_feed_b9388c83948825c1edaef0d856b7b109', '1395411401', 'no'),
(282, '_transient_feed_b9388c83948825c1edaef0d856b7b109', 'a:4:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:3:"\n \n";s:7:"attribs";a:1:{s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:72:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:39:"WordPress Plugins » View: Most Popular";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:44:"http://wordpress.org/plugins/browse/popular/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:39:"WordPress Plugins » View: Most Popular";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"language";a:1:{i:0;a:5:{s:4:"data";s:5:"en-US";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 21 Mar 2014 02: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: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: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: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:24:"Jetpack by WordPress.com";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:48:"http://wordpress.org/plugins/jetpack/#post-23862";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 20 Jan 2011 02:21:38 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"23862@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:104:"Supercharge your WordPress site with powerful features previously only available to WordPress.com users.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:9:"Tim Moore";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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: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:120:"The most popular WordPress gallery plugin and one of the most popular plugins of all time with over 9 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:5;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:19:"All in One SEO Pack";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:58:"http://wordpress.org/plugins/all-in-one-seo-pack/#post-753";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 30 Mar 2007 20:08:18 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"753@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:126:"All in One SEO Pack is a WordPress SEO plugin to automatically optimize your WordPress blog for Search Engines such as Google.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:8:"uberdose";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:6;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s: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: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: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:8;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:18:"Better WP Security";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:59:"http://wordpress.org/plugins/better-wp-security/#post-21738";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 22 Oct 2010 22:06:05 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"21738@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:107:"The easiest, most effective way to secure WordPress. Improve the security of any WordPress site in seconds.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Chris Wiegman";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:21:"WPtouch Mobile Plugin";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:47:"http://wordpress.org/plugins/wptouch/#post-5468";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 01 May 2008 04:58:09 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"5468@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:63:"Create a slick mobile WordPress website with just a few clicks.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:17:"BraveNewCode Inc.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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:30:"Google Analytics for WordPress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:70:"http://wordpress.org/plugins/google-analytics-for-wordpress/#post-2316";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 14 Sep 2007 12:15:27 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:34:"2316@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:145:"Track your WordPress site easily and with lots of metadata: views per author & category, automatic tracking of outbound clicks and pageviews.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Joost de Valk";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i: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: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: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: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: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:33:"Google Analytics Dashboard for WP";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:74:"http://wordpress.org/plugins/google-analytics-dashboard-for-wp/#post-50539";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 10 Mar 2013 17:07:11 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"50539@http://wordpress.org/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:148:"Displays Google Analytics Reports and Real-Time Statistics in your Dashboard. Automatically inserts the tracking code in every page of your website.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:10:"Alin Marcu";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:3:{s:4:"href";s:45:"http://wordpress.org/plugins/rss/view/popular";s:3:"rel";s:4:"self";s:4:"type";s:19:"application/rss+xml";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}}}}}}s:4:"type";i:128;s:7:"headers";a:10:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Fri, 21 Mar 2014 02:16:41 GMT";s:12:"content-type";s:23:"text/xml; charset=UTF-8";s:10:"connection";s:5:"close";s:4:"vary";s:15:"Accept-Encoding";s:7:"expires";s:29:"Fri, 21 Mar 2014 02:43:06 GMT";s:13:"cache-control";s:0:"";s:6:"pragma";s:0:"";s:13:"last-modified";s:31:"Fri, 21 Mar 2014 02:08:06 +0000";s:4:"x-nc";s:11:"HIT lax 250";}s:5:"build";s:14:"20140320131242";}', 'no'),
(121, '_transient_timeout_plugin_slugs', '1395457888', 'no'),
(122, '_transient_plugin_slugs', 'a:19:{i:0;s:19:"adminer/adminer.php";i:1;s:19:"akismet/akismet.php";i:2;s:21:"backwpup/backwpup.php";i:3;s:29:"bj-lazy-load/bj-lazy-load.php";i:4;s:36:"contact-form-7/wp-contact-form-7.php";i:5;s:41:"easy-media-gallery/easy-media-gallery.php";i:6;s:57:"google-language-translator/google-language-translator.php";i:7;s:36:"google-sitemap-generator/sitemap.php";i:8;s:30:"lightbox-plus/lightboxplus.php";i:9;s:35:"random-posts-widget/randomposts.php";i:10;s:39:"social-count-plus/social-count-plus.php";i:11;s:27:"test_widget/test_widget.php";i:12;s:45:"use-google-libraries/use-google-libraries.php";i:13;s:55:"wishpond-social-campaigns/wishpond-social-campaigns.php";i:14;s:41:"wordpress-importer/wordpress-importer.php";i:15;s:24:"wordpress-seo/wp-seo.php";i:16;s:31:"wp-statistics/wp-statistics.php";i:17;s:21:"wp-polls/wp-polls.php";i:18;s:27:"wp-super-cache/wp-cache.php";}', 'no'),
(289, 'sm_options', 'a:56:{s:18:"sm_b_prio_provider";s:41:"GoogleSitemapGeneratorPrioByCountProvider";s:13:"sm_b_filename";s:11:"sitemap.xml";s:10:"sm_b_debug";b:1;s:8:"sm_b_xml";b:1;s:9:"sm_b_gzip";b:1;s:9:"sm_b_ping";b:1;s:12:"sm_b_pingmsn";b:1;s:19:"sm_b_manual_enabled";b:0;s:17:"sm_b_auto_enabled";b:1;s:15:"sm_b_auto_delay";b:1;s:15:"sm_b_manual_key";s:32:"5e90217e8aff88f1fe260918382ddf98";s:11:"sm_b_memory";s:0:"";s:9:"sm_b_time";i:-1;s:14:"sm_b_max_posts";i:-1;s:13:"sm_b_safemode";b:0;s:18:"sm_b_style_default";b:1;s:10:"sm_b_style";s:0:"";s:11:"sm_b_robots";b:1;s:12:"sm_b_exclude";a:0:{}s:17:"sm_b_exclude_cats";a:0:{}s:18:"sm_b_location_mode";s:4:"auto";s:20:"sm_b_filename_manual";s:0:"";s:19:"sm_b_fileurl_manual";s:0:"";s:10:"sm_in_home";b:1;s:11:"sm_in_posts";b:1;s:15:"sm_in_posts_sub";b:0;s:11:"sm_in_pages";b:1;s:10:"sm_in_cats";b:0;s:10:"sm_in_arch";b:0;s:10:"sm_in_auth";b:0;s:10:"sm_in_tags";b:0;s:9:"sm_in_tax";a:0:{}s:17:"sm_in_customtypes";a:0:{}s:13:"sm_in_lastmod";b:1;s:10:"sm_cf_home";s:5:"daily";s:11:"sm_cf_posts";s:7:"monthly";s:11:"sm_cf_pages";s:6:"weekly";s:10:"sm_cf_cats";s:6:"weekly";s:10:"sm_cf_auth";s:6:"weekly";s:15:"sm_cf_arch_curr";s:5:"daily";s:14:"sm_cf_arch_old";s:6:"yearly";s:10:"sm_cf_tags";s:6:"weekly";s:10:"sm_pr_home";d:1;s:11:"sm_pr_posts";d:0.59999999999999998;s:15:"sm_pr_posts_min";d:0.20000000000000001;s:11:"sm_pr_pages";d:0.59999999999999998;s:10:"sm_pr_cats";d:0.29999999999999999;s:10:"sm_pr_arch";d:0.29999999999999999;s:10:"sm_pr_auth";d:0.29999999999999999;s:10:"sm_pr_tags";d:0.29999999999999999;s:12:"sm_i_donated";b:0;s:17:"sm_i_hide_donated";b:0;s:17:"sm_i_install_date";i:1395373209;s:14:"sm_i_hide_note";b:0;s:15:"sm_i_hide_works";b:0;s:16:"sm_i_hide_donors";b:0;}', 'yes'),
(126, '_transient_twentyfourteen_category_count', '1', 'yes'),
(128, 'theme_mods_twentyfourteen', 'a:1:{s:16:"sidebars_widgets";a:2:{s:4:"time";i:1395321839;s:4:"data";a:4:{s:19:"wp_inactive_widgets";a:0:{}s:9:"sidebar-1";a:6:{i:0;s:8:"search-2";i:1;s:14:"recent-posts-2";i:2;s:17:"recent-comments-2";i:3;s:10:"archives-2";i:4;s:12:"categories-2";i:5;s:6:"meta-2";}s:9:"sidebar-2";a:0:{}s:9:"sidebar-3";a:0:{}}}}', 'yes'),
(129, 'current_theme', 'DiabloFun', 'yes'),
(130, 'theme_mods_diablofun', 'a:2:{i:0;b:0;s:18:"nav_menu_locations";a:2:{s:8:"sec-menu";i:5;s:9:"main-menu";i:6;}}', 'yes'),
(131, 'theme_switched', '', 'yes'),
(132, 'smt_hash', '26569919ff88be2561b24ce68a78a516', 'yes'),
(133, '_transient_random_seed', '99d66031811678d77e68c36a2c65022a', 'yes'),
(170, 'rewrite_rules', 'a:88:{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:37:"easymedia/[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:47:"easymedia/[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:67:"easymedia/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:62:"easymedia/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:62:"easymedia/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:30:"easymedia/([^/]+)/trackback/?$";s:43:"index.php?easymediagallery=$matches[1]&tb=1";s:38:"easymedia/([^/]+)/page/?([0-9]{1,})/?$";s:56:"index.php?easymediagallery=$matches[1]&paged=$matches[2]";s:45:"easymedia/([^/]+)/comment-page-([0-9]{1,})/?$";s:56:"index.php?easymediagallery=$matches[1]&cpage=$matches[2]";s:30:"easymedia/([^/]+)(/[0-9]+)?/?$";s:55:"index.php?easymediagallery=$matches[1]&page=$matches[2]";s:26:"easymedia/[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:36:"easymedia/[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:56:"easymedia/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:51:"easymedia/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:51:"easymedia/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:51:"easy-media/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:52:"index.php?emediagallery=$matches[1]&feed=$matches[2]";s:46:"easy-media/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:52:"index.php?emediagallery=$matches[1]&feed=$matches[2]";s:39:"easy-media/([^/]+)/page/?([0-9]{1,})/?$";s:53:"index.php?emediagallery=$matches[1]&paged=$matches[2]";s:21:"easy-media/([^/]+)/?$";s:35:"index.php?emediagallery=$matches[1]";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: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:47:"[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:57:"[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:77:"[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:72:"[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:72:"[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:44:"([0-9]{4})/([0-9]{1,2})/([^/]+)/trackback/?$";s:69:"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&tb=1";s:64:"([0-9]{4})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:81:"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&feed=$matches[4]";s:59:"([0-9]{4})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:81:"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&feed=$matches[4]";s:52:"([0-9]{4})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$";s:82:"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&paged=$matches[4]";s:59:"([0-9]{4})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$";s:82:"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&cpage=$matches[4]";s:44:"([0-9]{4})/([0-9]{1,2})/([^/]+)(/[0-9]+)?/?$";s:81:"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&page=$matches[4]";s:36:"[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:46:"[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:66:"[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:61:"[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:61:"[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:51:"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$";s:65:"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]";s:38:"([0-9]{4})/comment-page-([0-9]{1,})/?$";s:44:"index.php?year=$matches[1]&cpage=$matches[2]";s:27:".?.+?/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:37:".?.+?/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:57:".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:52:".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:52:".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:20:"(.?.+?)/trackback/?$";s: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]";}', 'yes'),
(137, 'recently_activated', 'a:0:{}', 'yes'),
(138, 'wpcf7', 'a:1:{s:7:"version";s:5:"3.7.2";}', 'yes'),
(139, 'easy_media_opt', 'a:58:{s:19:"easymedia_deff_init";s:1:"1";s:17:"easymedia_frm_col";s:7:"#FFFFFF";s:17:"easymedia_ttl_col";s:7:"#C7C7C7";s:18:"easymedia_shdw_col";s:7:"#4A4A4A";s:18:"easymedia_icon_col";s:7:"#474747";s:19:"easymedia_box_style";s:5:"Light";s:21:"easymedia_overlay_col";s:7:"#F7F0D7";s:19:"easymedia_thumb_col";s:7:"#000000";s:21:"easymedia_hover_style";s:4:"Dark";s:18:"easymedia_mag_icon";s:6:"Icon-0";s:21:"easymedia_plugin_core";s:14:"core-1.4.5-min";s:21:"easymedia_hover_opcty";s:2:"40";s:23:"easymedia_overlay_opcty";s:2:"80";s:28:"easymedia_thumb_border_opcty";s:3:"100";s:24:"easymedia_img_size_limit";s:3:"940";s:17:"easymedia_columns";s:1:"3";s:20:"easymedia_margin_box";s:2:"12";s:19:"easymedia_audio_vol";s:3:"100";s:26:"easymedia_disen_audio_loop";s:1:"1";s:20:"easymedia_frm_border";s:1:"5";s:19:"easymedia_cur_style";s:7:"Pointer";s:20:"easymedia_alignstyle";s:6:"Center";s:20:"easymedia_pag_effect";s:7:"flipInX";s:19:"easymedia_badge_pos";s:9:"Top Right";s:24:"easymedia_disen_showcntr";s:1:"1";s:29:"easymedia_disen_showcntrthumb";s:1:"1";s:19:"easymedia_badge_col";s:4:"Blue";s:18:"easymedia_disen_fb";s:1:"1";s:19:"easymedia_disen_twt";s:1:"1";s:19:"easymedia_disen_pin";s:1:"1";s:18:"easymedia_disen_gp";s:1:"1";s:19:"easymedia_disen_eml";s:1:"1";s:21:"easymedia_disen_upchk";s:1:"1";s:22:"easymedia_disen_rclick";s:1:"1";s:17:"easymedia_cls_pos";s:6:"Bottom";s:17:"easymedia_sos_pos";s:6:"Bottom";s:23:"easymedia_disen_dasnews";s:1:"1";s:26:"easymedia_disen_preload_ef";s:1:"1";s:22:"easymedia_disen_galnav";s:1:"1";s:18:"easymedia_brdr_rds";s:1:"3";s:19:"easymedia_disen_bor";s:1:"1";s:19:"easymedia_disen_sdw";s:1:"1";s:23:"easymedia_style_pattern";s:14:"pattern-01.png";s:21:"easymedia_disen_ticon";s:1:"1";s:22:"easymedia_disen_icocol";s:1:"1";s:22:"easymedia_disen_databk";s:1:"1";s:21:"easymedia_ajax_con_id";s:8:"#content";s:20:"easymedia_disen_ajax";s:0:"";s:25:"easymedia_disen_style_man";s:1:"1";s:24:"easymedia_disen_hovstyle";s:1:"1";s:20:"easymedia_disen_plug";s:1:"1";s:22:"easymedia_disen_autopl";s:1:"1";s:23:"easymedia_disen_autoplv";s:1:"1";s:25:"easymedia_disen_admnotify";s:1:"1";s:18:"easymedia_frm_size";a:2:{s:5:"width";s:3:"160";s:6:"height";s:3:"160";}s:18:"easymedia_vid_size";a:2:{s:5:"width";s:3:"700";s:6:"height";s:3:"400";}s:4:"text";s:0:"";s:8:"textarea";s:0:"";}', 'yes'),
(140, 'googlelanguagetranslator_active', '1', 'yes'),
(141, 'googlelanguagetranslator_language', 'en', 'yes'),
(142, 'googlelanguagetranslator_language_option', 'all', 'yes'),
(143, 'language_display_settings', 'a:1:{s:2:"en";i:1;}', 'yes'),
(144, 'googlelanguagetranslator_flags', 'show_flags', 'yes'),
(145, 'flag_display_settings', 'a:1:{s:7:"flag-en";i:1;}', 'yes'),
(146, 'googlelanguagetranslator_translatebox', 'yes', 'yes'),
(147, 'googlelanguagetranslator_display', 'Vertical', 'yes'),
(148, 'googlelanguagetranslator_toolbar', 'Yes', 'yes'),
(149, 'googlelanguagetranslator_showbranding', 'Yes', 'yes'),
(150, 'googlelanguagetranslator_flags_alignment', 'flags_left', 'yes'),
(151, 'googlelanguagetranslator_analytics', '1', 'yes'),
(152, 'googlelanguagetranslator_analytics_id', '', 'yes'),
(153, 'googlelanguagetranslator_css', '', 'yes'),
(154, 'googlelanguagetranslator_manage_translations', '0', 'yes'),
(155, 'googlelanguagetranslator_multilanguage', '0', 'yes'),
(156, 'googlelanguagetranslator_floating_widget', 'yes', 'yes'),
(157, 'lightboxplus_options', '', 'yes'),
(158, 'responsive_lightbox_version', '1.4.1', 'yes'),
(159, 'responsive_lightbox_settings', 'a:10:{s:6:"script";s:8:"swipebox";s:8:"selector";s:8:"lightbox";s:9:"galleries";b:1;s:6:"videos";b:1;s:11:"image_links";b:1;s:17:"images_as_gallery";b:0;s:19:"deactivation_delete";b:0;s:13:"loading_place";s:6:"header";s:20:"enable_custom_events";b:0;s:13:"custom_events";s:12:"ajaxComplete";}', 'no'),
(160, 'responsive_lightbox_configuration', 'a:5:{s:11:"prettyphoto";a:21:{s:15:"animation_speed";s:6:"normal";s:9:"slideshow";b:0;s:15:"slideshow_delay";i:5000;s:18:"slideshow_autoplay";b:0;s:7:"opacity";i:75;s:10:"show_title";b:1;s:12:"allow_resize";b:1;s:12:"allow_expand";b:1;s:5:"width";i:1080;s:6:"height";i:720;s:9:"separator";s:1:"/";s:5:"theme";s:10:"pp_default";s:18:"horizontal_padding";i:20;s:10:"hide_flash";b:0;s:5:"wmode";s:6:"opaque";s:14:"video_autoplay";b:0;s:5:"modal";b:0;s:11:"deeplinking";b:0;s:15:"overlay_gallery";b:1;s:18:"keyboard_shortcuts";b:1;s:6:"social";b:0;}s:8:"swipebox";a:5:{s:9:"animation";s:3:"css";s:15:"force_png_icons";b:0;s:9:"hide_bars";b:1;s:15:"hide_bars_delay";i:5000;s:15:"video_max_width";i:1080;}s:8:"fancybox";a:25:{s:5:"modal";b:0;s:12:"show_overlay";b:1;s:17:"show_close_button";b:1;s:20:"enable_escape_button";b:1;s:21:"hide_on_overlay_click";b:1;s:21:"hide_on_content_click";b:0;s:6:"cyclic";b:0;s:15:"show_nav_arrows";b:1;s:10:"auto_scale";b:1;s:9:"scrolling";s:3:"yes";s:16:"center_on_scroll";b:1;s:7:"opacity";b:1;s:15:"overlay_opacity";i:70;s:13:"overlay_color";s:4:"#666";s:10:"title_show";b:1;s:14:"title_position";s:7:"outside";s:11:"transitions";s:4:"fade";s:7:"easings";s:5:"swing";s:6:"speeds";i:300;s:12:"change_speed";i:300;s:11:"change_fade";i:100;s:7:"padding";i:5;s:6:"margin";i:5;s:11:"video_width";i:1080;s:12:"video_height";i:720;}s:4:"nivo";a:3:{s:6:"effect";s:4:"fade";s:12:"keyboard_nav";b:1;s:13:"error_message";s:63:"The requested content cannot be loaded. Please try again later.";}s:13:"imagelightbox";a:6:{s:15:"animation_speed";i:250;s:12:"preload_next";b:1;s:15:"enable_keyboard";b:1;s:11:"quit_on_end";b:0;s:19:"quit_on_image_click";b:0;s:22:"quit_on_document_click";b:1;}}', 'no'),
(161, 'socialcountplus_settings', 'a:20:{s:14:"twitter_active";s:1:"1";s:12:"twitter_user";s:0:"";s:20:"twitter_consumer_key";s:0:"";s:23:"twitter_consumer_secret";s:0:"";s:20:"twitter_access_token";s:0:"";s:27:"twitter_access_token_secret";s:0:"";s:15:"facebook_active";s:1:"1";s:11:"facebook_id";s:0:"";s:12:"youtube_user";s:0:"";s:17:"googleplus_active";s:1:"1";s:13:"googleplus_id";s:0:"";s:18:"instagram_username";s:0:"";s:17:"instagram_user_id";s:0:"";s:22:"instagram_access_token";s:0:"";s:16:"steam_group_name";s:0:"";s:19:"soundcloud_username";s:0:"";s:20:"soundcloud_client_id";s:0:"";s:12:"posts_active";s:1:"1";s:12:"target_blank";s:1:"1";s:12:"rel_nofollow";s:1:"1";}', 'yes'),
(162, 'socialcountplus_design', 'a:2:{s:6:"models";i:0;s:10:"text_color";s:7:"#333333";}', 'yes'),
(163, 'socialcountplus_cache', 'a:2:{s:5:"posts";s:1:"1";s:8:"comments";s:1:"1";}', 'yes'),
(329, '_transient_timeout_socialcountplus_counter', '1395479554', 'no'),
(330, '_transient_socialcountplus_counter', 'a:9:{s:7:"twitter";i:0;s:8:"facebook";i:0;s:7:"youtube";i:0;s:10:"googleplus";i:0;s:9:"instagram";i:0;s:10:"soundcloud";i:0;s:5:"steam";i:0;s:5:"posts";s:1:"1";s:8:"comments";i:0;}', 'no'),
(166, '_transient_timeout_JCP_UseGoogleLibraries_cache', '1395413515', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(167, '_transient_JCP_UseGoogleLibraries_cache', 'a:3:{s:7:"ugl_ver";s:5:"1.5.2";s:6:"wp_ver";s:5:"3.8.1";s:10:"newscripts";a:41:{i:0;O:14:"_WP_Dependency":6:{s:6:"handle";s:14:"jquery-ui-core";s:3:"src";s:64:"//ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js";s:4:"deps";a:1:{i:0;s:6:"jquery";}s:3:"ver";s:6:"1.10.3";s:4:"args";i:1;s:5:"extra";a:0:{}}i:1;O:14:"_WP_Dependency":6:{s:6:"handle";s:19:"jquery-ui-accordion";s:3:"src";s:0:"";s:4:"deps";a:2:{i:0;s:14:"jquery-ui-core";i:1;s:16:"jquery-ui-widget";}s:3:"ver";s:6:"1.10.3";s:4:"args";i:1;s:5:"extra";a:0:{}}i:2;O:14:"_WP_Dependency":6:{s:6:"handle";s:22:"jquery-ui-autocomplete";s:3:"src";s:0:"";s:4:"deps";a:4:{i:0;s:14:"jquery-ui-core";i:1;s:16:"jquery-ui-widget";i:2;s:18:"jquery-ui-position";i:3;s:14:"jquery-ui-menu";}s:3:"ver";s:6:"1.10.3";s:4:"args";i:1;s:5:"extra";a:0:{}}i:3;O:14:"_WP_Dependency":6:{s:6:"handle";s:16:"jquery-ui-button";s:3:"src";s:0:"";s:4:"deps";a:2:{i:0;s:14:"jquery-ui-core";i:1;s:16:"jquery-ui-widget";}s:3:"ver";s:6:"1.10.3";s:4:"args";i:1;s:5:"extra";a:0:{}}i:4;O:14:"_WP_Dependency":6:{s:6:"handle";s:20:"jquery-ui-datepicker";s:3:"src";s:0:"";s:4:"deps";a:1:{i:0;s:14:"jquery-ui-core";}s:3:"ver";s:6:"1.10.3";s:4:"args";i:1;s:5:"extra";a:0:{}}i:5;O:14:"_WP_Dependency":6:{s:6:"handle";s:16:"jquery-ui-dialog";s:3:"src";s:0:"";s:4:"deps";a:5:{i:0;s:19:"jquery-ui-resizable";i:1;s:19:"jquery-ui-draggable";i:2;s:16:"jquery-ui-button";i:3;s:18:"jquery-ui-position";i:4;s:14:"jquery-ui-core";}s:3:"ver";s:6:"1.10.3";s:4:"args";i:1;s:5:"extra";a:0:{}}i:6;O:14:"_WP_Dependency":6:{s:6:"handle";s:19:"jquery-ui-draggable";s:3:"src";s:0:"";s:4:"deps";a:2:{i:0;s:14:"jquery-ui-core";i:1;s:15:"jquery-ui-mouse";}s:3:"ver";s:6:"1.10.3";s:4:"args";i:1;s:5:"extra";a:0:{}}i:7;O:14:"_WP_Dependency":6:{s:6:"handle";s:19:"jquery-ui-droppable";s:3:"src";s:0:"";s:4:"deps";a:2:{i:0;s:19:"jquery-ui-draggable";i:1;s:14:"jquery-ui-core";}s:3:"ver";s:6:"1.10.3";s:4:"args";i:1;s:5:"extra";a:0:{}}i:8;O:14:"_WP_Dependency":6:{s:6:"handle";s:14:"jquery-ui-menu";s:3:"src";s:0:"";s:4:"deps";a:3:{i:0;s:14:"jquery-ui-core";i:1;s:16:"jquery-ui-widget";i:2;s:18:"jquery-ui-position";}s:3:"ver";s:6:"1.10.3";s:4:"args";i:1;s:5:"extra";a:0:{}}i:9;O:14:"_WP_Dependency":6:{s:6:"handle";s:15:"jquery-ui-mouse";s:3:"src";s:0:"";s:4:"deps";a:2:{i:0;s:16:"jquery-ui-widget";i:1;s:14:"jquery-ui-core";}s:3:"ver";s:6:"1.10.3";s:4:"args";i:1;s:5:"extra";a:0:{}}i:10;O:14:"_WP_Dependency":6:{s:6:"handle";s:18:"jquery-ui-position";s:3:"src";s:0:"";s:4:"deps";a:2:{i:0;s:6:"jquery";i:1;s:14:"jquery-ui-core";}s:3:"ver";s:6:"1.10.3";s:4:"args";i:1;s:5:"extra";a:0:{}}i:11;O:14:"_WP_Dependency":6:{s:6:"handle";s:21:"jquery-ui-progressbar";s:3:"src";s:0:"";s:4:"deps";a:2:{i:0;s:16:"jquery-ui-widget";i:1;s:14:"jquery-ui-core";}s:3:"ver";s:6:"1.10.3";s:4:"args";i:1;s:5:"extra";a:0:{}}i:12;O:14:"_WP_Dependency":6:{s:6:"handle";s:19:"jquery-ui-resizable";s:3:"src";s:0:"";s:4:"deps";a:2:{i:0;s:14:"jquery-ui-core";i:1;s:15:"jquery-ui-mouse";}s:3:"ver";s:6:"1.10.3";s:4:"args";i:1;s:5:"extra";a:0:{}}i:13;O:14:"_WP_Dependency":6:{s:6:"handle";s:20:"jquery-ui-selectable";s:3:"src";s:0:"";s:4:"deps";a:2:{i:0;s:14:"jquery-ui-core";i:1;s:15:"jquery-ui-mouse";}s:3:"ver";s:6:"1.10.3";s:4:"args";i:1;s:5:"extra";a:0:{}}i:14;O:14:"_WP_Dependency":6:{s:6:"handle";s:16:"jquery-ui-slider";s:3:"src";s:0:"";s:4:"deps";a:2:{i:0;s:14:"jquery-ui-core";i:1;s:15:"jquery-ui-mouse";}s:3:"ver";s:6:"1.10.3";s:4:"args";i:1;s:5:"extra";a:0:{}}i:15;O:14:"_WP_Dependency":6:{s:6:"handle";s:18:"jquery-ui-sortable";s:3:"src";s:0:"";s:4:"deps";a:2:{i:0;s:14:"jquery-ui-core";i:1;s:15:"jquery-ui-mouse";}s:3:"ver";s:6:"1.10.3";s:4:"args";i:1;s:5:"extra";a:0:{}}i:16;O:14:"_WP_Dependency":6:{s:6:"handle";s:14:"jquery-ui-tabs";s:3:"src";s:0:"";s:4:"deps";a:2:{i:0;s:14:"jquery-ui-core";i:1;s:16:"jquery-ui-widget";}s:3:"ver";s:6:"1.10.3";s:4:"args";i:1;s:5:"extra";a:0:{}}i:17;O:14:"_WP_Dependency":6:{s:6:"handle";s:16:"jquery-ui-widget";s:3:"src";s:0:"";s:4:"deps";a:2:{i:0;s:6:"jquery";i:1;s:14:"jquery-ui-core";}s:3:"ver";s:6:"1.10.3";s:4:"args";i:1;s:5:"extra";a:0:{}}i:18;O:14:"_WP_Dependency":6:{s:6:"handle";s:19:"jquery-effects-core";s:3:"src";s:0:"";s:4:"deps";a:2:{i:0;s:6:"jquery";i:1;s:14:"jquery-ui-core";}s:3:"ver";s:6:"1.10.3";s:4:"args";i:1;s:5:"extra";a:0:{}}i:19;O:14:"_WP_Dependency":6:{s:6:"handle";s:20:"jquery-effects-blind";s:3:"src";s:0:"";s:4:"deps";a:2:{i:0;s:19:"jquery-effects-core";i:1;s:14:"jquery-ui-core";}s:3:"ver";s:6:"1.10.3";s:4:"args";i:1;s:5:"extra";a:0:{}}i:20;O:14:"_WP_Dependency":6:{s:6:"handle";s:21:"jquery-effects-bounce";s:3:"src";s:0:"";s:4:"deps";a:2:{i:0;s:19:"jquery-effects-core";i:1;s:14:"jquery-ui-core";}s:3:"ver";s:6:"1.10.3";s:4:"args";i:1;s:5:"extra";a:0:{}}i:21;O:14:"_WP_Dependency":6:{s:6:"handle";s:19:"jquery-effects-clip";s:3:"src";s:0:"";s:4:"deps";a:2:{i:0;s:19:"jquery-effects-core";i:1;s:14:"jquery-ui-core";}s:3:"ver";s:6:"1.10.3";s:4:"args";i:1;s:5:"extra";a:0:{}}i:22;O:14:"_WP_Dependency":6:{s:6:"handle";s:19:"jquery-effects-drop";s:3:"src";s:0:"";s:4:"deps";a:2:{i:0;s:19:"jquery-effects-core";i:1;s:14:"jquery-ui-core";}s:3:"ver";s:6:"1.10.3";s:4:"args";i:1;s:5:"extra";a:0:{}}i:23;O:14:"_WP_Dependency":6:{s:6:"handle";s:22:"jquery-effects-explode";s:3:"src";s:0:"";s:4:"deps";a:2:{i:0;s:19:"jquery-effects-core";i:1;s:14:"jquery-ui-core";}s:3:"ver";s:6:"1.10.3";s:4:"args";i:1;s:5:"extra";a:0:{}}i:24;O:14:"_WP_Dependency":6:{s:6:"handle";s:19:"jquery-effects-fade";s:3:"src";s:0:"";s:4:"deps";a:2:{i:0;s:19:"jquery-effects-core";i:1;s:14:"jquery-ui-core";}s:3:"ver";s:6:"1.10.3";s:4:"args";i:1;s:5:"extra";a:0:{}}i:25;O:14:"_WP_Dependency":6:{s:6:"handle";s:19:"jquery-effects-fold";s:3:"src";s:0:"";s:4:"deps";a:2:{i:0;s:19:"jquery-effects-core";i:1;s:14:"jquery-ui-core";}s:3:"ver";s:6:"1.10.3";s:4:"args";i:1;s:5:"extra";a:0:{}}i:26;O:14:"_WP_Dependency":6:{s:6:"handle";s:24:"jquery-effects-highlight";s:3:"src";s:0:"";s:4:"deps";a:2:{i:0;s:19:"jquery-effects-core";i:1;s:14:"jquery-ui-core";}s:3:"ver";s:6:"1.10.3";s:4:"args";i:1;s:5:"extra";a:0:{}}i:27;O:14:"_WP_Dependency":6:{s:6:"handle";s:22:"jquery-effects-pulsate";s:3:"src";s:0:"";s:4:"deps";a:2:{i:0;s:19:"jquery-effects-core";i:1;s:14:"jquery-ui-core";}s:3:"ver";s:6:"1.10.3";s:4:"args";i:1;s:5:"extra";a:0:{}}i:28;O:14:"_WP_Dependency":6:{s:6:"handle";s:20:"jquery-effects-scale";s:3:"src";s:0:"";s:4:"deps";a:2:{i:0;s:19:"jquery-effects-core";i:1;s:14:"jquery-ui-core";}s:3:"ver";s:6:"1.10.3";s:4:"args";i:1;s:5:"extra";a:0:{}}i:29;O:14:"_WP_Dependency":6:{s:6:"handle";s:20:"jquery-effects-shake";s:3:"src";s:0:"";s:4:"deps";a:2:{i:0;s:19:"jquery-effects-core";i:1;s:14:"jquery-ui-core";}s:3:"ver";s:6:"1.10.3";s:4:"args";i:1;s:5:"extra";a:0:{}}i:30;O:14:"_WP_Dependency":6:{s:6:"handle";s:20:"jquery-effects-slide";s:3:"src";s:0:"";s:4:"deps";a:2:{i:0;s:19:"jquery-effects-core";i:1;s:14:"jquery-ui-core";}s:3:"ver";s:6:"1.10.3";s:4:"args";i:1;s:5:"extra";a:0:{}}i:31;O:14:"_WP_Dependency":6:{s:6:"handle";s:23:"jquery-effects-transfer";s:3:"src";s:0:"";s:4:"deps";a:2:{i:0;s:19:"jquery-effects-core";i:1;s:14:"jquery-ui-core";}s:3:"ver";s:6:"1.10.3";s:4:"args";i:1;s:5:"extra";a:0:{}}i:32;O:14:"_WP_Dependency":6:{s:6:"handle";s:9:"prototype";s:3:"src";s:60:"//ajax.googleapis.com/ajax/libs/prototype/1.7.1/prototype.js";s:4:"deps";a:0:{}s:3:"ver";s:5:"1.7.1";s:4:"args";N;s:5:"extra";a:0:{}}i:33;O:14:"_WP_Dependency":6:{s:6:"handle";s:18:"scriptaculous-root";s:3:"src";s:68:"//ajax.googleapis.com/ajax/libs/scriptaculous/1.9.0/scriptaculous.js";s:4:"deps";a:1:{i:0;s:9:"prototype";}s:3:"ver";s:5:"1.9.0";s:4:"args";N;s:5:"extra";a:0:{}}i:34;O:14:"_WP_Dependency":6:{s:6:"handle";s:21:"scriptaculous-builder";s:3:"src";s:0:"";s:4:"deps";a:1:{i:0;s:18:"scriptaculous-root";}s:3:"ver";s:5:"1.9.0";s:4:"args";N;s:5:"extra";a:0:{}}i:35;O:14:"_WP_Dependency":6:{s:6:"handle";s:21:"scriptaculous-effects";s:3:"src";s:0:"";s:4:"deps";a:1:{i:0;s:18:"scriptaculous-root";}s:3:"ver";s:5:"1.9.0";s:4:"args";N;s:5:"extra";a:0:{}}i:36;O:14:"_WP_Dependency":6:{s:6:"handle";s:22:"scriptaculous-dragdrop";s:3:"src";s:0:"";s:4:"deps";a:3:{i:0;s:21:"scriptaculous-builder";i:1;s:21:"scriptaculous-effects";i:2;s:18:"scriptaculous-root";}s:3:"ver";s:5:"1.9.0";s:4:"args";N;s:5:"extra";a:0:{}}i:37;O:14:"_WP_Dependency":6:{s:6:"handle";s:22:"scriptaculous-controls";s:3:"src";s:0:"";s:4:"deps";a:1:{i:0;s:18:"scriptaculous-root";}s:3:"ver";s:5:"1.9.0";s:4:"args";N;s:5:"extra";a:0:{}}i:38;O:14:"_WP_Dependency":6:{s:6:"handle";s:20:"scriptaculous-slider";s:3:"src";s:0:"";s:4:"deps";a:2:{i:0;s:21:"scriptaculous-effects";i:1;s:18:"scriptaculous-root";}s:3:"ver";s:5:"1.9.0";s:4:"args";N;s:5:"extra";a:0:{}}i:39;O:14:"_WP_Dependency":6:{s:6:"handle";s:19:"scriptaculous-sound";s:3:"src";s:0:"";s:4:"deps";a:1:{i:0;s:18:"scriptaculous-root";}s:3:"ver";s:5:"1.9.0";s:4:"args";N;s:5:"extra";a:0:{}}i:40;O:14:"_WP_Dependency":6:{s:6:"handle";s:11:"jquery-core";s:3:"src";s:59:"//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js";s:4:"deps";a:0:{}s:3:"ver";s:6:"1.10.2";s:4:"args";N;s:5:"extra";a:0:{}}}}', 'no'),
(168, 'wpseo_titles', 'a:72:{s:10:"title_test";i:0;s:17:"forcerewritetitle";b:0;s:14:"hide-feedlinks";b:0;s:12:"hide-rsdlink";b:0;s:14:"hide-shortlink";b:0;s:16:"hide-wlwmanifest";b:0;s:5:"noodp";b:0;s:6:"noydir";b:0;s:15:"usemetakeywords";b:0;s:16:"title-home-wpseo";s:42:"%%sitename%% %%page%% %%sep%% %%sitedesc%%";s:18:"title-author-wpseo";s:0:"";s:19:"title-archive-wpseo";s:38:"%%date%% %%page%% %%sep%% %%sitename%%";s:18:"title-search-wpseo";s:0:"";s:15:"title-404-wpseo";s:0:"";s:19:"metadesc-home-wpseo";s:0:"";s:21:"metadesc-author-wpseo";s:0:"";s:22:"metadesc-archive-wpseo";s:0:"";s:18:"metakey-home-wpseo";s:0:"";s:20:"metakey-author-wpseo";s:0:"";s:22:"noindex-subpages-wpseo";b:0;s:20:"noindex-author-wpseo";b:0;s:21:"noindex-archive-wpseo";b:1;s:14:"disable-author";b:0;s:12:"disable-date";b:0;s:10:"title-post";s:39:"%%title%% %%page%% %%sep%% %%sitename%%";s:13:"metadesc-post";s:0:"";s:12:"metakey-post";s:0:"";s:12:"noindex-post";b:0;s:17:"noauthorship-post";b:0;s:13:"showdate-post";b:0;s:16:"hideeditbox-post";b:0;s:10:"title-page";s:39:"%%title%% %%page%% %%sep%% %%sitename%%";s:13:"metadesc-page";s:0:"";s:12:"metakey-page";s:0:"";s:12:"noindex-page";b:0;s:17:"noauthorship-page";b:1;s:13:"showdate-page";b:0;s:16:"hideeditbox-page";b:0;s:16:"title-attachment";s:39:"%%title%% %%page%% %%sep%% %%sitename%%";s:19:"metadesc-attachment";s:0:"";s:18:"metakey-attachment";s:0:"";s:18:"noindex-attachment";b:0;s:23:"noauthorship-attachment";b:1;s:19:"showdate-attachment";b:0;s:22:"hideeditbox-attachment";b:0;s:22:"title-easymediagallery";s:39:"%%title%% %%page%% %%sep%% %%sitename%%";s:25:"metadesc-easymediagallery";s:0:"";s:24:"metakey-easymediagallery";s:0:"";s:24:"noindex-easymediagallery";b:0;s:29:"noauthorship-easymediagallery";b:1;s:25:"showdate-easymediagallery";b:0;s:28:"hideeditbox-easymediagallery";b:0;s:18:"title-tax-category";s:53:"%%term_title%% Archives %%page%% %%sep%% %%sitename%%";s:21:"metadesc-tax-category";s:0:"";s:20:"metakey-tax-category";s:0:"";s:24:"hideeditbox-tax-category";b:0;s:20:"noindex-tax-category";b:0;s:18:"title-tax-post_tag";s:53:"%%term_title%% Archives %%page%% %%sep%% %%sitename%%";s:21:"metadesc-tax-post_tag";s:0:"";s:20:"metakey-tax-post_tag";s:0:"";s:24:"hideeditbox-tax-post_tag";b:0;s:20:"noindex-tax-post_tag";b:0;s:21:"title-tax-post_format";s:53:"%%term_title%% Archives %%page%% %%sep%% %%sitename%%";s:24:"metadesc-tax-post_format";s:0:"";s:23:"metakey-tax-post_format";s:0:"";s:27:"hideeditbox-tax-post_format";b:0;s:23:"noindex-tax-post_format";b:1;s:23:"title-tax-emediagallery";s:53:"%%term_title%% Archives %%page%% %%sep%% %%sitename%%";s:26:"metadesc-tax-emediagallery";s:0:"";s:25:"metakey-tax-emediagallery";s:0:"";s:29:"hideeditbox-tax-emediagallery";b:0;s:25:"noindex-tax-emediagallery";b:0;}', 'yes'),
(169, 'wpseo', 'a:18:{s:14:"blocking_files";a:0:{}s:26:"ignore_blog_public_warning";b:0;s:31:"ignore_meta_description_warning";b:0;s:20:"ignore_page_comments";b:0;s:16:"ignore_permalink";b:0;s:11:"ignore_tour";b:1;s:15:"ms_defaults_set";b:0;s:23:"theme_description_found";s:0:"";s:21:"theme_has_description";b:0;s:19:"tracking_popup_done";b:1;s:7:"version";s:7:"1.5.2.3";s:11:"alexaverify";s:0:"";s:20:"disableadvanced_meta";b:1;s:12:"googleverify";s:0:"";s:8:"msverify";s:0:"";s:15:"pinterestverify";s:0:"";s:12:"yandexverify";s:0:"";s:14:"yoast_tracking";b:1;}', 'yes'),
(172, 'poll_template_voteheader', '<p style="text-align: center;"><strong>%POLL_QUESTION%</strong></p><div id="polls-%POLL_ID%-ans" class="wp-polls-ans"><ul class="wp-polls-ul">', 'yes'),
(173, 'poll_template_votebody', '<li><input type="%POLL_CHECKBOX_RADIO%" id="poll-answer-%POLL_ANSWER_ID%" name="poll_%POLL_ID%" value="%POLL_ANSWER_ID%" /> <label for="poll-answer-%POLL_ANSWER_ID%">%POLL_ANSWER%</label></li>', 'yes'),
(174, 'poll_template_votefooter', '</ul><p style="text-align: center;"><input type="button" name="vote" value=" Vote " class="Buttons" onclick="poll_vote(%POLL_ID%);" /></p><p style="text-align: center;"><a href="#ViewPollResults" onclick="poll_result(%POLL_ID%); return false;" title="View Results Of This Poll">View Results</a></p></div>', 'yes'),
(175, 'poll_template_resultheader', '<p style="text-align: center;"><strong>%POLL_QUESTION%</strong></p><div id="polls-%POLL_ID%-ans" class="wp-polls-ans"><ul class="wp-polls-ul">', 'yes'),
(176, 'poll_template_resultbody', '<li>%POLL_ANSWER% <small>(%POLL_ANSWER_PERCENTAGE%%, %POLL_ANSWER_VOTES% Votes)</small><div class="pollbar" style="width: %POLL_ANSWER_IMAGEWIDTH%%;" title="%POLL_ANSWER_TEXT% (%POLL_ANSWER_PERCENTAGE%% | %POLL_ANSWER_VOTES% Votes)"></div></li>', 'yes'),
(177, 'poll_template_resultbody2', '<li><strong><i>%POLL_ANSWER% <small>(%POLL_ANSWER_PERCENTAGE%%, %POLL_ANSWER_VOTES% Votes)</small></i></strong><div class="pollbar" style="width: %POLL_ANSWER_IMAGEWIDTH%%;" title="You Have Voted For This Choice - %POLL_ANSWER_TEXT% (%POLL_ANSWER_PERCENTAGE%% | %POLL_ANSWER_VOTES% Votes)"></div></li>', 'yes'),
(178, 'poll_template_resultfooter', '</ul><p style="text-align: center;">Total Voters: <strong>%POLL_TOTALVOTERS%</strong></p></div>', 'yes'),
(179, 'poll_template_resultfooter2', '</ul><p style="text-align: center;">Total Voters: <strong>%POLL_TOTALVOTERS%</strong></p><p style="text-align: center;"><a href="#VotePoll" onclick="poll_booth(%POLL_ID%); return false;" title="Vote For This Poll">Vote</a></p></div>', 'yes'),
(180, 'poll_template_disable', 'Sorry, there are no polls available at the moment.', 'yes'),
(181, 'poll_template_error', 'An error has occurred when processing your poll.', 'yes'),
(182, 'poll_currentpoll', '0', 'yes'),
(183, 'poll_latestpoll', '1', 'yes'),
(184, 'poll_archive_perpage', '5', 'yes'),
(185, 'poll_ans_sortby', 'polla_aid', 'yes'),
(186, 'poll_ans_sortorder', 'asc', 'yes'),
(187, 'poll_ans_result_sortby', 'polla_votes', 'yes'),
(188, 'poll_ans_result_sortorder', 'desc', 'yes'),
(189, 'poll_logging_method', '3', 'yes'),
(190, 'poll_allowtovote', '2', 'yes'),
(191, 'poll_archive_url', 'http://localhost/wordpress/pollsarchive', 'yes'),
(192, 'poll_bar', 'a:4:{s:5:"style";s:7:"default";s:10:"background";s:6:"d8e1eb";s:6:"border";s:6:"c8c8c8";s:6:"height";i:8;}', 'yes'),
(193, 'poll_close', '1', 'yes'),
(194, 'poll_ajax_style', 'a:2:{s:7:"loading";i:1;s:6:"fading";i:1;}', 'yes'),
(195, 'poll_template_pollarchivelink', '<ul><li><a href="%POLL_ARCHIVE_URL%">Polls Archive</a></li></ul>', 'yes'),
(196, 'poll_archive_displaypoll', '2', 'yes'),
(197, 'poll_template_pollarchiveheader', '', 'yes'),
(198, 'poll_template_pollarchivefooter', '<p>Start Date: %POLL_START_DATE%<br />End Date: %POLL_END_DATE%</p>', 'yes'),
(199, 'poll_cookielog_expiry', '0', 'yes'),
(200, 'poll_template_pollarchivepagingheader', '', 'yes'),
(201, 'poll_template_pollarchivepagingfooter', '', 'yes'),
(203, 'ossdl_off_cdn_url', 'http://localhost/wordpress', 'yes'),
(204, 'ossdl_off_include_dirs', 'wp-content,wp-includes', 'yes'),
(205, 'ossdl_off_exclude', '.php', 'yes'),
(206, 'ossdl_cname', '', 'yes'),
(207, 'wp_statistics_plugin_version', '5.2', 'yes'),
(208, 'wp_statistics_db_version', '5.2', 'yes'),
(209, 'wps_useronline', '1', 'yes'),
(210, 'wps_visits', '1', 'yes'),
(211, 'wps_visitors', '1', 'yes'),
(212, 'wps_check_online', '30', 'yes'),
(213, 'wps_coefficient', '1', 'yes'),
(214, 'wps_chart_type', 'line', 'yes'),
(215, 'wps_time_report', 'daily', 'yes'),
(216, 'wps_send_report', 'mail', 'yes'),
(217, 'wps_content_report', '', 'yes'),
(218, 'wps_update_geoip', '', 'yes'),
(219, 'wps_robotlist', 'A6-Indexer\nAbachoBOT\naccoona\nAcoiRobot\nAddThis.com\nADmantX\nAhrefsBot\nalexa\nAltaVista\nappie\narchive.org_bot\nAsk Jeeves\nASPSeek\nBaiduspider\nBenjojo\nbingbot\nButterfly\nccbot\nclamantivirus\ncrawler\nCrocCrawler\nDumbot\neStyle\nezooms\nfacebookexternalhit\nFAST\nFeedfetcher-Google\nFirfly\nfroogle\nGeonaBot\nGigabot\ngirafabot\nGooglebot\nia_archiver\nIDBot\nInfoSeek\ninktomi\nlinkdexbot\nlooksmart\nLycos\nMail.RU_Bot\nMe.dium\nmeanpathbot\nMediapartners-Google\nMJ12bot\nmsnbot\nmoreover\nMRBOT\nNationalDirectory\nnutch\nOpenbot\nproximic\nrabaz\nRambler\nRankivabot\nScooter\nScrubby\nSeznamBot\nSlurp\nSocialSearch\nSogou web spider\nSpade\nspbot\nTechnoratiSnoop\nTECNOSEEK\nTeoma\nTweetmemeBot\nTwiceler\nTwitturls\nURL_Spider_SQL\nWebAlta Crawler\nWebBug\nWebFindBot\nWeSEE:Search\nwww.galaxy.com\nyandex\nYahoo\nYammybot\nZyBorg', 'yes'),
(220, 'wps_exclude_administrator', '1', 'yes'),
(221, 'wps_last_geoip_dl', '1395323706', 'yes'),
(222, '_site_transient_timeout_browser_2042f9df4d0316819cc247e8bd7ed15a', '1395928569', 'yes'),
(223, '_site_transient_browser_2042f9df4d0316819cc247e8bd7ed15a', 'a:9:{s:8:"platform";s:7:"Windows";s:4:"name";s:6:"Chrome";s:7:"version";s:12:"31.0.1650.65";s:10:"update_url";s:28:"http://www.google.com/chrome";s:7:"img_src";s:49:"http://s.wordpress.org/images/browsers/chrome.png";s:11:"img_src_ssl";s:48:"https://wordpress.org/images/browsers/chrome.png";s:15:"current_version";s:2:"18";s:7:"upgrade";b:0;s:8:"insecure";b:0;}', 'yes'),
(225, 'wps_geoip', 'on', 'yes'),
(226, 'wps_schedule_geoip', '', 'yes'),
(227, 'wps_auto_pop', '', 'yes'),
(230, 'widget_social_profiles', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(232, 'name_widget', 'Statistics', 'yes'),
(233, 'useronline_widget', 'on', 'yes'),
(234, 'tvisit_widget', 'on', 'yes'),
(235, 'tvisitor_widget', '', 'yes'),
(236, 'yvisit_widget', '', 'yes'),
(237, 'yvisitor_widget', '', 'yes'),
(238, 'wvisit_widget', 'on', 'yes'),
(239, 'mvisit_widget', 'on', 'yes'),
(240, 'ysvisit_widget', '', 'yes'),
(241, 'ttvisit_widget', 'on', 'yes'),
(242, 'ttvisitor_widget', '', 'yes'),
(243, 'ser_widget', '', 'yes'),
(244, 'select_se', '', 'yes'),
(245, 'tp_widget', '', 'yes'),
(246, 'tpg_widget', '', 'yes'),
(231, 'widget_videofeed', 'a:2:{i:2;a:3:{s:5:"title";s:5:"Video";s:5:"width";i:272;s:6:"videos";a:2:{i:0;a:4:{s:5:"title";s:12:"The Mountain";s:3:"url";s:26:"http://vimeo.com/22439234/";s:4:"type";s:5:"vimeo";s:7:"videoid";s:8:"22439234";}i:1;a:4:{s:5:"title";s:22:"Amazing nature scenery";s:3:"url";s:42:"http://www.youtube.com/watch?v=6v2L2UGZJAM";s:4:"type";s:7:"youtube";s:7:"videoid";s:11:"6v2L2UGZJAM";}}}s:12:"_multiwidget";i:1;}', 'yes'),
(247, 'tc_widget', '', 'yes'),
(248, 'ts_widget', '', 'yes'),
(249, 'tu_widget', '', 'yes'),
(250, 'ap_widget', '', 'yes'),
(251, 'ac_widget', '', 'yes'),
(252, 'au_widget', '', 'yes'),
(253, 'lpd_widget', '', 'yes'),
(254, 'select_lps', '', 'yes'),
(255, 'widget_socialcountplus', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(256, 'widget_emg_sc_widget', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(257, 'widget_glt_widget', 'a:2:{i:2;a:1:{s:5:"title";s:10:"Translate:";}s:12:"_multiwidget";i:1;}', 'yes'),
(258, 'widget_nav_menu', 'a:2:{i:2;a:2:{s:5:"title";s:11:"Custom Menu";s:8:"nav_menu";i:5;}s:12:"_multiwidget";i:1;}', 'yes'),
(324, 'widget_posts', 'a:2:{i:3;a:11:{s:5:"title";s:12:"Recent Posts";s:12:"posts_number";s:1:"5";s:8:"order_by";s:4:"none";s:13:"display_title";s:4:"true";s:12:"display_date";s:4:"true";s:22:"display_featured_image";s:4:"true";s:14:"excerpt_length";s:3:"120";s:6:"filter";s:6:"recent";s:11:"filter_cats";s:0:"";s:17:"selected_category";s:1:"2";s:11:"filter_tags";s:0:"";}s:12:"_multiwidget";i:1;}', 'yes'),
(259, 'widget_tabs', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(260, 'widget_facebook', 'a:2:{i:2;a:9:{s:5:"title";s:8:"Facebook";s:3:"url";s:34:"http://www.facebook.com/hackgame4u";s:5:"width";s:3:"240";s:6:"height";s:3:"180";s:11:"colorscheme";s:5:"light";s:10:"show_faces";s:4:"true";s:6:"stream";s:0:"";s:6:"header";s:0:"";s:6:"border";s:7:"#dbdbdb";}s:12:"_multiwidget";i:1;}', 'yes'),
(261, 'widget_comments', 'a:2:{i:3;a:9:{s:5:"title";s:15:"Recent Comments";s:15:"comments_number";s:2:"10";s:14:"display_author";s:4:"true";s:15:"display_comment";s:4:"true";s:14:"display_avatar";s:4:"true";s:14:"read_more_text";s:2:"»";s:14:"comment_length";s:2:"50";s:11:"avatar_size";s:2:"32";s:12:"avatar_align";s:9:"alignleft";}s:12:"_multiwidget";i:1;}', 'yes'),
(271, '_site_transient_timeout_browser_5aad0f0c7e0a46ada17ca2ddb5cc2fc3', '1395972994', 'yes'),
(272, '_site_transient_browser_5aad0f0c7e0a46ada17ca2ddb5cc2fc3', 'a:9:{s:8:"platform";s:5:"Linux";s:4:"name";s:6:"Chrome";s:7:"version";s:13:"33.0.1750.146";s:10:"update_url";s:28:"http://www.google.com/chrome";s:7:"img_src";s:49:"http://s.wordpress.org/images/browsers/chrome.png";s:11:"img_src_ssl";s:48:"https://wordpress.org/images/browsers/chrome.png";s:15:"current_version";s:2:"18";s:7:"upgrade";b:0;s:8:"insecure";b:0;}', 'yes'),
(291, 'sm_status', 'O:28:"GoogleSitemapGeneratorStatus":24:{s:10:"_startTime";d:1395385403.611737;s:8:"_endTime";d:1395385403.815161;s:11:"_hasChanged";b:1;s:12:"_memoryUsage";i:41943040;s:9:"_lastPost";i:4;s:9:"_lastTime";d:1395385403.6398649;s:8:"_usedXml";b:1;s:11:"_xmlSuccess";b:1;s:8:"_xmlPath";s:40:"/home/u791293680/public_html/sitemap.xml";s:7:"_xmlUrl";s:33:"http://localhost/wordpress/sitemap.xml";s:8:"_usedZip";b:1;s:11:"_zipSuccess";b:1;s:8:"_zipPath";s:43:"/home/u791293680/public_html/sitemap.xml.gz";s:7:"_zipUrl";s:36:"http://localhost/wordpress/sitemap.xml.gz";s:11:"_usedGoogle";b:1;s:10:"_googleUrl";s:99:"http://www.google.com/webmasters/sitemaps/ping?sitemap=http%3A%2F%2Flocalhost/wordpress%2Fsitemap.xml.gz";s:15:"_gooogleSuccess";b:1;s:16:"_googleStartTime";d:1395385403.6419411;s:14:"_googleEndTime";d:1395385403.734427;s:8:"_usedMsn";b:1;s:7:"_msnUrl";s:92:"http://www.bing.com/webmaster/ping.aspx?siteMap=http%3A%2F%2Flocalhost/wordpress%2Fsitemap.xml.gz";s:11:"_msnSuccess";b:1;s:13:"_msnStartTime";d:1395385403.7349131;s:11:"_msnEndTime";d:1395385403.8143771;}', 'no'),
(301, 'nav_menu_options', 'a:2:{i:0;b:0;s:8:"auto_add";a:0:{}}', 'yes'),
(306, 'category_children', 'a:0:{}', 'yes');
-- --------------------------------------------------------
--
-- Table structure for table `wp_pollsa`
--
DROP TABLE IF EXISTS `wp_pollsa`;
CREATE TABLE IF NOT EXISTS `wp_pollsa` (
`polla_aid` int(10) NOT NULL AUTO_INCREMENT,
`polla_qid` int(10) NOT NULL DEFAULT '0',
`polla_answers` varchar(200) NOT NULL DEFAULT '',
`polla_votes` int(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`polla_aid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=6 ;
--
-- Dumping data for table `wp_pollsa`
--
INSERT INTO `wp_pollsa` (`polla_aid`, `polla_qid`, `polla_answers`, `polla_votes`) VALUES
(1, 1, 'Good', 0),
(2, 1, 'Excellent', 0),
(3, 1, 'Bad', 0),
(4, 1, 'Can Be Improved', 0),
(5, 1, 'No Comments', 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp_pollsip`
--
DROP TABLE IF EXISTS `wp_pollsip`;
CREATE TABLE IF NOT EXISTS `wp_pollsip` (
`pollip_id` int(10) NOT NULL AUTO_INCREMENT,
`pollip_qid` varchar(10) NOT NULL DEFAULT '',
`pollip_aid` varchar(10) NOT NULL DEFAULT '',
`pollip_ip` varchar(100) NOT NULL DEFAULT '',
`pollip_host` varchar(200) NOT NULL DEFAULT '',
`pollip_timestamp` varchar(20) NOT NULL DEFAULT '0000-00-00 00:00:00',
`pollip_user` tinytext NOT NULL,
`pollip_userid` int(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`pollip_id`),
KEY `pollip_ip` (`pollip_id`),
KEY `pollip_qid` (`pollip_qid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `wp_pollsq`
--
DROP TABLE IF EXISTS `wp_pollsq`;
CREATE TABLE IF NOT EXISTS `wp_pollsq` (
`pollq_id` int(10) NOT NULL AUTO_INCREMENT,
`pollq_question` varchar(200) NOT NULL DEFAULT '',
`pollq_timestamp` varchar(20) NOT NULL DEFAULT '',
`pollq_totalvotes` int(10) NOT NULL DEFAULT '0',
`pollq_active` tinyint(1) NOT NULL DEFAULT '1',
`pollq_expiry` varchar(20) NOT NULL DEFAULT '',
`pollq_multiple` tinyint(3) NOT NULL DEFAULT '0',
`pollq_totalvoters` int(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`pollq_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- Dumping data for table `wp_pollsq`
--
INSERT INTO `wp_pollsq` (`pollq_id`, `pollq_question`, `pollq_timestamp`, `pollq_totalvotes`, `pollq_active`, `pollq_expiry`, `pollq_multiple`, `pollq_totalvoters`) VALUES
(1, 'How Is My Site?', '1395323553', 0, 1, '', 0, 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp_postmeta`
--
DROP TABLE IF EXISTS `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=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=139 ;
--
-- 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, '_form', '<p>Your Name (required)<br />\n [text* your-name] </p>\n\n<p>Your Email (required)<br />\n [email* your-email] </p>\n\n<p>Subject<br />\n [text your-subject] </p>\n\n<p>Your Message<br />\n [textarea your-message] </p>\n\n<p>[submit "Send"]</p>'),
(3, 4, '_mail', 'a:7:{s:7:"subject";s:14:"[your-subject]";s:6:"sender";s:26:"[your-name] <[your-email]>";s:4:"body";s:168:"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on HACK GAME (http://localhost/wordpress)";s:9:"recipient";s:21:"[email protected]";s:18:"additional_headers";s:0:"";s:11:"attachments";s:0:"";s:8:"use_html";i:0;}'),
(4, 4, '_mail_2', 'a:8:{s:6:"active";b:0;s:7:"subject";s:14:"[your-subject]";s:6:"sender";s:26:"[your-name] <[your-email]>";s:4:"body";s:110:"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on HACK GAME (http://localhost/wordpress)";s:9:"recipient";s:12:"[your-email]";s:18:"additional_headers";s:0:"";s:11:"attachments";s:0:"";s:8:"use_html";i:0;}'),
(5, 4, '_messages', 'a:6:{s:12:"mail_sent_ok";s:43:"Your message was sent successfully. Thanks.";s:12:"mail_sent_ng";s:93:"Failed to send your message. Please try later or contact the administrator by another method.";s:16:"validation_error";s:74:"Validation errors occurred. Please confirm the fields and submit it again.";s:4:"spam";s:93:"Failed to send your message. Please try later or contact the administrator by another method.";s:12:"accept_terms";s:35:"Please accept the terms to proceed.";s:16:"invalid_required";s:31:"Please fill the required field.";}'),
(6, 4, '_additional_settings', ''),
(7, 4, '_locale', 'en_US'),
(8, 2, '_wp_trash_meta_status', 'publish'),
(9, 2, '_wp_trash_meta_time', '1395323955'),
(10, 6, '_edit_last', '1'),
(11, 6, '_edit_lock', '1395373148:1'),
(12, 7, '_edit_last', '1'),
(13, 7, '_edit_lock', '1395383728:1'),
(14, 7, '_wp_page_template', 'default'),
(15, 7, 'single_layout', '0'),
(16, 9, '_edit_last', '1'),
(17, 9, '_edit_lock', '1395386139:1'),
(18, 9, '_wp_page_template', 'default'),
(19, 9, 'single_layout', '0'),
(20, 11, '_edit_last', '1'),
(21, 11, '_edit_lock', '1395382459:1'),
(22, 11, '_wp_page_template', 'default'),
(23, 11, 'single_layout', '0'),
(120, 28, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(119, 28, '_menu_item_target', ''),
(118, 28, '_menu_item_object', 'page'),
(117, 28, '_menu_item_object_id', '7'),
(116, 28, '_menu_item_menu_item_parent', '0'),
(115, 28, '_menu_item_type', 'post_type'),
(80, 19, '_wp_page_template', 'default'),
(33, 14, '_menu_item_type', 'post_type'),
(34, 14, '_menu_item_menu_item_parent', '32'),
(35, 14, '_menu_item_object_id', '9'),
(36, 14, '_menu_item_object', 'page'),
(37, 14, '_menu_item_target', ''),
(38, 14, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(39, 14, '_menu_item_xfn', ''),
(40, 14, '_menu_item_url', ''),
(78, 19, '_edit_last', '1'),
(42, 15, '_menu_item_type', 'post_type'),
(43, 15, '_menu_item_menu_item_parent', '32'),
(44, 15, '_menu_item_object_id', '11'),
(45, 15, '_menu_item_object', 'page'),
(46, 15, '_menu_item_target', ''),
(47, 15, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(48, 15, '_menu_item_xfn', ''),
(49, 15, '_menu_item_url', ''),
(79, 19, '_edit_lock', '1395375295:1'),
(51, 16, '_menu_item_type', 'taxonomy'),
(52, 16, '_menu_item_menu_item_parent', '0'),
(53, 16, '_menu_item_object_id', '2'),
(54, 16, '_menu_item_object', 'category'),
(55, 16, '_menu_item_target', ''),
(56, 16, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(57, 16, '_menu_item_xfn', ''),
(58, 16, '_menu_item_url', ''),
(83, 19, '_wp_trash_meta_time', '1395375439'),
(60, 17, '_menu_item_type', 'taxonomy'),
(61, 17, '_menu_item_menu_item_parent', '0'),
(62, 17, '_menu_item_object_id', '3'),
(63, 17, '_menu_item_object', 'category'),
(64, 17, '_menu_item_target', ''),
(65, 17, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(66, 17, '_menu_item_xfn', ''),
(67, 17, '_menu_item_url', ''),
(82, 19, '_wp_trash_meta_status', 'publish'),
(69, 18, '_menu_item_type', 'taxonomy'),
(70, 18, '_menu_item_menu_item_parent', '0'),
(71, 18, '_menu_item_object_id', '4'),
(72, 18, '_menu_item_object', 'category'),
(73, 18, '_menu_item_target', ''),
(74, 18, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(75, 18, '_menu_item_xfn', ''),
(76, 18, '_menu_item_url', ''),
(81, 19, 'single_layout', '0'),
(84, 21, '_menu_item_type', 'custom'),
(85, 21, '_menu_item_menu_item_parent', '0'),
(86, 21, '_menu_item_object_id', '21'),
(87, 21, '_menu_item_object', 'custom'),
(88, 21, '_menu_item_target', ''),
(89, 21, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(90, 21, '_menu_item_xfn', ''),
(91, 21, '_menu_item_url', 'http://localhost/wordpress/'),
(92, 21, '_menu_item_orphaned', '1395375454'),
(93, 24, '_menu_item_type', 'custom'),
(94, 24, '_menu_item_menu_item_parent', '0'),
(95, 24, '_menu_item_object_id', '24'),
(96, 24, '_menu_item_object', 'custom'),
(97, 24, '_menu_item_target', ''),
(98, 24, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(99, 24, '_menu_item_xfn', ''),
(100, 24, '_menu_item_url', 'http://localhost/wordpress/'),
(102, 6, '_wp_trash_meta_status', 'draft'),
(103, 6, '_wp_trash_meta_time', '1395375847'),
(104, 26, '_edit_last', '1'),
(105, 26, '_edit_lock', '1395377337:1'),
(133, 34, '_form', '<p>Your Name (required)<br />\n [text* your-name] </p>\n\n<p>Your Email (required)<br />\n [email* your-email] </p>\n\n<p>Subject<br />\n [text your-subject] </p>\n\n<p>Your Message<br />\n [textarea your-message] </p>\n\n<p>[submit "Send"]</p>'),
(121, 28, '_menu_item_xfn', ''),
(122, 28, '_menu_item_url', ''),
(123, 28, '_menu_item_orphaned', '1395383399'),
(124, 32, '_menu_item_type', 'post_type'),
(125, 32, '_menu_item_menu_item_parent', '0'),
(126, 32, '_menu_item_object_id', '7'),
(127, 32, '_menu_item_object', 'page'),
(128, 32, '_menu_item_target', ''),
(129, 32, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(130, 32, '_menu_item_xfn', ''),
(131, 32, '_menu_item_url', ''),
(134, 34, '_mail', 'a:7:{s:7:"subject";s:14:"[your-subject]";s:6:"sender";s:26:"[your-name] <[your-email]>";s:4:"body";s:168:"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on HACK GAME (http://localhost/wordpress)";s:9:"recipient";s:21:"[email protected]";s:18:"additional_headers";s:0:"";s:11:"attachments";s:0:"";s:8:"use_html";b:0;}'),
(135, 34, '_mail_2', 'a:8:{s:6:"active";b:0;s:7:"subject";s:14:"[your-subject]";s:6:"sender";s:26:"[your-name] <[your-email]>";s:4:"body";s:110:"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on HACK GAME (http://localhost/wordpress)";s:9:"recipient";s:12:"[your-email]";s:18:"additional_headers";s:0:"";s:11:"attachments";s:0:"";s:8:"use_html";b:0;}'),
(136, 34, '_messages', 'a:21:{s:12:"mail_sent_ok";s:43:"Your message was sent successfully. Thanks.";s:12:"mail_sent_ng";s:93:"Failed to send your message. Please try later or contact the administrator by another method.";s:16:"validation_error";s:74:"Validation errors occurred. Please confirm the fields and submit it again.";s:4:"spam";s:93:"Failed to send your message. Please try later or contact the administrator by another method.";s:12:"accept_terms";s:35:"Please accept the terms to proceed.";s:16:"invalid_required";s:31:"Please fill the required field.";s:17:"captcha_not_match";s:31:"Your entered code is incorrect.";s:14:"invalid_number";s:28:"Number format seems invalid.";s:16:"number_too_small";s:25:"This number is too small.";s:16:"number_too_large";s:25:"This number is too large.";s:13:"invalid_email";s:28:"Email address seems invalid.";s:11:"invalid_url";s:18:"URL seems invalid.";s:11:"invalid_tel";s:31:"Telephone number seems invalid.";s:23:"quiz_answer_not_correct";s:27:"Your answer is not correct.";s:12:"invalid_date";s:26:"Date format seems invalid.";s:14:"date_too_early";s:23:"This date is too early.";s:13:"date_too_late";s:22:"This date is too late.";s:13:"upload_failed";s:22:"Failed to upload file.";s:24:"upload_file_type_invalid";s:30:"This file type is not allowed.";s:21:"upload_file_too_large";s:23:"This file is too large.";s:23:"upload_failed_php_error";s:38:"Failed to upload file. Error occurred.";}'),
(137, 34, '_additional_settings', ''),
(138, 34, '_locale', 'en_US');
-- --------------------------------------------------------
--
-- Table structure for table `wp_posts`
--
DROP TABLE IF EXISTS `wp_posts`;
CREATE TABLE IF NOT EXISTS `wp_posts` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_author` bigint(20) unsigned NOT NULL DEFAULT '0',
`post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content` longtext NOT NULL,
`post_title` text NOT NULL,
`post_excerpt` text NOT NULL,
`post_status` varchar(20) NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) NOT NULL DEFAULT 'open',
`ping_status` varchar(20) NOT NULL DEFAULT 'open',
`post_password` varchar(20) NOT NULL DEFAULT '',
`post_name` varchar(200) NOT NULL DEFAULT '',
`to_ping` text NOT NULL,
`pinged` text NOT NULL,
`post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content_filtered` longtext NOT NULL,
`post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`guid` varchar(255) NOT NULL DEFAULT '',
`menu_order` int(11) NOT NULL DEFAULT '0',
`post_type` varchar(20) NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) NOT NULL DEFAULT '',
`comment_count` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`),
KEY `post_name` (`post_name`),
KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
KEY `post_parent` (`post_parent`),
KEY `post_author` (`post_author`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=36 ;
--
-- Dumping data for table `wp_posts`
--
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1, 1, '2014-03-20 13:23:25', '2014-03-20 13:23:25', 'Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!', 'Hello world!', '', 'publish', 'open', 'open', '', 'hello-world', '', '', '2014-03-20 13:23:25', '2014-03-20 13:23:25', '', 0, 'http://localhost/wordpress/?p=1', 0, 'post', '', 1),
(2, 1, '2014-03-20 13:23:25', '2014-03-20 13:23:25', 'This is an example page. It''s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n\n<blockquote>Hi there! I''m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin'' caught in the rain.)</blockquote>\n\n...or something like this:\n\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</blockquote>\n\nAs a new WordPress user, you should go to <a href="http://localhost/wordpress/wp-admin/">your dashboard</a> to delete this page and create new pages for your content. Have fun!', 'Sample Page', '', 'trash', 'open', 'open', '', 'sample-page', '', '', '2014-03-20 13:59:15', '2014-03-20 13:59:15', '', 0, 'http://localhost/wordpress/?page_id=2', 0, 'page', '', 0),
(3, 1, '2014-03-20 13:23:40', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'open', 'open', '', '', '', '', '2014-03-20 13:23:40', '0000-00-00 00:00:00', '', 0, 'http://localhost/wordpress/?p=3', 0, 'post', '', 0),
(4, 1, '2014-03-20 13:50:52', '2014-03-20 13:50:52', '<p>Your Name (required)<br />\n [text* your-name] </p>\n\n<p>Your Email (required)<br />\n [email* your-email] </p>\n\n<p>Subject<br />\n [text your-subject] </p>\n\n<p>Your Message<br />\n [textarea your-message] </p>\n\n<p>[submit "Send"]</p>\n[your-subject]\n[your-name] <[your-email]>\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on HACK GAME (http://localhost/wordpress)\[email protected]\n\n\n0\n\n[your-subject]\n[your-name] <[your-email]>\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on HACK GAME (http://localhost/wordpress)\n[your-email]\n\n\n0\nYour message was sent successfully. Thanks.\nFailed to send your message. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm the fields and submit it again.\nFailed to send your message. Please try later or contact the administrator by another method.\nPlease accept the terms to proceed.\nPlease fill the required field.', 'Contact form 1', '', 'publish', 'open', 'open', '', 'contact-form-1', '', '', '2014-03-20 13:50:52', '2014-03-20 13:50:52', '', 0, 'http://localhost/wordpress/?post_type=wpcf7_contact_form&p=4', 0, 'wpcf7_contact_form', '', 0),
(5, 1, '2014-03-20 13:59:15', '2014-03-20 13:59:15', 'This is an example page. It''s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n\n<blockquote>Hi there! I''m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin'' caught in the rain.)</blockquote>\n\n...or something like this:\n\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</blockquote>\n\nAs a new WordPress user, you should go to <a href="http://localhost/wordpress/wp-admin/">your dashboard</a> to delete this page and create new pages for your content. Have fun!', 'Sample Page', '', 'inherit', 'open', 'open', '', '2-revision-v1', '', '', '2014-03-20 13:59:15', '2014-03-20 13:59:15', '', 2, 'http://localhost/wordpress/2014/03/2-revision-v1/', 0, 'revision', '', 0),
(6, 1, '2014-03-21 03:39:08', '2014-03-21 03:39:08', 'localhost/wordpress is in compliance with 17 U.S.C. § 512 and the Digital Millennium Copyright Act (“DMCA”). It is our policy to respond to any infringement notices and take appropriate actions under the Digital Millennium Copyright Act (“DMCA”) and other applicable intellectual property laws. If your copyrighted material has been posted on freehackstools.com or if links to your copyrighted material are returned through our search engine and you want this material removed, you must provide a written communication that details the information listed in the following section. Please be aware that you will be liable for damages (including costs and attorneys’ fees) if you misrepresent information listed on our site that is infringing on your copyrights. We suggest that you first contact an attorney for legal assistance on this matter. The following elements must be included in your copyright infringement claim: • Provide evidence of the authorized person to act on behalf of the owner of an exclusive right that is allegedly infringed. • Provide sufficient contact information so that we may contact you. You must also include a valid email address. • You must identify in sufficient detail the copyrighted work claimed to have been infringed and including at least one search term under which the material appears in freehacksools.com search results. • A statement that the complaining party has a good faith belief that use of the material in the manner complained of is not authorized by the copyright owner, its agent, or the law. • A statement that the information in the notification is accurate, and under penalty of perjury, that the complaining party is authorized to act on behalf of the owner of an exclusive right that is allegedly infringed. • Must be signed by the authorized person to act on behalf of the owner of an exclusive right that is allegedly being infringed. Send the written infringement notice to the following address and an email notification to [email protected]. Please allow 1-2 business days for an email response. Note that emailing your complaint to other parties such as our Internet Service Provider will not expedite your request and may result in a delayed response due the complaint not properly being filed.\n\nRead more at: <a href="http://freehackstools.com/contact-us/">http://freehackstools.com/contact-us/</a>\nCopyright © Freehackstools.com', 'About', '', 'trash', 'open', 'open', '', 'about-2', '', '', '2014-03-21 04:24:07', '2014-03-21 04:24:07', '', 0, 'http://localhost/wordpress/?page_id=6', 0, 'page', '', 0),
(7, 1, '2014-03-21 03:40:09', '2014-03-21 03:40:09', 'DMCA Policy localhost/wordpress is in compliance with 17 U.S.C. § 512 and the Digital Millennium Copyright Act (“DMCA”). It is our policy to respond to any infringement notices and take appropriate actions under the Digital Millennium Copyright Act (“DMCA”) and other applicable intellectual property laws. If your copyrighted material has been posted on localhost/wordpress or if links to your copyrighted material are returned through our search engine and you want this material removed, you must provide a written communication that details the information listed in the following section. Please be aware that you will be liable for damages (including costs and attorneys’ fees) if you misrepresent information listed on our site that is infringing on your copyrights. We suggest that you first contact an attorney for legal assistance on this matter. The following elements must be included in your copyright infringement claim:\r\n\r\n• Provide evidence of the authorized person to act on behalf of the owner of an exclusive right that is allegedly infringed.\r\n\r\n• Provide sufficient contact information so that we may contact you. You must also include a valid email address.\r\n\r\n• You must identify in sufficient detail the copyrighted work claimed to have been infringed and including at least one search term under which the material appears in localhost/wordpress search results.\r\n\r\n• A statement that the complaining party has a good faith belief that use of the material in the manner complained of is not authorized by the copyright owner, its agent, or the law.\r\n\r\n• A statement that the information in the notification is accurate, and under penalty of perjury, that the complaining party is authorized to act on behalf of the owner of an exclusive right that is allegedly infringed.\r\n\r\n• Must be signed by the authorized person to act on behalf of the owner of an exclusive right that is allegedly being infringed. Send the written infringement notice to the following address and an email notification to support@localhost/wordpress. Please allow 1-2 business days for an email response. Note that emailing your complaint to other parties such as our Internet Service Provider will not expedite your request and may result in a delayed response due the complaint not properly being filed.\r\n\r\nRead more at: <a href="http://freehackstools.com/contact-us/">http://localhost/wordpress/about/</a>\r\nCopyright © localhost/wordpress', 'About', '', 'publish', 'closed', 'closed', '', 'about', '', '', '2014-03-21 06:37:11', '2014-03-21 06:37:11', '', 0, 'http://localhost/wordpress/?page_id=7', 0, 'page', '', 0),
(8, 1, '2014-03-21 03:40:09', '2014-03-21 03:40:09', '', 'About', '', 'inherit', 'open', 'open', '', '7-revision-v1', '', '', '2014-03-21 03:40:09', '2014-03-21 03:40:09', '', 7, 'http://localhost/wordpress/2014/03/7-revision-v1/', 0, 'revision', '', 0),
(9, 1, '2014-03-21 03:41:34', '2014-03-21 03:41:34', '[contact-form-7 id="34" title="Contact us"]', 'Contact Us', '', 'publish', 'closed', 'closed', '', 'contact-us', '', '', '2014-03-21 07:02:50', '2014-03-21 07:02:50', '', 0, 'http://localhost/wordpress/?page_id=9', 0, 'page', '', 0),
(30, 1, '2014-03-21 06:36:16', '2014-03-21 06:36:16', 'DMCA Policy localhost/wordpress is in compliance with 17 U.S.C. § 512 and the Digital Millennium Copyright Act (“DMCA”). It is our policy to respond to any infringement notices and take appropriate actions under the Digital Millennium Copyright Act (“DMCA”) and other applicable intellectual property laws. If your copyrighted material has been posted on localhost/wordpress or if links to your copyrighted material are returned through our search engine and you want this material removed, you must provide a written communication that details the information listed in the following section. Please be aware that you will be liable for damages (including costs and attorneys’ fees) if you misrepresent information listed on our site that is infringing on your copyrights. We suggest that you first contact an attorney for legal assistance on this matter. The following elements must be included in your copyright infringement claim:\n\n• Provide evidence of the authorized person to act on behalf of the owner of an exclusive right that is allegedly infringed.\n\n• Provide sufficient contact information so that we may contact you. You must also include a valid email address.\n\n• You must identify in sufficient detail the copyrighted work claimed to have been infringed and including at least one search term under which the material appears in localhost/wordpress search results.\n\n• A statement that the complaining party has a good faith belief that use of the material in the manner complained of is not authorized by the copyright owner, its agent, or the law.\n\n• A statement that the information in the notification is accurate, and under penalty of perjury, that the complaining party is authorized to act on behalf of the owner of an exclusive right that is allegedly infringed.\n\n• Must be signed by the authorized person to act on behalf of the owner of an exclusive right that is allegedly being infringed. Send the written infringement notice to the following address and an email notification to support@localhost/wordpress. Please allow 1-2 business days for an email response. Note that emailing your complaint to other parties such as our Internet Service Provider will not expedite your request and may result in a delayed response due the complaint not properly being filed.\n\nRead more at: <a href="http://freehackstools.com/contact-us/">http://localhost/wordpress/about/</a>\nCopyright © localhost/wordpress', 'About', '', 'inherit', 'open', 'open', '', '7-autosave-v1', '', '', '2014-03-21 06:36:16', '2014-03-21 06:36:16', '', 7, 'http://localhost/wordpress/2014/03/7-autosave-v1/', 0, 'revision', '', 0),
(10, 1, '2014-03-21 03:41:34', '2014-03-21 03:41:34', 'DMCA Policy localhost/wordpress is in compliance with 17 U.S.C. § 512 and the Digital Millennium Copyright Act (“DMCA”). It is our policy to respond to any infringement notices and take appropriate actions under the Digital Millennium Copyright Act (“DMCA”) and other applicable intellectual property laws. If your copyrighted material has been posted on localhost/wordpress or if links to your copyrighted material are returned through our search engine and you want this material removed, you must provide a written communication that details the information listed in the following section. Please be aware that you will be liable for damages (including costs and attorneys’ fees) if you misrepresent information listed on our site that is infringing on your copyrights. We suggest that you first contact an attorney for legal assistance on this matter. The following elements must be included in your copyright infringement claim: • Provide evidence of the authorized person to act on behalf of the owner of an exclusive right that is allegedly infringed. • Provide sufficient contact information so that we may contact you. You must also include a valid email address. • You must identify in sufficient detail the copyrighted work claimed to have been infringed and including at least one search term under which the material appears in freehacksools.com search results. • A statement that the complaining party has a good faith belief that use of the material in the manner complained of is not authorized by the copyright owner, its agent, or the law. • A statement that the information in the notification is accurate, and under penalty of perjury, that the complaining party is authorized to act on behalf of the owner of an exclusive right that is allegedly infringed. • Must be signed by the authorized person to act on behalf of the owner of an exclusive right that is allegedly being infringed. Send the written infringement notice to the following address and an email notification to support@localhost/wordpress. Please allow 1-2 business days for an email response. Note that emailing your complaint to other parties such as our Internet Service Provider will not expedite your request and may result in a delayed response due the complaint not properly being filed.\r\n\r\nRead more at: <a href="http://freehackstools.com/contact-us/">http://localhost/wordpress/contact-us/</a>\r\nCopyright © localhost/wordpress', 'Contact-us', '', 'inherit', 'open', 'open', '', '9-revision-v1', '', '', '2014-03-21 03:41:34', '2014-03-21 03:41:34', '', 9, 'http://localhost/wordpress/2014/03/9-revision-v1/', 0, 'revision', '', 0),
(11, 1, '2014-03-21 03:44:32', '2014-03-21 03:44:32', 'Privacy Policy Your Privacy Your privacy is important to us. To better protect your privacy we provide this notice explaining our online information practices and the choices you can make about the way your information is collected and used. To make this notice easy to find, we make it available on our homepage and at every point where personally identifiable information may be requested. Collection of Personal Information When visiting localhost/wordpress , the IP address used to access the site will be logged along with the dates and times of access. This information is purely used to analyze trends, administer the site, track users movement and gather broad demographic information for internal use. Most importantly, any recorded IP addresses are not linked to personally identifiable information. Links to Third Party Websites We have included links on this site for your use and reference. We are not responsible for the privacy policies on these websites. You should be aware that the privacy policies of these sites may differ from our own. Changes to this Privacy Statement The contents of this statement may be altered at any time, at our discretion. If you have any questions regarding the privacy policy of localhost/wordpress then you may contact us through our contact form. Rules General Rules: 1. The only language spoken/written on this site is English. 2. No offensive user Names. 3. No porn or offensive images in avatars. 4. No advertising in your signature. 5. No Advertising of Websites, Blogs, Money Making Schemes, Trading of goods, and or referrals. 6. Flaming, Spamming, Rudeness, Racism, Discrimination will not be tolerated. 7. Arguing, swearing, Insulting, and or criticizing any staff member will get you an immediate Warning. Submit An Articles Rules: If anyone interested in helping us and post article, Read the following rules carefully: 1. Search well before you submit 2. First of all preview before submit! 3. all posts should have a screenshot /thumbnail ( 320 px width or less ) 4. all links should be clickable. 5. all posts should be in suitable category. Short Content of the post: * Screenshot/Cover/Picture (link to image hosting services) * Short Description Full Content of the post: * Screenshot/Cover/Picture (link to image hosting services) * Full Description (emphasise some key words!) * Donwload URL (clickable) • don’t copy/paste from other sites or other author’s posts. • don’t post duplicate or fake articles. • don’t post adult articles! • don’t hotlink images from non image hosting sites • don’t post if you can’t follow the rules! or you will be banned from posting! Banning System: If you don’t observe our rules, So you will be banned from this site. Note: This text is subject to change at any time.\r\n\r\nRead more at: <a href="http://freehackstools.com/privacy-policy/">http://localhost/wordpress/privacy-policy/</a>\r\nCopyright © localhost/wordpress', 'Privacy Policy', '', 'publish', 'closed', 'closed', '', 'privacy-policy', '', '', '2014-03-21 04:24:47', '2014-03-21 04:24:47', '', 0, 'http://localhost/wordpress/?page_id=11', 0, 'page', '', 0),
(12, 1, '2014-03-21 03:44:32', '2014-03-21 03:44:32', 'Privacy Policy Your Privacy Your privacy is important to us. To better protect your privacy we provide this notice explaining our online information practices and the choices you can make about the way your information is collected and used. To make this notice easy to find, we make it available on our homepage and at every point where personally identifiable information may be requested. Collection of Personal Information When visiting localhost/wordpress , the IP address used to access the site will be logged along with the dates and times of access. This information is purely used to analyze trends, administer the site, track users movement and gather broad demographic information for internal use. Most importantly, any recorded IP addresses are not linked to personally identifiable information. Links to Third Party Websites We have included links on this site for your use and reference. We are not responsible for the privacy policies on these websites. You should be aware that the privacy policies of these sites may differ from our own. Changes to this Privacy Statement The contents of this statement may be altered at any time, at our discretion. If you have any questions regarding the privacy policy of localhost/wordpress then you may contact us through our contact form. Rules General Rules: 1. The only language spoken/written on this site is English. 2. No offensive user Names. 3. No porn or offensive images in avatars. 4. No advertising in your signature. 5. No Advertising of Websites, Blogs, Money Making Schemes, Trading of goods, and or referrals. 6. Flaming, Spamming, Rudeness, Racism, Discrimination will not be tolerated. 7. Arguing, swearing, Insulting, and or criticizing any staff member will get you an immediate Warning. Submit An Articles Rules: If anyone interested in helping us and post article, Read the following rules carefully: 1. Search well before you submit 2. First of all preview before submit! 3. all posts should have a screenshot /thumbnail ( 320 px width or less ) 4. all links should be clickable. 5. all posts should be in suitable category. Short Content of the post: * Screenshot/Cover/Picture (link to image hosting services) * Short Description Full Content of the post: * Screenshot/Cover/Picture (link to image hosting services) * Full Description (emphasise some key words!) * Donwload URL (clickable) • don’t copy/paste from other sites or other author’s posts. • don’t post duplicate or fake articles. • don’t post adult articles! • don’t hotlink images from non image hosting sites • don’t post if you can’t follow the rules! or you will be banned from posting! Banning System: If you don’t observe our rules, So you will be banned from this site. Note: This text is subject to change at any time.\r\n\r\nRead more at: <a href="http://freehackstools.com/privacy-policy/">http://localhost/wordpress/privacy-policy/</a>\r\nCopyright © localhost/wordpress', 'Privacy-policy', '', 'inherit', 'open', 'open', '', '11-revision-v1', '', '', '2014-03-21 03:44:32', '2014-03-21 03:44:32', '', 11, 'http://localhost/wordpress/2014/03/11-revision-v1/', 0, 'revision', '', 0),
(14, 1, '2014-03-21 04:11:11', '2014-03-21 04:11:11', ' ', '', '', 'publish', 'open', 'open', '', '14', '', '', '2014-03-21 06:37:40', '2014-03-21 06:37:40', '', 0, 'http://localhost/wordpress/?p=14', 7, 'nav_menu_item', '', 0),
(15, 1, '2014-03-21 04:11:11', '2014-03-21 04:11:11', ' ', '', '', 'publish', 'open', 'open', '', '15', '', '', '2014-03-21 06:37:40', '2014-03-21 06:37:40', '', 0, 'http://localhost/wordpress/?p=15', 6, 'nav_menu_item', '', 0),
(16, 1, '2014-03-21 04:11:11', '2014-03-21 04:11:11', ' ', '', '', 'publish', 'open', 'open', '', '16', '', '', '2014-03-21 06:37:40', '2014-03-21 06:37:40', '', 0, 'http://localhost/wordpress/?p=16', 2, 'nav_menu_item', '', 0),
(17, 1, '2014-03-21 04:11:11', '2014-03-21 04:11:11', ' ', '', '', 'publish', 'open', 'open', '', '17', '', '', '2014-03-21 06:37:40', '2014-03-21 06:37:40', '', 0, 'http://localhost/wordpress/?p=17', 3, 'nav_menu_item', '', 0),
(18, 1, '2014-03-21 04:11:11', '2014-03-21 04:11:11', ' ', '', '', 'publish', 'open', 'open', '', '18', '', '', '2014-03-21 06:37:40', '2014-03-21 06:37:40', '', 0, 'http://localhost/wordpress/?p=18', 4, 'nav_menu_item', '', 0),
(28, 1, '2014-03-21 06:29:59', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'open', 'open', '', '', '', '', '2014-03-21 06:29:59', '0000-00-00 00:00:00', '', 0, 'http://localhost/wordpress/?p=28', 1, 'nav_menu_item', '', 0),
(19, 1, '2014-03-21 04:16:45', '2014-03-21 04:16:45', '', 'Home', '', 'trash', 'open', 'open', '', 'home', '', '', '2014-03-21 04:17:19', '2014-03-21 04:17:19', '', 0, 'http://localhost/wordpress/?page_id=19', 0, 'page', '', 0),
(20, 1, '2014-03-21 04:16:45', '2014-03-21 04:16:45', '', 'Home', '', 'inherit', 'open', 'open', '', '19-revision-v1', '', '', '2014-03-21 04:16:45', '2014-03-21 04:16:45', '', 19, 'http://localhost/wordpress/2014/03/19-revision-v1/', 0, 'revision', '', 0),
(21, 1, '2014-03-21 04:17:34', '0000-00-00 00:00:00', '', 'Home', '', 'draft', 'open', 'open', '', '', '', '', '2014-03-21 04:17:34', '0000-00-00 00:00:00', '', 0, 'http://localhost/wordpress/?p=21', 1, 'nav_menu_item', '', 0),
(22, 1, '2014-03-21 04:19:48', '2014-03-21 04:19:48', 'DMCA Policy localhost/wordpress is in compliance with 17 U.S.C. § 512 and the Digital Millennium Copyright Act (“DMCA”). It is our policy to respond to any infringement notices and take appropriate actions under the Digital Millennium Copyright Act (“DMCA”) and other applicable intellectual property laws. If your copyrighted material has been posted on localhost/wordpress or if links to your copyrighted material are returned through our search engine and you want this material removed, you must provide a written communication that details the information listed in the following section. Please be aware that you will be liable for damages (including costs and attorneys’ fees) if you misrepresent information listed on our site that is infringing on your copyrights. We suggest that you first contact an attorney for legal assistance on this matter. The following elements must be included in your copyright infringement claim: • Provide evidence of the authorized person to act on behalf of the owner of an exclusive right that is allegedly infringed. • Provide sufficient contact information so that we may contact you. You must also include a valid email address. • You must identify in sufficient detail the copyrighted work claimed to have been infringed and including at least one search term under which the material appears in freehacksools.com search results. • A statement that the complaining party has a good faith belief that use of the material in the manner complained of is not authorized by the copyright owner, its agent, or the law. • A statement that the information in the notification is accurate, and under penalty of perjury, that the complaining party is authorized to act on behalf of the owner of an exclusive right that is allegedly infringed. • Must be signed by the authorized person to act on behalf of the owner of an exclusive right that is allegedly being infringed. Send the written infringement notice to the following address and an email notification to support@localhost/wordpress. Please allow 1-2 business days for an email response. Note that emailing your complaint to other parties such as our Internet Service Provider will not expedite your request and may result in a delayed response due the complaint not properly being filed.\r\n\r\nRead more at: <a href="http://freehackstools.com/contact-us/">http://localhost/wordpress/contact-us/</a>\r\nCopyright © localhost/wordpress', 'Contact Us', '', 'inherit', 'open', 'open', '', '9-revision-v1', '', '', '2014-03-21 04:19:48', '2014-03-21 04:19:48', '', 9, 'http://localhost/wordpress/2014/03/9-revision-v1/', 0, 'revision', '', 0),
(23, 1, '2014-03-21 04:19:55', '2014-03-21 04:19:55', 'Privacy Policy Your Privacy Your privacy is important to us. To better protect your privacy we provide this notice explaining our online information practices and the choices you can make about the way your information is collected and used. To make this notice easy to find, we make it available on our homepage and at every point where personally identifiable information may be requested. Collection of Personal Information When visiting localhost/wordpress , the IP address used to access the site will be logged along with the dates and times of access. This information is purely used to analyze trends, administer the site, track users movement and gather broad demographic information for internal use. Most importantly, any recorded IP addresses are not linked to personally identifiable information. Links to Third Party Websites We have included links on this site for your use and reference. We are not responsible for the privacy policies on these websites. You should be aware that the privacy policies of these sites may differ from our own. Changes to this Privacy Statement The contents of this statement may be altered at any time, at our discretion. If you have any questions regarding the privacy policy of localhost/wordpress then you may contact us through our contact form. Rules General Rules: 1. The only language spoken/written on this site is English. 2. No offensive user Names. 3. No porn or offensive images in avatars. 4. No advertising in your signature. 5. No Advertising of Websites, Blogs, Money Making Schemes, Trading of goods, and or referrals. 6. Flaming, Spamming, Rudeness, Racism, Discrimination will not be tolerated. 7. Arguing, swearing, Insulting, and or criticizing any staff member will get you an immediate Warning. Submit An Articles Rules: If anyone interested in helping us and post article, Read the following rules carefully: 1. Search well before you submit 2. First of all preview before submit! 3. all posts should have a screenshot /thumbnail ( 320 px width or less ) 4. all links should be clickable. 5. all posts should be in suitable category. Short Content of the post: * Screenshot/Cover/Picture (link to image hosting services) * Short Description Full Content of the post: * Screenshot/Cover/Picture (link to image hosting services) * Full Description (emphasise some key words!) * Donwload URL (clickable) • don’t copy/paste from other sites or other author’s posts. • don’t post duplicate or fake articles. • don’t post adult articles! • don’t hotlink images from non image hosting sites • don’t post if you can’t follow the rules! or you will be banned from posting! Banning System: If you don’t observe our rules, So you will be banned from this site. Note: This text is subject to change at any time.\r\n\r\nRead more at: <a href="http://freehackstools.com/privacy-policy/">http://localhost/wordpress/privacy-policy/</a>\r\nCopyright © localhost/wordpress', 'Privacy Policy', '', 'inherit', 'open', 'open', '', '11-revision-v1', '', '', '2014-03-21 04:19:55', '2014-03-21 04:19:55', '', 11, 'http://localhost/wordpress/2014/03/11-revision-v1/', 0, 'revision', '', 0),
(24, 1, '2014-03-21 04:20:17', '2014-03-21 04:20:17', '', 'Home', '', 'publish', 'open', 'open', '', 'home', '', '', '2014-03-21 06:37:40', '2014-03-21 06:37:40', '', 0, 'http://localhost/wordpress/?p=24', 1, 'nav_menu_item', '', 0),
(25, 1, '2014-03-21 04:24:07', '2014-03-21 04:24:07', 'localhost/wordpress is in compliance with 17 U.S.C. § 512 and the Digital Millennium Copyright Act (“DMCA”). It is our policy to respond to any infringement notices and take appropriate actions under the Digital Millennium Copyright Act (“DMCA”) and other applicable intellectual property laws. If your copyrighted material has been posted on freehackstools.com or if links to your copyrighted material are returned through our search engine and you want this material removed, you must provide a written communication that details the information listed in the following section. Please be aware that you will be liable for damages (including costs and attorneys’ fees) if you misrepresent information listed on our site that is infringing on your copyrights. We suggest that you first contact an attorney for legal assistance on this matter. The following elements must be included in your copyright infringement claim: • Provide evidence of the authorized person to act on behalf of the owner of an exclusive right that is allegedly infringed. • Provide sufficient contact information so that we may contact you. You must also include a valid email address. • You must identify in sufficient detail the copyrighted work claimed to have been infringed and including at least one search term under which the material appears in freehacksools.com search results. • A statement that the complaining party has a good faith belief that use of the material in the manner complained of is not authorized by the copyright owner, its agent, or the law. • A statement that the information in the notification is accurate, and under penalty of perjury, that the complaining party is authorized to act on behalf of the owner of an exclusive right that is allegedly infringed. • Must be signed by the authorized person to act on behalf of the owner of an exclusive right that is allegedly being infringed. Send the written infringement notice to the following address and an email notification to [email protected]. Please allow 1-2 business days for an email response. Note that emailing your complaint to other parties such as our Internet Service Provider will not expedite your request and may result in a delayed response due the complaint not properly being filed.\n\nRead more at: <a href="http://freehackstools.com/contact-us/">http://freehackstools.com/contact-us/</a>\nCopyright © Freehackstools.com', 'About', '', 'inherit', 'open', 'open', '', '6-revision-v1', '', '', '2014-03-21 04:24:07', '2014-03-21 04:24:07', '', 6, 'http://localhost/wordpress/2014/03/6-revision-v1/', 0, 'revision', '', 0),
(29, 1, '2014-03-21 06:31:54', '2014-03-21 06:31:54', '', 'Contact Us', '', 'inherit', 'open', 'open', '', '9-revision-v1', '', '', '2014-03-21 06:31:54', '2014-03-21 06:31:54', '', 9, 'http://localhost/wordpress/2014/03/9-revision-v1/', 0, 'revision', '', 0),
(26, 1, '2014-03-21 04:48:57', '0000-00-00 00:00:00', '', 'How to download', '', 'draft', 'open', 'open', '', '', '', '', '2014-03-21 04:48:57', '2014-03-21 04:48:57', '', 0, 'http://localhost/wordpress/?page_id=26', 0, 'page', '', 0),
(33, 1, '2014-03-21 06:55:19', '2014-03-21 06:55:19', '[contact-form-7 id="4" title="Contact form 1"]', 'Contact Us', '', 'inherit', 'open', 'open', '', '9-revision-v1', '', '', '2014-03-21 06:55:19', '2014-03-21 06:55:19', '', 9, 'http://localhost/wordpress/2014/03/9-revision-v1/', 0, 'revision', '', 0),
(31, 1, '2014-03-21 06:36:47', '2014-03-21 06:36:47', 'DMCA Policy localhost/wordpress is in compliance with 17 U.S.C. § 512 and the Digital Millennium Copyright Act (“DMCA”). It is our policy to respond to any infringement notices and take appropriate actions under the Digital Millennium Copyright Act (“DMCA”) and other applicable intellectual property laws. If your copyrighted material has been posted on localhost/wordpress or if links to your copyrighted material are returned through our search engine and you want this material removed, you must provide a written communication that details the information listed in the following section. Please be aware that you will be liable for damages (including costs and attorneys’ fees) if you misrepresent information listed on our site that is infringing on your copyrights. We suggest that you first contact an attorney for legal assistance on this matter. The following elements must be included in your copyright infringement claim:\r\n\r\n• Provide evidence of the authorized person to act on behalf of the owner of an exclusive right that is allegedly infringed.\r\n\r\n• Provide sufficient contact information so that we may contact you. You must also include a valid email address.\r\n\r\n• You must identify in sufficient detail the copyrighted work claimed to have been infringed and including at least one search term under which the material appears in localhost/wordpress search results.\r\n\r\n• A statement that the complaining party has a good faith belief that use of the material in the manner complained of is not authorized by the copyright owner, its agent, or the law.\r\n\r\n• A statement that the information in the notification is accurate, and under penalty of perjury, that the complaining party is authorized to act on behalf of the owner of an exclusive right that is allegedly infringed.\r\n\r\n• Must be signed by the authorized person to act on behalf of the owner of an exclusive right that is allegedly being infringed. Send the written infringement notice to the following address and an email notification to support@localhost/wordpress. Please allow 1-2 business days for an email response. Note that emailing your complaint to other parties such as our Internet Service Provider will not expedite your request and may result in a delayed response due the complaint not properly being filed.\r\n\r\nRead more at: <a href="http://freehackstools.com/contact-us/">http://localhost/wordpress/about/</a>\r\nCopyright © localhost/wordpress', 'About', '', 'inherit', 'open', 'open', '', '7-revision-v1', '', '', '2014-03-21 06:36:47', '2014-03-21 06:36:47', '', 7, 'http://localhost/wordpress/2014/03/7-revision-v1/', 0, 'revision', '', 0),
(32, 1, '2014-03-21 06:37:40', '2014-03-21 06:37:40', ' ', '', '', 'publish', 'open', 'open', '', '32', '', '', '2014-03-21 06:37:40', '2014-03-21 06:37:40', '', 0, 'http://localhost/wordpress/?p=32', 5, 'nav_menu_item', '', 0),
(34, 1, '2014-03-21 07:02:37', '2014-03-21 07:02:37', '<p>Your Name (required)<br />\r\n [text* your-name] </p>\r\n\r\n<p>Your Email (required)<br />\r\n [email* your-email] </p>\r\n\r\n<p>Subject<br />\r\n [text your-subject] </p>\r\n\r\n<p>Your Message<br />\r\n [textarea your-message] </p>\r\n\r\n<p>[submit "Send"]</p>\n[your-subject]\n[your-name] <[your-email]>\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on HACK GAME (http://localhost/wordpress)\[email protected]\n\n\n\n\n[your-subject]\n[your-name] <[your-email]>\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on HACK GAME (http://localhost/wordpress)\n[your-email]\n\n\n\nYour message was sent successfully. Thanks.\nFailed to send your message. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm the fields and submit it again.\nFailed to send your message. Please try later or contact the administrator by another method.\nPlease accept the terms to proceed.\nPlease fill the required field.\nYour entered code is incorrect.\nNumber format seems invalid.\nThis number is too small.\nThis number is too large.\nEmail address seems invalid.\nURL seems invalid.\nTelephone number seems invalid.\nYour answer is not correct.\nDate format seems invalid.\nThis date is too early.\nThis date is too late.\nFailed to upload file.\nThis file type is not allowed.\nThis file is too large.\nFailed to upload file. Error occurred.', 'Contact us', '', 'publish', 'open', 'open', '', 'contact-us', '', '', '2014-03-21 07:23:28', '2014-03-21 07:23:28', '', 0, 'http://localhost/wordpress/?post_type=wpcf7_contact_form&p=34', 0, 'wpcf7_contact_form', '', 0),
(35, 1, '2014-03-21 07:02:50', '2014-03-21 07:02:50', '[contact-form-7 id="34" title="Contact us"]', 'Contact Us', '', 'inherit', 'open', 'open', '', '9-revision-v1', '', '', '2014-03-21 07:02:50', '2014-03-21 07:02:50', '', 9, 'http://localhost/wordpress/2014/03/9-revision-v1/', 0, 'revision', '', 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp_statistics_exclusions`
--
DROP TABLE IF EXISTS `wp_statistics_exclusions`;
CREATE TABLE IF NOT EXISTS `wp_statistics_exclusions` (
`ID` int(11) NOT NULL AUTO_INCREMENT,
`date` date NOT NULL,
`reason` varchar(255) DEFAULT NULL,
`count` bigint(20) NOT NULL,
PRIMARY KEY (`ID`),
KEY `date` (`date`),
KEY `reason` (`reason`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `wp_statistics_useronline`
--
DROP TABLE IF EXISTS `wp_statistics_useronline`;
CREATE TABLE IF NOT EXISTS `wp_statistics_useronline` (
`ID` int(11) NOT NULL AUTO_INCREMENT,
`ip` varchar(20) NOT NULL,
`timestamp` int(10) NOT NULL,
`date` datetime NOT NULL,
`referred` text NOT NULL,
`agent` varchar(255) NOT NULL,
`platform` varchar(255) DEFAULT NULL,
`version` varchar(255) DEFAULT NULL,
PRIMARY KEY (`ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=33 ;
--
-- Dumping data for table `wp_statistics_useronline`
--
INSERT INTO `wp_statistics_useronline` (`ID`, `ip`, `timestamp`, `date`, `referred`, `agent`, `platform`, `version`) VALUES
(30, '14.160.92.86', 1395394711, '2014-03-21 09:38:31', 'http://localhost/wordpress/wp-admin/theme-editor.php?file=style.css&theme=diablofun', 'Chrome', 'Linux', '33.0.1750.152');
-- --------------------------------------------------------
--
-- Table structure for table `wp_statistics_visit`
--
DROP TABLE IF EXISTS `wp_statistics_visit`;
CREATE TABLE IF NOT EXISTS `wp_statistics_visit` (
`ID` int(11) NOT NULL AUTO_INCREMENT,
`last_visit` datetime NOT NULL,
`last_counter` date NOT NULL,
`visit` int(10) NOT NULL,
PRIMARY KEY (`ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;
--
-- Dumping data for table `wp_statistics_visit`
--
INSERT INTO `wp_statistics_visit` (`ID`, `last_visit`, `last_counter`, `visit`) VALUES
(1, '2014-03-20 22:45:38', '2014-03-20', 4),
(2, '2014-03-21 03:57:38', '2014-03-21', 7);
-- --------------------------------------------------------
--
-- Table structure for table `wp_statistics_visitor`
--
DROP TABLE IF EXISTS `wp_statistics_visitor`;
CREATE TABLE IF NOT EXISTS `wp_statistics_visitor` (
`ID` int(11) NOT NULL AUTO_INCREMENT,
`last_counter` date NOT NULL,
`referred` text NOT NULL,
`agent` varchar(255) NOT NULL,
`platform` varchar(255) DEFAULT NULL,
`version` varchar(255) DEFAULT NULL,
`UAString` varchar(255) DEFAULT NULL,
`ip` varchar(20) NOT NULL,
`location` varchar(10) DEFAULT NULL,
PRIMARY KEY (`ID`),
KEY `agent` (`agent`),
KEY `platform` (`platform`),
KEY `version` (`version`),
KEY `location` (`location`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=7 ;
--
-- Dumping data for table `wp_statistics_visitor`
--
INSERT INTO `wp_statistics_visitor` (`ID`, `last_counter`, `referred`, `agent`, `platform`, `version`, `UAString`, `ip`, `location`) VALUES
(1, '2014-03-20', 'http://localhost/wordpress/wp-admin/plugins.php?activate=true&plugin_status=all&paged=1&s=', 'Chrome', 'Windows', '33.0.1750.154', NULL, '123.16.255.25', '000'),
(2, '2014-03-20', 'http://localhost/wordpress', 'MSIE', 'Windows', '7.0', '', '38.100.21.118', 'US'),
(3, '2014-03-21', 'http://localhost/wordpress/', 'MSIE', 'Windows', '9.0', '', '61.55.185.127', 'CN'),
(4, '2014-03-21', 'http://localhost/wordpress', 'Chrome', 'Linux', '33.0.1750.146', '', '14.160.92.86', 'VN'),
(5, '2014-03-21', 'http://localhost/wordpress', 'PHP', 'Unknown', '5.3.24', '', '31.170.167.58', 'US'),
(6, '2014-03-21', 'http://localhost/wordpress/', 'AppleWebKit', 'Windows', '534', '', '199.30.24.120', 'US');
-- --------------------------------------------------------
--
-- Table structure for table `wp_terms`
--
DROP TABLE IF EXISTS `wp_terms`;
CREATE TABLE IF NOT EXISTS `wp_terms` (
`term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(200) NOT NULL DEFAULT '',
`slug` varchar(200) NOT NULL DEFAULT '',
`term_group` bigint(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`term_id`),
UNIQUE KEY `slug` (`slug`),
KEY `name` (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=7 ;
--
-- Dumping data for table `wp_terms`
--
INSERT INTO `wp_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES
(1, 'Uncategorized', 'uncategorized', 0),
(2, 'Android/iOS Hacks', 'android-ios-hacks', 0),
(3, 'Facebook Hacks', 'facebook-hacks', 0),
(4, 'Pc Hacks', 'pc-hacks', 0),
(5, 'Home', 'home', 0),
(6, 'Home2', 'home2', 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp_term_relationships`
--
DROP TABLE IF EXISTS `wp_term_relationships`;
CREATE TABLE IF NOT EXISTS `wp_term_relationships` (
`object_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`term_order` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`object_id`,`term_taxonomy_id`),
KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Dumping data for table `wp_term_relationships`
--
INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES
(1, 1, 0),
(16, 5, 0),
(17, 5, 0),
(18, 5, 0),
(32, 5, 0),
(15, 5, 0),
(14, 5, 0),
(24, 5, 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp_term_taxonomy`
--
DROP TABLE IF EXISTS `wp_term_taxonomy`;
CREATE TABLE IF NOT EXISTS `wp_term_taxonomy` (
`term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`taxonomy` varchar(32) NOT NULL DEFAULT '',
`description` longtext NOT NULL,
`parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`count` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`term_taxonomy_id`),
UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
KEY `taxonomy` (`taxonomy`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=7 ;
--
-- Dumping data for table `wp_term_taxonomy`
--
INSERT INTO `wp_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES
(1, 1, 'category', '', 0, 1),
(2, 2, 'category', '', 0, 0),
(3, 3, 'category', '', 0, 0),
(4, 4, 'category', '', 0, 0),
(5, 5, 'nav_menu', '', 0, 7),
(6, 6, 'nav_menu', '', 0, 0);
-- --------------------------------------------------------
--
-- Table structure for table `wp_usermeta`
--
DROP TABLE IF EXISTS `wp_usermeta`;
CREATE TABLE IF NOT EXISTS `wp_usermeta` (
`umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`umeta_id`),
KEY `user_id` (`user_id`),
KEY `meta_key` (`meta_key`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=22 ;
--
-- Dumping data for table `wp_usermeta`
--
INSERT INTO `wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES
(1, 1, 'first_name', ''),
(2, 1, 'last_name', ''),
(3, 1, 'nickname', 'dat_0106'),
(4, 1, 'description', ''),
(5, 1, 'rich_editing', 'true'),
(6, 1, 'comment_shortcuts', 'false'),
(7, 1, 'admin_color', 'fresh'),
(8, 1, 'use_ssl', '0'),
(9, 1, 'show_admin_bar_front', 'true'),
(10, 1, 'wp_capabilities', 'a:1:{s:13:"administrator";b:1;}'),
(11, 1, 'wp_user_level', '10'),
(12, 1, 'dismissed_wp_pointers', 'wp330_toolbar,wp330_saving_widgets,wp340_choose_image_from_library,wp340_customize_current_theme_link,wp350_media,wp360_revisions,wp360_locks,easmedia_pointer_pointer'),
(13, 1, 'show_welcome_panel', '1'),
(14, 1, 'wp_dashboard_quick_press_last_post_id', '3'),
(15, 1, 'managenav-menuscolumnshidden', 'a:4:{i:0;s:11:"link-target";i:1;s:11:"css-classes";i:2;s:3:"xfn";i:3;s:11:"description";}'),
(16, 1, 'metaboxhidden_nav-menus', 'a:3:{i:0;s:8:"add-post";i:1;s:20:"add-easymediagallery";i:2;s:12:"add-post_tag";}'),
(17, 1, 'wp_user-settings', 'editor=tinymce'),
(18, 1, 'wp_user-settings-time', '1395373188'),
(19, 1, 'nav_menu_recently_edited', '5'),
(20, 1, 'closedpostboxes_toplevel_page_wpcf7', 'a:0:{}'),
(21, 1, 'metaboxhidden_toplevel_page_wpcf7', 'a:0:{}');
-- --------------------------------------------------------
--
-- Table structure for table `wp_users`
--
DROP TABLE IF EXISTS `wp_users`;
CREATE TABLE IF NOT EXISTS `wp_users` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_login` varchar(60) NOT NULL DEFAULT '',
`user_pass` varchar(64) NOT NULL DEFAULT '',
`user_nicename` varchar(50) NOT NULL DEFAULT '',
`user_email` varchar(100) NOT NULL DEFAULT '',
`user_url` varchar(100) NOT NULL DEFAULT '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_activation_key` varchar(60) NOT NULL DEFAULT '',
`user_status` int(11) NOT NULL DEFAULT '0',
`display_name` varchar(250) NOT NULL DEFAULT '',
PRIMARY KEY (`ID`),
KEY `user_login_key` (`user_login`),
KEY `user_nicename` (`user_nicename`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- Dumping data for table `wp_users`
--
INSERT INTO `wp_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES
(1, 'dat_0106', '$P$BX.X8NQlpwT5/HPyEfaL4/pX9WWTUM.', 'dat_0106', '[email protected]', '', '2014-03-20 13:23:25', '', 0, 'dat_0106');
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;